:root {
    color-scheme: dark;
    --bg: #0f1114;
    --bg-strong: #08090b;
    --surface: #171a1f;
    --surface-raised: #20252b;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --text: #f6f2ec;
    --muted: #b9b2aa;
    --subtle: #817b74;
    --orange: #ef8738;
    --orange-strong: #ff9a3d;
    --green: #57d68d;
    --blue: #69a8ff;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 12px;
    border-radius: 6px;
    background: var(--text);
    color: var(--bg-strong);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(15, 17, 20, 0.92);
    backdrop-filter: blur(14px);
}

.nav {
    width: min(100% - 40px, var(--max));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: fit-content;
    font-size: 18px;
    font-weight: 800;
}

.brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-links {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 14px;
}

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

.nav-cta,
.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 800;
    white-space: nowrap;
}

.nav-cta,
.primary-action {
    background: var(--orange);
    color: #130b05;
    box-shadow: 0 14px 34px rgba(239, 135, 56, 0.28);
}

.nav-cta:hover,
.primary-action:hover {
    background: var(--orange-strong);
}

.secondary-action {
    border: 1px solid var(--line-strong);
    color: var(--text);
}

.secondary-action:hover {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.05);
}

.hero-section {
    width: min(100% - 40px, var(--max));
    min-height: calc(100vh - 72px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 48px;
    align-items: center;
    padding: 72px 0 56px;
}

.hero-copy {
    max-width: 620px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--orange-strong);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 18px;
    font-size: 64px;
    line-height: 1;
}

h2 {
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 1.16;
}

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

.hero-lede {
    max-width: 580px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.hero-metrics div {
    min-height: 88px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.hero-metrics dt {
    margin-bottom: 6px;
    color: var(--text);
    font-weight: 800;
}

.hero-metrics dd {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

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

.preview-window {
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--bg-strong);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.preview-topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    min-height: 66px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    background: #151719;
}

.preview-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-strong);
    font-weight: 800;
}

.preview-brand img {
    width: 26px;
    height: 26px;
    border-radius: 6px;
}

.preview-search {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--subtle);
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
}

.preview-status {
    color: var(--muted);
    font-weight: 700;
}

.preview-body {
    min-height: 480px;
    display: grid;
    grid-template-columns: 1fr 260px;
}

.preview-list {
    padding: 20px;
}

.preview-account {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

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

.preview-account span {
    color: var(--muted);
    font-size: 13px;
}

.preview-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--green));
}

.preview-avatar.alt {
    background: linear-gradient(135deg, var(--blue), var(--orange));
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 28px;
}

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

.media-grid span {
    aspect-ratio: 1;
    border-radius: 6px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
        #252b31;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.media-grid span:nth-child(2n) {
    background:
        linear-gradient(145deg, rgba(87, 214, 141, 0.24), rgba(255, 255, 255, 0.04)),
        #242b27;
}

.media-grid span:nth-child(3n) {
    background:
        linear-gradient(145deg, rgba(105, 168, 255, 0.22), rgba(255, 255, 255, 0.04)),
        #222936;
}

.preview-queue {
    padding: 22px;
    border-left: 1px solid var(--line);
    background: #11161c;
}

.preview-queue h2 {
    margin-bottom: 10px;
    font-size: 18px;
}

.preview-queue p {
    color: var(--muted);
    font-size: 14px;
}

.preview-queue strong {
    color: var(--text);
    font-size: 28px;
}

.queue-line {
    height: 12px;
    margin-top: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
}

.queue-line.short {
    width: 68%;
}

.section {
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
    padding: 78px 0;
    border-top: 1px solid var(--line);
}

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

.section-heading h2,
.pricing-copy h2 {
    max-width: 680px;
}

.section-heading p:last-child,
.pricing-copy p {
    color: var(--muted);
}

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

.feature-card {
    min-height: 230px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 30px;
    margin-bottom: 24px;
    border-radius: 6px;
    background: rgba(239, 135, 56, 0.14);
    color: var(--orange-strong);
    font-size: 13px;
    font-weight: 900;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.workflow-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 54px;
}

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

.workflow-list li {
    counter-increment: workflow;
    position: relative;
    min-height: 92px;
    padding: 18px 18px 18px 66px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.workflow-list li::before {
    content: counter(workflow);
    position: absolute;
    top: 18px;
    left: 18px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(87, 214, 141, 0.14);
    color: var(--green);
    font-weight: 900;
}

.workflow-list strong,
.workflow-list span {
    display: block;
}

.workflow-list span {
    margin-top: 4px;
    color: var(--muted);
}

.pricing-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 54px;
    align-items: start;
}

.purchase-panel {
    padding: 26px;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--surface-raised);
}

.plan-label {
    color: var(--green);
    font-size: 14px;
    font-weight: 800;
}

.plan-note,
.checkout-note {
    color: var(--muted);
}

.plan-includes {
    display: grid;
    gap: 10px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.plan-includes li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.plan-includes li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange-strong);
}

.full-width {
    width: 100%;
}

.checkout-note {
    margin: 14px 0 0;
    font-size: 13px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 800;
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.footer {
    width: min(100% - 40px, var(--max));
    min-height: 96px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.footer strong,
.footer span {
    display: block;
}

.footer strong {
    color: var(--text);
}

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

@media (max-width: 980px) {
    .nav {
        width: min(100% - 28px, var(--max));
    }

    .nav-links {
        display: none;
    }

    .hero-section,
    .workflow-section,
    .pricing-section {
        width: min(100% - 28px, var(--max));
        grid-template-columns: 1fr;
    }

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

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

    .preview-body {
        grid-template-columns: 1fr;
    }

    .preview-queue {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .section {
        width: min(100% - 28px, var(--max));
    }
}

@media (max-width: 640px) {
    .nav {
        height: 64px;
        gap: 12px;
    }

    .brand span {
        display: none;
    }

    .nav-cta {
        margin-left: auto;
        min-height: 40px;
        padding: 0 13px;
        font-size: 14px;
    }

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-lede {
        font-size: 18px;
    }

    .hero-metrics,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .preview-topbar {
        grid-template-columns: 1fr;
    }

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

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

    .section {
        padding: 58px 0;
    }

    .purchase-panel {
        padding: 22px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 24px 0;
    }
}
