/* ============================================================
   TRANSIX — v2 editorial design system
   Space Grotesk display · Inter body · photography-led
   ============================================================ */

:root {
    --ink: #0A0F16;
    --ink-2: #10171F;
    --ink-3: #1A232E;
    --paper: #F4F2ED;
    --paper-2: #ECE9E2;
    --white: #FFFFFF;
    --body: #4A5462;
    --body-dark: #97A3B2;
    --green: #17A24A;
    --green-bright: #24C55E;
    --blue: #2563EB;
    --hair-d: rgba(255,255,255,.14);
    --hair-l: rgba(10,15,22,.14);
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --nav-h: 74px;
    --pad-x: clamp(20px, 4vw, 56px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--body);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: rgba(23,162,74,.25); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.wrap { padding-inline: var(--pad-x); max-width: 1440px; margin-inline: auto; }

/* micro label */
.tag {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.tag::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.tag.on-dark { color: var(--green-bright); }
.tag.no-rule::before { display: none; }

/* grain overlay for dark sections */
.grain { position: relative; isolation: isolate; }
.grain::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.grain > * { position: relative; z-index: 2; }

/* reveal */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.2,.65,.25,1), transform .9s cubic-bezier(.2,.65,.25,1); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
    .rv { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .mq-track { animation: none !important; }
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: .01em;
    padding: 17px 32px;
    border: 0;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    white-space: nowrap;
}
.btn-solid { background: var(--green); color: #fff; }
.btn-solid:hover { background: var(--green-bright); transform: translateY(-2px); }
.btn-line { background: transparent; color: #fff; border: 1px solid var(--hair-d); }
.btn-line:hover { border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-3); transform: translateY(-2px); }
.btn-sm { padding: 12px 24px; font-size: 13.5px; }

.arrow-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--hair-l);
    padding-bottom: 6px;
    transition: gap .25s, border-color .25s;
}
.arrow-link:hover { gap: 16px; border-color: var(--green); }
.arrow-link.on-dark { color: #fff; border-color: var(--hair-d); }

/* ---------- dropdown ---------- */
.dd { position: relative; }
.dd-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 250px;
    background: #fff;
    border: 1px solid var(--hair-l);
    box-shadow: 0 30px 60px rgba(10,15,22,.18);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s ease;
    z-index: 80;
}
.dd.open .dd-menu { opacity: 1; visibility: visible; transform: none; }
.dd-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    transition: background .2s;
}
.dd-menu a:hover { background: var(--paper); }
.dd-menu a small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--body); font-size: 11.5px; line-height: 1.4; }
.dd-menu a .ic { width: 34px; height: 34px; background: var(--paper); display: grid; place-items: center; flex: 0 0 auto; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(10, 15, 22, .97);
    border-bottom-color: var(--hair-d);
}
.nav-inner { display: flex; align-items: center; gap: 44px; width: 100%; }
.nav .logo { display: flex; align-items: center; }
.nav-links { display: flex; gap: 36px; margin-left: auto; }
.nav-links a {
    color: rgba(255,255,255,.72);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .02em;
    padding: 6px 0;
    position: relative;
    transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--green-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 6px; }

.nav-burger {
    display: none;
    margin-left: auto;
    width: 44px; height: 44px;
    border: 1px solid var(--hair-d);
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.nav-burger span { width: 18px; height: 1.5px; background: #fff; transition: all .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    z-index: 99;
    background: rgba(10,15,22,.97);
    backdrop-filter: blur(16px);
    padding: 14px var(--pad-x) 30px;
    display: none;
    flex-direction: column;
    border-bottom: 1px solid var(--hair-d);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: rgba(255,255,255,.85);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 18px;
    padding: 16px 2px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-menu .btn { margin-top: 20px; }

/* ============================================================
   HERO — full-bleed photo
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("photos/hero.jpg");
    background-size: cover;
    background-position: 60% 38%;
    animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}
.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,15,22,.97) 0%, rgba(10,15,22,.72) 40%, rgba(10,15,22,.22) 100%),
        linear-gradient(0deg, rgba(10,15,22,.96) 0%, rgba(10,15,22,.25) 38%, rgba(10,15,22,.35) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(56px, 8vh, 110px);
    padding-top: calc(var(--nav-h) + 40px);
}
.hero h1 {
    color: #fff;
    font-size: clamp(52px, 8.6vw, 118px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: .98;
    margin: 26px 0 28px;
    max-width: 12ch;
}
.hero h1 .accent { color: var(--green-bright); }
.hero .lede {
    font-size: clamp(16px, 1.4vw, 19px);
    color: rgba(255,255,255,.82);
    max-width: 46ch;
    margin-bottom: 40px;
    font-weight: 400;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

/* hero bottom fact strip */
.hero-facts {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--hair-d);
}
.hero-facts-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.hero-fact {
    padding: 22px 26px 22px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(255,255,255,.85);
}
.hero-fact + .hero-fact { border-left: 1px solid var(--hair-d); padding-left: 26px; }
.hero-fact .n {
    font-size: 11px;
    color: var(--green-bright);
    letter-spacing: .2em;
}

/* ============================================================
   MARQUEE — neighborhoods ticker
   ============================================================ */
.marquee {
    background: var(--ink);
    border-top: 1px solid var(--hair-d);
    border-bottom: 1px solid var(--hair-d);
    overflow: hidden;
    padding: 18px 0;
}
.mq-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: mq 60s linear infinite;
}
@keyframes mq { to { transform: translateX(-50%); } }
.mq-item {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 56px;
    white-space: nowrap;
}
.mq-item::after { content: "✦"; color: var(--green); font-size: 11px; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { padding: clamp(90px, 12vw, 150px) 0 clamp(70px, 9vw, 120px); background: var(--paper); }
.manifesto-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: clamp(40px, 6vw, 100px);
    align-items: end;
}
.manifesto h2 {
    font-size: clamp(34px, 4.6vw, 64px);
    letter-spacing: -0.035em;
    line-height: 1.04;
    margin-top: 24px;
}
.manifesto h2 em {
    font-style: normal;
    color: var(--green);
}
.manifesto .side p { margin-bottom: 22px; font-size: 16.5px; }
.manifesto .side .arrow-link { margin-top: 4px; }

/* ============================================================
   SERVICES — editorial split rows
   ============================================================ */
.services { background: var(--paper); padding-bottom: clamp(30px, 4vw, 60px); }
.svc-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0 clamp(20px, 3vw, 48px);
    align-items: center;
    padding: clamp(46px, 6vw, 80px) 0;
    border-top: 1px solid var(--hair-l);
}
.svc-row .media { grid-column: 1 / 8; position: relative; }
.svc-row .text { grid-column: 8 / 13; }
.svc-row.flip .media { grid-column: 6 / 13; order: 2; }
.svc-row.flip .text { grid-column: 1 / 6; order: 1; }
.svc-media {
    position: relative;
    aspect-ratio: 16 / 10.5;
    overflow: hidden;
}
.svc-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(.2,.6,.25,1);
}
.svc-row:hover .svc-media img { transform: scale(1.045); }
.svc-media .badge {
    position: absolute;
    left: 0; bottom: 0;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.svc-media .badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); }
.svc-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .2em;
    color: var(--green);
    display: block;
    margin-bottom: 18px;
}
.svc-row h3 {
    font-size: clamp(30px, 3.4vw, 46px);
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}
.svc-row .text p { margin-bottom: 26px; max-width: 44ch; }
.svc-points { margin: 0 0 30px; }
.svc-points li {
    font-size: 15px;
    color: var(--ink);
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--hair-l);
    display: flex;
    align-items: center;
    gap: 12px;
}
.svc-points li::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--green);
    transform: rotate(45deg);
    flex: 0 0 auto;
}

/* ============================================================
   APP — dark band with phone
   ============================================================ */
.app-band {
    background: var(--ink);
    color: #fff;
    padding: clamp(90px, 11vw, 150px) 0;
    overflow: hidden;
}
.app-grid {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: clamp(50px, 7vw, 120px);
    align-items: center;
}
.app-band h2 {
    color: #fff;
    font-size: clamp(36px, 4.6vw, 62px);
    letter-spacing: -0.035em;
    margin: 24px 0 18px;
}
.app-band h2 .accent { color: var(--green-bright); }
.app-band .sub { color: var(--body-dark); max-width: 46ch; margin-bottom: 44px; }
.steps { counter-reset: step; }
.step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-top: 1px solid var(--hair-d);
}
.step .num {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--green-bright);
    letter-spacing: .12em;
    padding-top: 3px;
}
.step h4 { color: #fff; font-size: 19px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 6px; }
.step p { color: var(--body-dark); font-size: 14.5px; max-width: 42ch; }

/* phone mockup (kept, re-tuned) */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.phone-wrap::before {
    content: "";
    position: absolute;
    width: 380px; height: 380px;
    border: 1px solid var(--hair-d);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.phone-wrap::after {
    content: "";
    position: absolute;
    width: 520px; height: 520px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.phone {
    position: relative;
    z-index: 2;
    width: 300px;
    height: 615px;
    background: #0D1522;
    border-radius: 44px;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 60px 120px rgba(0,0,0,.55), inset 0 0 0 2px rgba(255,255,255,.04);
    overflow: hidden;
}
.phone .notch {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 104px; height: 25px;
    background: #05080D;
    border-radius: 100px;
    z-index: 5;
}
.phone-screen { position: absolute; inset: 0; display: flex; flex-direction: column; background: #0E1727; }
.p-map {
    position: relative;
    flex: 1;
    background:
        radial-gradient(circle at 70% 20%, rgba(37,99,235,.16), transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(23,162,74,.13), transparent 55%),
        #101B2E;
    overflow: hidden;
}
.p-map .streets {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1.5px, transparent 1.5px);
    background-size: 44px 44px;
    transform: rotate(-8deg) scale(1.3);
}
.p-route { position: absolute; inset: 0; width: 100%; height: 100%; }
.p-route path {
    fill: none;
    stroke: url(#routeGrad);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: draw 3s ease forwards .5s;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.p-pin {
    position: absolute;
    width: 30px; height: 30px;
    border-radius: 50% 50% 50% 4px;
    background: var(--green);
    transform: rotate(45deg);
    display: grid;
    place-items: center;
}
.p-pin::after { content: ""; width: 10px; height: 10px; background: #fff; border-radius: 50%; transform: rotate(-45deg); }
.p-pin.a { top: 24%; left: 16%; }
.p-pin.b { top: 58%; right: 15%; background: #fff; }
.p-pin.b::after { background: var(--blue); }
.p-car {
    position: absolute;
    top: 41%; left: 45%;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.25);
    display: grid;
    place-items: center;
}
.p-sheet { background: #fff; border-radius: 22px 22px 0 0; padding: 18px 18px 22px; }
.p-sheet .grab { width: 40px; height: 4px; background: #E2E0DA; border-radius: 100px; margin: 0 auto 14px; }
.p-driver { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.p-driver .avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
}
.p-driver .info { flex: 1; }
.p-driver .info b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 14px; line-height: 1.3; }
.p-driver .info span { font-size: 11.5px; color: var(--body); }
.p-driver .eta {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: var(--green);
    background: rgba(23,162,74,.1);
    padding: 6px 12px;
    border-radius: 100px;
    white-space: nowrap;
}
.p-progress { height: 5px; background: #EFEDE7; overflow: hidden; margin-bottom: 12px; border-radius: 100px; }
.p-progress i { display: block; height: 100%; width: 55%; background: var(--green); border-radius: 100px; }
.p-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--body); }
.p-row b { color: var(--ink); font-family: var(--font-display); }

/* ============================================================
   TRUST — photo band + feature columns
   ============================================================ */
.trust { background: var(--paper); }
.trust-head {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: clamp(30px, 5vw, 90px);
    align-items: end;
    padding: clamp(80px, 10vw, 130px) 0 clamp(46px, 5vw, 70px);
}
.trust-head h2 { font-size: clamp(34px, 4.4vw, 60px); margin-top: 24px; }
.trust-head .side { padding-bottom: 8px; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 48px);
    padding-bottom: clamp(80px, 10vw, 130px);
}
.trust-item { border-top: 2px solid var(--ink); padding-top: 22px; }
.trust-item .idx {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    color: var(--green);
    display: block;
    margin-bottom: 34px;
}
.trust-item h4 { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 10px; }
.trust-item p { font-size: 14.5px; }

/* full-bleed photo divider */
.photo-band {
    position: relative;
    height: clamp(320px, 46vw, 560px);
    overflow: hidden;
}
.photo-band img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 42%;
}
.photo-band .shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,15,22,.55), rgba(10,15,22,.1) 55%);
}
.photo-band .caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 26px var(--pad-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: rgba(255,255,255,.9);
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.photo-band .caption i { font-style: normal; color: var(--green-bright); }

/* ============================================================
   DRIVE — dark editorial split
   ============================================================ */
.drive {
    background: var(--ink);
    color: #fff;
    padding: clamp(90px, 11vw, 150px) 0;
}
.drive-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: clamp(46px, 6vw, 110px);
    align-items: center;
}
.drive-media { position: relative; }
.drive-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.drive-media::after {
    content: "";
    position: absolute;
    inset: 22px -22px -22px 22px;
    border: 1px solid var(--hair-d);
    z-index: -1;
}
.drive-media .chip {
    position: absolute;
    right: -14px; bottom: 34px;
    background: #fff;
    color: var(--ink);
    padding: 16px 22px;
    font-family: var(--font-display);
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.drive-media .chip b { display: block; font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.drive-media .chip span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--body); }
.drive h2 {
    color: #fff;
    font-size: clamp(36px, 4.6vw, 62px);
    margin: 24px 0 20px;
}
.drive h2 .accent { color: var(--green-bright); }
.drive .sub { color: var(--body-dark); max-width: 48ch; margin-bottom: 10px; }
.earn-rows { margin: 34px 0 40px; }
.earn-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--hair-d);
}
.earn-row:last-child { border-bottom: 1px solid var(--hair-d); }
.earn-row .lbl { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: #fff; }
.earn-row .lbl small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--body-dark); margin-top: 2px; }
.earn-row .val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(24px, 2.4vw, 34px);
    letter-spacing: -0.02em;
    color: var(--green-bright);
    white-space: nowrap;
}

/* ============================================================
   TESTIMONIALS — editorial quote(s)
   ============================================================ */
.quotes { background: var(--paper); padding: clamp(90px, 11vw, 150px) 0; }
.quotes-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: clamp(40px, 5vw, 64px); }
.quotes-head h2 { font-size: clamp(32px, 4vw, 54px); margin-top: 22px; }
.t-nav { display: flex; gap: 10px; }
.t-btn {
    width: 52px; height: 52px;
    border: 1px solid var(--hair-l);
    background: transparent;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .25s;
}
.t-btn:hover { background: var(--ink); border-color: var(--ink); }
.t-btn:hover svg path { stroke: #fff; }
.t-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(560px, 88vw);
    gap: clamp(24px, 3vw, 48px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 10px;
}
.t-slider::-webkit-scrollbar { display: none; }
.t-slider.center { justify-content: center; }
.t-card {
    scroll-snap-align: start;
    border-top: 2px solid var(--ink);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.t-card .qmark {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: .6;
    color: var(--green);
    font-weight: 700;
}
.t-card blockquote {
    font-family: var(--font-display);
    font-size: clamp(19px, 1.9vw, 26px);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.45;
    color: var(--ink);
}
.t-who { display: flex; align-items: center; gap: 16px; margin-top: auto; }
.t-who img, .t-who .avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
}
.t-who b { display: block; font-family: var(--font-display); color: var(--ink); font-size: 15.5px; font-weight: 700; }
.t-who span { font-size: 12px; color: var(--body); letter-spacing: .1em; text-transform: uppercase; }
.t-who .stars { color: #E4A400; font-size: 13px; letter-spacing: 3px; margin-top: 3px; }

/* ============================================================
   DOWNLOAD
   ============================================================ */
.dl { background: var(--ink); color: #fff; }
.dl-inner {
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
    gap: clamp(46px, 6vw, 110px);
    align-items: center;
    padding: clamp(90px, 11vw, 150px) 0;
    border-top: 1px solid var(--hair-d);
}
.dl h2 {
    color: #fff;
    font-size: clamp(38px, 5vw, 72px);
    letter-spacing: -0.04em;
    margin: 24px 0 20px;
}
.dl h2 .accent { color: var(--green-bright); }
.dl .sub { color: var(--body-dark); max-width: 46ch; margin-bottom: 38px; }
.dl-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.dl-cards { display: grid; gap: 20px; }
.dl-card {
    display: flex;
    align-items: center;
    gap: 22px;
    border: 1px solid var(--hair-d);
    padding: 24px;
    transition: border-color .3s, background .3s;
}
.dl-card:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.03); }
.dl-card .qr { width: 92px; height: 92px; background: #fff; padding: 7px; flex: 0 0 auto; }
.dl-card .qr img { width: 100%; height: 100%; object-fit: contain; }
.dl-card h5 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}
.dl-card .who { font-size: 12.5px; color: var(--body-dark); margin-bottom: 12px; }
.dl-card .apk-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--green-bright);
    border-bottom: 1px solid rgba(36,197,94,.35);
    padding-bottom: 3px;
    transition: color .2s, border-color .2s;
}
.dl-card .apk-link:hover { color: #fff; border-color: #fff; }
.dl-card .stores { display: flex; gap: 14px; margin-top: 8px; }
.dl-card .stores a { font-size: 12px; color: var(--body-dark); border-bottom: 1px solid var(--hair-d); padding-bottom: 2px; }
.dl-card .stores a:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--ink);
    color: var(--body-dark);
    border-top: 1px solid var(--hair-d);
    font-size: 14.5px;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
    gap: clamp(40px, 5vw, 80px);
    padding: clamp(60px, 7vw, 90px) 0 clamp(46px, 5vw, 70px);
}
.f-brand p { max-width: 34ch; margin: 24px 0 28px; }
.f-social { display: flex; gap: 10px; }
.f-social a {
    width: 42px; height: 42px;
    border: 1px solid var(--hair-d);
    display: grid;
    place-items: center;
    transition: all .25s;
}
.f-social a:hover { background: var(--green); border-color: var(--green); }
.f-col h5 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.f-links { display: grid; gap: 13px; }
.f-links a { color: var(--body-dark); transition: color .2s, padding-left .2s; }
.f-links a:hover { color: #fff; padding-left: 6px; }
.f-contact { display: grid; gap: 20px; }
.f-contact small {
    display: block;
    font-family: var(--font-display);
    color: rgba(255,255,255,.4);
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 3px;
}
.f-contact a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid var(--hair-d);
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: rgba(255,255,255,.4);
}
.footer-bottom .links { display: flex; gap: 26px; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   SUBPAGES
   ============================================================ */
.page-hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    padding: calc(var(--nav-h) + clamp(60px, 9vw, 120px)) 0 clamp(56px, 7vw, 96px);
    overflow: hidden;
}
.page-hero .bg {
    position: absolute;
    inset: 0;
    background-image: url("photos/hero.jpg");
    background-size: cover;
    background-position: 60% 42%;
    opacity: .22;
}
.page-hero .shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--ink) 4%, rgba(10,15,22,.55) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 {
    color: #fff;
    font-size: clamp(42px, 6.5vw, 88px);
    letter-spacing: -0.04em;
    margin: 22px 0 16px;
}
.page-hero p { color: rgba(255,255,255,.78); max-width: 54ch; font-size: 17px; }
.page-body { padding: clamp(70px, 9vw, 120px) 0; background: var(--paper); }
.prose { max-width: 760px; }
.prose h2, .prose h3 { margin: 40px 0 16px; letter-spacing: -0.02em; }
.prose p { margin-bottom: 18px; }
.prose ul { margin: 0 0 18px 22px; list-style: disc; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
}
.contact-card {
    border-top: 2px solid var(--ink);
    padding-top: 24px;
}
.contact-card .idx {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: .18em;
    color: var(--green);
    display: block;
    margin-bottom: 30px;
}
.contact-card h4 { font-size: 20px; margin-bottom: 10px; }
.contact-card a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--hair-l); }
.contact-card a:hover { border-color: var(--green); color: var(--green); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
    .manifesto-grid, .app-grid, .drive-grid, .dl-inner { grid-template-columns: 1fr; }
    .app-grid { gap: 70px; }
    .svc-row .media, .svc-row.flip .media { grid-column: 1 / 13; order: 1; }
    .svc-row .text, .svc-row.flip .text { grid-column: 1 / 13; order: 2; padding-top: 34px; }
    .trust-head { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .drive-media img { aspect-ratio: 16 / 10; }
    .drive-media::after { display: none; }
    .drive-media .chip { right: 18px; }
}
@media (max-width: 720px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .hero h1 { font-size: clamp(44px, 13vw, 64px); }
    .hero-facts-inner { grid-template-columns: 1fr; }
    .hero-fact { padding: 14px 0; }
    .hero-fact + .hero-fact { border-left: 0; border-top: 1px solid var(--hair-d); padding-left: 0; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 44px; }
    .quotes-head { flex-direction: column; align-items: flex-start; }
    .hero-ctas .btn { flex: 1 1 100%; }
    .dl-card { flex-direction: row; }
    .phone { width: 270px; height: 555px; }
    .phone-wrap::before, .phone-wrap::after { display: none; }
}
