/* ============================================================================
   ROADITION CARD — Marketing Site
   ============================================================================
   Design tokens:
     --off-black    #0A0A0A : primary dark, warm near-black
     --concrete     #1A1A1A : secondary dark for card surfaces
     --cream        #F4F0E8 : main light, slightly cooler than dispatch brand
     --cream-dim    #EAE3D2 : cream's quieter sibling for borders
     --hi-vis       #E8FF4A : signature accent — used VERY sparingly
     --hi-vis-soft  #F2FFA3 : hi-vis at low opacity for highlights
     --steel        #5A5A5A : muted text
     --paper        #FFFCF5 : pure-feeling white for forms

   Type:
     --font-display : Inter Tight, the confident modern grotesque
     --font-body    : Inter, hyper-readable
     --font-mono    : JetBrains Mono, for numbers and data
   ============================================================================ */

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

:root {
    --off-black:   #0A0A0A;
    --concrete:    #1A1A1A;
    --concrete-2:  #242424;
    --cream:       #F4F0E8;
    --cream-deep:  #EAE3D2;
    --cream-dim:   #DDD4BE;
    --hi-vis:      #E8FF4A;
    --hi-vis-soft: rgba(232, 255, 74, 0.12);
    --steel:       #5A5A5A;
    --steel-dim:   #3A3A3A;
    --steel-light: #8A8A8A;
    --paper:       #FFFCF5;
    --danger:      #E53E3E;

    --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --font-mono:    'JetBrains Mono', 'Fira Code', monospace;

    --container-w: 1200px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--off-black);
    line-height: 1.55;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--off-black);
    outline-offset: 2px;
}

.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 28px;
}

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================================
   PRE-LAUNCH BAR
   ============================================================================ */
.prelaunch-bar {
    background: var(--off-black);
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 10px 0;
    letter-spacing: 0.02em;
}

.prelaunch-bar .container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.prelaunch-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hi-vis);
    box-shadow: 0 0 8px var(--hi-vis);
    display: inline-block;
    animation: prelaunch-pulse 2.5s infinite;
}

@keyframes prelaunch-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.prelaunch-link {
    color: var(--hi-vis);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================================================
   HEADER
   ============================================================================ */
.site-header {
    background: var(--cream);
    border-bottom: 1px solid var(--cream-deep);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(244, 240, 232, 0.92);
}

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

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--off-black);
    letter-spacing: -0.02em;
}

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hi-vis);
    box-shadow: 0 0 0 2px var(--off-black);
    display: inline-block;
    align-self: center;
    margin-right: 2px;
}

.brand-name { color: var(--off-black); }

.brand-product {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--steel);
    background: var(--cream-deep);
    padding: 3px 8px;
    border-radius: 100px;
    align-self: center;
}

.primary-nav {
    display: flex;
    gap: 28px;
}

.primary-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--steel);
    transition: color 0.15s;
}

.primary-nav a:hover { color: var(--off-black); }

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
    line-height: 1.2;
    border-radius: 100px;
}

.btn-primary {
    background: var(--off-black);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--concrete-2);
}

.btn-ghost {
    background: transparent;
    color: var(--off-black);
    border-color: var(--off-black);
}

.btn-ghost:hover {
    background: var(--off-black);
    color: var(--cream);
}

.btn-quiet {
    background: transparent;
    color: var(--steel);
    border-color: var(--cream-dim);
}

.btn-quiet:hover {
    background: var(--cream-deep);
    color: var(--off-black);
    border-color: var(--steel);
}

.btn-black {
    background: var(--off-black);
    color: var(--hi-vis);
}

.btn-black:hover {
    background: var(--concrete);
}

.btn-lg {
    padding: 16px 28px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-meta {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

.btn-lg .btn-meta {
    margin-top: 0;
    margin-left: 12px;
}

@media (max-width: 640px) {
    .btn-lg {
        flex-direction: column;
        gap: 4px;
        padding: 14px 20px;
    }
    .btn-lg .btn-meta { margin-left: 0; }
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--off-black);
}

.eyebrow-light {
    color: var(--cream-deep);
}

.eyebrow-light::before {
    background: var(--hi-vis);
}

.display-1 {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 1;
    letter-spacing: -0.035em;
    color: var(--off-black);
    margin-bottom: 24px;
    font-weight: 700;
}

.display-2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--off-black);
    margin-bottom: 24px;
    font-weight: 700;
}

.display-light {
    color: var(--cream);
}

.lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--steel-dim);
    max-width: 560px;
    margin-bottom: 32px;
}

.section-lede {
    font-size: 17px;
    line-height: 1.6;
    color: var(--steel);
    max-width: 640px;
    margin-bottom: 48px;
}

.section-lede-light {
    color: var(--cream-deep);
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    position: relative;
    padding: 80px 0 120px;
    overflow: hidden;
}

.hero-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--cream) 0%,
        var(--hi-vis) 20%,
        var(--hi-vis) 30%,
        var(--cream) 35%,
        var(--cream) 65%,
        var(--hi-vis) 70%,
        var(--hi-vis) 80%,
        var(--cream) 100%
    );
    opacity: 0.35;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 13px;
    color: var(--steel);
    font-family: var(--font-mono);
}

.checkmark {
    color: var(--off-black);
    font-weight: 700;
    margin-right: 4px;
}

/* ============================================================================
   THE CARD — signature 3D element
   ============================================================================ */
.hero-card-stage {
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-3d {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1.586 / 1;  /* standard ISO/IEC 7810 ID-1 card ratio */
    position: relative;
    transform-style: preserve-3d;
    transform: rotate3d(1, -1, 0.05, 8deg) translateZ(0);
    transition: transform 0.6s ease-out;
    animation: card-hover 6s ease-in-out infinite;
}

@keyframes card-hover {
    0%, 100% { transform: rotate3d(1, -1, 0.05, 8deg) translateY(0); }
    50%      { transform: rotate3d(1, -1, 0.05, 8deg) translateY(-12px); }
}

.card-face {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 35%),
        linear-gradient(180deg, #1F1F1F 0%, #0A0A0A 100%);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.1) inset,
        0 -1px 0 rgba(0,0,0,0.5) inset,
        0 30px 60px -10px rgba(0,0,0,0.45),
        0 18px 36px -18px rgba(0,0,0,0.6);
    color: var(--cream);
    overflow: hidden;
}

/* Hi-vis edge highlight - the signature touch */
.card-face::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--hi-vis) 30%, var(--hi-vis) 70%, transparent 100%);
    opacity: 0.7;
}

/* Subtle hi-vis pattern in the corner */
.card-face::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--hi-vis-soft) 0%, transparent 70%);
    pointer-events: none;
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.card-chip {
    width: 44px;
    height: 34px;
    background:
        linear-gradient(135deg, #D4B86A 0%, #A88B47 40%, #8C7239 100%);
    border-radius: 5px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.15) inset,
        0 1px 2px rgba(0,0,0,0.4);
    position: relative;
}

.card-chip::before {
    content: '';
    position: absolute;
    inset: 4px;
    background:
        repeating-linear-gradient(90deg, transparent 0, transparent 6px, rgba(0,0,0,0.25) 6px, rgba(0,0,0,0.25) 7px),
        repeating-linear-gradient(0deg, transparent 0, transparent 6px, rgba(0,0,0,0.25) 6px, rgba(0,0,0,0.25) 7px);
    border-radius: 2px;
}

.card-nfc {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    color: rgba(244, 240, 232, 0.4);
    letter-spacing: -0.05em;
    transform: rotate(90deg);
    transform-origin: center;
    display: inline-block;
}

.card-middle {
    margin: 18px 0 8px;
    position: relative;
    z-index: 1;
}

.card-number {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--cream);
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.card-holder {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244, 240, 232, 0.45);
    margin-bottom: 4px;
}

.card-value {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--cream);
    text-transform: uppercase;
}

.card-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--hi-vis);
    box-shadow: 0 0 8px var(--hi-vis);
}

.card-logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--cream);
}

.card-shadow {
    position: absolute;
    inset: 8% 5% -10% 5%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-card-stage { order: -1; }
    .card-3d { max-width: 380px; margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
    .card-3d { animation: none; }
}

/* ============================================================================
   SLABS
   ============================================================================ */
.slab {
    padding: 110px 0;
    position: relative;
}

.slab-cream {
    background: var(--cream);
}

.slab-black {
    background: var(--off-black);
    color: var(--cream);
}

.slab-black .display-2 { color: var(--cream); }

.slab-hivis {
    background: var(--hi-vis);
    color: var(--off-black);
}

.slab-hivis .display-2 { color: var(--off-black); }

.slab-hivis .section-lede { color: rgba(10, 10, 10, 0.75); }

/* ============================================================================
   CATEGORIES (pill grid)
   ============================================================================ */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--paper);
    border: 1.5px solid var(--cream-deep);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: var(--off-black);
    transition: all 0.15s;
}

.cat-pill:hover {
    border-color: var(--off-black);
    transform: translateY(-2px);
}

.cat-icon {
    font-size: 17px;
    line-height: 1;
    opacity: 0.7;
}

.cat-more {
    background: transparent;
    border-style: dashed;
    color: var(--steel);
    font-style: italic;
}

/* ============================================================================
   SPENDING TRACKER
   ============================================================================ */
.tracker-app {
    background: var(--paper);
    border: 1.5px solid var(--cream-deep);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 8px;
}

.tracker-header {
    padding: 28px 32px;
    border-bottom: 1px solid var(--cream-deep);
    background:
        linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}

.tracker-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tsum {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tsum-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
}

.tsum-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--off-black);
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.tsum-neg {
    color: var(--off-black);
}

.tsum-net .tsum-value {
    color: var(--off-black);
    position: relative;
}

.tsum-net .tsum-value.is-positive {
    color: #156B3E;
}

.tsum-net .tsum-value.is-negative {
    color: var(--danger);
}

.tracker-toolbar {
    padding: 16px 32px;
    border-bottom: 1px solid var(--cream-deep);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    background: var(--paper);
}

.tracker-toolbar #clear-btn {
    margin-left: auto;
}

.tx-list-wrap {
    position: relative;
    min-height: 200px;
}

.tx-list {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.tx-list thead {
    background: var(--cream);
}

.tx-list th {
    text-align: left;
    padding: 14px 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
    border-bottom: 1px solid var(--cream-deep);
}

.th-amt, .th-miles { text-align: right; }
.th-act { width: 50px; }

.tx-list td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--cream-deep);
}

.tx-list tbody tr:hover {
    background: var(--cream);
}

.tx-list tbody tr:last-child td { border-bottom: 0; }

.tx-date { font-family: var(--font-mono); font-size: 13px; color: var(--steel); }
.tx-cat {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--cream);
    font-size: 12px;
    font-weight: 500;
    color: var(--off-black);
    text-transform: capitalize;
}
.tx-cat-revenue {
    background: var(--off-black);
    color: var(--hi-vis);
}
.tx-desc { color: var(--off-black); }
.tx-miles { font-family: var(--font-mono); text-align: right; color: var(--steel); }
.tx-amount { font-family: var(--font-mono); text-align: right; font-weight: 600; color: var(--off-black); }
.tx-amount.is-revenue { color: #156B3E; }
.tx-amount::before { content: ''; }

.tx-del-btn {
    background: transparent;
    border: 0;
    color: var(--steel-light);
    cursor: pointer;
    font-size: 18px;
    padding: 4px 8px;
    line-height: 1;
    border-radius: 4px;
    transition: all 0.15s;
}
.tx-del-btn:hover { color: var(--danger); background: var(--cream); }

.tx-empty {
    text-align: center;
    padding: 60px 32px;
    color: var(--steel);
}

.tx-empty p { margin-bottom: 8px; }
.tx-empty-sub { font-size: 14px; color: var(--steel-light); }

/* Inline form */
.tx-form {
    border-top: 1px solid var(--cream-deep);
    padding: 24px 32px;
    background: var(--cream);
}

.tx-form-row {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}

.tx-form-row:nth-child(1) { grid-template-columns: 1fr 1.5fr; }
.tx-form-row:nth-child(2) { grid-template-columns: 2fr 1fr 1fr; }

.tx-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--steel);
}

.form-label em { font-style: normal; color: var(--steel-light); }

.tx-form input,
.tx-form select,
.waitlist-form input,
.waitlist-form select {
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--paper);
    border: 1.5px solid var(--cream-deep);
    border-radius: 8px;
    color: var(--off-black);
    width: 100%;
}

.tx-form input:focus,
.tx-form select:focus {
    outline: none;
    border-color: var(--off-black);
}

.tx-form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 6px;
}

.tracker-disclaimer {
    margin-top: 24px;
    font-size: 14px;
    color: var(--steel);
    text-align: center;
    line-height: 1.55;
}

.tracker-disclaimer strong { color: var(--off-black); }

@media (max-width: 720px) {
    .tracker-summary { grid-template-columns: repeat(2, 1fr); }
    .tracker-header,
    .tracker-toolbar,
    .tx-form { padding-left: 18px; padding-right: 18px; }
    .tx-list th, .tx-list td { padding: 12px 14px; }
    .th-miles, .tx-miles { display: none; }
    .tx-form-row { grid-template-columns: 1fr !important; }
}

/* ============================================================================
   HOW IT WORKS — steps
   ============================================================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step {
    background: var(--concrete);
    border: 1px solid var(--concrete-2);
    border-radius: 16px;
    padding: 36px 32px;
    transition: transform 0.2s, border-color 0.2s;
}

.step:hover {
    transform: translateY(-3px);
    border-color: var(--steel-dim);
}

.step-num {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--hi-vis);
    display: inline-block;
    margin-bottom: 12px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.step-body {
    font-size: 15px;
    color: var(--cream-deep);
    line-height: 1.6;
}

.compliance-note {
    margin-top: 48px;
    padding: 24px 28px;
    background: rgba(232, 255, 74, 0.04);
    border-left: 3px solid var(--hi-vis);
    border-radius: 4px;
}

.compliance-note p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--cream-deep);
    margin: 0;
}

.compliance-note strong {
    color: var(--hi-vis);
    font-weight: 600;
}

.compliance-note a {
    color: var(--hi-vis);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 740px) {
    .steps { grid-template-columns: 1fr; }
}

/* ============================================================================
   WAITLIST
   ============================================================================ */
.waitlist-container {
    max-width: 680px;
    text-align: center;
}

.waitlist-container .display-2,
.waitlist-container .section-lede {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form {
    margin-top: 40px;
    background: var(--off-black);
    padding: 36px;
    border-radius: 16px;
    text-align: left;
}

.form-row {
    margin-bottom: 14px;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.waitlist-form input,
.waitlist-form select {
    background: var(--concrete);
    border-color: var(--concrete-2);
    color: var(--cream);
}

.waitlist-form input::placeholder { color: var(--steel-light); }

.waitlist-form input:focus,
.waitlist-form select:focus {
    border-color: var(--hi-vis);
}

.form-fineprint {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--steel-light);
    text-align: center;
    margin-top: 14px;
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .form-row-split { grid-template-columns: 1fr; }
    .waitlist-form { padding: 24px 22px; }
}

/* ============================================================================
   ROADMAP
   ============================================================================ */
.roadmap {
    list-style: none;
    padding: 0;
    margin-top: 48px;
}

.roadmap-item {
    background: var(--concrete);
    border: 1px solid var(--concrete-2);
    border-left: 3px solid var(--steel);
    padding: 24px 28px;
    margin-bottom: 14px;
    border-radius: 12px;
}

.roadmap-item.shipped { border-left-color: #4ade80; }
.roadmap-item.building { border-left-color: var(--hi-vis); }
.roadmap-item.next { border-left-color: var(--cream-deep); }
.roadmap-item.later { border-left-color: var(--steel); opacity: 0.8; }

.roadmap-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.roadmap-item.shipped .roadmap-tag { background: #4ade80; color: var(--off-black); }
.roadmap-item.building .roadmap-tag { background: var(--hi-vis); color: var(--off-black); }
.roadmap-item.next .roadmap-tag { background: var(--cream-deep); color: var(--off-black); }
.roadmap-item.later .roadmap-tag { background: var(--steel-dim); color: var(--cream); }

.roadmap-item h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.roadmap-item p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--cream-deep);
}

/* ============================================================================
   FAQ
   ============================================================================ */
.faq-container { max-width: 760px; }

.faq-item {
    border-top: 1px solid var(--cream-deep);
    padding: 22px 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--cream-deep); }

.faq-item summary {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 40px;
    letter-spacing: -0.01em;
    color: var(--off-black);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 22px;
    color: var(--steel);
    transition: transform 0.2s;
    line-height: 0;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item p {
    margin-top: 14px;
    color: var(--steel-dim);
    font-size: 16px;
    line-height: 1.65;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
    background: var(--off-black);
    color: var(--cream-deep);
    padding: 64px 0 32px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--cream);
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.footer-product {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--hi-vis);
    background: rgba(232, 255, 74, 0.1);
    padding: 3px 8px;
    border-radius: 100px;
}

.footer-tag {
    font-size: 14px;
    color: var(--steel-light);
    line-height: 1.55;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--steel-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-col a {
    display: block;
    padding: 4px 0;
    color: var(--cream-deep);
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--concrete-2);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--steel);
    letter-spacing: 0.04em;
}

@media (max-width: 760px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 820px) {
    .primary-nav { display: none; }
}

/* ============================================================================
   REDUCED MOTION
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .prelaunch-dot { animation: none; }
}
