:root {
    color-scheme: dark;
    --bg: #101010;
    --bg-soft: #171717;
    --panel: #1f1f1f;
    --panel-strong: #262626;
    --line: rgba(255, 255, 255, 0.1);
    --text: #f5f5f5;
    --muted: #b8b8b8;
    --soft: #858585;
    --accent: #ffffff;
    --accent-text: #111111;
    --gold: #d8b35a;
    --green: #79d69f;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 20% 0%, rgba(216, 179, 90, 0.12), transparent 34rem),
        linear-gradient(180deg, #111111 0%, #0d0d0d 52%, #121212 100%);
    color: var(--text);
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.035) 38%, transparent 58%),
        radial-gradient(circle at 75% 18%, rgba(121, 214, 159, 0.08), transparent 22rem);
    opacity: 0.9;
    animation: ambientShift 16s ease-in-out infinite alternate;
}

.season-splash {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow: hidden;
}

.season-splash[hidden] {
    display: none;
}

.season-splash-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(216, 179, 90, 0.3), transparent 28rem),
        radial-gradient(circle at 82% 16%, rgba(121, 214, 159, 0.16), transparent 22rem),
        radial-gradient(circle at 50% 100%, rgba(51, 153, 255, 0.12), transparent 30rem),
        rgba(8, 8, 8, 0.93);
    backdrop-filter: blur(18px);
    opacity: 0;
    transition: opacity 0.42s ease;
}

.season-splash-panel {
    position: relative;
    width: min(920px, 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 32px;
    padding: clamp(32px, 5vw, 52px);
    background:
        linear-gradient(145deg, rgba(30, 30, 30, 0.97), rgba(12, 12, 12, 0.99)),
        radial-gradient(circle at top right, rgba(216, 179, 90, 0.2), transparent 16rem),
        radial-gradient(circle at bottom left, rgba(51, 153, 255, 0.1), transparent 18rem);
    box-shadow: 0 34px 120px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.42s ease, transform 0.42s ease;
    text-align: center;
    overflow: hidden;
}

.season-splash.is-visible .season-splash-backdrop,
.season-splash.is-visible .season-splash-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.season-splash.is-hiding .season-splash-backdrop,
.season-splash.is-hiding .season-splash-panel {
    opacity: 0;
    transform: translateY(-12px) scale(0.985);
}

.season-splash-head {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.season-splash-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px;
    padding: 8px 14px;
    border: 1px solid rgba(216, 179, 90, 0.22);
    border-radius: 999px;
    background: rgba(216, 179, 90, 0.08);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.season-splash-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 800;
}

.season-splash-head .season-splash-eyebrow {
    margin: 0;
}

.season-splash-brand img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(216, 179, 90, 0.25);
}

.season-splash-panel h2 {
    max-width: 12ch;
    margin: 0 auto 20px;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.season-splash-text {
    max-width: 44rem;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: clamp(1.06rem, 2vw, 1.22rem);
    line-height: 1.7;
}

.season-splash-list {
    max-width: 820px;
    margin: 0 auto 32px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.season-splash-list li {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 18px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    color: var(--text);
    text-align: left;
    line-height: 1.55;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.season-splash-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.season-splash-skip {
    appearance: none;
}

.season-splash-actions .button {
    min-width: 188px;
    min-height: 54px;
    border-radius: 14px;
    font-size: 0.98rem;
}

.season-splash-actions .button-primary {
    box-shadow: 0 18px 54px rgba(255, 255, 255, 0.14), 0 0 0 1px rgba(255,255,255,0.05) inset;
}

.season-splash-footnote {
    margin: 0;
    color: var(--soft);
    font-size: 0.92rem;
}

.season-splash-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0.65;
    pointer-events: none;
}

.season-splash-orb-left {
    top: -70px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(216, 179, 90, 0.18);
}

.season-splash-orb-right {
    right: -70px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    background: rgba(51, 153, 255, 0.12);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0;
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(216, 179, 90, 0.18);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.94rem;
}

.header-nav a {
    border-radius: 8px;
    padding: 9px 12px;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text);
}

.header-nav .nav-cta {
    background: var(--text);
    color: var(--accent-text);
    font-weight: 800;
}

.site-header,
.hero-copy,
.product-preview {
    opacity: 0;
    transform: translateY(18px);
}

.landing-ready .site-header {
    animation: riseIn 0.7s ease forwards;
}

.landing-ready .hero-copy {
    animation: riseIn 0.8s 0.08s ease forwards;
}

.landing-ready .product-preview {
    animation: riseIn 0.8s 0.18s ease forwards;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: 56px;
    width: min(1160px, calc(100% - 40px));
    min-height: calc(100vh - 78px);
    margin: 0 auto;
    padding: 72px 0 88px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 6.7rem);
    line-height: 0.94;
    letter-spacing: 0;
}

.hero-text {
    max-width: 680px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.9vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
    max-width: 680px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 18px;
    font-weight: 900;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button-primary {
    background: var(--accent);
    color: var(--accent-text);
    box-shadow: 0 16px 46px rgba(255, 255, 255, 0.12);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.button:hover,
.nav-cta:hover {
    transform: translateY(-1px);
}

.button-primary:hover {
    box-shadow: 0 18px 54px rgba(255, 255, 255, 0.18);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.hero-note {
    max-width: 560px;
    color: var(--soft);
    font-size: 0.94rem;
}

.product-preview {
    position: relative;
}

.product-preview::before {
    content: "";
    position: absolute;
    inset: 12% -4% auto auto;
    width: 68%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(216, 179, 90, 0.12);
    filter: blur(42px);
}

.preview-window {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(38, 38, 38, 0.96), rgba(20, 20, 20, 0.96));
    box-shadow: var(--shadow);
    animation: previewFloat 7s ease-in-out infinite;
}

.preview-topbar {
    display: flex;
    gap: 7px;
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;
}

.preview-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.preview-header,
.preview-grid,
.preview-list {
    padding: 20px;
}

.preview-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.preview-header strong {
    display: block;
    font-size: 1.15rem;
}

.preview-header small,
.preview-grid span,
.war-card span {
    color: var(--soft);
}

.status-pill {
    border: 1px solid rgba(121, 214, 159, 0.28);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
    animation: softPulse 2.8s ease-in-out infinite;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.preview-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 16px;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.preview-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(216, 179, 90, 0.32);
    background: rgba(255, 255, 255, 0.065);
}

.preview-grid span,
.preview-grid strong {
    display: block;
}

.preview-grid strong {
    margin-top: 6px;
}

.preview-list {
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.preview-list div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-list span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.section {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 84px 0;
}

.reveal-section {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.problem-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 54px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4.6vw, 4rem);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.12rem;
}

.section p,
.feature-card p,
.steps p,
.audience-grid p,
.final-cta p {
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.feature-card,
.steps article,
.audience-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    padding: 22px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover,
.steps article:hover,
.audience-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.055);
}

.feature-index {
    display: block;
    margin-bottom: 34px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 900;
}

.war-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
    gap: 28px;
    align-items: stretch;
}

.war-copy,
.war-card,
.final-cta {
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(216, 179, 90, 0.12), transparent 44%),
        rgba(255, 255, 255, 0.035);
    padding: clamp(28px, 5vw, 48px);
}

.war-card {
    position: relative;
    overflow: hidden;
}

.war-card::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -20%;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(216, 179, 90, 0.16);
    filter: blur(34px);
    animation: cardGlow 8s ease-in-out infinite alternate;
}

.war-card > * {
    position: relative;
}

.war-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
}

.war-card strong {
    display: block;
    margin: 12px 0 16px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.95;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 34px;
    border-radius: 50%;
    background: var(--text);
    color: var(--accent-text);
    font-weight: 900;
    transition: transform 0.2s ease;
}

.steps article:hover span {
    transform: scale(1.08);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.final-cta {
    width: min(1160px, calc(100% - 40px));
    margin: 60px auto 84px;
    text-align: center;
}

.final-cta h2,
.final-cta p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .button {
    margin-top: 14px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    border-top: 1px solid var(--line);
    padding: 28px 0 36px;
    color: var(--soft);
    font-size: 0.92rem;
}

.site-footer span {
    color: var(--text);
    font-weight: 800;
}

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

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes softPulse {
    0%, 100% {
        box-shadow: 0 0 0 rgba(121, 214, 159, 0);
    }
    50% {
        box-shadow: 0 0 26px rgba(121, 214, 159, 0.16);
    }
}

@keyframes cardGlow {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 0.65;
    }
    to {
        transform: translate3d(26px, 18px, 0);
        opacity: 1;
    }
}

@keyframes ambientShift {
    from {
        transform: translate3d(-1.5%, -1%, 0);
    }
    to {
        transform: translate3d(1.5%, 1%, 0);
    }
}

@media (max-width: 900px) {
    .site-header {
        position: static;
        align-items: flex-start;
        flex-direction: column;
    }

    .header-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero,
    .section-split,
    .war-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 44px;
    }

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

@media (max-width: 620px) {
    .season-splash {
        padding: 16px;
    }

    .season-splash-panel {
        border-radius: 22px;
        padding: 26px 20px;
    }

    .season-splash-head {
        margin-bottom: 20px;
    }

    .season-splash-brand img {
        width: 38px;
        height: 38px;
    }

    .season-splash-panel h2 {
        max-width: none;
        font-size: clamp(2.5rem, 12vw, 3.7rem);
    }

    .season-splash-list {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }

    .season-splash-list li {
        text-align: center;
    }

    .season-splash-actions {
        flex-direction: column;
    }

    .season-splash-actions .button {
        width: 100%;
    }

    .site-header,
    .hero,
    .section,
    .final-cta,
    .site-footer {
        width: min(100% - 28px, 1160px);
    }

    h1 {
        font-size: clamp(2.55rem, 14vw, 4rem);
    }

    .hero-actions,
    .site-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .product-preview {
        min-width: 0;
    }

    .preview-header {
        flex-direction: column;
    }

    .preview-grid,
    .feature-grid,
    .steps,
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .site-header,
    .hero-copy,
    .product-preview,
    .reveal-section {
        opacity: 1;
        transform: none;
    }
}

.about-help-trigger {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 35;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 52px;
    height: 52px;
    padding: 0 17px 0 12px;
    border: 1px solid rgba(216, 179, 90, 0.28);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(12, 12, 12, 0.96));
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.about-help-trigger:hover {
    border-color: rgba(216, 179, 90, 0.48);
    transform: translateY(-1px);
}

.about-help-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(216, 179, 90, 0.14);
    color: var(--gold);
    font-size: 1rem;
    font-weight: 900;
}

.about-help-label {
    line-height: 1;
}

.about-help-overlay {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: none;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 24px;
    background: rgba(5, 5, 5, 0.64);
}

.about-help-overlay.open {
    display: flex;
}

.about-help-panel {
    position: relative;
    width: min(720px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(31, 31, 31, 0.98), rgba(14, 14, 14, 0.98));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.54);
    padding: 30px;
}

.about-help-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 1.25rem;
    cursor: pointer;
}

.about-help-panel h2 {
    margin: 8px 44px 14px 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.about-help-panel p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.75;
}

.about-help-device {
    padding: 14px 16px;
    border-left: 3px solid var(--gold);
    border-radius: 12px;
    background: rgba(216, 179, 90, 0.08);
    color: var(--text) !important;
}

.about-help-question {
    margin: 0 0 14px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
}

.about-help-question strong {
    display: block;
    margin-bottom: 7px;
    color: var(--text);
    font-size: 1rem;
}

.about-help-question p {
    margin-bottom: 0;
}

.about-help-question a,
.about-help-question button {
    display: inline;
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #f1d28c;
    font: inherit;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    cursor: pointer;
}

.about-help-subtitle {
    margin: 24px 0 12px;
    color: var(--text);
    font-size: 1.12rem;
}

@media (max-width: 620px) {
    .about-help-trigger {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
    }

    .about-help-label {
        display: none;
    }

    .about-help-overlay {
        padding: 12px;
        align-items: center;
    }

    .about-help-panel {
        max-height: calc(100vh - 24px);
        padding: 24px 18px;
        border-radius: 18px;
    }
}
