/* Home Concierge — ezhouse.app
   App-first, mobile-first. Brand tokens match the iOS app. */

:root {
  --forest: #28735a;
  --forest-2: #1f6650;
  --forest-deep: #0f3d2e;
  --mint: #8fe6c4;
  --gold: #d8b36a;
  --gold-2: #cdaa60;
  --sand: #f7f4ee;
  --sand-2: #efe9df;
  --card: #ffffff;
  --ink: #16130f;
  --ink-2: #2c322f;
  --muted: #6c736f;
  --hairline: #e7e3db;
  --hairline-2: #ece8e0;

  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 13px;
  --pad: clamp(18px, 5vw, 40px);
  --maxw: 1160px;
  --shadow-sm: 0 4px 16px rgba(20,20,20,.05);
  --shadow-md: 0 16px 40px rgba(15,61,46,.10);
  --shadow-lg: 0 30px 70px rgba(15,61,46,.16);

  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .display { font-family: var(--display); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; }
::selection { background: var(--gold); color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.eyebrow {
  display: inline-block; font-family: var(--sans);
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--forest);
}
.grad {
  background: linear-gradient(100deg, var(--gold) 0%, #efd39a 55%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  border-radius: 999px; padding: .95em 1.5em; cursor: pointer;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .14s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-sm { padding: .62em 1.15em; font-size: .93rem; }
.btn-primary { background: var(--forest); color: #fff; box-shadow: 0 10px 26px rgba(40,115,90,.28); }
.btn-primary:hover { background: var(--forest-deep); box-shadow: 0 14px 32px rgba(40,115,90,.34); }
.btn-ghost { background: #fff; border-color: var(--hairline); color: var(--ink); }
.btn-ghost:hover { border-color: var(--forest); color: var(--forest); }
.btn-block { width: 100%; }

/* App-store style buttons */
.store-row { display: flex; flex-wrap: wrap; gap: 12px; }
.store-btn {
  display: inline-flex; align-items: center; gap: .7em;
  background: var(--ink); color: #fff; border-radius: 15px;
  padding: .7em 1.15em; min-width: 168px;
  border: 1.5px solid var(--ink);
  transition: transform .14s ease, box-shadow .2s ease, background .2s;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,0,0,.24); }
.store-btn:active { transform: translateY(0); }
.store-btn svg { width: 26px; height: 26px; flex: 0 0 auto; }
.store-btn .sb-txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn .sb-txt small { font-size: .66rem; opacity: .8; font-weight: 500; letter-spacing: .02em; }
.store-btn .sb-txt b { font-family: var(--display); font-size: 1.12rem; font-weight: 600; letter-spacing: -.01em; }
.store-btn.ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); color: #fff; box-shadow: none; backdrop-filter: blur(8px); }
.store-btn.ghost:hover { background: rgba(255,255,255,.16); }
.store-btn.on-light { }
.store-btn.on-light.ghost { background: #fff; color: var(--ink); border-color: var(--hairline); }
.store-btn.on-light.ghost:hover { border-color: var(--forest); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,244,238,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.hdr.scrolled { border-bottom-color: var(--hairline); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: center; gap: .55em; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; }
.brand svg { width: 27px; height: 27px; }
.nav-links { display: none; }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-cta .btn-ghost { display: none; }
.burger { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 9px; margin-right: -9px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.hdr.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr.menu-open .burger span:nth-child(2) { opacity: 0; }
.hdr.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 62px 0 auto 0; z-index: 55;
  background: var(--sand); border-bottom: 1px solid var(--hairline);
  padding: 12px var(--pad) 22px; display: grid; gap: 4px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
  box-shadow: var(--shadow-md);
}
.hdr.menu-open .mobile-menu { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { padding: 13px 6px; font-size: 1.06rem; font-weight: 500; border-bottom: 1px solid var(--hairline-2); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(165deg, #24705790 0%, var(--forest-deep) 55%, #0a2c21 100%), var(--forest-deep); }
.hero-bg::before, .hero-bg::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
}
.hero-bg::before { width: 60vw; height: 60vw; top: -20%; right: -15%; background: radial-gradient(circle, rgba(216,179,106,.55), transparent 68%); }
.hero-bg::after { width: 55vw; height: 55vw; bottom: -25%; left: -18%; background: radial-gradient(circle, rgba(143,230,196,.4), transparent 68%); }
.hero-grid { display: grid; gap: 40px; padding: 40px 0 clamp(48px, 12vw, 72px); }
.hero-copy { padding-top: 18px; }
.pill {
  display: inline-flex; align-items: center; gap: .5em;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  color: #fff; padding: .42em 1em; border-radius: 999px; font-size: .8rem; font-weight: 600;
  margin-bottom: 1.2rem; backdrop-filter: blur(6px);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(143,230,196,.25); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(143,230,196,.3); } 50% { box-shadow: 0 0 0 7px rgba(143,230,196,0); } }
.hero h1 { font-size: clamp(2.5rem, 9.5vw, 4.4rem); margin-bottom: 1rem; }
.hero .sub { font-size: clamp(1.02rem, 4.2vw, 1.24rem); color: rgba(255,255,255,.84); max-width: 34ch; margin-bottom: 1.9rem; }
.hero .store-row { margin-bottom: 1.5rem; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem 1.3rem; color: rgba(255,255,255,.82); font-size: .86rem; }
.hero-rating { display: inline-flex; align-items: center; gap: .5em; }
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 15px; height: 15px; color: var(--gold); }
.hero-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.35); }
.hero-chip { display: inline-flex; align-items: center; gap: .4em; }
.hero-chip svg { width: 16px; height: 16px; color: var(--mint); }

/* Phone mockup */
.hero-phone { display: flex; justify-content: center; perspective: 1400px; }
.phone {
  position: relative; width: min(300px, 78vw); aspect-ratio: 300 / 620;
  background: linear-gradient(160deg, #23282b, #0d0f10); border-radius: 46px;
  padding: 11px; box-shadow: 0 40px 80px rgba(0,0,0,.45), inset 0 0 0 2px rgba(255,255,255,.06);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-.4deg); } 50% { transform: translateY(-12px) rotate(.4deg); } }
.phone-screen {
  position: relative; height: 100%; width: 100%; border-radius: 36px; overflow: hidden;
  background: var(--sand); color: var(--ink); display: flex; flex-direction: column;
}
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 4; width: 34%; height: 22px; background: #0d0f10; border-radius: 0 0 14px 14px; }
.scr { padding: 10px 14px; }
.app-statusbar { display: flex; justify-content: space-between; align-items: center; font-size: .68rem; font-weight: 600; padding: 12px 18px 2px; color: var(--ink); }
.app-statusbar .sb-icons { display: inline-flex; gap: 5px; align-items: center; }
.app-statusbar .sb-icons i { display: block; width: 15px; height: 9px; border: 1px solid var(--ink); border-radius: 2px; opacity: .8; }
.app-top { display: flex; align-items: center; justify-content: space-between; padding: 8px 18px 6px; }
.app-top small { color: var(--muted); font-size: .68rem; }
.app-top b { display: block; font-family: var(--display); font-size: 1.05rem; }
.app-top .avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(150deg, var(--forest), var(--forest-deep)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; }
.app-card {
  margin: 6px 14px; padding: 14px; border-radius: 18px; color: #fff;
  background: linear-gradient(155deg, var(--forest-2), var(--forest-deep));
  box-shadow: 0 12px 24px rgba(15,61,46,.3); position: relative; overflow: hidden;
}
.app-card::after { content:""; position:absolute; width:120px; height:120px; border-radius:50%; background:radial-gradient(circle,rgba(216,179,106,.4),transparent 70%); top:-40px; right:-30px; }
.ac-row { display: flex; justify-content: space-between; align-items: center; font-size: .64rem; margin-bottom: 7px; position: relative; z-index: 1; }
.ac-tag { background: rgba(255,255,255,.2); padding: 2px 8px; border-radius: 999px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.app-card b.svc { display: block; font-family: var(--display); font-size: 1.12rem; position: relative; z-index: 1; }
.ac-crew { display: flex; align-items: center; gap: 6px; font-size: .68rem; opacity: .9; margin: 4px 0 10px; position: relative; z-index: 1; }
.ac-crew .cav { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(140deg,var(--gold),#b98f43); }
.ac-bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,.25); overflow: hidden; position: relative; z-index: 1; }
.ac-bar i { display: block; height: 100%; width: 68%; border-radius: 999px; background: var(--mint); }
.ac-eta { font-size: .62rem; opacity: .85; margin-top: 6px; position: relative; z-index: 1; }
.app-tiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding: 12px 14px 6px; }
.app-tile { background: #fff; border: 1px solid var(--hairline); border-radius: 13px; padding: 9px 4px 7px; text-align: center; box-shadow: var(--shadow-sm); }
.app-tile .ti { width: 26px; height: 26px; margin: 0 auto 4px; border-radius: 8px; background: rgba(40,115,90,.12); color: var(--forest); display: grid; place-items: center; }
.app-tile .ti svg { width: 15px; height: 15px; }
.app-tile span { font-size: .52rem; font-weight: 600; color: var(--ink-2); }
.app-proof { margin: 6px 14px 0; }
.app-proof .pf-h { display: flex; justify-content: space-between; align-items: center; font-size: .66rem; font-weight: 700; margin-bottom: 6px; }
.app-proof .pf-h span { color: var(--forest); }
.pf-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.pf-imgs i { display: block; height: 44px; border-radius: 10px; position: relative; overflow: hidden; }
.pf-imgs i.before { background: linear-gradient(135deg,#9db089,#6f7f5c); }
.pf-imgs i.after { background: linear-gradient(135deg,#7fc4a0,#3f8f6b); }
.pf-imgs i::after { content: attr(data-l); position: absolute; bottom: 4px; left: 5px; font-size: .5rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .05em; opacity: .9; }
.app-book { margin: auto 14px 14px; }
.app-book .fake-btn { background: var(--forest); color: #fff; text-align: center; padding: 11px; border-radius: 13px; font-weight: 600; font-size: .82rem; box-shadow: 0 8px 18px rgba(40,115,90,.3); }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); color: rgba(255,255,255,.9); overflow: hidden; padding: 13px 0; }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: scroll-x 26s linear infinite; font-family: var(--display); font-weight: 600; font-size: .95rem; letter-spacing: .01em; }
.marquee-track span { display: inline-flex; align-items: center; gap: 40px; white-space: nowrap; }
.marquee-track span::after { content: "•"; color: var(--gold); }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .phone { animation: none; } }

/* ---------- Sections ---------- */
section { padding: clamp(52px, 11vw, 100px) 0; }
.section-head { max-width: 62ch; margin-bottom: clamp(28px, 6vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.95rem, 6.5vw, 3rem); margin: .5rem 0 .7rem; }
.section-head p { font-size: clamp(1rem, 3.6vw, 1.12rem); color: var(--muted); }

/* Services */
.services { background: var(--sand); }
.grid { display: grid; gap: 14px; }
.services-grid { grid-template-columns: repeat(2, 1fr); }
.svc {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s;
}
.svc:hover { transform: translateY(-4px); border-color: var(--forest); box-shadow: var(--shadow-md); }
.svc .ico { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: linear-gradient(150deg, rgba(40,115,90,.14), rgba(40,115,90,.06)); color: var(--forest); margin-bottom: 12px; }
.svc .ico svg { width: 24px; height: 24px; }
.svc h3 { font-family: var(--display); font-size: 1.08rem; letter-spacing: -.01em; }
.svc p { font-size: .88rem; color: var(--muted); margin-top: 5px; }
.tag { display: inline-block; margin-top: 12px; font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.tag.live { color: var(--forest); background: rgba(40,115,90,.12); }
.tag.live::before { content: "● "; font-size: .6em; vertical-align: middle; }

/* App features */
.appfeat { background: #fff; border-block: 1px solid var(--hairline); }
.feat-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.feat {
  border: 1px solid var(--hairline); border-radius: var(--radius); padding: 22px;
  background: linear-gradient(180deg, #fff, var(--sand)); position: relative; overflow: hidden;
}
.feat .fico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 14px; color: #fff; background: linear-gradient(150deg, var(--forest), var(--forest-deep)); box-shadow: 0 10px 22px rgba(40,115,90,.25); }
.feat.gold .fico { background: linear-gradient(150deg, var(--gold), #b58a3c); box-shadow: 0 10px 22px rgba(180,138,60,.28); }
.feat .fico svg { width: 25px; height: 25px; }
.feat h3 { font-family: var(--display); font-size: 1.22rem; margin-bottom: 6px; }
.feat p { color: var(--muted); font-size: .96rem; }

/* How it works */
.how { background: var(--sand); }
.steps { grid-template-columns: 1fr; gap: 0; counter-reset: step; max-width: 640px; margin-inline: auto; }
.step { position: relative; padding: 0 0 26px 56px; }
.step:not(:last-child)::before { content: ""; position: absolute; left: 19px; top: 40px; bottom: -6px; width: 2px; background: linear-gradient(var(--gold), transparent); }
.step .n { position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--forest); color: #fff; font-family: var(--display); font-weight: 700; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(40,115,90,.28); }
.step h3 { font-family: var(--display); font-size: 1.14rem; margin-bottom: 5px; padding-top: 6px; }
.step p { color: var(--muted); font-size: .96rem; }

/* Membership */
.membership { background: #fff; border-block: 1px solid var(--hairline); }
.plans { grid-template-columns: 1fr; gap: 16px; max-width: 460px; margin-inline: auto; align-items: stretch; }
.plan {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.plan.feature { border: 1.5px solid var(--forest); box-shadow: var(--shadow-lg); position: relative; }
.plan.feature::before {
  content: "Most popular"; position: absolute; top: -13px; left: 24px;
  background: var(--forest); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 999px;
}
.plan h3 { font-family: var(--display); font-size: 1.3rem; }
.price { font-family: var(--display); font-size: 2.7rem; margin: 6px 0 2px; letter-spacing: -.03em; }
.price span { font-family: var(--sans); font-size: .92rem; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.plan .lead { color: var(--muted); font-size: .92rem; }
.plan ul { list-style: none; margin: 18px 0 24px; display: grid; gap: 11px; }
.plan li { display: flex; gap: .6em; font-size: .94rem; align-items: flex-start; }
.plan li svg { width: 18px; height: 18px; color: var(--forest); flex: 0 0 auto; margin-top: 3px; }
.plan .btn { margin-top: auto; }

/* Trust */
.trust { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.trust::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(160deg, var(--forest-2), var(--forest-deep)); }
.trust-grid { grid-template-columns: 1fr; gap: 22px; }
.trust .item svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 10px; }
.trust .item h3 { font-family: var(--display); font-size: 1.1rem; margin-bottom: 5px; }
.trust .item p { color: rgba(255,255,255,.82); font-size: .93rem; }

/* FAQ */
.faq { background: var(--sand); }
.faq-wrap { max-width: 780px; }
.faq details { border: 1px solid var(--hairline); border-radius: 15px; background: #fff; padding: 4px 18px; margin-bottom: 10px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 600; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding: 14px 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--forest); font-weight: 300; transition: transform .2s; flex: 0 0 auto; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 16px; max-width: 65ch; }

/* Download CTA */
.download { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.download::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(150deg, var(--forest-2) 0%, var(--forest-deep) 60%, #0a2c21 100%); }
.download::after { content: ""; position: absolute; z-index: -1; width: 70vw; height: 70vw; border-radius: 50%; top: -30%; right: -20%; background: radial-gradient(circle, rgba(216,179,106,.4), transparent 68%); filter: blur(50px); }
.dl-grid { display: grid; gap: 34px; align-items: center; }
.dl-copy .eyebrow { color: var(--gold); }
.dl-copy h2 { font-size: clamp(2rem, 7vw, 3rem); margin: .5rem 0 .8rem; }
.dl-copy p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 42ch; margin-bottom: 1.6rem; }
.dl-copy .store-row { margin-bottom: 1.5rem; }
.dl-form { }
.dl-form .lbl { font-size: .84rem; color: rgba(255,255,255,.75); margin-bottom: 8px; }
.waitlist { display: flex; gap: 10px; max-width: 440px; flex-wrap: wrap; }
.waitlist input {
  flex: 1 1 200px; padding: .9em 1.15em; border-radius: 13px; border: 1.5px solid rgba(255,255,255,.28);
  font-size: 1rem; font-family: inherit; background: rgba(255,255,255,.1); color: #fff;
}
.waitlist input::placeholder { color: rgba(255,255,255,.6); }
.waitlist input:focus { outline: 2px solid var(--gold); outline-offset: 1px; background: rgba(255,255,255,.16); }
.waitlist .btn { flex: 0 0 auto; }
.waitlist .btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 10px 26px rgba(216,179,106,.3); }
.waitlist .btn-primary:hover { background: #e6c37e; }
.form-note { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: .9rem; min-height: 1.2em; }
.dl-qr { display: none; }

/* ---------- Sticky mobile app bar ---------- */
.app-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.9); backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-top: 1px solid var(--hairline);
  transform: translateY(120%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -8px 30px rgba(0,0,0,.08);
}
.app-bar.show { transform: none; }
.app-bar .ab-icon { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(150deg, var(--forest), var(--forest-deep)); flex: 0 0 auto; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.app-bar .ab-icon svg { width: 24px; height: 24px; }
.app-bar .ab-txt { flex: 1; min-width: 0; line-height: 1.2; }
.app-bar .ab-txt b { font-family: var(--display); font-size: .95rem; display: block; }
.app-bar .ab-txt small { color: var(--muted); font-size: .76rem; }
.app-bar .btn { flex: 0 0 auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.68); padding: 48px 0 calc(28px + 76px); }
.footer-top { display: grid; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { max-width: 34ch; }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: .92rem; }
.footer-brand .store-row { margin-top: 16px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.footer-cols h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 12px; }
.footer-cols a { display: block; padding: 5px 0; font-size: .92rem; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; padding-top: 22px; font-size: .82rem; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Breakpoints (scale up) ---------- */
@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.4fr 2fr; align-items: start; }
}
@media (min-width: 900px) {
  .nav-links { display: flex; align-items: center; gap: 1.9rem; }
  .nav-links a { font-size: .95rem; color: var(--ink-2); font-weight: 500; }
  .nav-links a:hover { color: var(--forest); }
  .nav-cta .btn-ghost { display: inline-flex; }
  .burger, .mobile-menu { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 30px; padding: 56px 0 88px; }
  .hero h1 { font-size: clamp(3rem, 5vw, 4.4rem); }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .feat-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: none; }
  .step { padding: 0; }
  .step:not(:last-child)::before { left: 40px; top: 20px; right: -20px; bottom: auto; width: auto; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
  .step h3 { padding-top: 14px; }
  .plans { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .plan.feature { transform: scale(1.03); }
  .plan.feature::before { left: 50%; transform: translateX(-50%); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .dl-grid { grid-template-columns: 1.1fr .9fr; }
  .dl-qr { display: flex; justify-content: flex-end; }
  .app-bar { display: none; }
  .site-footer { padding-bottom: 32px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .hero .sub { font-size: 1.24rem; }
}
