* {
    box-sizing: border-box;
}

:root {
    --navy: #0f172a;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --slate: #475569;
    --muted: #64748b;
    --border: #e2e8f0;
    --soft: #f8fafc;
    --soft-blue: #eff6ff;
    --green: #16a34a;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #ffffff 100%);
    color: var(--navy);
}

a {
    text-decoration: none;
}

.navbar {
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
}

.nav-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 17px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.04em;
}

.logo::after {
    content: ".";
    color: var(--blue);
}

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

.nav-links a {
    color: #334155;
    font-weight: 700;
    font-size: 15px;
}

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

.nav-button {
    background: var(--navy);
    color: white !important;
    padding: 11px 17px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

main {
    width: 100%;
}

.hero-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 92px 24px 76px;
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    margin: 0 0 14px;
}

.hero-content h1 {
    font-size: clamp(46px, 7vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.075em;
    margin: 0 0 26px;
    max-width: 820px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.65;
    color: var(--slate);
    max-width: 720px;
    margin: 0 0 34px;
}

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

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
    border-radius: 14px;
    font-weight: 900;
    transition: 0.18s ease;
}

.primary-button {
    background: var(--blue);
    color: white;
    box-shadow: 0 15px 32px rgba(37, 99, 235, 0.26);
}

.primary-button:hover {
    transform: translateY(-2px);
    background: var(--blue-dark);
}

.secondary-button {
    background: white;
    color: var(--navy);
    border: 1px solid #cbd5e1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.secondary-button:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-row span {
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.hero-card {
    background:
        linear-gradient(145deg, rgba(15,23,42,1), rgba(30,41,59,1));
    color: white;
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.30);
    border: 1px solid rgba(255,255,255,0.10);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.22);
    top: -80px;
    right: -80px;
}

.match-card-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    margin-bottom: 34px;
    font-weight: 800;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 6px rgba(34,197,94,0.12);
}

.hero-card h3 {
    position: relative;
    font-size: 30px;
    line-height: 1.12;
    margin: 0 0 14px;
    letter-spacing: -0.04em;
}

.muted {
    position: relative;
    color: #cbd5e1;
    line-height: 1.55;
}

.match-tags {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.match-tags span {
    background: rgba(255,255,255,0.10);
    color: #e2e8f0;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.match-score {
    position: relative;
}

.match-score strong {
    font-size: 31px;
}

.progress-bar {
    height: 11px;
    background: rgba(255,255,255,0.14);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 12px;
}

.progress-fill {
    width: 92%;
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #93c5fd);
    border-radius: 999px;
}

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

.light-section {
    max-width: 100%;
    background: rgba(255,255,255,0.78);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.light-section > * {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 38px;
}

.section-heading h2 {
    font-size: clamp(34px, 4.2vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.055em;
    margin: 0 0 18px;
}

.section-heading p {
    color: var(--slate);
    font-size: 18px;
    line-height: 1.72;
    margin: 0;
}

.problem-grid,
.steps-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.problem-card,
.step-card,
.testimonial-card,
.audience-card,
.card {
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.problem-card:hover,
.step-card:hover,
.testimonial-card:hover,
.audience-card:hover,
.card:hover {
    transform: translateY(-3px);
    transition: 0.18s ease;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.09);
}

.problem-card h3,
.step-card h3,
.audience-card h3,
.card h2 {
    margin-top: 0;
    font-size: 22px;
    line-height: 1.22;
    letter-spacing: -0.025em;
}

.problem-card p,
.step-card p,
.testimonial-card p,
.audience-card li,
.card p {
    color: var(--slate);
    line-height: 1.68;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--soft-blue);
    color: var(--blue);
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 950;
    margin-bottom: 18px;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.audience-card ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.audience-card a {
    color: var(--blue);
    font-weight: 900;
}

.dark-card {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    color: white;
    border-color: rgba(255,255,255,0.12);
}

.dark-card li {
    color: #cbd5e1;
}

.dark-card a {
    color: #93c5fd;
}

.stats-section {
    background: linear-gradient(135deg, #1d4ed8, #0f172a);
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    color: white;
    padding-top: 64px;
    padding-bottom: 64px;
}

.stat h2 {
    font-size: 58px;
    margin: 0 0 8px;
    letter-spacing: -0.05em;
}

.stat p {
    margin: 0;
    color: #dbeafe;
    font-weight: 800;
}

.testimonial-card h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.testimonial-card span {
    color: var(--muted);
    font-weight: 800;
}

.cta-section {
    max-width: 1000px;
    margin: 86px auto;
    padding: 64px 28px;
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(37,99,235,0.35), transparent 30%),
        linear-gradient(145deg, #0f172a, #1e293b);
    color: white;
    border-radius: 34px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.20);
}

.cta-section h2 {
    font-size: clamp(34px, 4vw, 48px);
    margin: 0 0 16px;
    letter-spacing: -0.055em;
    line-height: 1.06;
}

.cta-section p {
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto 30px;
}

.cta-section .hero-actions {
    justify-content: center;
    margin-bottom: 0;
}

.cta-section .secondary-button {
    background: rgba(255,255,255,0.08);
    color: white;
    border-color: rgba(255,255,255,0.18);
}

.footer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px 24px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 34px;
}

.footer h3 {
    color: var(--navy);
    margin-top: 0;
}

.page-header {
    max-width: 1180px;
    margin: 0 auto;
    padding: 74px 24px 28px;
}

.page-header h1 {
    font-size: clamp(42px, 5vw, 60px);
    line-height: 0.98;
    margin: 0 0 18px;
    letter-spacing: -0.065em;
}

.page-header p {
    max-width: 800px;
    color: var(--slate);
    font-size: 18px;
    line-height: 1.7;
}

.grid {
    max-width: 1180px;
    margin: 36px auto 80px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 22px;
}

.card-topline {
    color: var(--blue);
    font-weight: 950;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.muted-text {
    color: var(--muted);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-top: 1px solid var(--border);
    color: var(--slate);
}

.detail-row strong {
    color: var(--navy);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 18px;
}

.tag-row span {
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 850;
}

.light-tags span {
    background: #ecfdf5;
    color: #047857;
}

.source-note {
    margin-top: 20px;
    color: var(--muted);
    font-size: 13px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

form {
    max-width: 720px;
    margin: 40px auto 80px;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: 26px;
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 16px;
    font-weight: 850;
}

input,
textarea,
select {
    margin-top: 8px;
    padding: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 13px;
    font-size: 16px;
    background: white;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

textarea {
    min-height: 130px;
}

button {
    margin-top: 24px;
    padding: 15px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

button:hover {
    background: var(--blue-dark);
}

.waitlist-layout {
    max-width: 1180px;
    margin: 0 auto 84px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
    align-items: start;
}

.waitlist-copy {
    background:
        radial-gradient(circle at top right, rgba(37,99,235,0.38), transparent 32%),
        linear-gradient(145deg, #0f172a, #1e293b);
    color: white;
    border-radius: 30px;
    padding: 36px;
    position: sticky;
    top: 100px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.waitlist-copy h2 {
    font-size: 34px;
    margin-top: 0;
    letter-spacing: -0.05em;
}

.mini-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 18px;
    margin-top: 14px;
}

.mini-card h3 {
    margin: 0 0 8px;
}

.mini-card p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.55;
}

.waitlist-form {
    margin: 0;
    max-width: none;
}

.success-section {
    max-width: 900px;
    margin: 86px auto;
    padding: 0 24px;
}

.success-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 54px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.10);
    text-align: center;
}

.success-card h1 {
    font-size: clamp(36px, 5vw, 50px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.success-card p {
    color: var(--slate);
    font-size: 18px;
    line-height: 1.65;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .hero-section,
    .audience-grid,
    .problem-grid,
    .steps-grid,
    .testimonial-grid,
    .stats-section,
    .waitlist-layout {
        grid-template-columns: 1fr;
    }

    .nav-container,
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px;
    }

    .waitlist-copy {
        position: static;
    }

    .hero-section {
        padding-top: 64px;
    }
}

.intro-panel {
    max-width: 1060px;
    margin: 0 auto 26px;
    padding: 42px 34px;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.07);
}

.intro-panel h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.055em;
    margin: 0 0 16px;
}

.intro-panel p {
    color: var(--slate);
    font-size: 18px;
    line-height: 1.72;
    margin: 0;
}

.intro-panel .eyebrow {
    color: var(--blue);
    margin-bottom: 14px;
}

.preview-explainer {
    position: relative;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.14);
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}
