/* ═══════════════════════════════════════════════
   TRUST WIZARD LAUNCH SITE — DESIGN SYSTEM
   Glassmorphic dark theme matching app aesthetics
   Fonts: Outfit (headings) + Inter (body)
   ═══════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
    --bg-primary: #0c0e12;
    --bg-secondary: #111318;
    --panel-bg: rgba(23, 27, 34, 0.7);
    --panel-bg-solid: rgba(23, 27, 34, 0.9);
    --accent-gold: #d4af37;
    --accent-gold-light: #e5c048;
    --accent-gold-glow: rgba(212, 175, 55, 0.3);
    --accent-gold-subtle: rgba(212, 175, 55, 0.08);
    --text-main: #e2e8f0;
    --text-dim: #94a3b8;
    --text-dimmer: #64748b;
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.05);
    --success: #10b981;
    --error: #ef4444;
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --radius-pill: 999px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --transition-fast: 0.2s ease;
    --transition-med: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img, video {
    max-width: 100%;
    display: block;
}

button {
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    background: transparent;
}

/* ── Glass Panel ── */
.glass-panel {
    background: var(--panel-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #2d3748; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #4a5568; }

/* ── Section Utilities ── */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--accent-gold-subtle);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-med);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--accent-gold);
    color: #000;
    border: none;
    box-shadow: 0 0 20px var(--accent-gold-glow);
}

.btn-gold:hover {
    background: var(--accent-gold-light);
    box-shadow: 0 0 40px var(--accent-gold-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.btn-submit {
    padding: 0.85rem 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    flex-shrink: 0;
    min-width: 100px;
}

.btn-submit.loading .btn-text { opacity: 0; }
.btn-submit.loading .btn-spinner { display: block; }
.btn-spinner {
    display: none;
    width: 20px; height: 20px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    position: absolute;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ══════════════════════════════
   NAVBAR
   ══════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(12, 14, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-med);
}

.navbar.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(12, 14, 18, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-med);
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    background: var(--accent-gold-subtle);
    color: var(--accent-gold) !important;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-link-cta::after { display: none; }

.nav-link-cta:hover {
    background: var(--accent-gold);
    color: #000 !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all var(--transition-med);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        var(--bg-primary);
}

/* ── Hero Loading Screen Background ── */
.hero-loading-bg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 1s ease;
}

/* Sticky watermark state — fixed behind all content */
.hero-loading-bg.sticky-watermark {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.06;
    z-index: -1;
}

.hero-loading-bg.sticky-watermark .hero-typewriter {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-loading-bg.sticky-watermark .hero-logo-wrapper {
    margin-bottom: 0;
    transform: scale(0.85);
    transition: transform 1s ease, margin 1s ease;
}

.hero-logo-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-shield {
    position: absolute;
}

.hero-infinity-container {
    position: absolute;
    width: 84px;
    height: 84px;
    transform: translateY(-10%);
}

.hero-infinity-left {
    position: absolute;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.hero-infinity-right {
    position: absolute;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    transform-origin: left center;
}

.hero-typewriter {
    display: flex;
    align-items: center;
    height: 2.5rem;
}

.hero-typewriter-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.25rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.hero-typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 1.8rem;
    background: var(--accent-gold);
    margin-left: 4px;
    animation: blink-caret 1s step-end infinite;
}

/* Winking animation — right half of infinity */
@keyframes right-wink-sequence {
    0%   { transform: scaleY(1); }
    40%  { transform: scaleY(1); }
    50%  { transform: scaleY(0.1); }
    60%  { transform: scaleY(1); }
    70%  { transform: scaleY(1); }
    80%  { transform: scaleY(0.1); }
    90%  { transform: scaleY(1); }
    100% { transform: scaleY(1); }
}

.anim-infinity-right {
    animation: right-wink-sequence 4s ease-in-out forwards;
}

/* Shield glow pulse */
@keyframes shield-pulse {
    0%   { filter: drop-shadow(0 0 0 transparent); }
    50%  { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4)); }
    100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)); }
}

.anim-shield {
    animation: shield-pulse 4s ease-in-out forwards;
}

/* Cursor blink */
@keyframes blink-caret {
    from, to { background-color: transparent; }
    50% { background-color: var(--accent-gold); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-pill);
    background: var(--accent-gold-subtle);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-gold-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-title em {
    font-style: normal;
    color: var(--text-main);
}

.gold-gradient {
    background: linear-gradient(135deg, #d4af37, #f5d76e, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dimmer);
    font-size: 0.8rem;
    font-weight: 500;
}

.trust-badge svg {
    color: rgba(212, 175, 55, 0.5);
}

/* ══════════════════════════════
   APP PREVIEW
   ══════════════════════════════ */
.app-preview {
    padding: 6rem 0;
    position: relative;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-glow), transparent);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.preview-card {
    position: relative;
}

.preview-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dimmer);
    margin-bottom: 0.75rem;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper.landscape {
    aspect-ratio: 16 / 9;
}

.video-wrapper.portrait {
    aspect-ratio: 9 / 19.5;
    max-width: 280px;
    margin: 0 auto;
}

.preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-med);
    z-index: 2;
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.3);
    color: var(--accent-gold);
}

.video-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ══════════════════════════════
   FEATURES
   ══════════════════════════════ */
.features {
    padding: 7rem 0;
    position: relative;
    background:
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 60%),
        var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--panel-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 40px var(--accent-gold-subtle);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: var(--accent-gold-subtle);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 1.25rem;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dimmer);
}

/* ══════════════════════════════
   FEATURE VIDEOS
   ══════════════════════════════ */
.feature-videos {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-card {
    background: var(--panel-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-med);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.video-card .video-wrapper {
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.video-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem 0.25rem;
}

.video-card-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* ══════════════════════════════
   PRICING
   ══════════════════════════════ */
.pricing {
    padding: 7rem 0;
    position: relative;
    background:
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
        var(--bg-primary);
}

.pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1.8fr repeat(4, 1fr);
    border-bottom: 1px solid var(--glass-border);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-cell {
    padding: 1.1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pricing-feature-col {
    text-align: left;
    align-items: flex-start;
    font-weight: 500;
    color: var(--text-main);
}

.pricing-header-row {
    background: rgba(212, 175, 55, 0.03);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-header-row .pricing-cell {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 1.5rem 1.25rem;
}

.pricing-tw-col {
    background: rgba(212, 175, 55, 0.04);
    border-left: 1px solid rgba(212, 175, 55, 0.08);
    border-right: 1px solid rgba(212, 175, 55, 0.08);
}

.pricing-logo {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.pricing-brand {
    color: var(--accent-gold);
}

.pricing-highlight {
    font-family: var(--font-heading);
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--accent-gold) !important;
    text-shadow: 0 0 20px var(--accent-gold-glow);
}

.pricing-note {
    font-size: 0.75rem;
    color: var(--text-dimmer);
    font-weight: 400;
}

.pricing-check {
    color: var(--success);
    font-weight: 600;
}

.pricing-x {
    color: var(--text-dimmer);
    font-size: 0.85rem;
}

.pricing-cta-row {
    padding: 0.5rem 0;
}

/* ══════════════════════════════
   TESTER PROGRAM
   ══════════════════════════════ */
.testers {
    padding: 7rem 0;
    background: var(--bg-secondary);
}

.tester-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.tester-card {
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.tester-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-gold-subtle) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.tester-card:hover::before {
    opacity: 1;
}

.tester-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.15);
}

.tester-icon {
    margin-bottom: 1.5rem;
}

.tester-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.tester-subtitle {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.tester-slots {
    margin-bottom: 1.75rem;
}

.slots-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.slots-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: var(--radius-pill);
    transition: width 1s var(--transition-slow);
    box-shadow: 0 0 10px var(--accent-gold-glow);
}

.slots-text {
    font-size: 0.8rem;
    color: var(--text-dimmer);
    font-weight: 500;
}

.tester-form {
    position: relative;
    z-index: 1;
}

/* Name Inputs */
.name-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.name-row-wide {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
}

.name-input {
    flex: 1;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast);
    min-width: 0;
}

.name-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px var(--accent-gold-subtle);
}

.name-input::placeholder {
    color: var(--text-dimmer);
}

/* Cloudflare Turnstile — invisible mode, no visual space */
.cf-turnstile {
    margin: 0;
    height: 0;
    overflow: hidden;
}

.input-row {
    display: flex;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: border-color var(--transition-fast);
}

.input-row:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px var(--accent-gold-subtle);
}

.email-input {
    flex: 1;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    min-width: 0;
}

.email-input::placeholder {
    color: var(--text-dimmer);
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-dimmer);
    margin-top: 0.75rem;
    font-weight: 500;
}

.form-message {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    min-height: 1.5rem;
}

.form-message.success {
    color: var(--success);
}

.form-message.error {
    color: var(--error);
}

/* ══════════════════════════════
   WAITLIST
   ══════════════════════════════ */
.waitlist {
    padding: 7rem 0;
    position: relative;
}

.waitlist::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.waitlist-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.waitlist-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.waitlist-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.waitlist-subtitle {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.waitlist-form {
    max-width: 480px;
    margin: 0 auto;
}

.input-row-wide {
    border-radius: var(--radius-md);
}

.email-input-wide {
    font-size: 1rem;
    padding: 1rem 1.25rem;
}

.waitlist-note {
    font-size: 0.75rem;
    color: var(--text-dimmer);
    margin-top: 1rem;
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.site-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-secondary);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dimmer);
    margin-bottom: 1rem;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    color: var(--accent-gold);
}

.footer-disclaimer {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.78rem;
    color: var(--text-dimmer);
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-dimmer);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.footer-bottom-links a {
    color: var(--text-dim);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

.footer-divider {
    color: var(--text-dimmer);
}

/* ══════════════════════════════
   TOAST NOTIFICATIONS
   ══════════════════════════════ */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--panel-bg-solid);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-main);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: slideInToast 0.4s var(--transition-slow) forwards;
    max-width: 360px;
}

.toast.success {
    border-color: rgba(16, 185, 129, 0.3);
}

.toast.error {
    border-color: rgba(239, 68, 68, 0.3);
}

.toast.hide {
    animation: slideOutToast 0.3s ease forwards;
}

@keyframes slideInToast {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutToast {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100px); }
}

/* ══════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.05s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.15s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.25s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(7) { transition-delay: 0.35s; }
.features-grid .feature-card:nth-child(8) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(9) { transition-delay: 0.45s; }

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* Tablet - small */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0c0e12;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 9999;
        padding: 2rem;
    }

    .nav-links.open {
        display: flex;
        animation: fadeIn 0.3s ease forwards;
    }

    .nav-links .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .nav-links .nav-link-cta {
        font-size: 1.2rem;
        padding: 0.75rem 2rem;
    }

    .hamburger {
        z-index: 10000;
    }

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

    .preview-mobile {
        order: -1;
    }

    .video-wrapper.portrait {
        max-width: 220px;
    }

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

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

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

    .pricing-table-wrap {
        margin: 0 -1.25rem;
        padding: 0 1.25rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table {
        min-width: 680px;
    }

    .pricing-row {
        grid-template-columns: 1.5fr repeat(4, 1fr);
        font-size: 0.8rem;
    }

    .pricing-cell {
        padding: 0.75rem 0.5rem;
        font-size: 0.78rem;
    }

    .pricing-highlight {
        font-size: 1.1rem !important;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .waitlist-card {
        padding: 3rem 2rem;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .section-container {
        padding: 0 1.25rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }

    .hero-badge {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .pricing-table-wrap {
        margin: 0 -1rem;
        padding: 0 0.5rem;
        overflow-x: visible;
    }

    .pricing-table {
        min-width: unset;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0;
        border-bottom: none;
        margin-bottom: 0.5rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .pricing-header-row {
        display: none;
    }

    /* Feature name becomes the card header */
    .pricing-feature-col {
        background: rgba(212, 175, 55, 0.06);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--accent-gold);
        padding: 0.6rem 1rem;
        font-weight: 600;
        border-bottom: 1px solid var(--glass-border);
    }

    /* Each data cell becomes a row with the competitor name on the left */
    .pricing-cell {
        padding: 0.6rem 1rem;
        text-align: left;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .pricing-cell:last-child {
        border-bottom: none;
    }

    /* Show competitor name via ::before using data-label */
    .pricing-cell[data-label]::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.78rem;
        color: var(--text-dim);
        min-width: 100px;
        flex-shrink: 0;
    }

    /* Gold accent for Trust Wizard row */
    .pricing-tw-col {
        border-left: 3px solid var(--accent-gold);
        border-right: none;
        background: rgba(212, 175, 55, 0.04);
    }

    .pricing-tw-col[data-label]::before {
        color: var(--accent-gold);
    }

    /* Price highlight — smaller on mobile */
    .pricing-highlight {
        font-size: 1.1rem !important;
    }

    /* CTA row */
    .pricing-cta-row {
        background: transparent;
        margin-top: 0.5rem;
    }

    .pricing-cta-row .pricing-feature-col,
    .pricing-cta-row .pricing-cell:not(.pricing-tw-col) {
        display: none;
    }

    .pricing-cta-row .pricing-tw-col {
        border-left: none;
        background: transparent;
        justify-content: center;
        padding: 1rem;
    }

    .pricing-row {
        border: 1px solid var(--glass-border);
    }

    .feature-card {
        padding: 1.5rem;
    }

    .tester-card {
        padding: 2rem 1.5rem;
    }
}

/* ── Fade In ── */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
