/* ============================================================
   Portal — landing styles
   Aesthetic: editorial / organic / deep-forest-green
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img, svg, picture, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--bright); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--green); color: var(--cream); }

/* ---------- Tokens ---------- */
:root {
  --green:        #0A3D2E;
  --green-deep:   #052619;
  --green-mid:    #0F5A42;
  --bright:       #2EB67D;
  --bright-deep:  #1F8B5E;
  --orange:       #E07A3F;
  --gold:         #E9C46A;

  --cream:        #F4EFE3;
  --cream-warm:   #EAE3D2;
  --bone:         #FBFAF6;
  --paper:        #FFFFFF;

  --ink:          #0E1411;
  --ink-soft:     #2B342E;
  --muted:        #5A655E;
  --hairline:     rgba(10,61,46,0.14);
  --hairline-on-dark: rgba(244,239,227,0.14);

  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-soft:   0 1px 2px rgba(10,15,12,0.04), 0 8px 24px -12px rgba(10,15,12,0.18);
  --shadow-medium: 0 30px 60px -30px rgba(10,15,12,0.35);

  --container: 1240px;
  --gutter: clamp(1rem, 2.4vw, 2rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
html { background: var(--cream); }
body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(at 80% -10%, rgba(46,182,125,0.08), transparent 50%),
    radial-gradient(at -10% 60%, rgba(10,61,46,0.06), transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 999;
  background: var(--green); color: var(--cream); padding: .6rem 1rem;
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -0.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn--ghost {
  border: 1px solid var(--hairline);
  color: var(--ink);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--green); color: var(--cream); border-color: var(--green); }
.btn--solid {
  background: var(--green);
  color: var(--cream);
}
.btn--solid:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn--bright {
  background: var(--bright);
  color: var(--green-deep);
}
.btn--bright:hover { background: #4dc790; transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(46,182,125,0.6); }
.btn--ghost-light {
  border: 1px solid var(--hairline-on-dark);
  color: var(--cream);
}
.btn--ghost-light:hover { background: var(--cream); color: var(--green-deep); border-color: var(--cream); }

/* ---------- Store buttons ---------- */
.store-btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .8rem;
  padding: .8rem 1.4rem;
  border-radius: 16px;
  background: var(--ink);
  color: var(--cream);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 56px;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); }
.store-btn span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn small { font-size: .68rem; opacity: .7; letter-spacing: .04em; text-transform: uppercase; }
.store-btn strong { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
.store-btn__tag {
  position: absolute;
  top: -10px; right: 12px;
  background: var(--bright);
  color: var(--green-deep);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  display: inline-block !important;
  flex-direction: row !important;
}
.store-btn--on-dark {
  background: var(--cream);
  color: var(--green-deep);
  border-color: rgba(10,61,46,0.1);
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  padding: .4rem .8rem;
  background: rgba(10,61,46,0.06);
  border-radius: 999px;
  border: 1px solid var(--hairline);
}
.badge--light { background: var(--bone); color: var(--green-deep); }
.badge--on-dark {
  background: rgba(244,239,227,0.08);
  border-color: var(--hairline-on-dark);
  color: var(--cream);
}

/* ---------- Section heads ---------- */
.section-head { display: flex; flex-direction: column; gap: 1.2rem; max-width: 760px; margin-bottom: 4rem; }
.section-head__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}
.section-head__title em { font-style: italic; color: var(--green); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem var(--gutter);
  transition: backdrop-filter .3s var(--ease), background .3s var(--ease), border-bottom-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(244,239,227,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--hairline);
}
.nav__shell {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
}
.nav__brand { display: inline-flex; align-items: baseline; gap: .55rem; font-weight: 700; }
.nav__logo { width: 36px; height: 36px; border-radius: 9px; align-self: center; }
.nav__wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}
.nav__dot { width: 4px; height: 4px; background: var(--bright); border-radius: 50%; align-self: center; }
.nav__sub {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.nav__links { display: flex; gap: 2rem; justify-self: center; }
.nav__links a {
  font-size: .92rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--green); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { font-size: .9rem; padding: .65rem 1.1rem; }
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0 10px;
}
.nav__burger span {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__panel {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--cream);
  padding: 1.5rem var(--gutter) 2rem;
  flex-direction: column; gap: .25rem;
  border-top: 1px solid var(--hairline);
  box-shadow: var(--shadow-soft);
}
.nav__panel a { padding: .85rem 0; font-size: 1.1rem; color: var(--ink); }
.nav__panel a.btn { margin-top: 1rem; padding: 1rem 1.4rem; justify-content: center; }
.nav__panel.is-open { display: flex; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter) 0;
  overflow: hidden;
}
.hero__grain {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .025;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: clamp(560px, 80vh, 800px);
  padding-bottom: 5rem;
}
.hero__column { position: relative; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--hairline);
  padding: .45rem .85rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bright);
  box-shadow: 0 0 0 4px rgba(46,182,125,0.18);
  animation: pulse 2s var(--ease) infinite;
  flex-shrink: 0;
}
.dot--bright { background: var(--bright); box-shadow: 0 0 0 3px rgba(46,182,125,0.18); }
.dot--soft   { background: var(--muted); opacity: .5; box-shadow: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46,182,125,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(46,182,125,0.05); }
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(2.6rem, 7.5vw, 6.4rem);
  line-height: .95;
  letter-spacing: -0.035em;
  color: var(--green-deep);
  margin-bottom: 2rem;
}
.hero__title .line { display: block; }
.hero__title em { font-style: italic; color: var(--green); }

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero__meta {
  display: flex; align-items: stretch; gap: 1.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.hero__meta-item { display: flex; flex-direction: column; gap: .25rem; }
.hero__meta-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__meta-cap { font-size: .82rem; color: var(--muted); max-width: 14ch; }
.hero__meta-divider { width: 1px; background: var(--hairline); }

/* ---------- Phone mockup ---------- */
.hero__column--phone {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 600px;
}
.phone {
  position: relative;
  width: clamp(280px, 28vw, 360px);
  aspect-ratio: 1 / 2.05;
  perspective: 1500px;
}
.phone__frame {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1A1F1C 0%, #0F1411 100%);
  border-radius: clamp(38px, 4vw, 52px);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 0 0 2px #050706,
    0 50px 100px -20px rgba(0,0,0,0.45),
    0 30px 60px -30px rgba(10,61,46,0.6);
  transform: rotateY(-6deg) rotateX(2deg);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotateY(-6deg) rotateX(2deg) translateY(0); }
  50%      { transform: rotateY(-5deg) rotateX(1deg) translateY(-12px); }
}
.phone__notch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #050706;
  border-radius: 999px;
  z-index: 5;
}
.phone__screen {
  position: relative;
  width: 100%; height: 100%;
  background: var(--cream);
  border-radius: clamp(28px, 3vw, 42px);
  overflow: hidden;
  display: flex; flex-direction: column;
  font-size: 11px;
  color: var(--ink);
}
.phone__statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px 6px;
  font-size: 11px; font-weight: 600;
  color: var(--ink);
}
.phone__icons { display: flex; gap: 6px; align-items: center; color: var(--ink); }
.phone__appbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 18px 10px;
}
.phone__brand { display: flex; align-items: center; gap: 6px; }
.phone__brand-mark {
  width: 26px; height: 26px;
  background: var(--green);
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}
.phone__brand-text {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.phone__bell {
  width: 30px; height: 30px;
  background: rgba(10,61,46,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.phone__address {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 18px 8px;
  font-size: 11px;
  color: var(--ink-soft);
}
.phone__address svg:first-child { color: var(--bright); }
.phone__search {
  display: flex; align-items: center; gap: 8px;
  margin: 6px 18px;
  padding: 8px 12px;
  background: var(--bone);
  border-radius: 12px;
  color: var(--muted);
  font-size: 11px;
}
.phone__stories {
  display: flex; gap: 8px;
  padding: 12px 18px;
  overflow: hidden;
}
.phone__story {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c, #2EB67D);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--c);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}
.phone__sectionlabel {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--green-deep);
  padding: 8px 18px 6px;
  letter-spacing: -0.01em;
}
.phone__sectionhead {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-right: 18px;
}
.phone__sectionhead .phone__sectionlabel { padding-bottom: 4px; }
.phone__sectionall {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}
.phone__cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 4px 18px 14px;
}
.phone__cat {
  background: var(--bg);
  color: var(--ink);
  border-radius: 12px;
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 10px;
  font-weight: 600;
  min-height: 60px;
  position: relative;
  overflow: hidden;
}
.phone__cat-emoji {
  font-size: 18px;
  line-height: 1;
  align-self: flex-start;
}
.phone__cat span:last-child { color: var(--ink); margin-top: auto; }
.phone__store {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 18px;
}
.phone__store-img {
  width: 38px; height: 38px;
  background: var(--c);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.phone__store-info { flex: 1; min-width: 0; }
.phone__store-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phone__store-meta {
  display: flex; gap: 4px;
  font-size: 9px;
  color: var(--muted);
}
.phone__star { color: var(--orange); font-weight: 600; }
.phone__tabbar {
  margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
  padding: 10px 18px 24px;
  border-top: 1px solid rgba(10,61,46,0.08);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  font-size: 18px;
  color: var(--muted);
}
.phone__tabbar .active { color: var(--green); }
.phone__tabbar-cart {
  position: relative;
  background: var(--green);
  color: var(--cream);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.phone__tabbar-cart i {
  position: absolute;
  top: -3px; right: -3px;
  background: var(--bright);
  color: var(--green-deep);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  width: 14px; height: 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--cream);
}

.phone__shadow {
  position: absolute;
  bottom: -50px;
  left: 10%; right: 10%;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(10,15,12,0.4) 0%, transparent 70%);
  filter: blur(8px);
  z-index: -1;
}

/* Floating chips around phone */
.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem 1rem;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--hairline);
  font-size: .85rem;
  white-space: nowrap;
  animation: floatChip 5s ease-in-out infinite;
}
.float-chip strong { display: block; font-weight: 600; color: var(--green-deep); font-size: .9rem; }
.float-chip small { font-size: .75rem; color: var(--muted); }
.float-chip--1 {
  top: 14%; left: -18%;
  animation-delay: 0s;
}
.float-chip--2 {
  bottom: 22%; right: -22%;
  animation-delay: 1.5s;
}
.float-chip--2::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--bright);
  border-radius: 50%;
  margin-right: .4rem;
  box-shadow: 0 0 0 4px rgba(46,182,125,0.25);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Hero strip */
.hero__strip {
  margin: 0 calc(var(--gutter) * -1);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 1.4rem 0;
  overflow: hidden;
  background: rgba(10,61,46,0.03);
  position: relative;
}
.hero__strip-track {
  display: flex; gap: 2rem;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  color: var(--green);
}
.hero__strip-track span:not(:nth-child(2n)) { color: var(--green-deep); }
.hero__strip-track span:nth-child(2n) { color: var(--bright); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- ABOUT ---------- */
.about {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about__label { grid-column: 1 / -1; }
.about__title {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--green-deep);
}
.about__title em { font-style: italic; color: var(--green); }
.about__copy {
  display: flex; flex-direction: column; gap: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-top: 1rem;
}
.about__visual {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin-top: -8rem;
  margin-right: -4rem;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { display: none; }
}

/* ---------- HOW IT WORKS ---------- */
.how {
  background: var(--bone);
  padding: clamp(5rem, 10vw, 8rem) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.how__step {
  position: relative;
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 1rem;
  min-height: 320px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.how__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.how__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--bright);
}
.how__num span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.how__step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  color: var(--green-deep);
}
.how__step p { color: var(--ink-soft); line-height: 1.55; }
.how__icon {
  margin-top: auto;
  align-self: flex-end;
  color: var(--green);
  opacity: .35;
}
/* Accent step variant — keep AFTER generic .how__step rules so cascade wins */
.how__step--accent {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
  margin-top: 2rem;
}
.how__step--accent h3 { color: var(--cream); }
.how__step--accent p { color: rgba(244,239,227,0.85); }
.how__step--accent .how__icon { color: var(--bright); opacity: .9; }

/* ---------- BENTO FEATURES ---------- */
.features {
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 1.4rem;
}
.bento__cell {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.bento__cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.bento__topline {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.bento__cell h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--green-deep);
}
.bento__cell p { font-size: .95rem; color: var(--ink-soft); line-height: 1.55; }

/* — big card with bag illustration — */
.bento__cell--big {
  grid-column: span 4;
  grid-row: span 2;
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
.bento__cell--big h3 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.bento__diagram {
  margin-top: auto;
  display: flex; gap: 1.2rem;
  align-items: flex-end;
  padding-top: 1.5rem;
}
.bento__bag {
  flex: 1;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 1rem .8rem .8rem;
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  min-height: 110px;
  transition: transform .3s var(--ease);
}
.bento__bag:hover { transform: translateY(-3px); }
.bento__bag-handle {
  position: absolute;
  top: -10px;
  width: 30px; height: 14px;
  border: 2px solid var(--green);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
}
.bento__bag span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 500;
}
.bento__bag small { font-size: .7rem; color: var(--muted); text-align: center; }
.bento__bag--1 { background: linear-gradient(180deg, var(--paper), #FCE7B3 200%); }
.bento__bag--2 { background: linear-gradient(180deg, var(--paper), #DCE9D5 200%); }
.bento__bag--3 { background: linear-gradient(180deg, var(--paper), #DCD2F0 200%); }

/* — number card — */
.bento__cell--num {
  grid-column: span 2;
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}
.bento__cell--num .bento__topline { color: rgba(244,239,227,0.6); }
.bento__cell--num p,
.bento__cell--num h3 { color: var(--cream); }
.bento__bignum {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.06em;
  display: flex; align-items: baseline; gap: .3rem;
  margin-top: 1rem;
}
.bento__bignum span { font-size: clamp(4.5rem, 8vw, 7rem); line-height: 1; color: var(--cream); }
.bento__bignum em {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--bright);
}
.bento__caption { color: rgba(244,239,227,0.75) !important; font-size: .9rem; }

/* — accent card — */
.bento__cell--accent {
  grid-column: span 2;
  background: var(--cream-warm);
  border-color: rgba(10,61,46,0.18);
}

/* — track card — */
.bento__cell--track {
  grid-column: span 4;
}
.bento__track {
  margin-top: 1.5rem;
  position: relative;
  display: flex; justify-content: space-between;
  padding: 1.5rem 0 .5rem;
}
.bento__track-line {
  position: absolute;
  top: calc(1.5rem + 8px);  /* align with dot centers: padding-top + half dot */
  left: 8px;                 /* start at first dot center */
  right: 8px;                /* end at last dot center */
  height: 3px;
  background: linear-gradient(to right,
    var(--bright)   0%,
    var(--bright)   66.66%,
    var(--hairline) 66.66%,
    var(--hairline) 100%);
  border-radius: 2px;
  z-index: 0;
}
.bento__track-step {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  flex: 0 0 auto;
}
.bento__track-step::before {
  content: "";
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--hairline);
  margin-bottom: .65rem;
  box-sizing: border-box;
  transition: all .3s var(--ease);
}
.bento__track-step--done::before {
  background: var(--bright);
  border-color: var(--bright);
}
.bento__track-step--active::before {
  background: var(--paper);
  border-color: var(--bright);
  border-width: 3px;
  box-shadow: 0 0 0 6px rgba(46,182,125,0.18);
}
.bento__track-step--done { color: var(--green-deep); }
.bento__track-step--active { color: var(--green); font-weight: 600; }

/* — push card — */
.bento__cell--push {
  grid-column: span 3;
}
.bento__push { margin-top: auto; padding-top: 1rem; }
.bento__push-card {
  display: flex; flex-direction: column; gap: .2rem;
  background: var(--ink);
  color: var(--cream);
  padding: .9rem 1.1rem;
  border-radius: 14px;
  font-size: .9rem;
  width: fit-content;
  max-width: 100%;
  position: relative;
  animation: pushFloat 4s ease-in-out infinite;
}
.bento__push-card::before {
  content: "P";
  position: absolute;
  left: -12px; top: -12px;
  width: 28px; height: 28px;
  background: var(--green);
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.bento__push-card strong { color: var(--cream); font-weight: 600; }
.bento__push-card span { color: rgba(244,239,227,0.6); font-size: .76rem; }
@keyframes pushFloat {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(8px); }
}

/* — stories card — */
.bento__cell--stories {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--paper) 0%, #FAF1E1 100%);
}
.bento__stories {
  margin-top: auto;
  display: flex; gap: .8rem;
}
.bento__story {
  width: 60px; height: 76px;
  background: linear-gradient(135deg, var(--c, var(--bright)), color-mix(in srgb, var(--c, var(--bright)) 70%, black));
  border-radius: 12px;
  position: relative;
  flex-shrink: 0;
}
.bento__story::before {
  content: "";
  position: absolute;
  top: 6px; left: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid white;
}

@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__cell--big { grid-column: span 4; }
  .bento__cell--num, .bento__cell--accent { grid-column: span 2; }
  .bento__cell--track { grid-column: span 4; }
  .bento__cell--push, .bento__cell--stories { grid-column: span 2; }
}
@media (max-width: 700px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell { grid-column: span 1 !important; }
  .bento__diagram { flex-direction: row; gap: .6rem; }
  .bento__bag { padding: .8rem .5rem .6rem; }
}

/* ---------- SCREENS GALLERY ---------- */
.screens {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--bone);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.screens__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1.5rem;
  margin-bottom: 3rem;
}
.screens__title {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin-top: 1rem;
}
.screens__title em { font-style: italic; color: var(--green); }

.screens__nav { display: flex; gap: .6rem; }
.screens__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--green-deep);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.screens__btn:hover {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
  transform: translateY(-1px);
}
.screens__btn:active { transform: translateY(0); }
.screens__btn:disabled { opacity: .35; cursor: default; transform: none; }
.screens__btn:disabled:hover {
  background: var(--paper);
  color: var(--green-deep);
  border-color: var(--hairline);
}

.screens__rail {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  outline: none;
}
.screens__rail::-webkit-scrollbar { display: none; }
.screens__rail::before, .screens__rail::after {
  content: "";
  position: sticky;
  top: 0;
  width: clamp(1rem, 4vw, 4rem);
  height: 1px;
  pointer-events: none;
  z-index: 2;
}

.screens__track {
  display: flex;
  gap: clamp(1rem, 1.6vw, 1.8rem);
  padding: 1rem clamp(1rem, 4vw, 5rem);
  width: max-content;
}

.screens__item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: clamp(220px, 24vw, 320px);
  aspect-ratio: 1284 / 2778;
  border-radius: clamp(20px, 1.6vw, 28px);
  overflow: hidden;
  background: linear-gradient(135deg, #0F5A42, #0A3D2E);
  box-shadow:
    0 0 0 1px rgba(10,15,12,0.04),
    0 30px 60px -30px rgba(10,61,46,0.5),
    0 10px 20px -10px rgba(10,15,12,0.15);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  margin: 0;
  position: relative;
}
.screens__item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(10,15,12,0.04),
    0 50px 80px -30px rgba(10,61,46,0.6),
    0 15px 30px -10px rgba(10,15,12,0.2);
}
.screens__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tilt effect on alternating items for editorial feel */
.screens__item:nth-child(2n) { transform: translateY(20px); }
.screens__item:nth-child(2n):hover { transform: translateY(14px); }
@media (max-width: 700px) {
  .screens__item:nth-child(2n) { transform: none; }
  .screens__item:nth-child(2n):hover { transform: translateY(-4px); }
}

/* Hide nav buttons on touch devices, the swipe is enough */
@media (hover: none) and (pointer: coarse) {
  .screens__nav { display: none; }
}

/* ---------- STATS ---------- */
.stats {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats__item {
  padding: 1rem 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
  border-right: 1px solid var(--hairline);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--green);
}
.stats__cap {
  font-size: .9rem;
  color: var(--muted);
  max-width: 24ch;
}

@media (max-width: 800px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item { border-bottom: 1px solid var(--hairline); padding: 1.5rem; }
  .stats__item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ---------- MERCHANTS ---------- */
.merchants {
  position: relative;
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}
.merchants__grain {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .04;
  pointer-events: none;
}
.merchants::before {
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46,182,125,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.merchants__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.merchants__title {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 1.5rem 0;
}
.merchants__title em { font-style: italic; color: var(--bright); }
.merchants__lede {
  font-size: 1.1rem;
  color: rgba(244,239,227,0.78);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.merchants__benefits {
  display: flex; flex-direction: column; gap: .9rem;
  margin-bottom: 2.5rem;
}
.merchants__benefits li {
  display: flex; align-items: flex-start; gap: .8rem;
  font-size: 1rem;
  color: rgba(244,239,227,0.92);
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(244,239,227,0.08);
}
.merchants__benefits li:last-child { border-bottom: none; }
.merchants__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: var(--bright);
  color: var(--green-deep);
  border-radius: 50%;
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.merchants__cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
}

/* Merchants panel */
.merchants__panel { perspective: 1500px; }
.merchants__card {
  background: rgba(244,239,227,0.05);
  border: 1px solid rgba(244,239,227,0.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column; gap: 1.4rem;
  transform: rotateY(-3deg);
  box-shadow:
    0 30px 60px -30px rgba(0,0,0,0.5),
    0 0 0 1px rgba(46,182,125,0.15) inset;
}
.merchants__card-top {
  display: flex; align-items: center; gap: .55rem;
  font-size: .85rem;
  color: rgba(244,239,227,0.65);
  letter-spacing: .04em;
}
.merchants__card-dot {
  width: 8px; height: 8px;
  background: var(--bright);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(46,182,125,0.2);
}
.merchants__card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(244,239,227,0.08);
  border-bottom: 1px solid rgba(244,239,227,0.08);
}
.merchants__card-row > div { display: flex; flex-direction: column; gap: .25rem; }
.merchants__card-row small {
  font-size: .72rem;
  color: rgba(244,239,227,0.55);
  letter-spacing: .02em;
}
.merchants__card-row strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}
.merchants__chart {
  width: 100%;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(244,239,227,0.03);
}
.merchants__card-list {
  display: flex; flex-direction: column;
}
.merchants__card-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .8rem; align-items: center;
  padding: .8rem 0;
  font-size: .85rem;
  color: rgba(244,239,227,0.85);
  border-bottom: 1px solid rgba(244,239,227,0.06);
}
.merchants__card-item:last-child { border-bottom: none; }
.merchants__card-status { color: var(--bright); }
.merchants__card-status--orange { color: var(--orange); }
.merchants__card-status--blue { color: #6BA4E8; }
.merchants__card-item small { color: rgba(244,239,227,0.5); font-size: .76rem; }

@media (max-width: 900px) {
  .merchants__inner { grid-template-columns: 1fr; }
  .merchants__card { transform: none; }
}

/* ---------- COVERAGE ---------- */
.coverage {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bone);
}
.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.coverage__title {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  margin: 1.5rem 0;
}
.coverage__title em { font-style: italic; color: var(--green); }
.coverage__copy p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2rem;
}
.coverage__list {
  display: flex; flex-direction: column; gap: .8rem;
}
.coverage__list li {
  display: flex; align-items: center; gap: .8rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--green-deep);
  padding: .7rem 0;
  border-bottom: 1px solid var(--hairline);
}
.coverage__list small {
  margin-left: auto;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.coverage__map {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 2rem;
  aspect-ratio: 5/4.2;
}

@media (max-width: 900px) {
  .coverage__grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.faq__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.faq__item {
  border-bottom: 1px solid var(--hairline);
  transition: background .3s var(--ease);
}
.faq__item:hover { background: rgba(10,61,46,0.02); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  letter-spacing: -0.01em;
  color: var(--green-deep);
  cursor: pointer;
  list-style: none;
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--green); }
.faq__plus {
  width: 28px; height: 28px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--green);
  border-radius: 1px;
  transition: transform .3s var(--ease);
}
.faq__plus::before {
  width: 14px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq__plus::after {
  width: 2px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item p {
  padding: 0 0 1.5rem;
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.faq__item a { color: var(--green); border-bottom: 1px solid currentColor; }
.faq__item a:hover { color: var(--bright); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: var(--green);
  color: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(5rem, 10vw, 9rem);
  overflow: hidden;
  text-align: center;
}
.cta__grain {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .04;
  pointer-events: none;
}
.cta::before, .cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,182,125,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta::before { top: -200px; left: -200px; width: 600px; height: 600px; }
.cta::after { bottom: -300px; right: -200px; width: 700px; height: 700px; }
.cta__inner { position: relative; z-index: 1; max-width: 780px; }
.cta__eyebrow {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244,239,227,0.7);
  margin-bottom: 2rem;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.cta__title em { font-style: italic; color: var(--bright); }
.cta__lede {
  font-size: 1.15rem;
  color: rgba(244,239,227,0.78);
  max-width: 520px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.55;
}
.cta__form {
  display: flex; gap: .6rem; flex-wrap: wrap;
  justify-content: center;
  background: rgba(244,239,227,0.06);
  border: 1px solid var(--hairline-on-dark);
  border-radius: 999px;
  padding: .4rem .4rem .4rem 1.4rem;
  max-width: 460px;
  margin: 0 auto 2.5rem;
}
.cta__form input {
  flex: 1; min-width: 180px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-size: 1rem;
}
.cta__form input::placeholder { color: rgba(244,239,227,0.5); }
.cta__stores {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
}

/* ---------- FOOTER ---------- */
.foot {
  background: var(--cream-warm);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  position: relative;
  border-top: 1px solid var(--hairline);
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--hairline);
}
.foot__brand { display: flex; flex-direction: column; gap: 1.4rem; }
.foot__logo {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.foot__logo img { width: 40px; height: 40px; border-radius: 10px; }
.foot__logo-sub {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
  margin-left: .25rem;
}
.foot__tagline {
  font-size: .98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 280px;
}
.foot__copy {
  font-size: .82rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 1rem;
}
.foot__col h3 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 1.4rem;
}
.foot__col ul { display: flex; flex-direction: column; gap: .9rem; }
.foot__col a {
  color: var(--ink-soft);
  font-size: .95rem;
  transition: color .2s var(--ease);
}
.foot__col a:hover { color: var(--green); }
.foot__contacts li {
  display: flex; flex-direction: column; gap: .15rem;
  margin-bottom: 1rem;
}
.foot__label {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot__contacts a {
  font-size: 1.1rem;
  color: var(--green-deep);
  font-weight: 500;
}
.foot__legal {
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.foot__legal-list {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
}
.foot__legal-list a {
  font-size: .82rem;
  color: var(--muted);
  transition: color .2s var(--ease);
}
.foot__legal-list a:hover { color: var(--green); }
.foot__legal-meta {
  font-size: .82rem;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .foot__grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: 1 / -1; }
}

/* ---- Реквизиты (collapsed details) ---- */
.foot__requisites { margin-top: 1.5rem; }
.requisites {
  border-top: 1px solid var(--hairline);
  padding-top: 1.5rem;
}
.requisites > summary {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-deep);
  padding: .5rem 0;
  transition: color .25s var(--ease);
}
.requisites > summary::-webkit-details-marker { display: none; }
.requisites > summary:hover { color: var(--green); }
.requisites > summary .faq__plus { width: 24px; height: 24px; }
.requisites[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.requisites__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  padding-bottom: 1rem;
}
.requisites__grid dl {
  display: grid;
  grid-template-columns: minmax(150px, 200px) 1fr;
  gap: .9rem 1.5rem;
  align-items: start;
}
.requisites__grid dt {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-top: .15rem;
}
.requisites__grid dd {
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.55;
}
.requisites__grid dd span {
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
}
.requisites__grid dd a {
  color: var(--green);
  border-bottom: 1px solid currentColor;
}
.requisites__grid dd a:hover { color: var(--bright); }
.requisites__grid strong {
  font-weight: 600;
  color: var(--green-deep);
  display: inline-block;
  min-width: 130px;
}
.requisites__bank {
  grid-column: 1 / -1;
  background: var(--bone);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  border: 1px solid var(--hairline);
}
.requisites__bank dt { padding-top: .5rem; }
.requisites__bank dd {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: .88rem;
  letter-spacing: 0;
}
.requisites__bank dd strong { font-family: var(--sans); font-size: .82rem; }

@media (max-width: 800px) {
  .requisites__grid { grid-template-columns: 1fr; gap: 2rem; }
  .requisites__grid dl { grid-template-columns: 1fr; gap: .3rem; }
  .requisites__grid dt { padding-top: 0; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 540px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  display: flex; gap: 1rem; align-items: center;
  font-size: .9rem;
  z-index: 200;
  box-shadow: var(--shadow-medium);
  animation: cookieSlide .5s var(--ease);
}
.cookie p { flex: 1; }
@keyframes cookieSlide {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .phone__frame, .float-chip, .hero__strip-track, .merchants__chart svg path { animation: none !important; }
}

/* ---------- RESPONSIVE — main breakpoints ---------- */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 4rem; padding-bottom: 3rem; }
  .hero__column--phone { min-height: 500px; margin: 0 auto; }
  .float-chip--1 { left: -10%; }
  .float-chip--2 { right: -10%; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__shell { grid-template-columns: 1fr auto; }
}
@media (max-width: 700px) {
  .how__steps { grid-template-columns: 1fr; }
  .how__step--accent { margin-top: 0; }
  .float-chip { font-size: .75rem; padding: .6rem .8rem; }
  .float-chip--1 { left: -5%; top: 8%; }
  .float-chip--2 { right: -5%; bottom: 12%; }
  .hero__title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .cta__form { flex-direction: column; padding: .4rem; align-items: stretch; }
  .cta__form input { padding: .6rem 1rem; min-width: 0; text-align: center; }
  .foot__legal { flex-direction: column; align-items: flex-start; }
}
