/* ============================================
   VSC VERIFIED — MAIN STYLESHEET
   Dark Luxury Editorial · Mobile-First
   ============================================ */

:root {
    --bg:          #080808;
    --bg-2:        #0F0F0F;
    --bg-3:        #161616;
    --border:      rgba(255, 255, 255, 0.07);
    --border-h:    rgba(255, 255, 255, 0.14);
    --text-1:      #F0EDE8;
    --text-2:      #9A9590;
    --text-3:      #5C5854;
    --accent:      #D4A843;
    --accent-dim:  rgba(212, 168, 67, 0.12);
    --accent-glow: rgba(212, 168, 67, 0.25);
    --success:     #4CAF81;
    --error:       #E05555;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --max-w: 1160px;
    --radius: 12px;
    --radius-sm: 8px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    background: var(--bg);
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NOISE GRAIN OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ── CONTAINER ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAVBAR ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    transition: background 0.3s var(--ease-in-out),
                backdrop-filter 0.3s;
}

.nav.scrolled {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-tag {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--accent);
    border: 1px solid var(--accent-dim);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-2);
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--text-1); }

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--bg);
    background: var(--text-1);
    padding: 9px 20px;
    border-radius: 100px;
    transition: background 0.2s, opacity 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #0A0700;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s var(--ease-out),
                box-shadow 0.2s,
                opacity 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.btn-primary.btn-large {
    font-size: 17px;
    padding: 17px 36px;
}

.btn-primary.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-badge {
    font-size: 11px;
    font-weight: 700;
    background: rgba(0,0,0,0.25);
    padding: 2px 8px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-2);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--text-1); border-color: var(--border-h); }

/* ── SECTION COMMON ── */
.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-1);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
}

/* ── HERO ── */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-grain {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212, 168, 67, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse 50% 80% at 20% 80%, rgba(255,255,255,0.015) 0%, transparent 50%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.5;
}

.hero > .container,
.hero-content {
    position: relative;
    z-index: 2;
}

.hero {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0 60px;
    width: 100%;
    padding-left: max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
    padding-right: max(24px, calc((100vw - var(--max-w)) / 2 + 24px));
}

.hero-content {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 60px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2.5s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-1);
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 440px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 320px;
}

.slots-bar {
    height: 3px;
    background: var(--bg-3);
    border-radius: 100px;
    overflow: hidden;
}

.slots-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 100px;
    transition: width 1s var(--ease-out);
}

.slots-label {
    font-size: 12px;
    color: var(--text-3);
    letter-spacing: 0.02em;
}

.slots-full { color: var(--error); }

/* ── HERO DEVICE MOCKUP ── */
.hero-device {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-frame {
    width: 200px;
    height: 400px;
    background: #1A1A1A;
    border-radius: 36px;
    border: 1.5px solid rgba(255,255,255,0.1);
    position: relative;
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.5),
        0 40px 80px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.06);
    overflow: hidden;
}

.device-screen {
    position: absolute;
    inset: 6px;
    background: #111;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.device-notch {
    width: 80px;
    height: 22px;
    background: #1A1A1A;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.device-status-bar {
    display: flex;
    justify-content: space-between;
    padding: 4px 16px 0;
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.device-content {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.device-verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.device-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    color: #0A0700;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.device-metric { display: flex; flex-direction: column; gap: 2px; }
.metric-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-1);
    line-height: 1;
}
.metric-label { font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }

.device-metric-row { display: flex; gap: 6px; }
.metric-chip {
    font-size: 9px;
    padding: 4px 8px;
    background: rgba(212, 168, 67, 0.12);
    color: var(--accent);
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.device-side-btn {
    position: absolute;
    background: #222;
    border-radius: 2px;
}
.device-vol-up  { width: 3px; height: 28px; left: -3px; top: 80px; }
.device-vol-down { width: 3px; height: 28px; left: -3px; top: 118px; }
.device-power   { width: 3px; height: 40px; right: -3px; top: 100px; }

/* ── HERO SCROLL HINT ── */
.hero-scroll-hint {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--border-h);
}

.hero-scroll-hint span {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--text-3);
    text-transform: uppercase;
}

/* ── VERIFIED SECTION ── */
.verified-section {
    padding: 120px 0;
    border-top: 1px solid var(--border);
}

.verify-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.verify-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.verify-card:hover {
    border-color: var(--border-h);
    transform: translateY(-4px);
}

.verify-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.verify-icon svg { width: 100%; height: 100%; }

.verify-grade {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.verify-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 10px;
}

.verify-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 20px;
}

.verify-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.verify-bar::before {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--bg-3);
    border-radius: 100px;
    position: relative;
}

.verify-fill {
    height: 3px;
    background: var(--accent);
    border-radius: 100px;
    width: var(--fill, 0%);
}

.verify-bar span { font-size: 12px; color: var(--accent); font-weight: 600; white-space: nowrap; }

.verify-status-tag {
    display: inline-flex;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--success);
    background: rgba(76, 207, 129, 0.08);
    border: 1px solid rgba(76, 207, 129, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
}

/* ── HOW IT WORKS ── */
.how-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.how-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
}

.how-step {
    flex: 1;
    padding: 32px;
}

.how-connector {
    width: 1px;
    height: 80px;
    background: var(--border);
    align-self: center;
    flex-shrink: 0;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}

.how-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 10px;
}

.how-step p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}

/* ── SPECS SECTION ── */
.specs-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
}

.specs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.spec-list { display: flex; flex-direction: column; gap: 0; }

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.spec-check {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
    flex-shrink: 0;
}

.spec-item div { display: flex; flex-direction: column; gap: 2px; }
.spec-label { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }
.spec-val { font-size: 15px; color: var(--text-1); font-weight: 400; }

/* ── CTA SECTION ── */
.cta-section {
    padding: 120px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-1);
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 16px;
    color: var(--text-2);
    margin-bottom: 40px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    padding: 140px 0 80px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(212,168,67,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-inner { position: relative; text-align: center; }

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--text-1);
    margin-bottom: 16px;
    line-height: 1.15;
}

.page-sub {
    font-size: 16px;
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto;
}

/* ── FORM SECTION ── */
.form-section {
    padding: 80px 0 120px;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}

.form-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.optional { color: var(--text-3); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus { border-color: var(--accent); }

.form-group.has-error input,
.form-group.has-error select { border-color: var(--error); }

.field-error {
    display: block;
    font-size: 12px;
    color: var(--error);
    margin-top: 6px;
}

/* ── COLOR PICKER ── */
.color-picker {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 10px 6px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}

.color-option input { display: none; }

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.08);
    transition: transform 0.2s;
}

.color-name {
    font-size: 10px;
    color: var(--text-3);
    text-align: center;
    line-height: 1.2;
}

.color-option:hover { border-color: var(--border-h); }
.color-option:hover .color-swatch { transform: scale(1.1); }
.color-option.selected { border-color: var(--accent); background: var(--accent-dim); }
.color-option.selected .color-name { color: var(--accent); }

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-3);
    margin-top: 12px;
}

/* ── TRUST SIDE ── */
.form-trust {
    padding-top: 8px;
}

.trust-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 28px;
}

.trust-steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }

.trust-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-step strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 4px;
}

.trust-step p {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
}

.trust-badges { display: flex; flex-direction: column; gap: 10px; }

.trust-badge {
    font-size: 13px;
    color: var(--text-2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge span { color: var(--success); font-weight: 700; }

/* ── ALERTS ── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 24px;
}

.alert-error {
    background: rgba(224, 85, 85, 0.08);
    border: 1px solid rgba(224, 85, 85, 0.25);
    color: var(--error);
}

.alert-success {
    background: rgba(76, 207, 129, 0.08);
    border: 1px solid rgba(76, 207, 129, 0.25);
    color: var(--success);
}

/* ── TRACKING ── */
.tracking-section { padding: 64px 0 120px; }

.tracking-search { max-width: 600px; margin: 0 auto 48px; }

.track-form { width: 100%; }

.track-input-group {
    display: flex;
    gap: 12px;
}

.track-input {
    flex: 1;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 13px 18px;
    outline: none;
    transition: border-color 0.2s;
    letter-spacing: 0.05em;
}

.track-input:focus { border-color: var(--accent); }
.track-input::placeholder { color: var(--text-3); letter-spacing: 0.02em; }

/* ── SUCCESS BANNER ── */
.success-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(76, 207, 129, 0.06);
    border: 1px solid rgba(76, 207, 129, 0.2);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.success-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--success);
    color: #0A0A0A;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-banner strong { display: block; font-size: 16px; color: var(--success); margin-bottom: 4px; }
.success-banner p { font-size: 14px; color: var(--text-2); }

/* ── RESERVATION CARD ── */
.tracking-result { max-width: 800px; margin: 0 auto; }

.res-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 24px;
}

.res-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.res-code {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-1);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.res-device { font-size: 13px; color: var(--text-2); }

.res-status-badge {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 100px;
    flex-shrink: 0;
}

.res-card-meta {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: var(--text-3);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ── STATUS PILLS ── */
.status-pending   { background: rgba(156,163,175,0.1); color: #9CA3AF; border: 1px solid rgba(156,163,175,0.2); }
.status-confirmed { background: rgba(99,179,237,0.1);  color: #63B3ED; border: 1px solid rgba(99,179,237,0.2); }
.status-sourcing  { background: rgba(252,211,77,0.1);  color: #FCD34D; border: 1px solid rgba(252,211,77,0.2); }
.status-testing   { background: rgba(167,139,250,0.1); color: #A78BFA; border: 1px solid rgba(167,139,250,0.2); }
.status-shipping  { background: rgba(251,146,60,0.1);  color: #FB923C; border: 1px solid rgba(251,146,60,0.2); }
.status-ready     { background: rgba(212,168,67,0.1);  color: #D4A843; border: 1px solid rgba(212,168,67,0.2); }
.status-delivered { background: rgba(76,207,129,0.1);  color: #4CCF81; border: 1px solid rgba(76,207,129,0.2); }
.status-cancelled { background: rgba(224,85,85,0.1);   color: #E05555; border: 1px solid rgba(224,85,85,0.2); }

/* ── STATUS TIMELINE ── */
.status-timeline {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    overflow-x: auto;
    padding: 24px 0;
}

.timeline-step {
    flex: 1;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 8px;
    text-align: center;
}

.timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-2);
    color: var(--text-3);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.timeline-step.done .timeline-dot  { background: var(--accent); border-color: var(--accent); color: #0A0700; }
.timeline-step.active .timeline-dot { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 4px var(--accent-dim); }

.timeline-line {
    position: absolute;
    top: 15px;
    left: calc(50% + 16px);
    right: calc(-50% + 16px);
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.timeline-step.done + .timeline-step .timeline-line,
.timeline-step.done .timeline-line { background: var(--accent); }

.timeline-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.timeline-label strong { font-size: 11px; color: var(--text-2); font-weight: 600; }
.timeline-step.active .timeline-label strong { color: var(--accent); }
.timeline-step.done .timeline-label strong { color: var(--text-1); }
.timeline-label span { font-size: 10px; color: var(--text-3); }

/* ── HISTORY ── */
.history-section { margin-top: 8px; }
.history-title { font-size: 16px; font-weight: 600; color: var(--text-1); margin-bottom: 20px; }

.history-list { display: flex; flex-direction: column; gap: 0; }

.history-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.history-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 6px;
    flex-shrink: 0;
}

.history-status { font-size: 14px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.history-notes { font-size: 13px; color: var(--text-2); margin-bottom: 6px; }
.history-time { font-size: 11px; color: var(--text-3); }

/* ── ERROR PAGE ── */
.error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
}

.error-inner { max-width: 480px; }

/* ── FOOTER ── */
.footer {
    border-top: 1px solid var(--border);
    padding: 60px 0;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-logo {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-logo span { color: var(--accent); margin-left: 4px; }

.footer-tagline {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-3);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-1); }

.footer-sub {
    font-size: 11px;
    color: var(--text-3);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out),
                transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 100px;
    }

    .hero-device { display: none; }

    .hero-scroll-hint { display: none; }

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

    .how-steps {
        flex-direction: column;
        gap: 0;
    }

    .how-connector {
        width: 40px;
        height: 1px;
        align-self: flex-start;
        margin-left: 32px;
    }

    .specs-inner { grid-template-columns: 1fr; gap: 48px; }

    .form-layout {
        grid-template-columns: 1fr;
    }

    .form-trust { order: -1; }

    .form-card { padding: 32px 24px; }

    .color-picker { grid-template-columns: repeat(4, 1fr); }

    .nav { padding: 16px 20px; }
    .nav-links { gap: 16px; }
    .nav-link { display: none; }

    .res-card-header { flex-direction: column; gap: 12px; }

    .status-timeline {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .color-picker { grid-template-columns: repeat(4, 1fr); }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .track-input-group { flex-direction: column; }
}
