/* Extracted from index.html so the landing page passes a strict CSP
   (style-src 'self' -- no 'unsafe-inline'). forge#38. */
        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --primary-light: #e0e7ff;
            --primary-subtle: #f5f3ff;
            --text-dark: #1e1b4b;
            --text-medium: #4b5563;
            --text-light: #6b7280;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a { color: var(--primary); }
        a:hover { color: var(--primary-dark); }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 1.125rem;
            color: var(--text-dark);
            text-decoration: none;
        }
        .logo img { width: 36px; height: 36px; object-fit: contain; }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }
        .nav-links a {
            color: var(--text-medium);
            text-decoration: none;
            font-size: 0.9375rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--primary); }

        .btn-primary {
            background: var(--primary);
            color: white;
            padding: 0.625rem 1.25rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9375rem;
            transition: background 0.2s, transform 0.2s;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            color: white;
        }

        .btn-cta {
            background: var(--primary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.0625rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
        }
        .btn-cta:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
            color: white;
        }

        .btn-white {
            background: var(--white);
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        /* Hero */
        .hero {
            text-align: center;
            padding: 4rem 5% 3rem;
            max-width: 860px;
            margin: 0 auto;
        }
        .hero h1 {
            font-family: 'Fraunces', serif;
            font-size: clamp(2rem, 5vw, 3.25rem);
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.15;
            margin-bottom: 1.25rem;
        }
        .hero-subhead {
            font-size: 1.125rem;
            color: var(--text-medium);
            margin: 0 auto 1.5rem;
            max-width: 640px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-subtle);
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.9375rem;
            color: var(--text-medium);
            margin-bottom: 2rem;
        }
        .hero-badge svg { color: var(--success); }
        .hero-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }
        .hero-note {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        section { scroll-margin-top: 80px; }

        /* Audience */
        .audience-section { padding: 2rem 5% 3rem; max-width: 1100px; margin: 0 auto; }
        .audience-cards {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1rem;
        }
        @media (max-width: 960px) {
            .audience-cards { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
        }
        @media (max-width: 520px) {
            .audience-cards { grid-template-columns: 1fr; }
        }
        .audience-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 1.75rem;
            text-align: center;
            transition: all 0.3s;
        }
        .audience-card:hover {
            border-color: var(--primary-light);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
            transform: translateY(-3px);
        }
        .audience-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-subtle);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--primary);
        }
        .audience-card h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        .audience-card p {
            font-size: 0.9375rem;
            color: var(--text-medium);
            line-height: 1.5;
        }

        /* Features */
        .features-section { padding: 4rem 5%; background: var(--gray-50); }
        .features-inner { max-width: 1100px; margin: 0 auto; }
        .features-header { text-align: center; margin-bottom: 3rem; }
        .features-header h2 {
            font-family: 'Fraunces', serif;
            font-size: clamp(1.5rem, 3vw, 1.875rem);
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        .features-header p { font-size: 1rem; color: var(--text-medium); }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .feature-card {
            background: var(--white);
            border-radius: 12px;
            padding: 1.75rem;
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
        }
        .feature-card:hover { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06); }
        .feature-count {
            font-family: 'Fraunces', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 0.75rem;
        }
        .feature-card h3 {
            font-size: 1.0625rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        .feature-card p {
            font-size: 0.9375rem;
            color: var(--text-medium);
            line-height: 1.55;
        }

        /* How it works */
        .how-section { padding: 4.5rem 5%; max-width: 1100px; margin: 0 auto; }
        .how-section h2 {
            font-family: 'Fraunces', serif;
            font-size: clamp(1.5rem, 3vw, 1.875rem);
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 3rem;
        }
        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        @media (max-width: 768px) { .steps { grid-template-columns: 1fr; } }
        .step { text-align: center; }
        .step-icon {
            width: 64px;
            height: 64px;
            background: var(--primary-subtle);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            position: relative;
            color: var(--primary);
        }
        .step-number {
            position: absolute;
            top: -8px;
            left: -8px;
            width: 24px;
            height: 24px;
            background: var(--primary);
            color: white;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .step h3 {
            font-size: 1.0625rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        .step p {
            font-size: 0.9375rem;
            color: var(--text-medium);
            line-height: 1.5;
        }

        /* Trust */
        .trust-section { padding: 2.5rem 5%; background: var(--gray-50); }
        .trust-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            color: var(--text-medium);
            font-size: 0.9375rem;
            font-weight: 500;
        }
        .trust-item svg { color: var(--success); flex-shrink: 0; }

        /* Intake */
        .intake-section { padding: 4.5rem 5%; max-width: 1100px; margin: 0 auto; }
        .intake-section h2 {
            font-family: 'Fraunces', serif;
            font-size: clamp(1.5rem, 3vw, 1.875rem);
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 0.5rem;
        }
        .intake-section > p.intake-lede {
            text-align: center;
            color: var(--text-medium);
            max-width: 640px;
            margin: 0 auto 2.5rem;
        }
        .intake-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 768px) { .intake-grid { grid-template-columns: 1fr; } }
        .intake-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            padding: 1.75rem;
        }
        .intake-card h3 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }
        .intake-card ul {
            list-style: none;
            padding: 0;
        }
        .intake-card li {
            padding: 0.375rem 0 0.375rem 1.5rem;
            position: relative;
            color: var(--text-medium);
            font-size: 0.9375rem;
            line-height: 1.5;
        }
        .intake-card li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.75rem;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
        }
        .intake-how {
            background: var(--primary-subtle);
            border-radius: 12px;
            padding: 1.75rem;
            text-align: center;
        }
        .intake-how p { color: var(--text-medium); margin-bottom: 0.5rem; }
        .intake-how strong { color: var(--text-dark); }
        .intake-how .email-big {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            word-break: break-all;
        }

        /* Sample */
        .sample-section { padding: 3rem 5%; max-width: 1100px; margin: 0 auto; text-align: center; }
        .sample-section h2 {
            font-family: 'Fraunces', serif;
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        .sample-section p {
            color: var(--text-medium);
            max-width: 600px;
            margin: 0 auto;
        }

        /* FAQ */
        .faq-section { padding: 4rem 5%; background: var(--gray-50); }
        .faq-inner { max-width: 760px; margin: 0 auto; }
        .faq-inner h2 {
            font-family: 'Fraunces', serif;
            font-size: clamp(1.5rem, 3vw, 1.875rem);
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .faq-item {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            margin-bottom: 0.75rem;
            overflow: hidden;
        }
        .faq-item summary {
            padding: 1.125rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 1rem;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after {
            content: "+";
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 400;
            transition: transform 0.2s;
        }
        .faq-item[open] summary::after { content: "−"; }
        .faq-item .faq-body {
            padding: 0 1.5rem 1.25rem;
            color: var(--text-medium);
            font-size: 0.9375rem;
            line-height: 1.6;
        }

        /* Waitlist CTA */
        .waitlist-section {
            background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
            padding: 4.5rem 5%;
            text-align: center;
        }
        .waitlist-section h2 {
            font-family: 'Fraunces', serif;
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1rem;
        }
        .waitlist-section > p {
            font-size: 1.0625rem;
            color: rgba(255, 255, 255, 0.85);
            margin: 0 auto 2rem;
            max-width: 600px;
        }
        .waitlist-form {
            max-width: 520px;
            margin: 0 auto;
            display: grid;
            gap: 0.75rem;
        }
        .waitlist-form input {
            width: 100%;
            padding: 0.875rem 1rem;
            border: none;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.9375rem;
            outline: none;
        }
        .waitlist-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
        .waitlist-form button {
            background: var(--white);
            color: var(--primary);
            border: none;
            padding: 0.875rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }
        .waitlist-form button:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }
        .waitlist-form button:disabled { opacity: 0.6; cursor: wait; }
        .waitlist-status {
            margin-top: 1rem;
            color: var(--white);
            min-height: 1.25rem;
            font-size: 0.9375rem;
        }
        .waitlist-status.error { color: #fecaca; }

        /* Footer */
        footer {
            background: var(--gray-50);
            padding: 2rem 5%;
            border-top: 1px solid var(--gray-200);
        }
        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        .footer-logo img { width: 28px; height: 28px; object-fit: contain; }
        .footer-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--primary); }
        .footer-copy { font-size: 0.8125rem; color: var(--text-light); }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .footer-inner { flex-direction: column; text-align: center; }
        }

/* -- classes replacing former inline style= attributes (forge#38) -- */
.staff-bar { background:#1e1b4b; color:#c7d2fe; font-size:0.75rem; padding:6px 5%; display:flex; gap:16px; align-items:center; justify-content:flex-end; }
.staff-bar-label { opacity:0.6; }
.staff-bar-link { color:#a5b4fc; text-decoration:none; font-weight:500; }
.staff-bar-sep { opacity:0.4; }
.feature-count--text { font-size:2rem; }
.pricing-note { margin-top:0.75rem; font-size:0.875rem; }
.verify-note { background:#fef3c7; padding:0 4px; }
