:root {
    --ink: #14211f;
    --muted: #65716e;
    --line: #d9e3df;
    --paper: #f7faf8;
    --white: #ffffff;
    --primary: #A1B7FF;
    --primary-dark: #405cba;
    --primary-soft: #edf2ff;
    --blue: #1d5f83;
    --gold: #b88928;
    --shadow: 0 18px 48px rgba(20, 33, 31, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

main [id] {
    scroll-margin-top: 96px;
}

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

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;
    padding: 16px clamp(20px, 4vw, 64px);
    background: rgba(21, 33, 63, 0.96);
    border-bottom: 1px solid rgba(161, 183, 255, 0.22);
    backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.hero-stats,
.panel-header,
.metrics,
.site-footer {
    display: flex;
    align-items: center;
}

.brand img {
    width: min(190px, 48vw);
    height: auto;
}

.nav {
    gap: clamp(12px, 2vw, 28px);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.94rem;
    font-weight: 600;
}

.nav a {
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(161, 183, 255, 0.42);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: var(--white);
}

.nav-cta {
    padding: 10px 16px;
    color: #15213f;
    border: 1px solid var(--primary);
    border-radius: 999px;
    background: var(--primary);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: clamp(40px, 7vw, 88px) clamp(20px, 4vw, 64px) 56px;
    background: linear-gradient(135deg, #f7faf8 0%, #edf2ff 52%, #edf5f8 100%);
}

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

.eyebrow {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: 0;
}

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

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

.hero-text {
    max-width: 600px;
    margin-bottom: 28px;
    color: #40504c;
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.primary {
    color: #15213f;
    background: var(--primary);
    box-shadow: 0 12px 28px rgba(64, 92, 186, 0.22);
}

.secondary {
    color: var(--primary-dark);
    border-color: #c7d3ff;
    background: rgba(255, 255, 255, 0.72);
}

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

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.store-badge {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-width: 152px;
    min-height: 54px;
    padding: 9px 15px;
    border: 1px solid #c7d3ff;
    border-radius: 8px;
    color: var(--white);
    background: #15213f;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.1;
}

.store-badge small {
    margin-bottom: 3px;
    color: #dce5ff;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.store-badges.light {
    margin-top: 22px;
    margin-bottom: 0;
}

.store-badges.light .store-badge {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    max-width: 620px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    color: var(--muted);
}

.hero-stats span {
    display: block;
    min-height: 74px;
    padding: 14px 16px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.75);
    line-height: 1.25;
}

.hero-stats strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
    font-size: 1.05rem;
}

.hero-media {
    position: relative;
}

.hero-media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.section,
.split-section,
.waitlist {
    padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 64px);
}

.intro,
.split-section,
.waitlist {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.intro p:last-child,
.split-copy p,
.waitlist p {
    color: var(--muted);
    font-size: 1.08rem;
}

.feature-grid,
.pricing-grid,
.timeline {
    display: grid;
    gap: 18px;
    padding: 0 clamp(20px, 4vw, 64px) clamp(56px, 8vw, 104px);
}

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

.feature-card,
.price-card,
.timeline-item,
.deal-panel,
details,
.waitlist-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(20, 33, 31, 0.06);
}

.feature-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.feature-image {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    height: 190px;
    padding: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-soft), #f9fbff);
    border-bottom: 1px solid var(--line);
}

.feature-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(20, 33, 31, 0.12));
}

.feature-content {
    flex: 1 1 auto;
    padding: 24px;
    background: var(--white);
}

.feature-card p,
.timeline-item p,
.price-card p,
details p {
    margin-bottom: 0;
    color: var(--muted);
}

.split-section {
    background: #edf5f8;
}

.section-image {
    overflow: hidden;
    border: 1px solid rgba(161, 183, 255, 0.5);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.section-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.check-list,
.price-card ul {
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li,
.price-card li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: #40504c;
}

.check-list li::before,
.price-card li::before {
    content: "";
    position: absolute;
    top: 0.64em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary);
}

.deal-panel {
    padding: 22px;
}

.panel-header {
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.panel-header strong {
    color: var(--primary-dark);
}

.deal-card {
    padding: 22px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: #f7faf8;
}

.deal-type {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 800;
}

.metrics {
    gap: 10px;
    flex-wrap: wrap;
}

.metrics span {
    flex: 1 1 120px;
    padding: 12px;
    border-radius: 8px;
    background: var(--white);
    color: var(--muted);
}

.metrics strong {
    display: block;
    color: var(--ink);
    font-size: 1.4rem;
}

.compact {
    margin-bottom: 0;
}

.progress {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #d9e3df;
}

.progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--gold);
}

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

.image-showcase {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 64px);
    background: var(--white);
}

.showcase-copy {
    max-width: 560px;
}

.showcase-copy p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.showcase-images {
    display: grid;
    grid-template-columns: 0.8fr 1fr 0.9fr;
    gap: 18px;
    align-items: end;
}

.showcase-images figure {
    overflow: hidden;
    min-width: 0;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--primary-soft);
    box-shadow: 0 14px 34px rgba(20, 33, 31, 0.09);
}

.showcase-images img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    padding: 14px;
}

.showcase-images figure:nth-child(2) img {
    height: 420px;
}

.timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-bottom: 0;
}

.timeline-item {
    padding: 24px;
}

.timeline-item span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 22px;
    border-radius: 50%;
    color: #15213f;
    background: var(--primary);
    font-weight: 800;
}

.pricing {
    background: var(--white);
}

.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
}

.price-card {
    position: relative;
    padding: 26px;
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 18px 42px rgba(64, 92, 186, 0.16);
}

.badge {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: var(--primary-soft);
    font-size: 0.78rem;
    font-weight: 800;
}

.price {
    margin: 22px 0 20px;
    color: var(--ink);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.price span,
.price small {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 700;
}

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

details {
    padding: 20px 22px;
}

summary {
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

details p {
    margin-top: 14px;
}

.waitlist {
    color: var(--white);
    background: #15213f;
}

.waitlist .eyebrow,
.waitlist p {
    color: #dce5ff;
}

.waitlist-form {
    padding: 24px;
    color: var(--ink);
}

fieldset {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
    margin: 0 0 18px;
    border: 0;
}

legend,
.email-field span {
    grid-column: 1 / -1;
    margin-bottom: 8px;
    color: #40504c;
    font-size: 0.9rem;
    font-weight: 800;
}

.waitlist-form label span {
    display: block;
}

fieldset label span {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    text-align: center;
    font-weight: 800;
    cursor: pointer;
}

fieldset input {
    position: absolute;
    opacity: 0;
}

fieldset input:checked + span {
    color: #15213f;
    border-color: var(--primary);
    background: var(--primary);
}

.email-field {
    display: block;
    margin-bottom: 18px;
}

input[type="email"] {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
}

.waitlist-form .button {
    width: 100%;
}

.form-message {
    margin: 16px 0 0;
    color: var(--primary-dark);
    font-weight: 800;
}

.site-footer {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    padding: 26px clamp(20px, 4vw, 64px);
    color: var(--muted);
    background: var(--white);
    border-top: 1px solid var(--line);
    font-size: 0.94rem;
}

.site-footer a {
    color: var(--primary-dark);
    font-weight: 800;
}

@media (max-width: 1080px) {
    .hero,
    .intro,
    .split-section,
    .waitlist,
    .image-showcase {
        grid-template-columns: 1fr;
    }

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

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

    .showcase-images img,
    .showcase-images figure:nth-child(2) img {
        height: 300px;
    }
}

@media (max-width: 760px) {
    main [id] {
        scroll-margin-top: 116px;
    }

    .site-header {
        position: sticky;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        padding-top: 8px;
        color: var(--white);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 14px 0;
        border-top: 1px solid rgba(161, 183, 255, 0.18);
    }

    .nav-cta {
        display: inline-flex;
        justify-content: center;
        margin-top: 10px;
        padding: 13px 16px;
        border-top: 0;
    }

    .hero {
        min-height: auto;
        gap: 28px;
        padding-top: 34px;
    }

    .store-badge {
        flex: 1 1 150px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .hero-stats span {
        min-height: auto;
        padding: 14px 16px;
    }

    h1 {
        font-size: clamp(2.8rem, 15vw, 4rem);
    }

    .hero-media {
        display: block;
        width: 100%;
        margin-inline: 0;
    }

    .hero-media img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        border-radius: 8px;
    }

    .feature-grid,
    .timeline,
    .pricing-grid,
    .showcase-images {
        grid-template-columns: 1fr;
    }

    .feature-image {
        height: clamp(280px, 82vw, 390px);
        padding: 20px;
    }

    .feature-image img {
        filter: none;
    }

    .showcase-images img,
    .showcase-images figure:nth-child(2) img {
        height: auto;
        max-height: 520px;
    }

    fieldset {
        grid-template-columns: 1fr;
    }
}
