/* Satoshi */
@font-face {
  font-family: 'Satoshi';
  src: url("assets/fonts/satoshi-300.woff2") format('woff2'),
       url("assets/fonts/satoshi-300.woff") format('woff'),
       url("assets/fonts/satoshi-300.ttf") format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url("assets/fonts/satoshi-400.woff2") format('woff2'),
       url("assets/fonts/satoshi-400.woff") format('woff'),
       url("assets/fonts/satoshi-400.ttf") format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url("assets/fonts/satoshi-500.woff2") format('woff2'),
       url("assets/fonts/satoshi-500.woff") format('woff'),
       url("assets/fonts/satoshi-500.ttf") format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url("assets/fonts/satoshi-700.woff2") format('woff2'),
       url("assets/fonts/satoshi-700.woff") format('woff'),
       url("assets/fonts/satoshi-700.ttf") format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url("assets/fonts/satoshi-900.woff2") format('woff2'),
       url("assets/fonts/satoshi-900.woff") format('woff'),
       url("assets/fonts/satoshi-900.ttf") format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}

:root {
  /* Harvest Rewards palette — sampled from the logo */
  --sage:        #6B837A;   /* primary leaf */
  --sage-mid:    #A9BCB2;
  --sage-pale:   #DDE4E0;
  --moss:        #425F54;   /* wordmark green */
  --gold:        #B5985F;   /* second leaf */
  --gold-mid:    #D9C9A3;
  --gold-pale:   #F1E7D2;
  --star:        #DA9B22;   /* star accent */
  /* portal mock */
  --portal-side:    #425F54;
  --portal-side-lt: #6B837A;
  --portal-btn:     #B5985F;
  --portal-card:    #FBF8F1;
  --banner:         #2F3B36;
  --paper:       #FAF7F0;
  --oat:         #EDE8DB;
  --ink:          #2F3B36;
  --text-sub:    #6E7873;
  --border:      #E6DFD2;
  --font-b:      'Satoshi', sans-serif;
  --r:           12px;
  --r-lg:        20px;
  --shadow:      0 1px 3px rgba(47,59,54,0.07), 0 1px 2px rgba(47,59,54,0.05);
  --shadow-md:   0 16px 40px rgba(47,59,54,0.13);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 112px; }
button, input, select, textarea { font-family: var(--font-b); }
body { font-family: var(--font-b); background: #FAF7F0; color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ── PAGE BACKGROUND (hero wash, extended site-wide) ── */
.page-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
  background: linear-gradient(155deg, #E9EFEA 0%, #FAF7F0 34%, #FBF7EC 64%, #F4EBDB 100%); }
.page-blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.page-blob.b1 { width: 680px; height: 680px; left: -240px; top: -220px; background: var(--sage-pale); opacity: .85; transform: translate(30px, 22px); }
.page-blob.b2 { width: 620px; height: 620px; right: -200px; top: 4%;  background: var(--gold-pale); opacity: .9;  transform: translate(-28px, -26px); }
.page-blob.b3 { width: 520px; height: 520px; left: 30%;   bottom: -180px; background: var(--oat); opacity: .8; transform: translate(20px, 10px); }
.page-blob.b4 { width: 460px; height: 460px; right: 14%;  bottom: 8%; background: #EFE7D6; opacity: .7; transform: translate(-20px, -14px); }

/* ── NAV ─────────────────────────────── */
nav {
  background: rgba(250,247,240,0.72); backdrop-filter: blur(14px);
  height: 200px; padding: 0 64px; transition: height .25s ease;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.brand-full { height: 192px; width: auto; display: block; transition: height .25s ease; }
nav.shrunk { height: 120px; }
nav.shrunk .brand-full { height: 108px; }
@keyframes typodot { 0%,60%,100%{ transform: translateY(0); opacity:.65; } 30%{ transform: translateY(-2px); opacity:1; } }
.nav-r { display: flex; align-items: center; gap: 8px; }
.nav-link { font-size: 16px; font-weight: 500; color: var(--text-sub); text-decoration: none; padding: 8px 14px; border-radius: 999px; transition: color .15s, background .15s; }
.nav-link:hover { color: var(--ink); background: var(--sage-pale); }
.nav-login { font-size: 15px; font-weight: 700; color: var(--ink); background: transparent; white-space: nowrap; border: 1.5px solid var(--ink); border-radius: 999px; padding: 8px 20px; text-decoration: none; transition: background .18s, color .18s; }
.nav-login:hover { background: var(--ink); color: var(--paper); }
.nav-btn { font-size: 13.5px; font-weight: 700; color: #FFF; background: var(--ink); white-space: nowrap; border: none; border-radius: 999px; padding: 9px 24px; text-decoration: none; cursor: pointer; transition: transform .15s, box-shadow .2s; }
.nav-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(64,62,62,0.25); }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; background: transparent; border: none; cursor: pointer; padding: 0; margin-left: 4px; }
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; position: sticky; top: 200px; z-index: 199; background: var(--paper); padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height .25s ease; border-bottom: 1px solid var(--border); }
.nav-drawer.open { max-height: 220px; }
.nav-drawer a { display: block; color: var(--text-sub); text-decoration: none; font-size: 17px; padding: 14px 0; border-top: 1px solid var(--border); }

/* ── HERO ─────────────────────────────── */
.hero { position: relative; padding: 92px 64px 64px; }
.hero-wash { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .8; pointer-events: none; }
.hero-wash.w1 { width: 620px; height: 620px; left: -220px; top: -200px; background: var(--sage-pale); transform: translate(30px, 22px); }
.hero-wash.w2 { width: 560px; height: 560px; right: -180px; top: 10%; background: var(--gold-pale); transform: translate(-28px, -26px); }
.hero-wash.w3 { width: 380px; height: 380px; left: 38%; bottom: -240px; background: var(--oat); transform: translate(18px, 8px); }

.hero-grid { position: relative; z-index: 2; max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }

.hero-h1 { font-size: clamp(40px, 5vw, 68px); font-weight: 900; line-height: 1.1; letter-spacing: -0.015em; margin-bottom: 32px; }
.hero-h1 .line { white-space: nowrap; }
.hero-h1 .hl { position: relative; white-space: nowrap; }
.hero-h1 .hl::after { content:''; position:absolute; left: -2%; right: -2%; bottom: 6%; height: 34%; background: var(--gold-mid); opacity: .7; z-index: -1; border-radius: 6px; transform: scaleX(0); transform-origin: left; animation: sweep .7s .5s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes sweep { to { transform: scaleX(1); } }
.hero-h1 .line { display: block; opacity: 0; transform: translateY(26px); animation: riseIn .7s cubic-bezier(.2,.7,.3,1) forwards; }
.hero-h1 .line:nth-child(2) { animation-delay: .12s; }
@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }
.hero-sub { font-size: 17.5px; line-height: 1.7; color: var(--text-sub); max-width: 460px; margin-bottom: 38px; opacity: 0; transform: translateY(22px); animation: riseIn .7s .26s cubic-bezier(.2,.7,.3,1) forwards; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(22px); animation: riseIn .7s .38s cubic-bezier(.2,.7,.3,1) forwards; }
.hero-btn { display: inline-flex; align-items: center; gap: 10px; font-size: 16.5px; font-weight: 700; color: #FFF; background: var(--ink); border-radius: 999px; padding: 18px 40px; text-decoration: none; transition: transform .18s, box-shadow .25s; box-shadow: 0 10px 26px rgba(64,62,62,0.22); }
.hero-btn .arr { transition: transform .18s; }
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(64,62,62,0.3); }
.hero-btn:hover .arr { transform: translateX(4px); }
.hero-ghost { font-size: 15px; font-weight: 700; color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--sage); padding-bottom: 2px; transition: border-color .15s; }
.hero-ghost:hover { border-color: var(--ink); }

/* ── PORTAL MOCK (miniature of the live portal) ── */
.portal-wrap { position: relative; max-width: 648px; margin-left: auto; }
.portal, .chip { transform: translateZ(0); backface-visibility: hidden; text-rendering: optimizeLegibility; }
.portal {
  background: #FCFDFD; border: 1px solid var(--border); border-radius: 20px;
  box-shadow: var(--shadow-md);
  max-width: 648px; margin-left: auto; overflow: hidden;
  display: grid; grid-template-columns: 202px 1fr;
  font-size: 12.5px;
}

.p-side { background: var(--portal-side); color: #FFF; padding: 22px 17px 20px; display: flex; flex-direction: column; }
.p-brand { font-size: 12.0px; font-weight: 500; letter-spacing: 0.04em; line-height: 1.25; white-space: nowrap; }
.p-tag { font-size: 10.0px; color: rgba(255,255,255,0.75); margin-top: 2px; }
.p-user { display: flex; align-items: center; gap: 7px; margin: 14px 0 16px; }
.p-ava { width: 24px; height: 24px; border-radius: 50%; background: var(--portal-side-lt); color: #FFF; font-weight: 500; font-size: 10.5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.p-user b { font-size: 12.0px; display: block; }
.p-user small { font-size: 9.0px; color: rgba(255,255,255,0.7); }
.p-menu-lbl { font-size: 9.0px; letter-spacing: 0.16em; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.p-item { display: flex; align-items: center; gap: 7px; font-size: 12.0px; font-weight: 500; color: rgba(255,255,255,0.85); border-radius: 8px; padding: 7px 8px; margin-bottom: 2px; }
.p-item.active { background: var(--portal-side-lt); color: #FFF; font-weight: 500; }
.p-item .pi { width: 10px; height: 10px; border-radius: 3px; background: rgba(255,255,255,0.5); flex-shrink: 0; }
.p-bal { margin-top: auto; }
.p-bal-lbl { font-size: 9.0px; letter-spacing: 0.16em; color: rgba(255,255,255,0.55); }
.p-bal-num { font-size: 22.5px; font-weight: 600; line-height: 1.15; }
.p-bal-gbp { font-size: 10.5px; color: rgba(255,255,255,0.75); }
.p-bal-bar { height: 3px; border-radius: 999px; background: rgba(255,255,255,0.25); margin: 8px 0 5px; overflow: hidden; }
.p-bal-fill { height: 100%; width: 90%; background: #FFF; border-radius: 999px; transition: width .6s cubic-bezier(.3,.7,.3,1); }
.p-bal-note { font-size: 9.5px; color: rgba(255,255,255,0.75); }
.p-earn-btn { margin-top: 10px; text-align: center; font-size: 10.0px; font-weight: 500; letter-spacing: 0.1em; color: #FFF; background: var(--portal-btn); border-radius: 8px; padding: 8px 6px; }

.p-main { padding: 20px 22px 22px; display: flex; flex-direction: column; }
.p-banner { background: var(--banner); color: #FFF; border-radius: 8px; padding: 9px 12px; font-size: 12.0px; font-weight: 500; display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.p-banner span:last-child { opacity: .5; font-weight: 400; }
.p-lbl { font-size: 9.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-sub); margin-bottom: 8px; }
.task-card { background: var(--portal-card); border: 1px solid var(--border); border-radius: 12px; padding: 13px 14px; }
.task-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 4px; }
.task-title { font-size: 14.0px; font-weight: 500; line-height: 1.3; }
.task-pts { flex-shrink: 0; font-size: 10.5px; font-weight: 500; color: #FFF; background: var(--portal-side); border-radius: 999px; padding: 3px 9px; }
.task-meta { font-size: 10.5px; color: var(--text-sub); margin-bottom: 11px; }
.task-meta b { color: var(--ink); }
.qa { min-height: 86px; margin-bottom: 11px; }
.qa.swap { animation: qaOut .22s ease forwards; }
@keyframes qaOut { to { opacity: 0; transform: translateX(-8px); } }
.qa.enter { animation: qaIn .3s ease forwards; }
@keyframes qaIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
.qa-q { font-size: 13.0px; font-weight: 500; line-height: 1.4; margin-bottom: 7px; }
.qa-opts { display: flex; flex-wrap: wrap; gap: 4px; }
.opt { font-size: 10.0px; font-weight: 500; color: var(--ink); background: #FFF; border: 1px solid var(--border); border-radius: 999px; padding: 4px 10px; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.opt.sel { background: var(--portal-side); border-color: var(--portal-side); color: #FFF; font-weight: 500; transform: scale(1.05); }
.progress { height: 6px; border-radius: 999px; background: var(--sage-pale); overflow: hidden; margin-bottom: 5px; }
.progress-fill { height: 100%; width: 0%; border-radius: 999px; background: var(--portal-side); transition: width .5s cubic-bezier(.3,.7,.3,1); }
.progress-lbl { font-size: 10.0px; color: var(--text-sub); display: flex; justify-content: space-between; }
.portal-done { display: none; align-items: center; gap: 8px; margin-top: 11px; background: var(--gold-pale); border-radius: 10px; padding: 9px 11px; font-size: 12.0px; font-weight: 500; opacity: 0; transform: scale(.9); }
.portal-done.show { display: flex; animation: popIn .5s cubic-bezier(.3,1.5,.4,1) forwards; }
@keyframes popIn { to { opacity: 1; transform: scale(1); } }
.portal-done .coin { width: 18px; height: 18px; border-radius: 50%; background: var(--sage); color: #FFF; font-weight: 500; font-size: 10.5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.portal-done small { display: block; font-weight: 500; color: var(--text-sub); font-size: 10.0px; }
.offer-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.offer-sub { font-size: 11.0px; color: var(--text-sub); margin: 3px 0 8px; }
.offer-time { display: inline-block; font-size: 10.0px; font-weight: 600; color: #8A6D3B; background: var(--gold-pale); border-radius: 999px; padding: 3px 9px; }
.offer-reward { text-align: right; flex-shrink: 0; }
.offer-reward-lbl { font-size: 10.0px; color: var(--text-sub); }
.offer-reward-num { font-size: 19.0px; font-weight: 600; color: var(--portal-side); line-height: 1.15; }
.offer-reward-gbp { font-size: 10.0px; color: var(--text-sub); }
.offer-btns { display: flex; justify-content: flex-end; gap: 7px; margin-top: 13px; }
.offer-skip { font-size: 10.0px; font-weight: 500; letter-spacing: 0.08em; color: var(--ink); background: #FFF; border: 1px solid var(--border); border-radius: 8px; padding: 7px 12px; }
.offer-go { font-size: 10.0px; font-weight: 500; letter-spacing: 0.08em; color: #FFF; background: var(--portal-btn); border-radius: 8px; padding: 7px 14px; transition: transform .15s, background .15s; }
.offer-go.press { transform: scale(.93); background: var(--portal-side); }
.offer.leave { animation: qaOut .25s ease forwards; }
.quiz.enter { animation: qaIn .3s ease forwards; }
.chip { position: absolute; background: #FFF; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 700; }
.chip small { display: block; font-weight: 500; color: var(--text-sub); font-size: 11px; }
.chip .ic { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.chip1 { left: -28px; top: -36px; }
.chip1 .ic { background: var(--sage-pale); }
.chip2 { right: -28px; bottom: -32px; }
.chip2 .ic { background: var(--gold-pale); }

/* ── SECTIONS ─────────────────────────── */
.lbl-star { width: 11px; height: 11px; fill: var(--star); vertical-align: -1px; margin-right: 7px; }
.section-label { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.section-h { font-size: clamp(38px, 5vw, 60px); font-weight: 900; letter-spacing: -0.015em; line-height: 1.08; margin-bottom: 20px; }
.section-sub { font-size: 19.5px; color: var(--text-sub); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── HOW IT WORKS ─────────────────────── */
.how { padding: 110px 64px; text-align: center; }
.how-inner { max-width: 1060px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.step { border-radius: var(--r-lg); padding: 40px 30px 36px; text-align: left; transition: transform .25s, box-shadow .25s; }
.step:nth-child(1) { background: var(--sage-pale); }
.step:nth-child(2) { background: var(--oat); }
.step:nth-child(3) { background: #E8D9B8; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num { font-size: 13.5px; font-weight: 900; letter-spacing: 0.14em; color: var(--ink); opacity: .45; margin-bottom: 20px; }
.step-art { height: 70px; margin-bottom: 20px; display: flex; align-items: flex-end; }
.step-title { font-size: 25px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 17px; color: var(--ink); opacity: .75; line-height: 1.75; }
.art { width: 60px; height: 60px; }
.art .ring { stroke: var(--ink); stroke-width: 3; fill: none; stroke-dasharray: 165; stroke-dashoffset: 165; transition: stroke-dashoffset .6s ease; }
.step:hover .art .ring { stroke-dashoffset: 0; }
.art .tick { stroke: var(--ink); stroke-width: 3.5; fill: none; stroke-linecap: round; stroke-dasharray: 40; stroke-dashoffset: 40; opacity: 0; transition: stroke-dashoffset .4s ease .15s, opacity .01s .15s; }
.step:hover .art .tick { stroke-dashoffset: 0; opacity: 1; transition: stroke-dashoffset .4s ease .15s, opacity 0s; }
.art .stroke { stroke: var(--ink); stroke-width: 3; fill: none; stroke-linejoin: round; stroke-linecap: round; }
.art g.wig { transform-origin: 50% 60%; }
.step:hover .art g.wig { animation: wiggle .7s ease; }
@keyframes wiggle { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-8deg); } 65% { transform: rotate(7deg); } }

/* ── SHOWCASE ─────────────────────────── */
.rewards { padding: 110px 0 96px; text-align: center; position: relative; overflow: hidden; }
.rewards-inner { max-width: 1060px; margin: 0 auto; padding: 0 32px; }
.photo-strip { margin-top: 48px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.photo-track { display: flex; gap: 20px; width: max-content; padding: 4px 0 12px; will-change: transform; animation: photoscroll 60s linear infinite; }
.photo-strip:hover .photo-track { animation-play-state: paused; }
@keyframes photoscroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@media (prefers-reduced-motion: reduce) { .photo-track { animation: none; } }
.photo-card { flex: 0 0 232px; text-align: left; }
.photo-card .frame { width: 232px; height: 290px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--sage-pale); }
.photo-card .frame img { width: 100%; height: 100%; display: block; object-fit: cover; }
.photo-card .cap { margin-top: 12px; font-size: 15.5px; font-weight: 700; color: var(--ink); }

/* ── TRUST STRIP ──────────────────────── */
.trust { padding: 8px 64px 72px; }
.trust-inner { max-width: 1060px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.trust-item { text-align: left; }
.trust-ic { width: 38px; height: 38px; border-radius: 11px; background: var(--sage-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.trust-ic svg { width: 18px; height: 18px; }
.trust-item:nth-child(2) .trust-ic { background: var(--gold-pale); }
.trust-item:nth-child(4) .trust-ic { background: var(--gold-pale); }
.trust-t { font-size: 18.5px; font-weight: 700; margin-bottom: 6px; }
.trust-d { font-size: 16.5px; line-height: 1.65; color: var(--text-sub); }
/* ── FAQ ──────────────────────────────── */
.faqs { position: relative; padding: 110px 64px 120px; }
.faq-wash { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .7; pointer-events: none; }
.faqs-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; text-align: center; }
.faq-list { text-align: left; margin-top: 48px; }
.faq-item { background: rgba(255,255,255,0.68); backdrop-filter: blur(6px); border: 1px solid var(--border); border-radius: 16px; margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s, border-color .2s, background .2s; }
.faq-item.open { background: rgba(255,255,255,0.94); border-color: var(--sage); box-shadow: var(--shadow-md); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: none; border: none; cursor: pointer; padding: 22px 26px; text-align: left; font-family: var(--font-b); font-size: 19.5px; font-weight: 700; color: var(--ink); }
.faq-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--sage-pale); color: var(--ink); display: flex; align-items: center; justify-content: center; position: relative; transition: background .2s, transform .25s; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; transition: transform .25s; }
.faq-item.open .faq-icon { background: var(--sage); color: #FFF; transform: rotate(180deg); }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 26px 24px; font-size: 17.5px; line-height: 1.75; color: var(--text-sub); }
.faq-a-inner a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--gold-mid); transition: border-color .15s; }
.faq-a-inner a:hover { border-color: var(--gold); }
.faq-more { text-align: center; margin-top: 34px; font-size: 16.5px; color: var(--text-sub); }
.faq-more a { color: var(--ink); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--gold-mid); padding-bottom: 1px; transition: border-color .15s; }
.faq-more a:hover { border-color: var(--ink); }

/* ── CTA ──────────────────────────────── */
.cta-band { position: relative; text-align: center; padding: 120px 64px 96px; background: var(--paper); border-top: 1px solid var(--border); }
.cta-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .8; pointer-events: none; animation: drift1 20s ease-in-out infinite alternate; }
.cta-band-h { font-size: clamp(40px, 5.5vw, 64px); font-weight: 900; color: var(--ink); margin-bottom: 16px; line-height: 1.06; position: relative; z-index: 1; letter-spacing: -0.015em; }
.cta-band-sub { font-size: 19.5px; color: var(--text-sub); max-width: 480px; margin: 0 auto 38px; line-height: 1.75; position: relative; z-index: 1; }
.cta-band-btn { display: inline-block; font-size: 17px; font-weight: 700; color: #FFF; background: var(--ink); border-radius: 999px; padding: 17px 52px; text-decoration: none; transition: transform .18s, box-shadow .25s; position: relative; z-index: 1; box-shadow: 0 12px 30px rgba(64,62,62,0.25); }
.cta-band-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(64,62,62,0.32); }

/* ── FOOTER ───────────────────────────── */
footer { background: var(--paper); padding: 8px 64px 32px; }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 40px; }
.foot-logo { margin-bottom: 14px; }
.brand-full-foot { height: 192px; width: auto; display: block; }
.foot-desc { font-size: 14.5px; color: var(--text-sub); line-height: 1.75; max-width: 300px; }
.foot-col-title { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; font-weight: 700; }
.foot-col a { display: block; font-size: 16px; color: var(--text-sub); text-decoration: none; margin-bottom: 9px; transition: color .15s; }
.foot-col a:hover { color: var(--ink); }
.foot-contact { font-size: 16px; color: var(--text-sub); }
.foot-contact a { color: inherit; text-decoration: none; }
.foot-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.foot-copy { font-size: 13px; color: var(--text-sub); }
.foot-legal { display: flex; gap: 18px; }
.foot-legal a { font-size: 13px; color: var(--text-sub); text-decoration: none; }
.foot-legal a:hover { color: var(--ink); }

/* ── ACCESSIBILITY ────────────────────── */
a:focus-visible, button:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 6px; }

/* ── RESPONSIVE / MOTION ──────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .portal { margin: 0 auto; }
  .chip1 { left: 0; } .chip2 { right: 0; }
}
@media (max-width: 880px) {
  nav { padding: 0 28px; }
  .hero, .how, .faqs, .cta-band, .trust { padding-left: 32px; padding-right: 32px; }
  footer { padding: 8px 32px 28px; }
  .how, .rewards, .faqs { padding-top: 80px; padding-bottom: 80px; }
  .cta-band { padding: 88px 32px 72px; }
  .trust { padding-bottom: 56px; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .step { padding: 32px 26px 30px; }
  .step-art { height: 56px; margin-bottom: 16px; }
  /* icon beside the text reads far better than stacked on narrow screens */
  .trust-inner { grid-template-columns: 1fr; gap: 26px; max-width: 520px; }
  .trust-item { display: grid; grid-template-columns: 38px 1fr; grid-template-rows: auto auto; column-gap: 16px; }
  .trust-ic { grid-row: 1 / span 2; margin-bottom: 0; }
  .trust-t { grid-column: 2; align-self: center; margin-bottom: 8px; }
  .trust-d { grid-column: 2; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .nav-link { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer { display: block; }
  .nav-drawer.open { max-height: 300px; }
}
@media (max-width: 580px) {
  nav { height: 168px; padding: 0 18px; }
  .nav-drawer { top: 168px; padding: 0 18px; }
  .brand-full { height: 144px; }
  nav.shrunk { height: 104px; }
  nav.shrunk .brand-full { height: 86px; }
  .nav-login { display: none; }            /* lives in the drawer instead */
  .nav-btn { padding: 11px 18px; font-size: 13px; }
  .nav-toggle { margin-left: 10px; }

  .hero { padding: 44px 20px 48px; }
  .hero-grid { gap: 40px; }
  .hero-h1 { font-size: 38px; margin-bottom: 20px; }
  .hero-sub { font-size: 16px; margin-bottom: 30px; }
  .hero-btn { padding: 15px 30px; font-size: 15px; }
  .hero-ctas { gap: 20px; }

  .portal { grid-template-columns: 124px 1fr; max-width: 100%; font-size: 10px; }
  .p-brand { font-size: 10.5px; }
  .p-side { padding: 14px 11px 13px; }
  .p-main { padding: 13px 13px 14px; }
  .p-earn-btn { font-size: 8px; letter-spacing: 0.02em; white-space: nowrap; padding: 8px 4px; }
  .p-user { margin: 11px 0 12px; }
  .p-item { padding: 6px 7px; }
  .p-bal-num { font-size: 19px; }
  .qa { min-height: 96px; }
  .chip { display: none; }

  .how, .rewards, .faqs { padding-top: 64px; padding-bottom: 64px; }
  .hero, .how, .faqs, .cta-band, .trust { padding-left: 20px; padding-right: 20px; }
  .section-h { font-size: 36px; }
  .section-sub { font-size: 18px; }
  .trust { padding-bottom: 48px; }
  .steps { margin-top: 40px; }
  .photo-card { flex: 0 0 176px; }
  .photo-card .frame { width: 176px; height: 220px; }
  .faq-q { padding: 18px 18px; font-size: 18px; gap: 14px; }
  .faq-a-inner { padding: 0 18px 20px; font-size: 16.5px; }
  .cta-band { padding: 72px 20px 56px; }
  .cta-band-btn { padding: 16px 40px; }
  footer { padding: 8px 20px 24px; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .foot-col a { padding: 5px 0; margin-bottom: 4px; }
  .foot-legal { gap: 24px; }
  .brand-full-foot { height: 144px; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .foot-copy { line-height: 1.6; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-h1 .line, .hero-sub, .hero-ctas,   .hero-h1 .hl::after { transform: scaleX(1); }
  .reveal { opacity: 1; transform: none; }
  .progress-fill { width: 65% !important; }
}
