/* ============================================================
   OVEY DESIGN SYSTEM
   ------------------------------------------------------------
   Derived from the OVEY team jersey: saturated teal, loud
   yellow, deep ink. The page is built as a set of full-bleed
   horizontal bands, the way the jersey is built from stripes.
   ============================================================ */

:root {
    /* --- Colour (sampled from the jersey) --- */
    --ink:        #0A1D19;   /* deep near-black green  */
    --ink-2:      #123029;   /* raised surface on ink  */
    --mint:       #2FC39F;   /* jersey teal            */
    --mint-bright:#3FE0B6;
    --mint-deep:  #0E6E5E;   /* passes contrast on white */
    --sun:        #F2E63C;   /* jersey yellow          */
    --sun-deep:   #D9CD1F;
    --paper:      #F3F7F3;   /* off-white, green undertone */
    --paper-2:    #E7F2ED;
    --white:      #FFFFFF;

    --text:       #0A1D19;
    --text-muted: #5A6F69;
    --text-on-ink:#B9CFC8;

    /* --- Type --- */
    --display: 'Archivo Black', 'Archivo', sans-serif;
    --heading: 'Archivo', sans-serif;
    --body:    'Plus Jakarta Sans', sans-serif;

    /* --- Shape --- */
    --r-sm: 10px;
    --r-md: 18px;
    --r-lg: 28px;
    --r-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(10, 29, 25, .06);
    --shadow-md: 0 14px 32px -12px rgba(10, 29, 25, .18);
    --shadow-lg: 0 30px 60px -22px rgba(10, 29, 25, .28);

    --ease: cubic-bezier(.16, 1, .3, 1);
    --t: .35s var(--ease);

    --nav-h: 76px;
    --gutter: 24px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
    font-family: var(--body);
    background: var(--paper);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
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: 3px solid var(--mint-deep);
    outline-offset: 3px;
    border-radius: 6px;
}

.band-ink :focus-visible { outline-color: var(--sun); }

/* ============================================================
   TYPE SCALE
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--heading); line-height: 1.08; letter-spacing: -.02em; }

.display {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .96;
}

h1.display { font-size: clamp(2.7rem, 7.2vw, 5.1rem); }
h2.display { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }

h3 { font-size: 1.22rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { font-size: 1rem; }

.lead {
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    color: var(--text-muted);
    max-width: 54ch;
}

/* Eyebrow — small caps label above a heading */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--heading);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mint-deep);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: var(--sun);
}

.band-ink .eyebrow { color: var(--mint-bright); }

/* ============================================================
   LAYOUT — the page is a stack of full-bleed bands
   ============================================================ */
.wrap {
    width: min(1180px, 100% - (var(--gutter) * 2));
    margin-inline: auto;
}

.band { padding: clamp(72px, 9vw, 124px) 0; position: relative; }
.band-paper  { background: var(--paper); }
.band-paper2 { background: var(--paper-2); }
.band-white  { background: var(--white); }

.band-ink {
    background: var(--ink);
    color: var(--text-on-ink);
}

/* Light mint band — used where a dark section would sit too heavily */
.band-mint-soft {
    background:
        radial-gradient(700px 400px at 12% 0%, rgba(47, 195, 159, .16), transparent 60%),
        radial-gradient(600px 380px at 92% 100%, rgba(242, 230, 60, .16), transparent 62%),
        var(--paper-2);
}

/* Deep green — richer and lighter than ink, used for the app preview */
.band-deep {
    background: linear-gradient(165deg, #14493E 0%, #0F3830 55%, #113B33 100%);
    color: #C7DFD8;
}

.band-deep h1, .band-deep h2, .band-deep h3, .band-deep h4 { color: var(--white); }
.band-deep .lead { color: #C7DFD8; }
.band-deep .eyebrow { color: var(--mint-bright); }
.band-deep :focus-visible { outline-color: var(--sun); }

.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h4 { color: var(--white); }
.band-ink .lead { color: var(--text-on-ink); }

.band-mint {
    background: linear-gradient(160deg, var(--mint) 0%, #1FA98A 100%);
    color: var(--white);
}

.band-mint h2, .band-mint h3 { color: var(--white); }
.band-mint .eyebrow { color: var(--ink); }
.band-mint .eyebrow::before { background: var(--ink); }

.band-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 60px); }
.band-head.center { margin-inline: auto; text-align: center; }
.band-head.center .eyebrow { justify-content: center; }
.band-head h2 { margin-bottom: 16px; }
.band-head.center .lead { margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--heading);
    font-weight: 700;
    font-size: .98rem;
    letter-spacing: -.01em;
    padding: 16px 30px;
    border-radius: var(--r-pill);
    transition: transform var(--t), box-shadow var(--t), background var(--t);
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-sun {
    background: var(--sun);
    color: var(--ink);
    box-shadow: 0 10px 24px -8px rgba(217, 205, 31, .7);
}

.btn-sun:hover { background: #F7ED5E; box-shadow: 0 16px 30px -10px rgba(217, 205, 31, .8); }

.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: #143a32; }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 2px solid rgba(10, 29, 25, .16);
}

.btn-ghost:hover { border-color: var(--ink); background: rgba(10, 29, 25, .04); }

.band-ink .btn-ghost { color: var(--white); border-color: rgba(255, 255, 255, .28); }
.band-ink .btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .07); }

.btn-block { width: 100%; }

.btn:disabled { opacity: .55; cursor: wait; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    z-index: 900;
    display: flex;
    align-items: center;
    transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}

.nav.scrolled {
    background: rgba(243, 247, 243, .88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(10, 29, 25, .07);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--display);
    font-size: 1.5rem;
    letter-spacing: -.04em;
    color: var(--ink);
}

.logo i { color: var(--mint); font-size: 1.25rem; }

.nav-menu { display: flex; align-items: center; gap: 6px; }

.nav-menu a {
    padding: 9px 15px;
    border-radius: var(--r-pill);
    font-size: .93rem;
    font-weight: 600;
    color: var(--text);
    transition: background var(--t), color var(--t);
}

.nav-menu a:not(.btn):hover { background: rgba(10, 29, 25, .06); }

.nav-menu a.btn { margin-left: 8px; padding: 12px 22px; font-size: .9rem; color: var(--white); }
.nav-menu a.btn:hover { background: #16443A; }

.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: var(--r-sm);
    font-size: 1.2rem;
    color: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding-top: calc(var(--nav-h) + clamp(44px, 6vw, 78px));
    padding-bottom: clamp(56px, 7vw, 92px);
    background:
        radial-gradient(900px 520px at 88% 6%, rgba(47, 195, 159, .16), transparent 62%),
        radial-gradient(680px 420px at 4% 88%, rgba(242, 230, 60, .18), transparent 60%),
        var(--paper);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: clamp(32px, 5vw, 68px);
    align-items: center;
}

.hero h1 { margin-bottom: 22px; }

.hero h1 .stroke {
    color: transparent;
    -webkit-text-stroke: 2.5px var(--ink);
    paint-order: stroke fill;
}

.hero h1 .mark {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero h1 .mark::after {
    content: '';
    position: absolute;
    left: -.06em; right: -.06em;
    bottom: .04em;
    height: .34em;
    background: var(--sun);
    border-radius: 3px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: swipe .7s var(--ease) .55s forwards;
}

@keyframes swipe { to { transform: scaleX(1); } }

.hero .lead { margin-bottom: 32px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    font-size: .9rem;
    color: var(--text-muted);
}

.hero-note .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 4px rgba(47, 195, 159, .22);
}

/* Page-load stagger */
.rise { opacity: 0; transform: translateY(18px); animation: rise .7s var(--ease) forwards; }
.rise-1 { animation-delay: .05s; }
.rise-2 { animation-delay: .15s; }
.rise-3 { animation-delay: .25s; }
.rise-4 { animation-delay: .35s; }
.rise-5 { animation-delay: .45s; }

@keyframes rise { to { opacity: 1; transform: none; } }

/* --- Hero visual: a live order card --- */
.hero-art { position: relative; display: flex; justify-content: center; }

.order-card {
    width: min(380px, 100%);
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 22px;
    position: relative;
    z-index: 2;
}

.oc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(10, 29, 25, .08);
    margin-bottom: 16px;
}

.oc-eta { display: flex; align-items: center; gap: 11px; }

.oc-ring {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: conic-gradient(var(--mint) 0turn .68turn, rgba(47, 195, 159, .16) .68turn 1turn);
    position: relative;
}

.oc-ring::after {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: var(--white);
}

.oc-ring i { position: relative; z-index: 1; color: var(--mint-deep); font-size: .9rem; }

.oc-eta strong { font-family: var(--heading); font-size: 1.02rem; display: block; line-height: 1.2; }
.oc-eta span { font-size: .76rem; color: var(--text-muted); }

.oc-live {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(47, 195, 159, .12);
    color: var(--mint-deep);
    font-size: .7rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 6px 12px; border-radius: var(--r-pill);
}

.oc-live::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--mint);
    animation: blip 1.6s ease-in-out infinite;
}

@keyframes blip { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

.oc-row {
    display: flex; align-items: center; gap: 13px;
    padding: 9px 0;
}

.oc-thumb {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--paper-2);
    display: grid; place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.oc-name { flex: 1; font-size: .9rem; font-weight: 600; }
.oc-name small { display: block; font-weight: 500; color: var(--text-muted); font-size: .76rem; }
.oc-price { font-family: var(--heading); font-weight: 700; font-size: .92rem; }

.oc-total {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 14px; padding-top: 15px;
    border-top: 1px dashed rgba(10, 29, 25, .14);
}

.oc-total span { font-size: .84rem; color: var(--text-muted); }
.oc-total strong { font-family: var(--display); font-size: 1.35rem; letter-spacing: -.03em; }

/* Floating rider badge */
.rider-chip {
    position: absolute;
    left: -6px; bottom: 34px;
    z-index: 3;
    background: var(--ink);
    color: var(--white);
    border-radius: var(--r-pill);
    padding: 11px 18px 11px 12px;
    display: flex; align-items: center; gap: 11px;
    box-shadow: var(--shadow-md);
    animation: bob 3.4s ease-in-out infinite;
}

.rider-chip i {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--sun);
    color: var(--ink);
    display: grid; place-items: center;
    font-size: .88rem;
}

.rider-chip div { line-height: 1.25; }
.rider-chip strong { font-family: var(--heading); font-size: .84rem; display: block; }
.rider-chip small { font-size: .7rem; color: var(--text-on-ink); }

@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.blob-sun {
    position: absolute;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: var(--sun);
    opacity: .5;
    filter: blur(6px);
    top: -26px; right: 4px;
    z-index: 1;
}

/* ============================================================
   TICKER — the signature band
   ============================================================ */
.ticker {
    background: var(--sun);
    border-block: 3px solid var(--ink);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: slide 38s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes slide { to { transform: translateX(-50%); } }

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 26px;
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    white-space: nowrap;
}

.ticker-item .tk-price {
    font-family: var(--display);
    font-size: .92rem;
    background: var(--ink);
    color: var(--sun);
    padding: 3px 10px;
    border-radius: var(--r-pill);
}

.ticker-sep { color: var(--ink); opacity: .35; font-size: 1.1rem; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    max-width: 1040px;
    margin-inline: auto;
}

.cat-card {
    position: relative;
    text-align: left;
    background: var(--white);
    border: 1px solid rgba(10, 29, 25, .07);
    border-radius: var(--r-md);
    padding: 24px 20px 20px;
    min-height: 172px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

/* The tinted quarter-circle in the bottom-right corner */
.cat-card::before {
    content: '';
    position: absolute;
    inset: auto -30% -55% auto;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: var(--tint);
    transition: transform var(--t);
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(47, 195, 159, .34);
}

.cat-card:hover::before { transform: scale(1.5); }

.cat-ico {
    position: relative;
    font-size: 1.85rem;
    color: var(--shade);
    line-height: 1;
    transition: transform var(--t);
}

.cat-card:hover .cat-ico { transform: scale(1.1) rotate(-5deg); }

.cat-card h3 {
    position: relative;
    font-size: 1.02rem;
    letter-spacing: -.01em;
    padding-right: 26px;
}

.cat-go {
    position: absolute;
    right: 18px; bottom: 18px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: grid; place-items: center;
    font-size: .72rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity var(--t), transform var(--t);
}

.cat-card:hover .cat-go { opacity: 1; transform: none; }

/* ============================================================
   VALUE — why ordering through OVEY works out better
   ============================================================ */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.value-card {
    background: var(--white);
    border: 1px solid rgba(10, 29, 25, .08);
    border-radius: var(--r-md);
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--mint);
}

.value-card:nth-child(even)::after { background: var(--sun); }

.value-ico {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--paper-2);
    color: var(--mint-deep);
    display: grid; place-items: center;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.value-card:nth-child(even) .value-ico {
    background: rgba(242, 230, 60, .32);
    color: var(--ink);
}

.value-card h3 { margin-bottom: 9px; font-size: 1.06rem; }
.value-card p { color: var(--text-muted); font-size: .94rem; }

/* ============================================================
   HOW IT WORKS — ink band, real sequence so numbers earn their place
   ============================================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    counter-reset: step;
}

.step { position: relative; padding-top: 30px; }

.step::before {
    counter-increment: step;
    content: '0' counter(step);
    font-family: var(--display);
    font-size: 3rem;
    letter-spacing: -.04em;
    color: var(--mint-deep);
    opacity: .28;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: .96rem; }

.step-rule {
    position: absolute;
    top: 0; left: 0; right: -28px;
    height: 3px;
    background: linear-gradient(90deg, var(--mint) 0%, rgba(47, 195, 159, .18) 100%);
    border-radius: 2px;
}

.step:last-child .step-rule { right: 0; }

/* ============================================================
   COVERAGE
   ============================================================ */
.cover-card {
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    padding: clamp(30px, 4.4vw, 52px);
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.cover-card h2 { margin-bottom: 12px; }
.cover-card .lead { margin: 0 auto 26px; }

.pin-form {
    display: flex; gap: 10px;
    max-width: 440px; margin-inline: auto;
    flex-wrap: wrap;
}

.pin-form input {
    flex: 1 1 210px;
    padding: 16px 18px;
    background: var(--paper);
    border: 2px solid transparent;
    border-radius: var(--r-sm);
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .22em;
    text-align: center;
    transition: border-color var(--t), background var(--t);
}

.pin-form input::placeholder { font-weight: 600; color: #9DB0AA; }
.pin-form input:focus { outline: none; border-color: var(--mint); background: var(--white); }

.geo-btn {
    display: inline-flex; align-items: center; gap: 9px;
    margin-top: 16px;
    padding: 10px 20px;
    border-radius: var(--r-pill);
    font-size: .88rem; font-weight: 600;
    color: var(--mint-deep);
    border: 1px solid rgba(47, 195, 159, .34);
    transition: background var(--t), border-color var(--t);
}

.geo-btn:hover:not(:disabled) { background: rgba(47, 195, 159, .08); border-color: var(--mint); }
.geo-btn:disabled { opacity: .6; cursor: wait; }

.pin-result {
    display: none;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    max-width: 560px;
    margin: 24px auto 0;
    padding: 17px 20px;
    border-radius: var(--r-sm);
    font-size: .95rem;
    line-height: 1.55;
    animation: rise .35s var(--ease);
}

.pin-result i { font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }

.pin-phase1  { background: rgba(47, 195, 159, .12); border: 1px solid rgba(47, 195, 159, .32); color: #0B5A4C; }
.pin-phase2  { background: rgba(242, 230, 60, .22); border: 1px solid rgba(217, 205, 31, .5);  color: #4A4406; }
.pin-waitlist{ background: rgba(10, 29, 25, .05);   border: 1px solid rgba(10, 29, 25, .12);   color: #33473F; }
.pin-warn    { background: var(--ink); border: 1px solid var(--ink); color: var(--white); }
.pin-warn i  { color: var(--sun); }

.chips-hint {
    margin-top: 32px;
    font-family: var(--heading);
    font-size: .7rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--text-muted);
}

/* Makes it unmistakable that these areas are Nagpur-only */
.city-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ink); color: var(--white);
    font-family: var(--heading);
    font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 7px 15px; border-radius: var(--r-pill);
    margin-bottom: 18px;
}

.city-tag i { color: var(--sun); font-size: .7rem; }

.chips-block { transition: opacity var(--t); }
.chips-block[hidden] { display: none; }

.more-areas {
    margin-top: 16px;
    font-size: .86rem; font-weight: 600;
    color: var(--mint-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.geo-note {
    margin-top: 12px;
    font-size: .8rem;
    color: var(--text-muted);
}

.area-chips {
    display: flex; flex-wrap: wrap; gap: 9px;
    justify-content: center;
    margin-top: 14px;
}

.area-chip {
    padding: 9px 17px;
    border-radius: var(--r-pill);
    font-size: .86rem; font-weight: 600;
    line-height: 1.2;
    transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t);
}

.area-live { background: rgba(47, 195, 159, .13); color: var(--mint-deep); border: 1px solid rgba(47, 195, 159, .3); }
.area-next { background: var(--paper); color: var(--text-muted); border: 1px dashed rgba(90, 111, 105, .38); }

.area-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.area-chip.selected {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.area-chip.selected .chip-km { color: var(--sun); }
.chip-km { font-weight: 500; opacity: .8; font-size: .78rem; }

.area-legend { margin-top: 18px; font-size: .8rem; color: var(--text-muted); }

.legend-key {
    display: inline-block;
    width: 20px; height: 10px;
    border-radius: 5px;
    vertical-align: 0;
    margin-right: 5px;
}

.legend-live { background: rgba(47, 195, 159, .16); border: 1px solid rgba(47, 195, 159, .45); }
.legend-next { background: var(--paper); border: 1px dashed rgba(90, 111, 105, .45); }

/* ============================================================
   SPLIT FEATURE ROWS
   ============================================================ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.split + .split { margin-top: clamp(56px, 7vw, 96px); }
.split.flip .split-art { order: 2; }

.split-art {
    background: linear-gradient(150deg, var(--white), var(--paper-2));
    border: 1px solid rgba(10, 29, 25, .07);
    border-radius: var(--r-lg);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.anim-svg { width: 100%; height: 100%; }

.anim-caption {
    font-family: var(--heading);
    font-size: 12px; font-weight: 700;
    fill: var(--text-muted);
    letter-spacing: .04em;
}

.checklist { margin-top: 26px; display: grid; gap: 13px; }

.checklist li { display: flex; align-items: center; gap: 12px; font-size: .96rem; font-weight: 500; }

.checklist i {
    width: 24px; height: 24px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--mint);
    color: var(--white);
    display: grid; place-items: center;
    font-size: .66rem;
}

/* ============================================================
   APP PREVIEW
   ============================================================ */
.phones {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(14px, 2.4vw, 34px);
    flex-wrap: wrap;
}

.phone {
    width: 246px;
    background: linear-gradient(160deg, #E9F4F0, #C9E2DA);
    border-radius: 34px;
    padding: 8px;
    box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .22);
    transition: transform var(--t);
}

.phone:nth-child(2) { transform: translateY(-26px); }
.phone:hover { transform: translateY(-34px); }
.phone:nth-child(2):hover { transform: translateY(-52px); }

.phone-screen {
    background: var(--white);
    border-radius: 26px;
    height: 460px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--text);
}

.ph-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 16px 11px;
    font-size: .72rem; font-weight: 700;
    border-bottom: 1px solid rgba(10, 29, 25, .07);
}

.ph-bar .muted { color: var(--text-muted); font-weight: 500; }

.ph-body { padding: 14px 16px; overflow: hidden; flex: 1; }

.ph-search {
    background: var(--paper);
    border-radius: var(--r-pill);
    padding: 10px 14px;
    font-size: .72rem;
    color: var(--text-muted);
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 14px;
}

.ph-label {
    font-family: var(--heading);
    font-size: .68rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.ph-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.ph-prod {
    background: var(--paper);
    border-radius: 14px;
    padding: 11px;
    text-align: center;
}

.ph-prod .emo { font-size: 1.5rem; }
.ph-prod .nm { font-size: .68rem; font-weight: 600; margin: 5px 0 7px; line-height: 1.3; }

.ph-prod .pr {
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--heading); font-weight: 700; font-size: .74rem;
}

.ph-add {
    background: var(--mint); color: var(--white);
    font-size: .58rem; padding: 3px 8px; border-radius: var(--r-pill);
    letter-spacing: .06em;
}

.ph-line {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(10, 29, 25, .06);
}

.ph-line .emo {
    width: 34px; height: 34px; border-radius: 10px;
    background: var(--paper);
    display: grid; place-items: center; font-size: 1rem;
}

.ph-line .nm { flex: 1; font-size: .74rem; font-weight: 600; }
.ph-line .nm small { display: block; color: var(--text-muted); font-weight: 500; font-size: .66rem; }
.ph-line .pr { font-family: var(--heading); font-weight: 700; font-size: .76rem; }

.ph-sum { margin-top: 12px; font-size: .72rem; }
.ph-sum div { display: flex; justify-content: space-between; padding: 4px 0; color: var(--text-muted); }

.ph-sum .tot {
    font-family: var(--heading); font-weight: 700;
    font-size: .9rem; color: var(--text);
    border-top: 1px dashed rgba(10, 29, 25, .14);
    margin-top: 6px; padding-top: 9px;
}

.ph-pay {
    margin-top: 12px;
    background: var(--ink); color: var(--white);
    text-align: center; padding: 11px;
    border-radius: var(--r-pill);
    font-family: var(--heading); font-weight: 700; font-size: .8rem;
}

.ph-map {
    height: 128px; border-radius: 14px;
    background:
        radial-gradient(circle at 22% 66%, rgba(47,195,159,.28), transparent 42%),
        repeating-linear-gradient(90deg, var(--paper) 0 22px, #E1EBE6 22px 23px),
        repeating-linear-gradient(0deg, var(--paper) 0 22px, #E1EBE6 22px 23px);
    position: relative; overflow: hidden; margin-bottom: 12px;
}

.ph-map .pin { position: absolute; font-size: .8rem; }
.ph-map .pin-a { left: 20%; top: 60%; color: var(--ink); }
.ph-map .pin-b { right: 18%; top: 24%; color: var(--mint-deep); }

.ph-map .dash {
    position: absolute; left: 24%; top: 34%;
    width: 54%; height: 32%;
    border-top: 2.5px dashed var(--mint);
    border-right: 2.5px dashed var(--mint);
    border-radius: 0 40px 0 0;
}

.ph-eta {
    background: rgba(47, 195, 159, .12);
    color: var(--mint-deep);
    font-family: var(--heading); font-weight: 700; font-size: .78rem;
    text-align: center; padding: 9px; border-radius: var(--r-sm);
    margin-bottom: 12px;
}

.ph-track { display: grid; gap: 12px; }
.ph-track li { display: flex; gap: 11px; font-size: .72rem; }

.ph-track .bullet {
    width: 9px; height: 9px; border-radius: 50%;
    background: #D3DFDA; margin-top: 5px; flex-shrink: 0;
}

.ph-track li.on .bullet { background: var(--mint); box-shadow: 0 0 0 4px rgba(47, 195, 159, .22); }
.ph-track .tt { font-weight: 700; display: block; }
.ph-track .td { color: var(--text-muted); font-size: .66rem; display: block; margin-top: 2px; }

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.offer-list { margin-top: 26px; display: grid; gap: 14px; }

.offer-list li { display: flex; gap: 13px; align-items: flex-start; font-size: .97rem; }

.offer-list i {
    width: 26px; height: 26px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--sun); color: var(--ink);
    display: grid; place-items: center; font-size: .7rem;
    margin-top: 1px;
}

.form-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: clamp(26px, 3.4vw, 40px);
    box-shadow: var(--shadow-lg);
    color: var(--text);
}

.form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-card .sub { color: var(--text-muted); font-size: .92rem; margin-bottom: 24px; }

.field { margin-bottom: 13px; position: relative; }

.field input {
    width: 100%;
    padding: 15px 16px 15px 46px;
    background: var(--paper);
    border: 2px solid transparent;
    border-radius: var(--r-sm);
    font-size: .97rem;
    transition: border-color var(--t), background var(--t);
}

.field input::placeholder { color: #9DB0AA; }
.field input:focus { outline: none; border-color: var(--mint); background: var(--white); }

.field > i {
    position: absolute;
    left: 17px; top: 50%; transform: translateY(-50%);
    color: #9DB0AA; font-size: .92rem;
    pointer-events: none;
}

.field-hint { font-size: .78rem; color: var(--text-muted); margin: -4px 0 16px 4px; }

.consent {
    display: flex; gap: 11px; align-items: flex-start;
    font-size: .84rem; color: var(--text-muted);
    line-height: 1.5; margin-bottom: 18px;
}

.consent input {
    width: 19px; height: 19px; flex-shrink: 0;
    margin-top: 2px; accent-color: var(--mint); cursor: pointer;
}

.consent a { color: var(--mint-deep); font-weight: 600; text-decoration: underline; }

.count-line { margin-top: 16px; text-align: center; font-size: .86rem; color: var(--text-muted); }
.count-line strong { color: var(--mint-deep); }
.hidden-count { display: none; }

/* Success state */
.success { display: none; text-align: center; }
.success .tick { font-size: 2.6rem; color: var(--mint); margin-bottom: 14px; }
.success h3 { font-size: 1.5rem; margin-bottom: 6px; }

.queue {
    display: inline-block;
    font-family: var(--display);
    font-size: 1.7rem;
    background: var(--ink); color: var(--sun);
    padding: 8px 24px; border-radius: var(--r-pill);
    margin: 14px 0 10px;
}

.success p { color: var(--text-muted); font-size: .93rem; margin-bottom: 22px; }

.ref-row { display: flex; gap: 9px; margin-bottom: 14px; flex-wrap: wrap; }

.ref-row input {
    flex: 1 1 200px;
    padding: 13px 15px;
    background: var(--paper);
    border: 1px solid rgba(10, 29, 25, .08);
    border-radius: var(--r-sm);
    font-size: .84rem;
}

.ref-row button {
    padding: 13px 18px;
    border-radius: var(--r-sm);
    font-weight: 600; font-size: .88rem;
    color: var(--mint-deep);
    border: 1px solid rgba(47, 195, 159, .34);
}

.btn-wa { background: #25D366; color: #fff; box-shadow: 0 10px 22px -8px rgba(37, 211, 102, .7); }
.btn-wa:hover { background: #2ee372; }

/* ============================================================
   PARTNER
   ============================================================ */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.partner-card {
    text-align: left;
    background: var(--white);
    border: 1px solid rgba(10, 29, 25, .08);
    border-radius: var(--r-lg);
    padding: 34px 30px;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    position: relative;
    overflow: hidden;
}

.partner-card::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: var(--accent, var(--mint));
}

.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(47, 195, 159, .32); }

.partner-ico {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: var(--accent, var(--mint));
    color: var(--white);
    display: grid; place-items: center;
    font-size: 1.24rem;
    margin-bottom: 18px;
}

.partner-card h3 { margin-bottom: 9px; }
.partner-card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 16px; }

.partner-go {
    font-family: var(--heading);
    font-weight: 700; font-size: .9rem;
    color: var(--mint-deep);
    display: inline-flex; align-items: center; gap: 8px;
}

.partner-card:hover .partner-go i { transform: translateX(4px); }
.partner-go i { transition: transform var(--t); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 780px; margin-inline: auto; }

.faq-item {
    border-bottom: 1px solid rgba(10, 29, 25, .1);
    transition: border-color var(--t);
}

.faq-item.open { border-color: rgba(47, 195, 159, .45); }

.faq-q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 22px 4px;
    text-align: left;
    font-family: var(--heading);
    font-size: 1.04rem; font-weight: 700;
    letter-spacing: -.01em;
}

.faq-q i { color: var(--mint-deep); font-size: .82rem; transition: transform var(--t); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 4px 24px; color: var(--text-muted); font-size: .97rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--ink); color: var(--text-on-ink); padding: 72px 0 0; }

.foot .logo { color: var(--white); }

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 52px;
}

.foot-tag {
    font-family: var(--heading);
    font-size: .74rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--sun);
    margin: 16px 0 12px;
}

.foot-brand p { font-size: .92rem; max-width: 32ch; }

.socials { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }

.social-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
    color: var(--white);
    display: grid; place-items: center;
    font-size: .95rem;
    transition: background var(--t), color var(--t), transform var(--t);
}

.social-btn:hover { background: var(--mint); color: var(--ink); transform: translateY(-3px); }

.foot h4 {
    color: var(--white);
    font-size: .74rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    margin-bottom: 18px;
}

.foot-links li { margin-bottom: 11px; }
.foot-links a { font-size: .92rem; transition: color var(--t); }
.foot-links a:hover { color: var(--mint-bright); }

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 0 30px;
}

.foot-bottom p { font-size: .78rem; opacity: .6; line-height: 1.8; }

/* ============================================================
   MODALS
   ============================================================ */
.modal {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(10, 29, 25, .62);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center; justify-content: center;
    padding: 20px; overflow-y: auto;
}

.modal.active { display: flex; }

.modal-box {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 38px 32px;
    width: 460px; max-width: 100%;
    position: relative;
    animation: rise .32s var(--ease);
    text-align: left;
}

.modal-box.center { text-align: center; }
.modal-box h3 { font-size: 1.34rem; margin-bottom: 8px; padding-right: 32px; }
.modal-box.center h3 { padding-right: 0; }
.modal-box .sub { color: var(--text-muted); font-size: .92rem; margin-bottom: 24px; }

.modal-x {
    position: absolute; top: 16px; right: 16px;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--paper); color: var(--text-muted);
    display: grid; place-items: center;
}

.modal-x:hover { background: var(--paper-2); }

.modal-ico {
    width: 78px; height: 78px; border-radius: 24px;
    background: var(--paper-2); color: var(--mint-deep);
    display: grid; place-items: center;
    font-size: 1.9rem; margin: 0 auto 20px;
    position: relative;
}

.modal-ico::after {
    content: '';
    position: absolute; inset: -8px;
    border-radius: 30px;
    border: 2px solid var(--mint);
    opacity: .35;
    animation: haloPulse 2.4s ease-out infinite;
}

@keyframes haloPulse {
    0%   { transform: scale(.9);  opacity: .5; }
    70%, 100% { transform: scale(1.16); opacity: 0; }
}

.modal-kicker {
    display: inline-block;
    font-family: var(--heading);
    font-size: .68rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--mint-deep);
    background: var(--paper-2);
    padding: 6px 14px; border-radius: var(--r-pill);
    margin-bottom: 14px;
}

.modal-box.center h3 { font-size: 1.6rem; }

.modal-actions { display: grid; gap: 10px; margin-top: 24px; }

.modal-secondary {
    font-size: .88rem; font-weight: 600;
    color: var(--text-muted);
    padding: 6px;
}

.modal-secondary:hover { color: var(--ink); }

.modal-label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 7px; }

.modal-input {
    width: 100%;
    padding: 13px 15px;
    background: var(--paper);
    border: 2px solid transparent;
    border-radius: var(--r-sm);
    font-size: .95rem;
    margin-bottom: 17px;
}

.modal-input:focus { outline: none; border-color: var(--mint); background: var(--white); }

/* ============================================================
   TOAST + FLOATING ACTIONS
   ============================================================ */
.toast {
    position: fixed;
    top: calc(var(--nav-h) + 12px); right: 20px;
    z-index: 1100;
    background: var(--ink); color: var(--white);
    padding: 14px 20px;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 11px;
    font-size: .9rem;
    max-width: 340px;
    transform: translateX(140%);
    transition: transform .4s var(--ease);
}

.toast.show { transform: none; }
.toast i { color: var(--mint-bright); }

.wa-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 950;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: grid; place-items: center;
    font-size: 1.6rem;
    box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .8);
    transition: transform var(--t);
}

.wa-float:hover { transform: scale(1.08); }

/* Sticky mobile CTA */
.mobile-cta {
    position: fixed; inset: auto 0 0 0; z-index: 940;
    display: none;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(243, 247, 243, .94);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(10, 29, 25, .1);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-element {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal-element.revealed { opacity: 1; transform: none; }

/* ============================================================
   ILLUSTRATION ANIMATIONS
   ============================================================ */
.route-line { stroke: rgba(47, 195, 159, .18); stroke-width: 10; stroke-linecap: round; }

.route-line-fill {
    stroke: url(#oveyRoute);
    stroke-width: 6; stroke-linecap: round;
    stroke-dasharray: 300; stroke-dashoffset: 300;
    animation: draw 3.6s cubic-bezier(.42, 0, .58, 1) infinite;
}

@keyframes draw {
    0%   { stroke-dashoffset: 300; }
    70%  { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

.pin-hub circle  { fill: var(--ink); }
.pin-home circle { fill: var(--mint); }
.pin-hub .glyph, .pin-home .glyph { fill: #fff; }

.rider-body  { fill: var(--sun); stroke: var(--sun-deep); stroke-width: 2; }
.rider-glyph { stroke: var(--ink); }

.pulse-ring {
    fill: none; stroke: var(--mint); stroke-width: 2;
    opacity: 0; transform-origin: 70px 150px;
    animation: pulse 3.6s ease-out infinite;
}

.pulse-ring.delay { animation-delay: 1.2s; }

@keyframes pulse {
    0%   { opacity: .55; transform: scale(.55); }
    60%, 100% { opacity: 0; transform: scale(1.9); }
}

.crate-body { fill: var(--ink); opacity: .92; }
.crate-lip  { fill: var(--mint-deep); }

.produce circle { fill: var(--mint); }
.produce .leaf  { fill: var(--mint-deep); }
.produce { animation: settle 4s ease-in-out infinite; }
.produce.p2 { animation-delay: .35s; }
.produce.p3 { animation-delay: .7s; }

@keyframes settle {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-9px); }
}

.scan-line {
    stroke: var(--sun); stroke-width: 3; stroke-linecap: round;
    animation: scan 4s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { transform: translateY(0); opacity: 0; }
    15%      { opacity: .95; }
    50%      { transform: translateY(120px); opacity: .95; }
    75%      { opacity: 0; }
}

.check-ring { fill: var(--mint); transform-origin: 272px 72px; animation: pop 4s ease-out infinite; }

.check-mark {
    stroke: #fff; stroke-dasharray: 44; stroke-dashoffset: 44;
    animation: tick 4s ease-out infinite;
}

@keyframes pop {
    0%, 45%   { transform: scale(0); }
    58%       { transform: scale(1.12); }
    68%, 100% { transform: scale(1); }
}

@keyframes tick {
    0%, 55%   { stroke-dashoffset: 44; }
    72%, 100% { stroke-dashoffset: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
    .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 640px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-art { margin-top: 26px; }
    .split { grid-template-columns: 1fr; }
    .split.flip .split-art { order: 0; }
    .waitlist-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .step-rule { right: 0; }
}

@media (max-width: 860px) {
    .menu-toggle { display: grid; }

    .nav-menu {
        position: fixed;
        inset: var(--nav-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: var(--paper);
        padding: 18px var(--gutter) 26px;
        box-shadow: 0 18px 34px -18px rgba(10, 29, 25, .3);
        transform: translateY(-130%);
        transition: transform var(--t);
    }

    .nav-menu.active { transform: none; }
    .nav-menu a { padding: 13px 14px; font-size: 1rem; }
    .nav-menu .btn { margin: 8px 0 0; justify-content: center; }

    .nav { background: rgba(243, 247, 243, .9); backdrop-filter: blur(14px); }

    .phone:nth-child(2) { transform: none; }
    .phone:hover, .phone:nth-child(2):hover { transform: translateY(-10px); }
}

@media (max-width: 640px) {
    :root { --gutter: 18px; }

    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cat-card { padding: 18px 16px; min-height: 132px; }
    .cat-ico { font-size: 1.5rem; }
    .cat-card h3 { font-size: .92rem; padding-right: 0; }
    .cat-go { display: none; }

    .pin-form { flex-direction: column; }
    .pin-form .btn { width: 100%; }

    .hero-cta .btn { flex: 1 1 100%; }
    .rider-chip { left: 0; bottom: 16px; }
    .blob-sun { width: 170px; height: 170px; }

    .foot-grid { grid-template-columns: 1fr; }

    .mobile-cta { display: block; }
    .wa-float { bottom: 84px; }
    body { padding-bottom: 76px; }

    .toast { left: 16px; right: 16px; max-width: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal-element { opacity: 1; transform: none; }
    .rise { opacity: 1; transform: none; }
    .hero h1 .mark::after { transform: scaleX(1); }
    .route-line-fill, .check-mark { stroke-dashoffset: 0; }
    .check-ring { transform: scale(1); }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding: calc(var(--nav-h) + 64px) 0 90px; max-width: 780px; }
.legal h1 { font-family: var(--display); font-size: clamp(2rem, 4.4vw, 2.9rem); margin-bottom: 8px; }
.legal .updated { color: var(--text-muted); font-size: .88rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.16rem; margin: 34px 0 12px; }
.legal p, .legal li { color: #3C524B; font-size: .97rem; line-height: 1.75; margin-bottom: 11px; }
.legal ul { padding-left: 22px; list-style: disc; }
.legal a { color: var(--mint-deep); text-decoration: underline; }

.legal-note {
    background: rgba(242, 230, 60, .2);
    border: 1px solid rgba(217, 205, 31, .45);
    border-radius: var(--r-sm);
    padding: 17px 19px;
    font-size: .9rem;
    margin-bottom: 30px;
}
