:root {
    --bg: #050505;
    --bg-soft: #0d0d0f;
    --surface: #111114;
    --surface-2: #17171b;
    --white: #ffffff;
    --muted: rgba(255,255,255,.62);
    --muted-2: rgba(255,255,255,.42);
    --line: rgba(255,255,255,.10);
    --accent: #f7babb;
    --accent-dark: #d896a0;
    --danger: #ff7777;
    --radius-xl: 38px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow: 0 28px 100px rgba(0,0,0,.46);
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 50% -20%, rgba(247,186,187,.10), transparent 34%),
        var(--bg);
    color: var(--white);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

code {
    color: var(--accent);
}

.shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.nav {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 100;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 10px 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(8,8,9,.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background .2s ease, box-shadow .2s ease;
}

.nav.is-scrolled {
    background: rgba(8,8,9,.88);
    box-shadow: 0 18px 60px rgba(0,0,0,.28);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.brand-mark {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-weight: 1000;
}

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

.nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.nav-links a:hover {
    background: rgba(255,255,255,.07);
    color: var(--white);
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 19px;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    color: #111;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.btn.accent {
    background: var(--accent);
    color: #111;
}

.btn.dark {
    background: rgba(255,255,255,.08);
    color: var(--white);
    border: 1px solid var(--line);
}

.hero {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 124px 0 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 52px;
    align-items: center;
}

.kicker {
    width: fit-content;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(58px, 8vw, 112px);
    line-height: .86;
    letter-spacing: -.085em;
    font-weight: 1000;
}

.hero p {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.38;
    letter-spacing: -.02em;
    font-weight: 560;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.proof-pill {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 760;
}

.product-shot {
    position: relative;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
        var(--surface);
    border: 1px solid var(--line);
    padding: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.browser-top {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-radius: 22px 22px 0 0;
    background: #0b0b0d;
    border-bottom: 1px solid var(--line);
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.24);
}

.shot-screen {
    min-height: 420px;
    border-radius: 0 0 28px 28px;
    background: #09090a;
    overflow: hidden;
}

.shot-screen img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.shot-fallback {
    min-height: 420px;
    padding: 22px;
    display: grid;
    align-content: space-between;
    background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px),
        #09090a;
    background-size: 36px 36px;
}

.fake-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fake-title {
    font-size: 15px;
    font-weight: 900;
}

.fake-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.fake-card {
    min-height: 96px;
    border-radius: 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
    padding: 14px;
}

.fake-card span {
    color: var(--muted-2);
    font-size: 11px;
    font-weight: 800;
}

.fake-card strong {
    display: block;
    margin-top: 18px;
    font-size: 26px;
    letter-spacing: -.05em;
}

.section {
    padding: 88px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-head h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 6vw, 76px);
    line-height: .9;
    letter-spacing: -.075em;
    font-weight: 1000;
}

.section-head p {
    max-width: 440px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.benefit {
    min-height: 138px;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--line);
    display: grid;
    align-content: space-between;
}

.benefit i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(247,186,187,.12);
    color: var(--accent);
    font-style: normal;
    font-weight: 1000;
}

.benefit strong {
    display: block;
    color: var(--white);
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: -.025em;
}

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

.step {
    min-height: 230px;
    padding: 20px;
    border-radius: 30px;
    background: var(--surface);
    border: 1px solid var(--line);
    display: grid;
    align-content: space-between;
}

.step-number {
    color: var(--accent);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.step h3 {
    margin: 0;
    font-size: 28px;
    line-height: .98;
    letter-spacing: -.055em;
}

.step p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.screens-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 14px;
}

.screen-card {
    min-height: 320px;
    border-radius: 32px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
}

.screen-card.large {
    grid-row: span 2;
    min-height: 654px;
}

.screen-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-placeholder {
    height: 100%;
    min-height: inherit;
    padding: 22px;
    display: grid;
    align-content: end;
    background:
        radial-gradient(circle at 80% 0%, rgba(247,186,187,.10), transparent 34%),
        #0b0b0d;
}

.screen-placeholder span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.screen-placeholder strong {
    display: block;
    margin-top: 8px;
    font-size: 30px;
    letter-spacing: -.06em;
}

.form-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 24px;
    align-items: start;
}

.form-copy {
    position: sticky;
    top: 110px;
}

.form-copy h2 {
    margin: 0;
    font-size: clamp(46px, 6vw, 84px);
    line-height: .88;
    letter-spacing: -.08em;
}

.form-copy p {
    max-width: 520px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.form-card,
.simple-card {
    border-radius: 34px;
    padding: 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.form-card h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -.05em;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 850;
}

.field label span {
    color: var(--muted-2);
    font-weight: 700;
}

.input,
.textarea {
    width: 100%;
    border: 1px solid var(--line);
    outline: 0;
    border-radius: 18px;
    background: rgba(0,0,0,.22);
    color: var(--white);
    padding: 0 14px;
    font-size: 15px;
    font-weight: 640;
}

.input {
    min-height: 52px;
}

.textarea {
    min-height: 108px;
    padding-top: 14px;
    resize: vertical;
}

.input:focus,
.textarea:focus {
    border-color: rgba(247,186,187,.38);
    box-shadow: 0 0 0 4px rgba(247,186,187,.08);
}

.input::placeholder,
.textarea::placeholder {
    color: rgba(255,255,255,.30);
}

.check {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 13px;
    border-radius: 18px;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--line);
    cursor: pointer;
}

.check input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.check span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.errors {
    margin-top: 14px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,96,96,.10);
    border: 1px solid rgba(255,96,96,.22);
    color: #ffb3b3;
    font-size: 14px;
    line-height: 1.45;
}

.errors ul {
    margin: 0;
    padding-left: 18px;
}

.form-submit {
    grid-column: 1 / -1;
    width: 100%;
}

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

.metric {
    padding: 22px;
    border-radius: 30px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.metric strong {
    display: block;
    font-size: clamp(38px, 5vw, 66px);
    letter-spacing: -.08em;
    line-height: .9;
}

.metric span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.testimonial {
    padding: 22px;
    border-radius: 30px;
    background: rgba(255,255,255,.045);
    border: 1px solid var(--line);
}

.testimonial p {
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.5;
}

.testimonial strong {
    display: block;
    margin-top: 16px;
    color: var(--white);
}

.testimonial span {
    display: block;
    margin-top: 4px;
    color: var(--muted-2);
    font-size: 13px;
}

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

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

summary {
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.footer {
    padding: 54px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

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

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

.footer-links a {
    color: var(--muted);
    font-size: 14px;
}

.simple-main {
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 130px 0 70px;
}

.simple-card {
    max-width: 760px;
}

.simple-card h1 {
    margin: 14px 0 0;
    font-size: clamp(44px, 8vw, 82px);
    line-height: .88;
    letter-spacing: -.08em;
}

.simple-card h2 {
    margin: 16px 0 0;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1;
    letter-spacing: -.055em;
}

.simple-card p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.simple-actions,
.status-form,
.status-mini-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.status-form .input {
    flex: 1;
    min-width: 240px;
}

.status-pill {
    width: fit-content;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-size: 12px;
    font-weight: 950;
}

.status-result {
    margin-top: 20px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
}

.error-result {
    color: #ffb3b3;
    background: rgba(255,96,96,.10);
    border-color: rgba(255,96,96,.22);
}

.success-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(247,186,187,.12);
    color: var(--accent);
    font-size: 44px;
    font-weight: 1000;
}

.legal-card a {
    color: var(--accent);
}

@media (max-width: 1020px) {
    .nav-links {
        display: none;
    }

    .hero-grid,
    .form-wrap {
        grid-template-columns: 1fr;
    }

    .form-copy {
        position: relative;
        top: auto;
    }

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

    .steps,
    .metrics,
    .testimonial-grid,
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .screen-card.large {
        grid-column: 1 / -1;
        min-height: 440px;
    }
}

@media (max-width: 680px) {
    .shell,
    .nav {
        width: calc(100% - 20px);
    }

    .nav {
        top: 10px;
    }

    .brand span:last-child {
        display: none;
    }

    .nav-cta {
        min-height: 40px;
        padding: 0 14px;
    }

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

    .hero h1 {
        font-size: clamp(54px, 16vw, 76px);
    }

    .hero p {
        font-size: 17px;
    }

    .hero-actions,
    .simple-actions,
    .status-form {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 62px 0;
    }

    .section-head {
        display: block;
    }

    .section-head h2,
    .form-copy h2 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .benefit-grid,
    .steps,
    .screens-grid,
    .metrics,
    .testimonial-grid,
    .faq-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .screen-card.large,
    .screen-card {
        min-height: 280px;
    }

    .product-shot {
        border-radius: 28px;
    }

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

    .form-card,
    .simple-card {
        border-radius: 28px;
        padding: 20px;
    }

    .simple-main {
        padding-top: 110px;
    }

    .footer-inner {
        display: grid;
    }
}