/* VettedSec — Professional Enterprise SaaS Theme */

:root {
    --navy: #0B1220;
    --navy-2: #131C2E;
    --ink: #1A2333;
    --text-muted: #566078;
    --text-dim: #8A93A6;
    --green: #16A34A;
    --green-dark: #15803D;
    --green-soft: #ECFDF3;
    --blue: #2563EB;
    --blue-soft: #EFF6FF;
    --bg: #FFFFFF;
    --bg-muted: #F7F8FA;
    --bg-subtle: #F1F3F6;
    --border: #E5E8EE;
    --border-strong: #D7DCE4;
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.04);
    --shadow-lg: 0 20px 48px rgba(16, 24, 40, 0.10), 0 4px 12px rgba(16, 24, 40, 0.04);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --container-max: 1180px;
    --navbar-height: 72px;
    --announce-height: 40px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);

    /* Semantic tokens that flip between light/dark (see [data-theme="dark"] below) */
    --heading: var(--navy);
    --navbar-bg: rgba(255, 255, 255, 0.92);
    --surface-contrast: var(--navy);
    --btn-primary-bg: var(--navy);
    --btn-primary-bg-hover: var(--navy-2);
    --btn-primary-text: #FFFFFF;
    --hero-bg: none;
    --btn-primary-shadow: var(--shadow-sm);
    --btn-primary-shadow-hover: var(--shadow-md);

    /* Product mockup tokens (its own light "screenshot" look by default) */
    --mock-bg: #FFFFFF;
    --mock-blur: none;
    --mock-topbar-bg: #F7F8FA;
    --mock-border: #E5E8EE;
    --mock-border-strong: #D7DCE4;
    --mock-heading: #0B1220;
    --mock-text-muted: #566078;
    --mock-text-dim: #8A93A6;
    --mock-tag-blue-bg: #EFF6FF;
    --mock-tag-blue-text: #2563EB;
    --mock-tag-green-bg: #ECFDF3;
    --mock-tag-green-text: #15803D;
    --mock-citation-text: #15803D;
    --mock-answer-bg: #F7F8FA;
    --mock-sidebar-bg: #F7F8FA;
    --mock-ps-active-bg: #FFFFFF;
    --mock-btn-bg: #FFFFFF;
    --mock-btn-border: #D7DCE4;
    --mock-btn-text: #566078;
    --mock-btn-primary-bg: #16A34A;
    --mock-btn-primary-text: #FFFFFF;
}

[data-theme="dark"] {
    --ink: #E7EAF1;
    --text-muted: #9AA3B8;
    --text-dim: #6B7488;
    --green: #22C55E;
    --green-dark: #4ADE80;
    --green-soft: rgba(34, 197, 94, 0.16);
    --bg: #060A12;
    --bg-muted: #0A0F1A;
    --bg-subtle: #10141F;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.45), 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55), 0 8px 20px rgba(0, 0, 0, 0.35);

    --heading: #F5F7FA;
    --navbar-bg: rgba(6, 10, 18, 0.72);
    --surface-contrast: #10151F;
    --grad-start: #16E0A0;
    --grad-end: #2E8CFF;
    --grad-brand: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
    --btn-primary-bg: var(--grad-brand);
    --btn-primary-bg-hover: var(--grad-brand);
    --btn-primary-text: #06170F;
    --btn-primary-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    --btn-primary-shadow-hover: 0 8px 28px rgba(22, 224, 160, 0.28), 0 2px 8px rgba(46, 140, 255, 0.2);

    --hero-bg:
        radial-gradient(ellipse 55% 50% at 12% 0%, rgba(22, 224, 160, 0.16), transparent 60%),
        radial-gradient(ellipse 55% 55% at 92% 15%, rgba(46, 140, 255, 0.16), transparent 60%);

    /* Product mockup becomes a frosted glass panel floating on the mesh bg */
    --mock-bg: rgba(255, 255, 255, 0.045);
    --mock-blur: blur(24px);
    --mock-topbar-bg: rgba(255, 255, 255, 0.03);
    --mock-border: rgba(255, 255, 255, 0.1);
    --mock-border-strong: rgba(255, 255, 255, 0.18);
    --mock-heading: #F5F7FA;
    --mock-text-muted: #B7C0D1;
    --mock-text-dim: #7C879C;
    --mock-tag-blue-bg: rgba(46, 140, 255, 0.16);
    --mock-tag-blue-text: #7EBBFF;
    --mock-tag-green-bg: rgba(22, 224, 160, 0.16);
    --mock-tag-green-text: #5CEBC0;
    --mock-citation-text: #5CEBC0;
    --mock-answer-bg: rgba(255, 255, 255, 0.04);
    --mock-sidebar-bg: rgba(255, 255, 255, 0.02);
    --mock-ps-active-bg: rgba(255, 255, 255, 0.08);
    --mock-btn-bg: rgba(255, 255, 255, 0.06);
    --mock-btn-border: rgba(255, 255, 255, 0.16);
    --mock-btn-text: #C7CEDC;
    --mock-btn-primary-bg: var(--grad-brand);
    --mock-btn-primary-text: #06170F;
}

* {
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
svg { display: block; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 24px);
}

@media (min-width: 1600px) {
    :root { --container-max: 1280px; }
}

.text-accent { color: var(--green); }

[data-theme="dark"] .hero-title .text-accent {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 14px;
}

.eyebrow-light { color: var(--green); }

/* ---- Buttons ---- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    box-shadow: var(--btn-primary-shadow);
}

.btn-primary:hover {
    background: var(--btn-primary-bg-hover);
    transform: translateY(-1px);
    box-shadow: var(--btn-primary-shadow-hover);
}

.btn-outline {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--border-strong);
}

.btn-outline:hover {
    background: var(--bg-muted);
    border-color: var(--text-dim);
}

.btn-lg {
    padding: 14px 26px;
    font-size: 0.9375rem;
}

/* ---- Announcement bar ---- */

.announce-bar {
    background: var(--navy);
    color: #FFFFFF;
    height: var(--announce-height);
}

.announce-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.8125rem;
}

.announce-inner span {
    color: rgba(255, 255, 255, 0.85);
}

.announce-inner a {
    color: var(--green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---- Navbar ---- */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--navbar-height);
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    font-weight: 700;
    font-size: 1.1875rem;
    letter-spacing: -0.01em;
    color: var(--heading);
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.desktop-menu a:hover { color: var(--heading); }

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    color: var(--heading);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
    border-color: var(--border-strong);
    transform: translateY(-1px);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--heading);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    padding: 12px 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.mobile-menu a.btn {
    margin-top: 12px;
    justify-content: center;
    border: none;
    color: var(--btn-primary-text);
}

/* ---- Hero ---- */

.hero {
    position: relative;
    padding: 88px 0 96px;
    background:
        var(--hero-bg),
        radial-gradient(ellipse 60% 50% at 85% -10%, rgba(37, 99, 235, 0.06), transparent),
        radial-gradient(ellipse 50% 40% at 5% 10%, rgba(22, 163, 74, 0.06), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--green-soft);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-dark);
    flex-shrink: 0;
}

[data-theme="dark"] .badge-soft {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--ink);
}

[data-theme="dark"] .badge-dot {
    background: var(--grad-start);
    box-shadow: 0 0 0 0 rgba(22, 224, 160, 0.6);
    animation: badge-pulse 2s ease-out infinite;
}

.hero-title {
    font-size: clamp(2rem, 4.6vw + 0.7rem, 3.25rem);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.03em;
    color: var(--heading);
    margin-bottom: 22px;
}

.hero-sub {
    font-size: clamp(1rem, 0.6vw + 0.85rem, 1.125rem);
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--border-strong), var(--bg-subtle));
    border: 2px solid var(--bg);
    margin-left: -10px;
}

.avatar-stack span:first-child { margin-left: 0; }

.hero-proof p {
    font-size: 0.8125rem;
    color: var(--text-dim);
    max-width: 240px;
}

/* ---- Hero product mockup ---- */

.hero-visual {
    display: flex;
    justify-content: center;
}

/* The product mockup adopts a "frosted glass" look in dark mode and a clean
   flat card in light mode, via the --mock-* tokens defined in :root above. */

.product-card {
    width: 100%;
    max-width: 480px;
    background: var(--mock-bg);
    backdrop-filter: var(--mock-blur);
    -webkit-backdrop-filter: var(--mock-blur);
    border: 1px solid var(--mock-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.product-topbar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 16px;
    background: var(--mock-topbar-bg);
    border-bottom: 1px solid var(--mock-border);
}

.pt-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    opacity: 0.85;
}

.pt-dot:nth-child(1) { background: #FF5F57; }
.pt-dot:nth-child(2) { background: #FEBC2E; }
.pt-dot:nth-child(3) { background: #28C840; }

.product-url {
    margin-left: 8px;
    font-size: 0.6875rem;
    color: var(--mock-text-dim);
    font-family: 'SF Mono', Consolas, monospace;
}

.product-body {
    display: flex;
    min-height: 300px;
}

.product-sidebar {
    width: 130px;
    flex-shrink: 0;
    background: var(--mock-sidebar-bg);
    border-right: 1px solid var(--mock-border);
    padding: 16px 10px;
}

.ps-item {
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--mock-text-muted);
    margin-bottom: 4px;
}

.ps-item.active {
    background: var(--mock-ps-active-bg);
    color: var(--mock-heading);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.product-main {
    flex: 1;
    padding: 22px;
}

.pm-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
}

.tag-blue { background: var(--mock-tag-blue-bg); color: var(--mock-tag-blue-text); }
.tag-green { background: var(--mock-tag-green-bg); color: var(--mock-tag-green-text); }

.pm-question {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mock-heading);
    margin-bottom: 12px;
    line-height: 1.5;
}

.pm-answer {
    font-size: 0.8125rem;
    color: var(--mock-text-muted);
    line-height: 1.6;
    padding: 13px;
    background: var(--mock-answer-bg);
    border: 1px solid var(--mock-border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.pm-citation {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--mock-citation-text);
    margin-bottom: 20px;
}

.pm-actions {
    display: flex;
    gap: 10px;
}

.pm-btn {
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--mock-btn-bg);
    border: 1px solid var(--mock-btn-border);
    color: var(--mock-btn-text);
}

.pm-btn.primary {
    background: var(--mock-btn-primary-bg);
    color: var(--mock-btn-primary-text);
    border-color: transparent;
}

/* ---- Trust strip ---- */

.trust-strip {
    padding: 32px 0 36px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-muted);
    overflow: hidden;
}

.trust-strip-label {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-bottom: 22px;
}

.trust-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.trust-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 14px;
    animation: marquee 26s linear infinite;
}

.trust-marquee:hover .trust-track {
    animation-play-state: paused;
}

.trust-track span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.trust-track .dot {
    color: var(--green);
    font-weight: 700;
}

/* ---- Social proof ---- */

.social-proof {
    padding: 44px 0 40px;
}

.social-proof-label {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.social-proof-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 40px;
}

.social-proof-grid span {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: -0.01em;
    opacity: 0.75;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.social-proof-grid span:hover {
    opacity: 1;
    color: var(--text-muted);
}

.social-proof-disclaimer {
    text-align: center;
    font-size: 0.6875rem;
    color: var(--text-dim);
    opacity: 0.7;
    margin-top: 18px;
}

/* ---- Persona grid ---- */

.persona-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.persona-card {
    padding: 26px 22px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.persona-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.persona-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-soft);
    color: var(--green-dark);
}

.persona-icon svg { width: 20px; height: 20px; }

.persona-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 8px;
}

.persona-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ---- Sections ---- */

.section {
    padding: 104px 0;
}

.section-muted {
    background: var(--bg-muted);
}

.section-header {
    max-width: 620px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(1.625rem, 2.4vw + 1rem, 2.375rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--heading);
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-header p {
    font-size: clamp(0.9375rem, 0.5vw + 0.8rem, 1.0625rem);
    color: var(--text-muted);
}

/* ---- Feature grid ---- */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 30px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: var(--green-soft);
    color: var(--green-dark);
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 9px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---- How it works ---- */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    padding: 32px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 18px;
}

.step-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 9px;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- Stats ---- */

.stats-section {
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: clamp(1.5rem, 1.6vw + 1rem, 2.125rem);
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    white-space: nowrap;
}

.stat-item span {
    font-size: 0.875rem;
    color: var(--text-dim);
}

/* ---- Roadmap ---- */

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 16px;
}

.roadmap-card {
    padding: 28px 26px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.roadmap-phase {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.roadmap-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 10px;
    border-radius: 100px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: 0.6875rem;
    font-weight: 700;
}

.roadmap-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--heading);
    margin: 10px 0 14px;
}

.roadmap-card ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.roadmap-card li {
    position: relative;
    padding-left: 16px;
    font-size: 0.8438rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.roadmap-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}

.roadmap-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-strong);
}

.roadmap-arrow svg {
    width: 22px;
    height: 22px;
}

/* ---- Enterprise ---- */

.enterprise {
    background: var(--surface-contrast);
}

.enterprise-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: center;
}

.enterprise-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    margin-bottom: 18px;
    line-height: 1.25;
}

.enterprise-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.enterprise-card {
    padding: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
}

.enterprise-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 22px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 12px 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checklist li:last-child { border-bottom: none; }

.checklist .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(22, 163, 74, 0.25);
    color: #4ADE80;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.checklist em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-left: auto;
}

/* ---- Pricing ---- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.pricing-card.featured {
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    background: var(--green);
    color: #FFFFFF;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 14px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.pricing-amount .currency {
    font-size: 1.25rem;
    font-weight: 700;
}

.pricing-amount .period {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-dim);
    margin-left: 2px;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-features li {
    position: relative;
    padding-left: 22px;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.8125rem;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 36px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.pricing-note strong {
    color: var(--heading);
}

/* ---- FAQ ---- */

.faq-container {
    max-width: 760px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2px 24px;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--heading);
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
    transition: transform 0.25s ease;
    color: var(--text-dim);
    flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--green);
}

.faq-item p {
    padding-bottom: 19px;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ---- Waitlist ---- */

.waitlist-section {
    background: var(--bg-muted);
}

.waitlist-card {
    max-width: 680px;
    text-align: center;
    padding: 56px 48px;
    background: var(--surface-contrast);
    border-radius: var(--radius-lg);
}

.waitlist-card h2 {
    font-size: 2.125rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.waitlist-card > p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
}

.waitlist-form {
    display: flex;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
}

.waitlist-form input {
    flex: 1;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: #FFFFFF;
}

.waitlist-form input::placeholder { color: rgba(255, 255, 255, 0.45); }

.waitlist-form input:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(255, 255, 255, 0.12);
}

.waitlist-form .btn-primary {
    background: var(--green);
}

.waitlist-form .btn-primary:hover {
    background: var(--green-dark);
}

.form-note {
    margin-top: 16px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- Footer ---- */

.footer {
    padding: 56px 0 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo-img {
    height: 34px;
    width: 34px;
}

.footer-brand p {
    margin-top: 14px;
    font-size: 0.875rem;
    color: var(--text-dim);
    max-width: 280px;
}

.footer-cols {
    display: flex;
    gap: 56px;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--heading); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--text-dim);
}
