/* SterileCSV Premium Design System - Redesigned */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Institutional palette (finance / infra) */
    --bg-base: #0b1220;
    --bg-elevated: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.72);
    --bg-card-hover: rgba(17, 29, 56, 0.92);

    /* Corporate Gradients (used sparingly) */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    --gradient-accent: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    --gradient-hero: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.05) 50%, rgba(20, 184, 166, 0.03) 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.12), transparent 70%);

    /* Accent Colors */
    --primary: #2563eb;
    --primary-light: #60a5fa;
    --primary-dark: #1d4ed8;
    --accent: #0ea5e9;
    --accent-teal: #14b8a6;
    --cyan: #22d3ee;
    --emerald: #10b981;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e0;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(14, 165, 233, 0.3);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow-primary: 0 0 50px rgba(14, 165, 233, 0.25);
    --shadow-glow-accent: 0 0 50px rgba(6, 182, 212, 0.2);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-2xl: 24px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg-base);
    background-image:
        radial-gradient(circle at 18% 22%, rgba(14, 165, 233, 0.035) 0%, transparent 55%),
        radial-gradient(circle at 82% 78%, rgba(6, 182, 212, 0.02) 0%, transparent 55%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

body.audit-flash::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(248, 113, 113, 0.14);
    pointer-events: none;
    z-index: 9999;
    animation: auditFlash 0.75s ease-out 1;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.875rem, 3vw + 0.5rem, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 600;
}

p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: all var(--transition-base);
}

a:hover {
    color: var(--accent);
}

/* Buttons */
.btn-danger {
    background: #ef4444;
    color: #0a0e14 !important;
    border: 1px solid rgba(248, 113, 113, 0.35);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.18);
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(239, 68, 68, 0.24);
}

.btn-danger:active {
    transform: translateY(0);
}

ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

li {
    margin-bottom: 0.875rem;
    line-height: 1.75;
}

li::marker {
    color: var(--primary);
}

code {
    background: rgba(14, 165, 233, 0.1);
    color: var(--cyan);
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Consolas', monospace;
    font-size: 0.875em;
    border: 1px solid rgba(14, 165, 233, 0.2);
    font-weight: 500;
}

/* Layout */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
header {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 56px;
    backdrop-filter: blur(12px);
}

.brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
    transition: transform var(--transition-base);
}

.brand:hover {
    transform: translateX(-2px);
}

.brand span {
    font-weight: 400;
    font-size: 15px;
    margin-left: 8px;
    color: var(--text-muted);
}

/* Navigation */
.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 72px;
    padding: 80px 56px;
    background: var(--bg-elevated);
    background-image: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--glass-border);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.hero h1 {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.hero p {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

/* Landing conversion blocks */
.hero-block {
    width: 100%;
    max-width: 980px;
    position: relative;
    z-index: 1;
}

/* Homepage (clinic layout) */
body.home .hero {
    text-align: left;
    align-items: stretch;
    padding: 72px 56px;
}

body.home .hero::after {
    display: none;
}

.hero-grid {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

@media (min-width: 968px) {
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 36px;
        align-items: start;
    }
}

body.home .hero p {
    max-width: none;
    margin: 0;
}

.cta-group {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cta-group .btn {
    width: auto;
    min-width: 240px;
}

.trust-list {
    margin-top: 16px;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 14px;
}

.audit-panel {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(248, 113, 113, 0.22);
    background: rgba(248, 113, 113, 0.06);
    padding: 18px;
}

pre.code-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 16px;
    overflow-x: auto;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

pre.code-block code {
    background: transparent;
    border: none;
    padding: 0;
    color: inherit;
}

/* Grid */
.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 968px) {
    .grid-main {
        grid-template-columns: 2fr 1fr;
        gap: 48px;
    }
}

/* Cards */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.card::before {
    display: none;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}

.card.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
}

.card.glass:hover {
    background: var(--glass-bg-hover);
}

.card h2 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

.card h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.card ul {
    margin-top: 20px;
}

.card li {
}

.card li b {
    color: var(--primary-light);
    font-weight: 600;
}

/* Pricing */
.pricing-tier {
    background: var(--glass-bg);
    backdrop-filter: blur(32px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pricing-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pricing-tier::after {
    display: none;
}

.pricing-tier:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    background: var(--glass-bg-hover);
}

.pricing-tier:hover::before {
    opacity: 1;
}

.pricing-tier h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 20px 0;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.pricing-tier p {
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 26px rgba(2, 132, 199, 0.22);
    transition: all var(--transition-base);
    width: 100%;
    text-align: center;
    border: 1px solid rgba(14, 165, 233, 0.22);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    display: none;
}

.btn::after {
    display: none;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 32px rgba(2, 132, 199, 0.28);
    color: white;
}

.btn:hover::before {
    display: none;
}

.btn:hover::after {
    display: none;
}

.btn:active {
    transform: translateY(0);
}

.btn.disabled {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    box-shadow: none;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.08);
}

.btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    box-shadow: none;
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--glass-bg-hover);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
    color: var(--text-primary);
}

/* Footer */
footer {
    margin-top: 140px;
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

.footer-links a:hover::after {
    width: 100%;
}

.legal-text {
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.9;
    line-height: 1.8;
}

/* Utility Classes */
.muted {
    color: var(--text-muted);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
}

.badge-ok {
    border-color: rgba(16, 185, 129, 0.35);
    color: #86efac;
}

.badge-warn {
    border-color: rgba(234, 179, 8, 0.35);
    color: #fde68a;
}

.badge-danger {
    border-color: rgba(248, 113, 113, 0.35);
    color: #fca5a5;
}

/* Danger callouts */
.danger-callout {
    border: 1px solid rgba(248, 113, 113, 0.35);
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.14) 0%, rgba(248, 113, 113, 0.06) 50%, rgba(15, 20, 26, 0.0) 100%);
    border-radius: var(--radius-lg);
    padding: 18px 18px;
    box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.08) inset;
}

.danger-callout-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.danger-callout-title strong {
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #fecaca;
    font-size: 13px;
}

.mini-diff {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.mini-diff-row {
    display: grid;
    grid-template-columns: 1fr 18px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
}

.mini-diff-row .mini-label {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.mini-arrow {
    text-align: center;
    color: #fca5a5;
    font-weight: 800;
    padding-top: 4px;
}

.mini-good code {
    border-color: rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.08);
    color: #86efac;
}

.mini-bad code {
    border-color: rgba(248, 113, 113, 0.25);
    background: rgba(248, 113, 113, 0.10);
    color: #fecaca;
}

@media (max-width: 720px) {
    .mini-diff-row {
        grid-template-columns: 1fr;
    }

    .mini-arrow {
        display: none;
    }
}

/* Verdict banners (clinic-style) */
.verdict {
    border: 1px solid rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.10);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.08) inset;
}

.verdict.verdict-ok {
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.08);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.08) inset;
}

.verdict.verdict-ok .verdict-title {
    color: #86efac;
}

.verdict.verdict-warn {
    border-color: rgba(234, 179, 8, 0.35);
    background: rgba(234, 179, 8, 0.08);
    box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.08) inset;
}

.verdict.verdict-warn .verdict-title {
    color: #fde68a;
}

.verdict-hidden {
    display: none;
}

.verdict-title {
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #fecaca;
    font-size: 14px;
}

.verdict-sub {
    margin-top: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

@keyframes auditFlash {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.demo-table {
    table-layout: fixed;
}

.demo-table th:nth-child(1),
.demo-table td:nth-child(1) {
    width: 42%;
}

.demo-table th:nth-child(2),
.demo-table td:nth-child(2) {
    width: 58%;
}

.demo-table th,
.demo-table td {
    padding: 14px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.demo-table code {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}

th,
td {
    border: 1px solid var(--glass-border);
    padding: 20px;
    text-align: left;
    vertical-align: top;
    color: var(--text-secondary);
}

th {
    background: rgba(14, 165, 233, 0.1);
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

td b {
    color: var(--primary-light);
    font-weight: 600;
}

tr {
    transition: all var(--transition-fast);
}

tbody tr:hover {
    background: rgba(14, 165, 233, 0.05);
    transform: scale(1.01);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

@keyframes heroGlow {

    0%,
    100% {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2), 0 0 60px rgba(14, 165, 233, 0.15);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 24px;
    }

    .grid-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 40px;
        margin-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .card {
        padding: 32px;
    }

    .pricing-tier {
        padding: 32px 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    header {
        padding: 28px 0;
        margin-bottom: 48px;
    }

    .brand {
        font-size: 24px;
    }

    .brand span {
        font-size: 13px;
    }

    footer {
        margin-top: 80px;
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 28px;
    }

    .price {
        font-size: 2.75rem;
    }

    .card {
        padding: 24px;
    }

    .container {
        padding: 0 20px;
    }
}

/* Stagger animations for cards */
.grid>*:nth-child(1) {
    animation-delay: 0.1s;
}

.grid>*:nth-child(2) {
    animation-delay: 0.2s;
}

.grid>*:nth-child(3) {
    animation-delay: 0.3s;
}

.grid>*:nth-child(4) {
    animation-delay: 0.4s;
}

.grid>*:nth-child(5) {
    animation-delay: 0.5s;
}

.grid>*:nth-child(6) {
    animation-delay: 0.6s;
}

/* Waitlist modal */
.waitlist-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.waitlist-modal.is-open {
    display: flex;
}

.waitlist-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.75);
    backdrop-filter: blur(8px);
}

.waitlist-card {
    position: relative;
    width: min(520px, 92vw);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(10, 25, 47, 0.95));
    border: 1px solid rgba(96, 165, 250, 0.35);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(14, 165, 233, 0.25);
    padding: 28px;
    z-index: 1;
}

.waitlist-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #bae6fd;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.waitlist-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.waitlist-close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.waitlist-form {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.waitlist-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-primary);
}

.waitlist-form input::placeholder {
    color: var(--text-muted);
}

.waitlist-status {
    min-height: 18px;
    font-size: 13px;
    color: var(--text-secondary);
}

.waitlist-status.is-error {
    color: #fca5a5;
}

.waitlist-status.is-success {
    color: #86efac;
}
