:root {
    --home-accent: #ff7a18;
    --home-accent-soft: rgba(255, 122, 24, 0.18);
    --home-blue: #5cc8ff;
    --home-text: #f8fafc;
    --home-muted: #cbd5e1;
    --home-dim: #94a3b8;
    --home-panel: rgba(15, 23, 42, 0.82);
    --home-panel-soft: rgba(255, 255, 255, 0.05);
    --home-border: rgba(255, 255, 255, 0.10);
    --home-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

section {
    padding: 34px 0;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
    gap: 38px;
    align-items: center;
    padding: 26px 0 50px;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--home-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 0.98;
    max-width: 12ch;
}

.hero-lead {
    margin: 0;
    max-width: 62ch;
    color: var(--home-muted);
    font-size: 18px;
    line-height: 1.75;
}

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

.hero-points span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--home-text);
    font-size: 14px;
}

.hero-actions,
.closing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cta-primary {
    background: linear-gradient(135deg, var(--home-accent), #ffb11b);
    color: #0f172a;
    box-shadow: 0 16px 30px rgba(255, 122, 24, 0.25);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--home-text);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-1px);
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 18px;
}

.hero-card {
    border-radius: 24px;
    background: var(--home-panel);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow);
    overflow: hidden;
}

.hero-card-main {
    padding: 18px;
}

.hero-card-side {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
}

.hero-card-label {
    margin-bottom: 12px;
    color: var(--home-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-image,
.mode-image {
    display: block;
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-note {
    margin-top: 12px;
    color: var(--home-dim);
    font-size: 14px;
    line-height: 1.6;
}

.mini-stat {
    padding: 18px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.mini-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff2dd;
}

.mini-stat-label {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--home-dim);
}

.story-band {
    padding-top: 10px;
}

.builder-band {
    padding-top: 8px;
}

.builder-band-copy {
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(92, 200, 255, 0.14), transparent 35%),
        linear-gradient(135deg, rgba(255, 122, 24, 0.08), rgba(92, 200, 255, 0.08)),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.builder-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.story-band-copy {
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(92, 200, 255, 0.10), rgba(255, 122, 24, 0.08)),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.story-band h2,
.section-head h2,
.closing-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
}

.story-band p,
.section-head,
.mode-card p,
.advantage-card p,
.metric-card p,
.closing-copy p {
    color: var(--home-muted);
    line-height: 1.75;
}

.section-head {
    max-width: 60ch;
    margin-bottom: 24px;
}

.section-head h2 {
    margin-top: 14px;
}

.modes-section,
.advantage-section,
.metrics-section {
    padding-top: 26px;
}

.mode-grid,
.advantage-grid,
.metrics-grid {
    display: grid;
    gap: 18px;
}

.mode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advantage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mode-card,
.advantage-card,
.metric-card,
.closing-cta {
    background: var(--home-panel-soft);
    border: 1px solid var(--home-border);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.mode-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    min-height: 100%;
}

.mode-tag {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--home-blue);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mode-card h3,
.advantage-card h3,
.metric-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.18;
}

.mode-image-link {
    display: block;
    margin-top: auto;
    padding-top: 16px;
}

.mode-image-link-secondary {
    padding-top: 12px;
    opacity: 0.92;
}

.mobile-shot .mode-image {
    max-width: 200px;
    margin: 0 auto;
}

.mode-card-display {
    background: linear-gradient(180deg, rgba(92, 200, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.mode-card-mobile {
    background: linear-gradient(180deg, rgba(255, 122, 24, 0.10), rgba(255, 255, 255, 0.04));
}

.mode-card-spike {
    background: linear-gradient(180deg, rgba(255, 190, 50, 0.10), rgba(255, 255, 255, 0.04));
}

.advantage-card,
.metric-card {
    padding: 22px;
}

.advantage-card.highlight {
    border-color: rgba(255, 122, 24, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 122, 24, 0.08) inset;
}

.closing-cta {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px;
    margin-bottom: 12px;
    background:
        radial-gradient(circle at top right, rgba(255, 122, 24, 0.14), transparent 35%),
        rgba(255, 255, 255, 0.04);
}

.footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0 26px;
    color: #94a3b8;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .hero-shell,
    .closing-cta {
        grid-template-columns: 1fr;
    }

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

    .advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-copy h1 {
        max-width: none;
    }

    .hero-card-side,
    .advantage-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .story-band-copy,
    .builder-band-copy,
    .closing-cta,
    .mode-card,
    .advantage-card,
    .metric-card {
        padding: 20px;
    }

    .hero-actions,
    .builder-band-actions,
    .closing-actions {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }
}
