/* =====================================================================
   Frequenters — public website stylesheet
   Community-first, warm, teal brand. Mobile-first. WCAG-aware contrast.
   ===================================================================== */

:root {
    --ink:        #0C2329;
    --ink-soft:   #36494E;
    --muted:      #6A7E83;
    --line:       #E0EDEE;
    --line-soft:  #EDF6F6;
    --surface:    #F1FBFB;
    --surface-2:  #E4F6F5;
    --white:      #FFFFFF;

    /* bright brand gradient — matches the logo, used for decoration only */
    --brand-cyan: #21D4F3;
    --brand-teal: #23E3CF;
    --grad-bright: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-teal) 100%);

    /* accessible teal UI scale (white text passes AA on --brand) */
    --brand:      #0A8294;
    --brand-deep: #097483;
    --brand-ink:  #075E6B;
    --link:       #0B7C8C;
    --grad-deep:  linear-gradient(135deg, #0A8FA2 0%, #075E6B 100%);

    /* warm community accent — used sparingly (rewards, hearts) */
    --warm:       #FF7A59;
    --warm-soft:  #FFEDE7;

    --footer-bg:  #08323A;

    --r:    18px;
    --r-lg: 26px;
    --r-sm: 12px;

    --shadow-sm: 0 1px 2px rgba(8,50,58,.06), 0 2px 6px rgba(8,50,58,.05);
    --shadow:    0 10px 30px rgba(8,50,58,.09), 0 3px 8px rgba(8,50,58,.05);
    --shadow-lg: 0 30px 70px rgba(7,94,107,.18), 0 10px 24px rgba(8,50,58,.08);

    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
    margin: 0; font-family: var(--font-body);
    font-size: 16px; line-height: 1.65; color: var(--ink-soft);
    background: var(--white); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
    font-family: var(--font-display); color: var(--ink);
    line-height: 1.14; margin: 0 0 .5em; letter-spacing: -0.02em; font-weight: 800;
}
p { margin: 0 0 1rem; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; }
strong { color: var(--ink); font-weight: 700; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid rgba(10,130,148,.55); outline-offset: 2px; border-radius: 6px; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1;
    padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; text-decoration: none;
    transition: transform .12s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 22px rgba(10,130,148,.28); }
.btn-primary:hover { background: var(--brand-deep); box-shadow: 0 14px 28px rgba(10,130,148,.32); }
.btn-secondary { background: var(--white); color: var(--brand-ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; padding: 11px 14px; }
.btn-ghost:hover { color: var(--brand); }
.btn-white { background: #fff; color: var(--brand-ink); }
.btn-white:hover { background: var(--surface); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-lg { padding: 17px 32px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.88); backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 22px rgba(8,50,58,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { height: 44px; width: 44px; display: block; flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 800; letter-spacing: .035em; font-size: 1.4rem; color: var(--ink); line-height: 1; }
@media (max-width: 430px) {
    .brand-mark { height: 38px; width: 38px; }
    .brand-name { font-size: 1.15rem; }
}

.primary-nav ul { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.primary-nav a:not(.btn) {
    color: var(--ink-soft); font-weight: 600; font-size: .9rem; padding: 8px 11px; border-radius: 9px;
    white-space: nowrap;
    transition: color .15s ease, background .15s ease;
}
.primary-nav a:not(.btn):hover { color: var(--brand); background: var(--surface); }
.primary-nav a.is-active { color: var(--brand); }
.nav-cta { margin-left: 4px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px;
    background: transparent; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.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); }

/* ---------- section rhythm ---------- */
.section { padding: 66px 0; }
.section--mint { background: var(--surface); }
.section--soft { background: linear-gradient(180deg, var(--white), var(--surface)); }
.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--font-display); font-weight: 700; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--brand-ink); background: var(--surface-2); padding: 7px 14px; border-radius: 999px; margin-bottom: 16px;
}
.eyebrow .pindot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-bright); }
.section-head h2 { font-size: clamp(1.8rem, 4.8vw, 2.6rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 46px 0 64px;
    background:
        radial-gradient(46% 50% at 88% 6%, rgba(33,212,243,.18), transparent 62%),
        radial-gradient(40% 44% at 6% 90%, rgba(35,227,207,.16), transparent 60%),
        linear-gradient(180deg, var(--surface) 0%, var(--white) 70%);
}
.hero-grid { display: grid; gap: 40px; align-items: center; }
.hero-pill {
    display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .85rem; color: var(--brand-ink);
    background: var(--white); border: 1px solid var(--line); padding: 7px 15px 7px 9px; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-pill .heart { color: var(--warm); display: grid; place-items: center; }
.hero h1 { font-size: clamp(2.3rem, 7vw, 3.7rem); font-weight: 800; margin-bottom: 18px; }
.hero h1 .grad { background: linear-gradient(120deg,#0A8FA2,#0FAE9C); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 1.16rem; color: var(--ink-soft); max-width: 42ch; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-foot { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--muted); }
.hero-foot .avatars { display: inline-flex; }
.hero-foot .avatars span { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; background: var(--grad-bright); display: grid; place-items: center; color: #fff; font-size: .7rem; font-weight: 700; }
.hero-foot .avatars span:first-child { margin-left: 0; }

/* ---- hero neighborhood collage (signature) ---- */
.hero-visual { position: relative; min-height: 380px; }
.map-card {
    position: relative; background: linear-gradient(160deg, #EAFafa, #DFF6F4);
    border: 1px solid var(--line); border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg); aspect-ratio: 1 / 0.92; overflow: hidden;
}
.map-card .roads { position: absolute; inset: 0; opacity: .5; }
.map-card .roads path { stroke: #CDE8E6; stroke-width: 7; fill: none; stroke-linecap: round; }
.map-card .roads .thin { stroke-width: 4; stroke: #D8EEEC; }
.map-blob { position: absolute; border-radius: 40% 60% 55% 45%; background: rgba(255,255,255,.55); }
.map-blob.b1 { width: 38%; height: 30%; top: 12%; left: 10%; }
.map-blob.b2 { width: 30%; height: 26%; bottom: 14%; right: 12%; border-radius: 55% 45% 50% 50%; }

.pin { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 5px; animation: popIn .5s cubic-bezier(.2,.9,.3,1.3) both; }
.pin .dot { width: 44px; height: 44px; border-radius: 50% 50% 50% 12px; transform: rotate(45deg);
    background: var(--grad-bright); box-shadow: 0 8px 18px rgba(10,130,148,.28); display: grid; place-items: center; }
.pin .dot svg { transform: rotate(-45deg); color: #fff; }
.pin .tag { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; font-size: .72rem; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm); white-space: nowrap; }
.pin.p1 { top: 14%; left: 16%; animation-delay: .15s; }
.pin.p2 { top: 26%; right: 16%; animation-delay: .3s; }
.pin.p3 { bottom: 30%; left: 22%; animation-delay: .45s; }
.pin.p4 { bottom: 16%; right: 24%; animation-delay: .6s; }
.pin.p5 { top: 46%; left: 47%; animation-delay: .75s; }
.pin.p5 .dot { width: 52px; height: 52px; }

.float-card { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 16px;
    box-shadow: var(--shadow); padding: 12px 14px; display: flex; align-items: center; gap: 10px; animation: floatIn .6s ease both; }
.float-card .fc-ic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.float-card .fc-ic.points { background: var(--warm-soft); color: var(--warm); }
.float-card .fc-ic.book { background: var(--surface-2); color: var(--brand); }
.float-card .fc-ic.offer { background: #E9F0FF; color: #2D6BE0; }
.float-card .fc-t { font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: var(--ink); line-height: 1.1; }
.float-card .fc-s { font-size: .72rem; color: var(--muted); }
.float-card.f1 { top: 4%; right: -2%; animation-delay: .9s; }
.float-card.f2 { bottom: 6%; left: -4%; animation-delay: 1.05s; }
.float-card.f3 { bottom: 40%; right: -6%; animation-delay: 1.2s; }

@keyframes popIn { from { opacity: 0; transform: scale(.6) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes floatIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- "what is a frequenter" (refined, elegant prose) ---------- */
.identity { text-align: center; }
.lede { max-width: 660px; margin: 0 auto; }
.lede p { font-size: 1.12rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1.15rem; }
.lede p:last-of-type { margin-bottom: 0; }
.lede .accent { color: var(--brand-ink); font-weight: 700; }
.identity-cards { margin-top: 44px; }
.identity-cards .card { text-align: center; }
.identity-cards .card .ic { margin-inline: auto; }

/* ---------- imagine your city (category grid) ---------- */
.vision-lines { max-width: 540px; margin: 4px auto 0; }
.vision-lines p { font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; color: var(--ink); margin: .3rem 0; }
.icon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }
.icon-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 14px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease; }
.icon-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.icon-tile .ti { width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 13px; background: var(--surface-2); color: var(--brand); display: grid; place-items: center; }
.icon-tile .ti.warm { background: var(--warm-soft); color: var(--warm); }
.icon-tile span { font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--ink); }

/* ---------- business / mission section ---------- */
.mission-caps { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.mission-caps .chip { font-size: .9rem; }

/* ---------- card grids ---------- */
.card-grid { display: grid; gap: 18px; }
.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px;
    box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px;
    background: var(--surface-2); color: var(--brand); }
.card .ic.warm { background: var(--warm-soft); color: var(--warm); }
.card h3 { font-size: 1.16rem; margin-bottom: 7px; }
.card p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- business teaser (on home) ---------- */
.biz-teaser .inner {
    display: grid; gap: 32px; align-items: center;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 34px;
}
.biz-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 11px; }
.biz-list li { display: flex; align-items: center; gap: 11px; font-weight: 600; color: var(--ink); }
.biz-list .chk { width: 24px; height: 24px; border-radius: 7px; background: var(--surface-2); color: var(--brand); display: grid; place-items: center; flex: none; }
.biz-visual { background: var(--grad-bright); border-radius: var(--r); aspect-ratio: 4/3; position: relative; overflow: hidden; box-shadow: var(--shadow); display: grid; place-items: center; }
.biz-visual .glass { background: rgba(255,255,255,.92); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow); width: 78%; }
.biz-visual .glass .row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--line-soft); font-size: .85rem; }
.biz-visual .glass .row:last-child { border-bottom: 0; }
.biz-visual .glass .num { font-family: var(--font-display); font-weight: 800; color: var(--brand-ink); }

/* ---------- how it works (steps) ---------- */
.steps { display: grid; gap: 18px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.step .num { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--grad-bright); color: #fff;
    font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin-bottom: 14px; }
.step h3 { font-size: 1.12rem; margin-bottom: 5px; }
.step p { margin: 0; color: var(--muted); font-size: .94rem; }

/* ---------- why exists ---------- */
.why-grid { display: grid; gap: 30px; align-items: center; }
.why-copy p { font-size: 1.06rem; }
.why-quote { background: var(--grad-deep); color: #fff; border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-lg); }
.why-quote .mark { font-family: var(--font-display); font-size: 3rem; line-height: 1; opacity: .5; margin-bottom: 6px; }
.why-quote p { font-size: 1.2rem; font-weight: 600; margin: 0; color: #EAFBFB; }

/* ---------- waitlist / forms ---------- */
.waitlist { background: var(--surface); }
.waitlist-grid { display: grid; gap: 34px; align-items: start; }
.waitlist-intro .opts { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.waitlist-intro .opts li { display: flex; gap: 12px; align-items: center; font-weight: 600; color: var(--ink); }
.waitlist-intro .opts .ic { width: 38px; height: 38px; border-radius: 11px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--brand); flex: none; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 28px; }
.form-card.narrow { max-width: 480px; margin: 0 auto; }
.form-card h3 { font-size: 1.3rem; }
.form-grid { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field label .req { color: var(--warm); }
.field input, .field select, .field textarea {
    font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff;
    border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; width: 100%;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(10,130,148,.14); }
.field .hint { font-size: .8rem; color: var(--muted); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--warm); box-shadow: 0 0 0 4px rgba(255,122,89,.14); }
.field .err { font-size: .82rem; color: #C2410C; font-weight: 600; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.alert { border-radius: var(--r); padding: 16px 18px; margin-bottom: 22px; font-size: .96rem; display: flex; gap: 10px; align-items: flex-start; }
.alert svg { flex: none; margin-top: 2px; }
.alert-error { background: var(--warm-soft); color: #9A3412; border: 1px solid #FBD2C4; }
.alert-info { background: var(--surface-2); color: var(--brand-ink); border: 1px solid #C4E8E6; }
.alert-success { background: #E7F7EF; color: #0F5C3D; border: 1px solid #BEE6D2; }

/* ---------- final CTA band ---------- */
.cta-band { background: var(--grad-deep); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem,5vw,2.7rem); }
.cta-band p { color: #D6F3F3; font-size: 1.1rem; max-width: 48ch; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- page hero (interior) ---------- */
.page-hero { background: radial-gradient(50% 80% at 88% 0%, rgba(33,212,243,.16), transparent 60%), var(--surface); padding: 56px 0 44px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { background: #fff; }
.page-hero h1 { font-size: clamp(2rem,5.4vw,3rem); margin-bottom: 12px; }
.page-hero p { color: var(--muted); max-width: 60ch; margin: 0; font-size: 1.08rem; }

/* ---------- prose (legal) ---------- */
.prose { padding: 48px 0 64px; }
.prose .container { max-width: 820px; }
.prose h2 { font-size: 1.4rem; margin-top: 1.9em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2em; margin: 0 0 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose .updated { color: var(--muted); font-size: .9rem; margin-bottom: 1.6rem; }

/* ---------- industries chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---------- problems (business) ---------- */
.problem-grid { display: grid; gap: 18px; }
.problem { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); }
.problem .x { width: 40px; height: 40px; border-radius: 11px; background: var(--warm-soft); color: var(--warm); display: grid; place-items: center; margin-bottom: 12px; }
.problem h3 { font-size: 1.08rem; margin-bottom: 5px; }
.problem p { margin: 0; color: var(--muted); font-size: .94rem; }

/* ---------- pricing placeholder ---------- */
.price-card { max-width: 560px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 36px; }
.price-card .badge { display: inline-block; background: var(--surface-2); color: var(--brand-ink); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }

/* ---------- footer ---------- */
.site-footer { background: var(--footer-bg); color: #9FC2C4; padding: 56px 0 30px; }
.footer-inner { display: grid; gap: 34px; }
.footer-brand .brand--footer { display: inline-flex; align-items: center; gap: 11px; }
.footer-mark { height: 38px; width: 38px; }
.footer-wordmark { font-family: var(--font-display); font-weight: 800; letter-spacing: .04em; color: #fff; font-size: 1.15rem; }
.footer-blurb { font-size: .94rem; margin: 14px 0 16px; max-width: 38ch; color: #8FB6B8; }
.social { display: flex; gap: 10px; }
.social-dot { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #BfE0E1; background: rgba(255,255,255,.08); transition: background .15s ease, color .15s ease; }
.social-dot:hover { background: rgba(255,255,255,.16); color: #fff; }
.footer-col h3 { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: #9FC2C4; font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 38px; padding-top: 22px; font-size: .82rem; color: #7BA3A5; }
.footer-bottom p { margin: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1160px) {
    .nav-toggle { display: flex; }    .primary-nav { position: fixed; inset: 72px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
        transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .2s ease, opacity .2s ease; max-height: calc(100vh - 72px); overflow-y: auto; }
    .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .primary-nav ul { flex-direction: column; align-items: stretch; gap: 2px; padding: 16px 20px 22px; }
    .primary-nav a:not(.btn) { padding: 13px 14px; font-size: 1rem; }
    .nav-cta { margin: 6px 0 0; }
    .nav-cta .btn { width: 100%; }
}

@media (min-width: 720px) {
    .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .icon-grid { grid-template-columns: repeat(4, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .problem-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid.two { grid-template-columns: 1fr 1fr; }
    .form-grid.two .full { grid-column: 1 / -1; }
    .footer-inner { grid-template-columns: 1.7fr 1fr 1fr 1fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 980px) {
    .section { padding: 84px 0; }
    .hero { padding: 60px 0 80px; }
    .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 50px; }
    .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: 1.1fr .9fr; }
    .biz-teaser .inner { grid-template-columns: 1fr 1fr; padding: 44px; }
    .waitlist-grid { grid-template-columns: .95fr 1.05fr; gap: 50px; }
    .problem-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0ms !important; transition-duration: .001ms !important; }
    .pin, .float-card { opacity: 1 !important; transform: none !important; }
}
