:root {
  --ground: #f4f8fc;
  --ground-deep: #dcefff;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-soft: rgba(237, 246, 255, 0.82);
  --primary: #17191e;
  --secondary: #596675;
  --tertiary: #748091;
  --accent: #6bb5ff;
  --teal: #5ec8c2;
  --coral: #ff7a6b;
  --produce: #4ad17f;
  --amber: #efb85c;
  --paper: #f4f8fc;
  --paper-ink: #17191e;
  --paper-muted: #596170;
  --line: rgba(23, 25, 30, 0.1);
  --paper-line: rgba(23, 25, 30, 0.12);
  --glass: rgba(255, 255, 255, 0.64);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-line: rgba(255, 255, 255, 0.78);
  --glass-shadow: 0 28px 80px rgba(44, 95, 139, 0.15), inset 0 1px rgba(255, 255, 255, 0.92);
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --page: clamp(22px, 4.5vw, 72px);
  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 30px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ground);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper-ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(107, 181, 255, 0.13), transparent 32rem),
    radial-gradient(circle at 84% 42%, rgba(94, 200, 194, 0.1), transparent 30rem),
    var(--ground);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--paper-ink);
  background: var(--accent);
}

strong,
b {
  font-weight: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  color: var(--ground);
  background: var(--primary);
  font-weight: 400;
  transform: translateY(-180%);
  transition: transform 160ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.document-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--page);
}

.brand,
.footer-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.brand img {
  width: 20px;
  height: 24px;
}

.site-header nav,
.document-header nav,
.site-footer nav,
.document-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.site-header nav a,
.document-header nav a,
.site-footer nav a,
.document-footer nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
  transition: color 160ms var(--ease-out);
}

.site-header nav a:hover,
.document-header nav a:hover,
.site-footer nav a:hover,
.document-footer nav a:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ground-deep);
}

.hero-inner {
  display: grid;
  min-height: 100svh;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
  padding: 120px var(--page) 72px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 770px;
}

.eyebrow,
.feature-number,
.document-index > p {
  margin: 0;
  color: var(--accent);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-brand {
  margin: 26px 0 6px;
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-summary {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--secondary);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 36px;
}

.store-button {
  display: inline-flex;
  min-width: 196px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(242, 244, 248, 0.24);
  border-radius: 14px;
  color: var(--primary);
  background: rgba(242, 244, 248, 0.08);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.05;
}

.store-button small {
  display: block;
  margin-bottom: 3px;
  color: var(--secondary);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.store-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.66;
}

.text-link,
.button-link,
.support-email {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--display);
  font-weight: 400;
  transition: color 160ms var(--ease-out), gap 180ms var(--ease-out);
}

.text-link:hover,
.button-link:hover,
.support-email:hover {
  gap: 13px;
  color: var(--accent);
}

.purchase-note {
  margin: 18px 0 0;
  color: var(--tertiary);
  font-size: 13px;
}

.hero-product {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  margin: 70px auto 0;
}

.phone-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1206 / 2450;
  border: 1px solid rgba(242, 244, 248, 0.18);
  border-radius: clamp(38px, 4.2vw, 58px);
  background: #111318;
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.58);
  transition: transform 280ms var(--ease-out), border-color 280ms var(--ease-out);
}

.phone-shell::after {
  position: absolute;
  inset: 0;
  border: 8px solid rgba(255, 255, 255, 0.04);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.phone-shell img {
  width: 100%;
  height: auto;
}

.hero-product figcaption {
  margin-top: 15px;
  color: var(--tertiary);
  font-size: 12px;
  text-align: center;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.13;
  pointer-events: none;
}

.hero-glow-blue {
  top: 4%;
  right: 2%;
  width: min(56vw, 790px);
  aspect-ratio: 1;
  background: var(--accent);
}

.hero-glow-teal {
  right: 28%;
  bottom: -28%;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  background: var(--teal);
}

.statement {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(110px, 14vw, 200px) var(--page);
  text-align: center;
}

.statement h2,
.shared-copy h2,
.walk-copy h2,
.section-heading h2,
.privacy-section h2,
.closing h2,
.document-title h1,
.faq-section h2,
.support-note h2,
.not-found h1 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.statement h2 {
  font-size: clamp(46px, 7vw, 92px);
}

.statement > p:last-child {
  max-width: 690px;
  margin: 32px auto 0;
  color: var(--secondary);
  font-size: clamp(18px, 2vw, 23px);
}

.shared-section,
.walk-section {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
  padding: clamp(90px, 11vw, 160px) var(--page);
}

.shared-copy h2,
.walk-copy h2,
.section-heading h2,
.privacy-section h2,
.closing h2 {
  font-size: clamp(44px, 5.4vw, 74px);
}

.shared-copy > p:not(.eyebrow),
.walk-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--secondary);
  font-size: 19px;
}

.plain-list {
  margin: 46px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plain-list li {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 400;
}

.plain-list span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.household-visual {
  position: relative;
  max-width: 650px;
  padding: clamp(30px, 5vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: rgba(242, 244, 248, 0.035);
}

.member {
  display: flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  padding: 7px 15px 7px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--secondary);
  background: var(--ground);
  font-size: 13px;
}

.member span {
  display: grid;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--paper-ink);
  font-weight: 400;
  place-items: center;
}

.member-one span {
  background: var(--teal);
}

.member-two {
  margin-left: auto;
}

.member-two span {
  background: var(--coral);
}

.sync-line {
  width: 1px;
  height: 38px;
  margin-left: 27px;
  background: var(--line);
}

.member-two + .sync-line {
  margin-right: 27px;
  margin-left: auto;
}

.list-sample {
  overflow: hidden;
  border: 1px solid rgba(242, 244, 248, 0.12);
  border-radius: var(--radius-m);
  background: var(--surface);
}

.list-sample p {
  display: grid;
  min-height: 58px;
  margin: 0;
  padding: 0 18px;
  grid-template-columns: 26px 1fr auto 16px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(242, 244, 248, 0.08);
  font-size: 16px;
}

.list-sample p:first-child {
  grid-template-columns: 20px 1fr auto;
  font-family: var(--display);
  font-weight: 400;
}

.list-sample p:last-child {
  border-bottom: 0;
}

.list-sample em {
  color: var(--secondary);
  font-style: normal;
}

.aisle-dot,
.person-dot {
  display: inline-block;
  border-radius: 50%;
}

.aisle-dot {
  width: 9px;
  height: 9px;
}

.person-dot {
  width: 9px;
  height: 9px;
}

.produce {
  background: var(--produce);
}

.teal {
  background: var(--teal);
}

.coral {
  background: var(--coral);
}

.walk-section {
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1fr);
}

.suggestions-product {
  width: min(100%, 460px);
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 1206 / 1900;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--ground-deep);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
}

.suggestions-product img {
  width: 100%;
  height: auto;
}

.detail-note {
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  font-size: 14px !important;
}

.features {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(110px, 13vw, 190px) var(--page);
}

.section-heading {
  display: grid;
  max-width: 1160px;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.section-heading h2 {
  margin-top: 0;
}

.feature-list {
  display: grid;
  margin-top: clamp(70px, 9vw, 120px);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.feature-list article {
  min-height: 290px;
  padding: 28px clamp(22px, 3vw, 44px) 28px 0;
  border-right: 1px solid var(--line);
}

.feature-list article + article {
  padding-left: clamp(22px, 3vw, 44px);
}

.feature-list article:last-child {
  border-right: 0;
}

.feature-list h3 {
  margin: 64px 0 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.feature-list article > p:last-child {
  max-width: 340px;
  margin: 16px 0 0;
  color: var(--secondary);
}

.privacy-section {
  display: grid;
  margin: 14px;
  padding: clamp(70px, 9vw, 130px) clamp(28px, 6vw, 90px);
  grid-template-columns: 1fr 0.78fr;
  gap: 70px;
  border-radius: var(--radius-l);
  color: var(--paper-ink);
  background: var(--paper);
}

.privacy-section .eyebrow {
  color: #2365a5;
}

.privacy-copy p {
  max-width: 590px;
  margin: 0;
  color: var(--paper-muted);
  font-size: 19px;
}

.privacy-copy .button-link {
  margin-top: 34px;
  color: var(--paper-ink);
}

.privacy-ledger {
  display: grid;
  margin: 40px 0 0;
  padding: 0;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--paper-line);
  list-style: none;
}

.privacy-ledger li {
  min-height: 130px;
  padding: 24px 24px 20px 0;
  border-right: 1px solid var(--paper-line);
}

.privacy-ledger li + li {
  padding-left: 24px;
}

.privacy-ledger li:last-child {
  border-right: 0;
}

.privacy-ledger span,
.privacy-ledger strong {
  display: block;
}

.privacy-ledger span {
  color: var(--paper-muted);
  font-size: 13px;
}

.privacy-ledger strong {
  margin-top: 32px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.closing {
  display: flex;
  min-height: min(800px, 90svh);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px var(--page);
  text-align: center;
}

.closing img {
  width: 62px;
  height: auto;
  margin-bottom: 38px;
}

.closing h2 {
  max-width: 960px;
}

.closing .store-button {
  margin-top: 42px;
}

.site-footer,
.document-footer {
  display: grid;
  min-height: 118px;
  margin: 0 var(--page);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.site-footer p,
.document-footer p {
  margin: 0;
  justify-self: end;
  color: var(--tertiary);
  font-size: 12px;
}

.site-footer nav,
.document-footer nav {
  justify-content: center;
}

/* Document pages */
.document-page {
  color: var(--paper-ink);
  background: var(--paper);
}

.document-page .skip-link {
  color: var(--primary);
  background: var(--ground);
}

.document-header {
  position: relative;
  color: var(--primary);
  background: var(--ground);
}

.document-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) var(--page) 140px;
}

.document-title {
  max-width: 960px;
}

.document-title .eyebrow,
.faq-section .eyebrow {
  color: #2365a5;
}

.document-title h1 {
  font-size: clamp(58px, 9vw, 126px);
}

.document-title > p:last-child {
  margin: 24px 0 0;
  color: var(--paper-muted);
  font-size: 17px;
}

.document-grid {
  display: grid;
  margin-top: clamp(80px, 10vw, 130px);
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.document-index {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.document-index > p {
  margin-bottom: 12px;
  color: #2365a5;
}

.document-index a {
  display: flex;
  min-height: 38px;
  align-items: center;
  color: var(--paper-muted);
  font-size: 14px;
}

.document-index a:hover {
  color: var(--paper-ink);
}

.document-content section {
  scroll-margin-top: 30px;
  padding: 0 0 66px;
  border-bottom: 1px solid var(--paper-line);
}

.document-content section + section {
  padding-top: 66px;
}

.document-content h2,
.support-note h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.document-content p,
.document-content li {
  color: #3f4652;
  font-size: 17px;
  line-height: 1.72;
}

.document-content p {
  margin: 22px 0 0;
}

.document-content ul {
  margin: 22px 0 0;
  padding-left: 22px;
}

.document-content a {
  color: #185f9e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.document-footer {
  color: var(--primary);
  background: var(--ground);
  margin: 0;
  padding: 0 var(--page);
}

.support-title {
  max-width: 1000px;
}

.support-title > p:nth-of-type(2) {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--paper-muted);
  font-size: 20px;
}

.support-email {
  min-height: 52px;
  margin-top: 28px;
  color: #185f9e;
  font-size: clamp(20px, 3vw, 30px);
}

.support-meta {
  margin-top: 8px !important;
  font-size: 14px !important;
}

.faq-section {
  display: grid;
  margin-top: clamp(100px, 12vw, 160px);
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(50px, 9vw, 130px);
}

.faq-section .section-heading {
  display: block;
}

.faq-section h2 {
  font-size: clamp(42px, 5vw, 64px);
}

.faq-list {
  border-top: 1px solid var(--paper-line);
}

.faq-list details {
  border-bottom: 1px solid var(--paper-line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  padding-right: 50px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 8px;
  color: #185f9e;
  content: "+";
  font-size: 25px;
  font-weight: 400;
  transition: transform 180ms var(--ease-out);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details > div {
  max-width: 700px;
  padding: 0 44px 28px 0;
}

.faq-list details p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 16px;
  line-height: 1.65;
}

.faq-list details p + p {
  margin-top: 12px;
}

.support-note {
  margin-top: 110px;
  padding: clamp(36px, 6vw, 70px);
  border-radius: var(--radius-l);
  color: var(--primary);
  background: var(--ground);
}

.support-note p {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--secondary);
  font-size: 17px;
}

.support-note .button-link {
  margin-top: 26px;
}

.not-found-page {
  background: var(--ground-deep);
}

.not-found {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px var(--page);
  text-align: center;
}

.not-found img {
  width: 56px;
  height: auto;
  margin-bottom: 32px;
}

.not-found h1 {
  max-width: 780px;
  font-size: clamp(52px, 8vw, 96px);
}

.not-found > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--secondary);
}

.not-found .button-link {
  margin-top: 30px;
}

.not-found nav {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  color: var(--secondary);
  font-size: 14px;
}

/* Motion settles once and is entirely removed for reduced-motion users. */
.js [data-reveal="header"],
.js [data-reveal="hero"],
.js [data-reveal="product"] {
  opacity: 0;
}

.js [data-reveal="header"] {
  transform: translateY(-12px);
}

.js [data-reveal="hero"] {
  transform: translateY(22px);
}

.js [data-reveal="product"] {
  transform: translateY(58px) scale(0.975);
}

.js body.is-ready [data-reveal="header"],
.js body.is-ready [data-reveal="hero"],
.js body.is-ready [data-reveal="product"] {
  opacity: 1;
  transform: none;
  transition: opacity 520ms var(--ease-out), transform 680ms var(--ease-out);
}

.js body.is-ready [data-reveal="header"] {
  transition-delay: 20ms;
}

.js body.is-ready .hero .eyebrow {
  transition-delay: 80ms;
}

.js body.is-ready .hero-brand {
  transition-delay: 120ms;
}

.js body.is-ready .hero h1 {
  transition-delay: 170ms;
}

.js body.is-ready .hero-summary,
.js body.is-ready .hero-actions,
.js body.is-ready .purchase-note {
  transition-delay: 230ms;
}

.js body.is-ready [data-reveal="product"] {
  transition-delay: 280ms;
}

.js .reveal-section {
  opacity: 0;
  transform: translateY(34px);
}

.js .reveal-section.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 600ms var(--ease-out), transform 680ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .phone-shell:hover {
    border-color: rgba(107, 181, 255, 0.42);
    transform: translateY(-8px) rotate(0.4deg);
  }
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
    gap: 42px;
  }

  .hero-brand {
    font-size: clamp(66px, 10vw, 110px);
  }

  .shared-section,
  .walk-section {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }

  .privacy-ledger {
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-ledger li:nth-child(2) {
    border-right: 0;
  }

  .privacy-ledger li:nth-child(n + 3) {
    border-top: 1px solid var(--paper-line);
  }

  .document-grid {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 64px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: 22px;
  }

  .site-header,
  .document-header {
    min-height: 70px;
  }

  .site-header nav,
  .document-header nav {
    gap: 12px;
  }

  .site-header nav a,
  .document-header nav a {
    padding: 0 2px;
    font-size: 13px;
  }

  .hero-inner {
    display: block;
    padding-top: 118px;
  }

  .hero-brand {
    margin-top: 22px;
    font-size: clamp(64px, 21vw, 96px);
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 64px);
  }

  .hero-summary {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-product {
    width: min(92%, 410px);
    margin-top: 62px;
  }

  .statement,
  .shared-section,
  .walk-section,
  .features {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .shared-section,
  .walk-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .walk-section .suggestions-product {
    order: 2;
    margin-top: 10px;
  }

  .household-visual {
    margin-top: 14px;
    padding: 24px 16px;
  }

  .section-heading,
  .feature-list,
  .privacy-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .feature-list {
    display: block;
    margin-top: 60px;
  }

  .feature-list article,
  .feature-list article + article {
    min-height: 0;
    padding: 26px 0 46px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-list h3 {
    margin-top: 36px;
  }

  .privacy-section {
    display: block;
    margin: 8px;
    border-radius: 24px;
  }

  .privacy-copy {
    margin-top: 34px;
  }

  .privacy-ledger {
    display: block;
    margin-top: 54px;
  }

  .privacy-ledger li,
  .privacy-ledger li + li {
    min-height: 100px;
    padding: 20px 0;
    border-top: 1px solid var(--paper-line);
    border-right: 0;
  }

  .privacy-ledger strong {
    margin-top: 20px;
  }

  .closing {
    min-height: 720px;
  }

  .site-footer,
  .document-footer {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .site-footer nav,
  .document-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-footer p,
  .document-footer p {
    justify-self: start;
  }

  .document-main {
    padding-top: 78px;
    padding-bottom: 100px;
  }

  .document-grid {
    display: block;
    margin-top: 70px;
  }

  .document-index {
    position: static;
    display: none;
  }

  .document-content section,
  .document-content section + section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .document-content section:first-child {
    padding-top: 0;
  }

  .faq-section {
    gap: 52px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 18px;
  }

  .support-note {
    margin-top: 80px;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 18px;
  }

  .site-header .brand img,
  .document-header .brand img {
    width: 17px;
  }

  .site-header nav a:first-child {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

  .member {
    font-size: 12px;
  }

  .list-sample p {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 14px;
  }

  .document-header nav a:first-child {
    display: none;
  }

  .document-title h1 {
    font-size: clamp(52px, 17vw, 72px);
  }

  .support-email {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal],
  .js .reveal-section {
    opacity: 1;
    transform: none;
  }
}

/* Keel-inspired liquid-glass redesign. The existing semantic structure stays intact;
   scale, spacing, and one shared material recipe create the new hierarchy. */
.home {
  color: var(--paper-ink);
}

.site-header {
  top: 16px;
  left: 16px;
  width: calc(100% - 32px);
  min-height: 78px;
  padding: 0 clamp(22px, 3.2vw, 52px);
  color: var(--paper-ink);
}

.site-header .brand img,
.document-header .brand img,
.site-footer .brand img,
.document-footer .brand img,
.closing > img,
.not-found > img {
  filter: brightness(0) saturate(100%);
}

.site-header nav a,
.document-header nav a,
.site-footer nav a,
.document-footer nav a {
  color: var(--secondary);
}

.site-header nav a:hover,
.document-header nav a:hover,
.site-footer nav a:hover,
.document-footer nav a:hover {
  color: var(--paper-ink);
}

.hero {
  height: min(900px, calc(100svh - 32px));
  min-height: 760px;
  margin: 16px;
  border-radius: 30px;
  color: var(--paper-ink);
  background: #dcefff url("/grocertap-water-light.webp") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(241, 249, 255, 0.68), rgba(237, 250, 255, 0.2) 48%, rgba(72, 139, 193, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 54%, rgba(17, 82, 129, 0.14));
  content: "";
}

.hero-inner {
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 0.96fr) minmax(350px, 0.72fr);
  gap: clamp(40px, 7vw, 104px);
  padding-top: 112px;
  padding-bottom: 48px;
}

.hero-copy {
  max-width: 760px;
}

.hero-brand {
  margin: 0;
  font-size: clamp(76px, 9.5vw, 136px);
  line-height: 0.88;
}

.hero h1 {
  max-width: 720px;
  margin-top: 34px;
  font-size: clamp(48px, 5.8vw, 82px);
}

.hero-summary {
  color: #4d6071;
}

.store-button {
  color: var(--paper-ink);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 46px rgba(44, 95, 139, 0.14), inset 0 1px rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px) saturate(125%);
}

.store-button small,
.purchase-note,
.hero-product figcaption {
  color: #617181;
}

.text-link,
.button-link,
.support-email {
  color: var(--paper-ink);
}

.hero-product {
  width: min(100%, 470px);
  height: min(680px, calc(100% - 110px));
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(12px, 1.6vw, 20px);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(125%);
}

.phone-shell {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 34px 76px rgba(23, 68, 105, 0.25), inset 0 1px rgba(255, 255, 255, 0.28);
}

.hero-glow {
  filter: blur(72px);
  opacity: 0.18;
}

.hero-glow-blue {
  background: #d8edff;
}

.hero-glow-teal {
  background: #b7f0eb;
}

.statement {
  color: var(--paper-ink);
}

.statement > p:last-child,
.shared-copy > p:not(.eyebrow),
.walk-copy > p:not(.eyebrow),
.feature-list article > p:last-child {
  color: var(--secondary);
}

.shared-section,
.walk-section,
.features {
  color: var(--paper-ink);
}

.plain-list {
  border-color: var(--line);
}

.plain-list li {
  border-color: var(--line);
}

.household-visual {
  overflow: hidden;
  padding: clamp(34px, 5vw, 72px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(230, 244, 255, 0.48)),
    radial-gradient(circle at 92% 8%, rgba(107, 181, 255, 0.28), transparent 46%);
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(125%);
}

.household-visual::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 52%);
  content: "";
  pointer-events: none;
}

.household-visual > * {
  position: relative;
}

.member {
  color: #526273;
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(44, 95, 139, 0.09), inset 0 1px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(120%);
}

.sync-line {
  background: rgba(23, 25, 30, 0.13);
}

.list-sample {
  color: var(--paper-ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 58px rgba(44, 95, 139, 0.13), inset 0 1px rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(120%);
}

.list-sample p {
  border-color: rgba(23, 25, 30, 0.08);
}

.walk-section {
  max-width: none;
  margin: 16px;
  padding-right: clamp(28px, 6vw, 90px);
  padding-left: clamp(28px, 6vw, 90px);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(244, 250, 255, 0.96), rgba(218, 239, 255, 0.78)),
    url("/grocertap-water-light.webp") center / cover no-repeat;
}

.suggestions-product {
  padding: 14px;
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(125%);
}

.suggestions-product img {
  border-radius: 20px;
}

.detail-note {
  border-color: #397fc2;
}

.section-heading {
  display: block;
  max-width: 900px;
}

.feature-list {
  display: grid;
  margin-top: clamp(62px, 8vw, 108px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  border: 0;
}

.feature-list article,
.feature-list article + article {
  min-height: 270px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--glass-line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(233, 245, 255, 0.5)),
    radial-gradient(circle at 100% 0%, rgba(107, 181, 255, 0.2), transparent 48%);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(125%);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.feature-list article:nth-child(1) {
  grid-column: 1 / span 5;
}

.feature-list article:nth-child(2) {
  grid-column: 6 / span 7;
}

.feature-list article:nth-child(3) {
  grid-column: 3 / span 8;
}

.feature-list h3 {
  margin-top: 54px;
}

.feature-number {
  color: #397fc2;
}

.privacy-section {
  position: relative;
  overflow: hidden;
  color: var(--paper-ink);
  background:
    linear-gradient(135deg, rgba(247, 252, 255, 0.88), rgba(214, 238, 255, 0.72)),
    url("/grocertap-water-light.webp") center / cover no-repeat;
  box-shadow: 0 30px 90px rgba(44, 95, 139, 0.13), inset 0 1px rgba(255, 255, 255, 0.92);
}

.privacy-copy p {
  color: #526273;
}

.privacy-ledger {
  gap: 14px;
  border: 0;
}

.privacy-ledger li,
.privacy-ledger li + li {
  min-height: 142px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 16px 42px rgba(44, 95, 139, 0.09), inset 0 1px rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(120%);
}

.privacy-ledger span {
  color: #5c6b7a;
}

.closing {
  position: relative;
  min-height: min(720px, calc(100svh - 32px));
  margin: 16px;
  overflow: hidden;
  border-radius: 30px;
  color: var(--paper-ink);
  background:
    linear-gradient(180deg, rgba(240, 250, 255, 0.4), rgba(185, 225, 248, 0.28)),
    url("/grocertap-water-light.webp") center / cover no-repeat;
}

.closing::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.5), transparent 46%);
  content: "";
  pointer-events: none;
}

.closing > * {
  position: relative;
}

.closing h2 {
  max-width: 930px;
}

.site-footer,
.document-footer {
  color: var(--paper-ink);
  border-color: var(--line);
}

.site-footer p,
.document-footer p {
  color: var(--tertiary);
}

/* High-contrast paper glass for long-form public documents. */
.document-page {
  color: var(--paper-ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(107, 181, 255, 0.15), transparent 28rem),
    radial-gradient(circle at 88% 34%, rgba(94, 200, 194, 0.08), transparent 30rem),
    var(--paper);
}

.document-header {
  position: relative;
  color: var(--paper-ink);
  background: rgba(255, 255, 255, 0.64);
  border-bottom: 1px solid rgba(23, 25, 30, 0.08);
  backdrop-filter: blur(22px) saturate(120%);
}

.document-title h1 {
  margin-top: 0;
}

.document-index > p {
  color: #397fc2;
}

.document-content {
  display: grid;
  gap: 18px;
}

.document-content section,
.document-content section + section {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 58px rgba(44, 95, 139, 0.08), inset 0 1px rgba(255, 255, 255, 0.94);
}

.document-content p,
.document-content li {
  color: #44515f;
}

.document-footer {
  background: rgba(255, 255, 255, 0.62);
}

.faq-list {
  display: grid;
  gap: 12px;
  border: 0;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 46px rgba(44, 95, 139, 0.08), inset 0 1px rgba(255, 255, 255, 0.92);
}

.faq-list summary {
  padding-right: 58px;
  padding-left: 24px;
}

.faq-list details > div {
  padding-right: 42px;
  padding-left: 24px;
}

.support-note {
  color: var(--paper-ink);
  background:
    linear-gradient(135deg, rgba(246, 252, 255, 0.78), rgba(210, 237, 255, 0.7)),
    url("/grocertap-water-light.webp") center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(44, 95, 139, 0.12), inset 0 1px rgba(255, 255, 255, 0.9);
}

.support-note p {
  color: #526273;
}

.not-found-page {
  color: var(--paper-ink);
  background: #dcefff url("/grocertap-water-light.webp") center / cover no-repeat;
}

.not-found > p {
  color: #526273 !important;
}

@media (hover: hover) and (pointer: fine) {
  .feature-list article:hover,
  .household-visual:hover,
  .suggestions-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 36px 90px rgba(44, 95, 139, 0.18), inset 0 1px rgba(255, 255, 255, 0.94);
  }
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.64fr);
  }

  .feature-list article:nth-child(1) {
    grid-column: 1 / span 6;
  }

  .feature-list article:nth-child(2) {
    grid-column: 7 / span 6;
  }

  .feature-list article:nth-child(3) {
    grid-column: 2 / span 10;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    padding: 0 14px;
  }

  .hero {
    height: min(900px, calc(100svh - 16px));
    min-height: 780px;
    margin: 8px;
    border-radius: 22px;
  }

  .hero-inner {
    min-height: 0;
    padding: 110px 22px 28px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-brand {
    font-size: clamp(66px, 20vw, 92px);
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-summary {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-product {
    width: min(94%, 410px);
    height: 520px;
    margin-top: 50px;
    padding: 12px;
    border-radius: 24px;
  }

  .walk-section,
  .privacy-section,
  .closing {
    margin: 8px;
    border-radius: 22px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list article,
  .feature-list article + article,
  .feature-list article:nth-child(1),
  .feature-list article:nth-child(2),
  .feature-list article:nth-child(3) {
    min-height: 0;
    padding: 28px;
    grid-column: 1;
    border: 1px solid var(--glass-line);
    border-radius: 20px;
  }

  .feature-list h3 {
    margin-top: 34px;
  }

  .privacy-ledger li,
  .privacy-ledger li + li {
    border: 1px solid rgba(255, 255, 255, 0.74);
  }

  .closing {
    min-height: 630px;
  }

  .document-content section,
  .document-content section + section {
    padding: 24px;
    border-radius: 18px;
  }

  .faq-list summary {
    padding-left: 20px;
  }

  .faq-list details > div {
    padding-left: 20px;
  }
}
