:root {
    --bg: #ffffff;
    --panel: #f6f8fb;
    --panel-2: #eef2f7;
    --text: #1f2937;
    --muted: #5b6472;
    --brand: #7a1f3d;
    --brand-2: #b23a5b;
    --accent: #f2a900;
    --success: #15803d;
    --warning: #f59e0b;
    --border: rgba(31,41,55,.14);
    --shadow: 0 18px 45px rgba(15,23,42,.10);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.nav-links {
    margin-left: 50px;
    display: flex;
    gap: 28px;
}

.nav .btn {
    margin-left: auto;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 0 30px rgba(56,189,248,.35);
}

.nav-links {
    display: flex;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    border: 1px solid var(--border);
    transition: .2s ease;
}

.btn-primary {
    background: var(--brand);
    color: #ffffff;
    border: none;
    box-shadow: 0 12px 28px rgba(122,31,61,.22);
}

    .btn-primary:hover {
        background: var(--brand-2);
    }

.btn-secondary {
    color: var(--text);
    background: rgba(255,255,255,.05);
}

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

.hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 24px 56px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 44px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid rgba(122,31,61,.15);
    border-radius: 999px;
    background: rgba(122,31,61,.08);
    color: #7a1f3d;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: .98;
    margin: 0 0 22px;
    letter-spacing: -2.5px;
}

.hero p {
    color: var(--muted);
    font-size: 19px;
    max-width: 660px;
    margin: 0 0 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.card,
.pricing-card,
.screenshot-card,
.step,
.pill-card,
.checklist,
.form-card,
.download-card,
.hero-card {
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}


.terminal {
    background: #050914;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    overflow: hidden;
}

.terminal-top {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: #0b1020;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #64748b;
}

    .dot:nth-child(1) {
        background: #ef4444;
    }

    .dot:nth-child(2) {
        background: #facc15;
    }

    .dot:nth-child(3) {
        background: #22c55e;
    }

pre {
    margin: 0;
    padding: 22px;
    color: #d9f99d;
    font-size: 13.5px;
    overflow-x: auto;
}

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

.status {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}

    .status strong {
        display: block;
        font-size: 22px;
    }

    .status span {
        color: var(--muted);
        font-size: 12px;
    }

section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 66px 24px;
}

.section-title {
    max-width: 760px;
    margin-bottom: 28px;
}

    .section-title h2 {
        font-size: clamp(30px, 4vw, 48px);
        line-height: 1.05;
        margin: 0 0 12px;
        letter-spacing: -1.3px;
    }

    .section-title p {
        color: var(--muted);
        font-size: 18px;
        margin: 0;
    }

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

.card {
    background: rgba(255,255,255,.055);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(56,189,248,.14);
    color: #000000;
    font-weight: 900;
    margin-bottom: 14px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

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

.back-top {
    margin-top: 24px;
    text-align: right;
}

    .back-top a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border);
        border-radius: 999px;
        padding: 9px 14px;
        color: var(--muted);
        background: rgba(255,255,255,.05);
        font-size: 13px;
        font-weight: 700;
        transition: .2s ease;
    }

        .back-top a:hover {
            color: var(--text);
            transform: translateY(-1px);
        }


.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 26px;
    align-items: start;
}

.checklist {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px;
}

.check {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: var(--muted);
}

    .check:last-child {
        border-bottom: 0;
    }

    .check b {
        color: var(--text);
    }

.tick {
    color: var(--brand-2);
    font-weight: 900;
}

.workflow {
    display: grid;
    gap: 14px;
}

.step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
}

.num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--panel-2);
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--brand);
}

.step h3 {
    margin: 0 0 4px;
}

.step p {
    margin: 0;
    color: var(--muted);
}

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

.pill-card {
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    color: var(--muted);
}

    .pill-card strong {
        color: var(--text);
        display: block;
        margin-bottom: 5px;
    }

.cta {
    margin: 56px auto 0;
    background: linear-gradient(135deg, rgba(56,189,248,.18), rgba(34,197,94,.12));
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
}

    .cta h2 {
        margin: 0 0 8px;
        font-size: 34px;
    }

    .cta p {
        margin: 0;
        color: var(--muted);
    }

footer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 38px 24px 56px;
    color: var(--muted);
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 880px) {

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

    .cards, .audience {
        grid-template-columns: 1fr 1fr;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-left: 0;
        width: 100%;
    }

    .nav .btn {
        margin-left: 0;
    }

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

@media (max-width: 560px) {
    .cards, .audience {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

.form-shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 38px 24px 72px;
}

.form-card {
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 38px;
    box-shadow: var(--shadow);
}

    .form-card h1 {
        font-size: clamp(34px, 5vw, 56px);
    }

.form-intro {
    color: var(--muted);
    font-size: 18px;
    max-width: 720px;
    margin-bottom: 28px;
}

.demo-form {
    display: grid;
    gap: 20px;
}

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

.field label {
    display: block;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 7px;
}

.field input,
.field textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(5, 9, 20, .72);
    color: var(--text);
    padding: 13px 15px;
    font: inherit;
    outline: none;
}

.field textarea {
    resize: vertical;
}

    .field input:focus,
    .field textarea:focus {
        border-color: rgba(56,189,248,.75);
        box-shadow: 0 0 0 4px rgba(56,189,248,.12);
    }

.field span {
    display: block;
    color: #fca5a5;
    font-size: 13px;
    margin-top: 6px;
}

.form-submit {
    margin-top: 8px;
    width: fit-content;
}

.thank-you-card {
    text-align: center;
}

    .thank-you-card .btn {
        margin-top: 12px;
    }

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 28px;
    }

    .form-submit {
        width: 100%;
    }
}

.product-shot-card {
    padding: 14px;
}

.product-shot,
.screenshot-card img {
    display: block;
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.hero-shot {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top left;
}

.screenshots-section {
    max-width: 1260px;
}

.feature-showcase {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.showcase-copy h3 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.showcase-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

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

.screenshot-card {
    background: rgba(255,255,255,.055);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 18px;
}

    .screenshot-card img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        object-position: top left;
        margin-bottom: 16px;
    }

    .screenshot-card h3 {
        margin: 0 0 6px;
        font-size: 21px;
    }

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

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

.pricing-card {
    background: rgba(255,255,255,.055);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px;
    transition: .2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .pricing-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 24px 70px rgba(0,0,0,.15);
    }

    .pricing-card.featured {
        border-color: rgba(56,189,248,.55);
        box-shadow: 0 20px 60px rgba(56,189,248,.12);
        background: linear-gradient(180deg, rgba(56,189,248,.12), rgba(255,255,255,.045));
    }

.pricing-grid a {
    text-decoration: none;
}

.pricing-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.price {
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 14px;
    color: #7a1f3d;
}

.pricing-card p,
.pricing-card li {
    color: var(--muted);
}

.pricing-card ul {
    padding-left: 20px;
    margin: 14px 0 0;
}


.download-section {
    max-width: 1180px;
}

.download-card {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, rgba(56,189,248,.16), rgba(34,197,94,.10));
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 34px;
    box-shadow: var(--shadow);
}

    .download-card h2 {
        margin: 0 0 12px;
        font-size: clamp(30px, 4vw, 46px);
        line-height: 1.05;
        letter-spacing: -1.2px;
    }

    .download-card p {
        color: var(--muted);
        font-size: 18px;
        margin: 0 0 18px;
    }

.download-list {
    display: grid;
    gap: 8px;
    color: var(--muted);
    margin: 0;
    padding-left: 20px;
}

.download-action-card {
    background: #ffffff;
    border: 1px solid #dbe3ea;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.download-btn {
    width: 100%;
    margin-bottom: 14px;
}

.download-action-card small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.download-action-card code {
    color: #93c5fd;
    word-break: break-all;
}

.download-action-card p {
    color: #d1d5db;
    font-weight: 500;
    margin-top: 12px;
}

.download-action-card .btn {
    margin-bottom: 10px;
}

@media (max-width: 880px) {
    .feature-showcase,
    .pricing-grid,
    .download-card {
        grid-template-columns: 1fr;
    }

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

.purchase-shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 72px 24px 90px;
}

.purchase-header {
    text-align: center;
    margin-bottom: 34px;
}

    .purchase-header h1 {
        font-size: clamp(40px, 5vw, 64px);
        margin-bottom: 18px;
    }

    .purchase-header p {
        color: var(--muted);
        font-size: 18px;
        max-width: 760px;
        margin: 0 auto;
    }

.purchase-card-container {
    display: flex;
    justify-content: center;
}

.purchase-card h2 {
    text-align: center;
    margin: 0 0 12px;
}

.purchase-card .price {
    text-align: center;
    margin: 0 0 24px;
}

.purchase-card p {
    max-width: 600px;
    margin: 0 auto 24px;
    text-align: center;
}

.purchase-guarantee {
    max-width: 560px; /* Match your pricing card width */
    margin: 3rem auto 0;
}

/* Purchase card sections */
.pricing-section {
    margin-top: 2rem;
}

    .pricing-section:first-of-type {
        margin-top: 1.75rem;
    }

    .pricing-section h3 {
        margin: 0 0 .75rem 0;
        font-size: 1.25rem;
        font-weight: 700;
        color: #13294b;
    }

    .pricing-section .pricing-features {
        margin: 0;
        padding-left: 1.25rem;
    }

        .pricing-section .pricing-features li {
            margin-bottom: .45rem;
            line-height: 1.45;
        }

/* Give the two intro paragraphs some breathing room */
.pricing-description + .pricing-description {
    margin-top: .75rem;
}

/* Value statement */
.pricing-footer {
    margin: 1.75rem 0;
    padding: .9rem 1rem;
    background: rgba(128, 0, 32, 0.06);
    border-left: 4px solid #800020;
    border-radius: 6px;
    font-weight: 600;
    text-align: left;
    line-height: 1.45;
}