/* ——— CSS variables / theme ——— */
:root {
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --muted-2: #64748b;
    --line: #e2e8f0;
    --line-2: #cbd5e1;

    --indigo-50: #eef2ff;
    --indigo-100: #e0e7ff;
    --indigo-600: #4f46e5;
    --indigo-700: #4338ca;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --rose-700: #be123c;
    --rose-50: #fff1f2;

    --radius: 12px;
    /* rounded-xl */
    --radius-lg: 20px;
    /* rounded-2xl */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-xl: 0 10px 25px rgba(0, 0, 0, .08), 0 4px 8px rgba(0, 0, 0, .06);
    --ring: 0 0 0 .25rem rgba(128, 128, 128, .6);
    --container: 80rem;
    /* ~max-w-7xl */
}

/* ——— Base ——— */
* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body.site {
    min-height: 100vh;
    background: linear-gradient(to bottom, var(--bg-alt), #fff);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

/* ——— Layout primitives ——— */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1rem
}

.section {
    background: #fff
}

.section-alt {
    background: var(--bg-alt)
}

.section-pad {
    padding-block: 4rem
}

@media (min-width:640px) {
    .section-pad {
        padding-block: 5rem
    }
}

.centered {
    text-align: center;
    margin-inline: auto
}

.max-600 {
    max-width: 600px
}

.max-800 {
    max-width: 800px
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem
}

.grid-2 {
    grid-template-columns: 1fr
}

.grid-3 {
    grid-template-columns: 1fr
}

@media (min-width:768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr
    }
}

@media (min-width:1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr)
    }
}

/* Cards */
.cards {
    margin-top: 2rem
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.card-elevated {
    box-shadow: var(--shadow-xl)
}

.card-row {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.card-title-sm {
    font-size: .9rem;
    font-weight: 600;
    color: #334155
}

.card-title-lg {
    font-size: 1.2rem;
    font-weight: 600;
    color: #334155
}

.note {
    margin-top: 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 1rem;
    font-size: .82rem;
    color: var(--muted);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: saturate(180%) blur(8px);
    background: rgba(255, 255, 255, .8);
    border-bottom: 1px solid var(--line);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.brand {
    display: flex;
    align-items: center;
    gap: .5rem
}

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 14px;
    background: #0f172a;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.brand-mark-sm {
    width: 28px;
    height: 28px;
    border-radius: 12px;
    background: #0f172a;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .875rem
}

.brand-name {
    font-weight: 600;
    font-size: 1.125rem
}

.primary-nav {
    display: none;
    gap: 1.25rem;
    color: var(--muted-2);
    font-size: .95rem
}

.primary-nav a:hover {
    color: var(--text)
}

@media (min-width:768px) {
    .primary-nav {
        display: flex
    }
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden
}

.hero-glow {
    pointer-events: none;
    position: absolute;
    inset: 0;
    opacity: .7;
    z-index: -1;
    background:
        radial-gradient(30rem 30rem at 50% -10rem, var(--indigo-100), transparent 60%);
    filter: blur(6px);
}

.h1 {
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -.015em;
    margin: 0
}

@media (min-width:640px) {
    .h1 {
        font-size: 3rem;
        line-height: 1.05
    }
}

.lead {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.125rem;
    line-height: 1.6
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .6rem;
    border-radius: 999px;
    /*background:var(--indigo-50);color:var(--indigo-700);*/
    background: #0f172a;
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
}

/* Waitlist form */
.waitlist {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-width: 36rem;
    margin-top: 1.5rem
}

.waitlist input[type="email"] {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    padding: .9rem 1rem;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    outline: none;
}

.waitlist input[type="email"]:focus {
    box-shadow: var(--ring)
}

@media (min-width:640px) {
    .waitlist {
        flex-direction: row
    }
}

.disclaimer {
    margin-top: .5rem;
    color: #94a3b8;
    font-size: .75rem
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
    text-align: center;
    text-decoration: none;
    user-select: none;
}

.btn-primary {
    background: #0f172a;
    color: #fff;
    padding: .9rem 1.5rem;
    border: none
}

.btn-primary:hover {
    background: #1f2937
}

.btn-ghost {
    background: #fff;
    border: 1px solid var(--line-2);
    padding: .5rem .9rem;
    color: #0f172a
}

.btn-ghost:hover {
    background: #f1f5f9
}

.btn-light {
    background: #fff;
    color: #0f172a;
    padding: .9rem 1.2rem;
    border: none;
    box-shadow: var(--shadow-sm)
}

.btn-light:hover {
    background: #f8fafc
}

.btn-block {
    display: flex;
    width: 100%;
    margin-top: 1rem
}

/* Icon + list rows */
.icon {
    width: 20px;
    height: 20px
}

.icon-ok {
    color: var(--emerald-600)
}

.stack>*+* {
    margin-top: .75rem
}

.list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.row-left {
    display: flex;
    align-items: center;
    gap: .6rem
}

/* Secondary text */
.muted {
    color: var(--muted);
    margin-top: .5rem
}

.muted-sm {
    color: var(--muted);
    font-size: .95rem;
    margin-top: .5rem
}

.muted-xs {
    color: #94a3b8;
    font-size: .78rem
}

.muted-light {
    color: #e5e7eb
}

.h2 {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 600;
    margin: 0
}

.h3 {
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 600;
    margin: 1rem 0 0
}

.h3-light {
    color: #fff
}

/* Pills (feature icons) */
.pill {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem;
    font-weight: 600
}

.pill-indigo {
    background: var(--indigo-50);
    color: var(--indigo-700)
}

.pill-rose {
    background: var(--rose-50);
    color: var(--rose-700)
}

.pill-emerald {
    background: #ecfdf5;
    color: var(--emerald-700)
}

.pill-gray {
    background: #ddd
}

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #334155;
    font-size: .95rem
}

.feature-list .icon {
    width: 16px;
    height: 16px;
    color: var(--emerald-600)
}

/* Callout */
.callout {
    margin-top: 2rem;
    border: 1px dashed var(--line);
    background: #f8fafc;
    color: var(--muted);
    padding: 1.2rem;
    border-radius: var(--radius);
    font-size: .95rem;
}

/* Preview */
.preview-wrap {
    position: relative
}

@media (min-width:768px) {
    .preview-wrap {
        padding-left: 0
    }
}

/* Steps */
.step {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600
}

/* Pricing highlight ring */
.card-ring {
    box-shadow: 0 0 0 2px rgba(79, 70, 229, .2)
}


/* FAQ */
.faq {
    margin-top: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
}

.faq details+details {
    border-top: 1px solid var(--line);
}

.faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    /* align items vertically */
    justify-content: space-between;
    /* keeps toggle on the right */
    text-align: left;
    /* ensures summary text aligns left */
    padding: 1.25rem;
    font-weight: 600;
    color: #0f172a;
}

.faq .toggle {
    margin-left: 1rem;
    color: #94a3b8;
    transition: transform .2s ease;
}

.faq details[open] .toggle {
    transform: rotate(45deg);
}

.faq p {
    margin: 0;
    padding: 0 1.25rem 1rem;
    color: var(--muted);
    line-height: 1.7;
    text-align: left;
    /* makes answer text left aligned too */
}



/* CTA band */
.cta {
    background: linear-gradient(135deg, #0f172a, #1f2937);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width:768px) {
    .cta {
        grid-template-columns: 2fr 1fr
    }
}

.cta-text .muted-light {
    margin-top: .4rem
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    background: #fff
}

.footer-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding-block: 2.5rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #64748b
}

.copyright {
    font-size: .9rem
}

@media (min-width:640px) {
    .footer-bar {
        flex-direction: row
    }
}