/* ── Tokens ─────────────────────────────────────────────────── */
:root {
    --bg: #1c1e24;
    --bg-deep: #16181d;
    --surface: #282a2d;
    --surface-2: #33363d;
    --ink: #e9e6df;
    --muted: #9aa0aa;
    --accent: #e5a00d;
    --accent-dim: #b9800c;
    --border: #34373d;

    --radius: 14px;
    --radius-sm: 10px;
    --shadow: 0 18px 40px rgba(0, 0, 0, .38);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, .5);

    --wrap: 1140px;
    --pad: 24px;

    --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ── Base ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3 {
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0;
    font-weight: 700;
}

p {
    margin: 0;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--pad);
}

.wrap--narrow {
    max-width: 800px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    background: var(--accent);
    color: #1c1e24;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 100;
}

.skip-link:focus {
    left: 16px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 20px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--ink);
    font: inherit;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .16s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
    border-color: #4a4e57;
    background: #3c4048;
}

.btn--accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #1c1e24;
    box-shadow: 0 8px 22px rgba(229, 160, 13, .18);
}

.btn--accent:hover {
    background: #f0ac1c;
    border-color: #f0ac1c;
    box-shadow: 0 12px 28px rgba(229, 160, 13, .28);
}

.btn--ghost {
    background: transparent;
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, .05);
}

.btn--lg {
    padding: 14px 26px;
    font-size: 16px;
}

.btn--small {
    padding: 8px 15px;
    font-size: 14px;
}

.btn .icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: none;
}

/* Line-art icons in buttons — drawn, not filled. */
.btn .icon--stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(28, 30, 36, .82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background-color .2s ease;
}

.site-header.is-stuck {
    border-bottom-color: var(--border);
    background: rgba(22, 24, 29, .92);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 70px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -.01em;
    font-size: 19px;
}

.brand:hover {
    text-decoration: none;
}

.brand__mark {
    border-radius: 9px;
}

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

.nav__link {
    color: var(--muted);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 13px;
    border-radius: var(--radius-sm);
    transition: color .16s ease, background-color .16s ease;
}

.nav__link:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, .05);
    text-decoration: none;
}

.nav__cta {
    margin-left: 10px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 104px);
}

.hero__glow {
    position: absolute;
    inset: -40% 0 auto -10%;
    height: 720px;
    background:
        radial-gradient(560px 340px at 22% 38%, rgba(229, 160, 13, .16), transparent 70%),
        radial-gradient(680px 420px at 82% 18%, rgba(245, 198, 90, .10), transparent 70%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 6px 14px 6px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .01em;
}

.eyebrow--plain {
    padding: 0;
    border: 0;
    background: none;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13px;
    margin-bottom: 14px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(229, 160, 13, .15);
}

.hero__title {
    font-size: clamp(38px, 5.4vw, 60px);
    margin-bottom: 20px;
}

.grad {
    background: linear-gradient(96deg, var(--accent) 8%, #f5c65a 58%, #ffe3a8 105%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__sub {
    font-size: clamp(17px, 1.4vw, 19px);
    color: var(--muted);
    max-width: 56ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero__note {
    margin-top: 26px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    background: rgba(229, 160, 13, .06);
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.55;
    max-width: 60ch;
}

.hero__note strong {
    color: var(--ink);
}

/* ── Screenshots ────────────────────────────────────────────── */
.shot {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.shot img {
    width: 100%;
    height: auto;
}

.shot__chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
}

.shot__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4a4e57;
}

.shot__url {
    margin-left: 10px;
    padding: 2px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .25);
    color: var(--muted);
    font-size: 12.5px;
}

.shot--tv {
    border-width: 6px;
    border-color: #101216;
    border-radius: 18px;
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
    padding: clamp(64px, 9vw, 112px) 0;
}

.section--alt {
    background: var(--bg-deep);
    border-block: 1px solid var(--border);
}

.section__head {
    max-width: 680px;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.section__title {
    font-size: clamp(28px, 3.6vw, 40px);
    margin-bottom: 14px;
}

.section__sub {
    color: var(--muted);
    font-size: 17px;
}

/* ── Feature cards ──────────────────────────────────────────── */
.grid {
    display: grid;
    gap: 20px;
}

.grid--features {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    padding: 26px 24px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 160, 13, .45);
    box-shadow: var(--shadow);
}

.card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent) 16%, var(--surface-2));
    color: var(--accent);
}

.card__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card__title {
    font-size: 19px;
    margin-bottom: 9px;
}

.card__text {
    color: var(--muted);
    font-size: 15.5px;
}

.card__text strong {
    color: var(--ink);
    font-weight: 600;
}

/* ── Split (Poster Wall) ────────────────────────────────────── */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.ticks {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 13px;
}

.ticks li {
    position: relative;
    padding-left: 32px;
    color: var(--muted);
    font-size: 16px;
}

.ticks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 22%, transparent);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5a00d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.ticks em {
    color: var(--ink);
    font-style: italic;
}

/* ── Steps ──────────────────────────────────────────────────── */
.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--surface), rgba(40, 42, 45, .55));
}

.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 50%;
    border: 1px solid rgba(229, 160, 13, .4);
    background: color-mix(in srgb, var(--accent) 14%, transparent);
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}

.step__title {
    font-size: 19px;
    margin-bottom: 9px;
}

.step__text {
    color: var(--muted);
    font-size: 15.5px;
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        radial-gradient(520px 300px at 88% 8%, rgba(229, 160, 13, .12), transparent 70%),
        var(--surface);
    box-shadow: var(--shadow);
}

.cta__title {
    font-size: clamp(26px, 3.2vw, 34px);
    margin-bottom: 14px;
}

.cta__text {
    color: var(--muted);
    max-width: 58ch;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.cta__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.cta__list li {
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, .18);
    color: var(--muted);
    font-size: 15px;
}

/* ── Support ────────────────────────────────────────────────── */
.support {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(30px, 4vw, 48px);
    border: 1px solid var(--border);
    border-radius: 20px;
    background:
        radial-gradient(520px 300px at 50% 0%, rgba(229, 160, 13, .12), transparent 70%),
        var(--surface);
    box-shadow: var(--shadow);
}

.support__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--accent) 16%, var(--surface-2));
    color: var(--accent);
}

.support__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support__title {
    font-size: clamp(24px, 3vw, 30px);
    margin-bottom: 12px;
}

.support__text {
    color: var(--muted);
    max-width: 54ch;
    margin-bottom: 26px;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq {
    display: grid;
    gap: 12px;
}

.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    overflow: hidden;
}

.faq__item[open] {
    border-color: rgba(229, 160, 13, .38);
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 20px;
    font-weight: 600;
    font-size: 16.5px;
    cursor: pointer;
    list-style: none;
}

.faq__q::-webkit-details-marker {
    display: none;
}

.faq__q::after {
    content: "";
    flex: none;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa0aa' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / 20px no-repeat;
    transition: transform .2s ease;
}

.faq__item[open] .faq__q::after {
    transform: rotate(180deg);
}

.faq__q:hover {
    color: var(--accent);
}

.faq__a {
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 15.5px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border);
    background: var(--bg-deep);
    padding: 48px 0 32px;
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 28px;
}

.site-footer__tag {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    align-content: start;
}

.site-footer__links a {
    color: var(--muted);
    font-size: 15px;
}

.site-footer__links a:hover {
    color: var(--accent);
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 24px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 13.5px;
}

/* ── Reveal on scroll ───────────────────────────────────────── */
.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal--delay {
    transition-delay: .12s;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {

    .hero__inner,
    .split,
    .cta {
        grid-template-columns: 1fr;
    }

    .split__media {
        order: -1;
    }
}

@media (max-width: 800px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        inset: 70px 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px var(--pad) 26px;
        background: var(--bg-deep);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s ease, transform .2s ease, visibility .2s;
    }

    .nav.is-open {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .nav__link {
        padding: 13px 12px;
        font-size: 17px;
    }

    .nav__cta {
        margin: 8px 0 0;
        justify-content: center;
        padding: 12px 18px;
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .hero__actions .btn,
    .cta__actions .btn {
        width: 100%;
    }

    .shot__url {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
