@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --navy: #0A1F44;
  --navy-mid: #122B5E;
  --navy-light: #1A3A7A;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --text-muted: #6B7A99;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(10,31,68,0.10);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); line-height: 1.6; }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,31,68,0.97); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.35rem; font-weight: 800; text-decoration: none; }
.nav-icon { width: 32px; height: 32px; object-fit: contain; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.80); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; cursor: pointer; }
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta { background: var(--accent); color: var(--white); border: none; padding: 0.55rem 1.3rem; border-radius: 6px; font-size: 0.875rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--accent-hover); }
.nav-login { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.875rem; font-weight: 600; border: 1.5px solid rgba(255,255,255,0.25); padding: 0.5rem 1.1rem; border-radius: 6px; transition: border-color 0.2s, color 0.2s; }
.nav-login:hover { border-color: rgba(255,255,255,0.6); color: white; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  color: var(--white); padding: 100px 6% 90px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.18) 0%, transparent 65%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(96,165,250,0.15); border: 1px solid rgba(96,165,250,0.35); color: #93C5FD; padding: 6px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1.5rem; }
h1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; line-height: 1.18; letter-spacing: -1px; margin-bottom: 1.2rem; }
h1 em { color: #60A5FA; font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 2.2rem; max-width: 520px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: var(--white); padding: 0.85rem 1.9rem; border-radius: 8px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: background 0.2s, transform 0.15s; box-shadow: 0 4px 14px rgba(37,99,235,0.45); display: inline-block; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); padding: 0.85rem 1.9rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: border-color 0.2s, background 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.8rem; flex-wrap: wrap; }
.stat-val { font-size: 1.8rem; font-weight: 800; color: #60A5FA; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 2px; }

/* ===== HERO VISUAL — PERPLEXITY STYLE ===== */
.hero-visual { position: relative; z-index: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 24px; backdrop-filter: blur(10px); display: flex; flex-direction: column; gap: 10px; min-height: 700px; }
.hero-visual-header { font-size: 0.7rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; font-weight: 600; }
.hv-msg { margin-bottom: 4px; }
.hv-user { display: flex; justify-content: flex-end; }
.hv-query { background: rgba(255,255,255,0.18); color: white; padding: 9px 16px; border-radius: 18px; font-size: 0.82rem; font-weight: 500; line-height: 1.5; max-width: 85%; text-align: right; }
.hv-agent-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.hv-avatar { width: 22px; height: 22px; border-radius: 5px; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.65rem; color: white; }
.hv-agent-name { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.6px; }
.hv-agent-body { font-size: 0.82rem; color: rgba(255,255,255,0.88); line-height: 1.6; margin-bottom: 8px; }
.hv-agent-body strong { color: #86EFAC; font-weight: 700; }
.hv-highlight { color: #86EFAC; font-weight: 700; }
.hv-cite { display: inline-flex; align-items: center; justify-content: center; background: rgba(96,165,250,0.2); border: 1px solid rgba(96,165,250,0.35); color: #93C5FD; font-size: 0.58rem; font-weight: 700; width: 14px; height: 14px; border-radius: 3px; vertical-align: super; line-height: 1; margin: 0 1px; }
.hv-citations { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 8px; margin-bottom: 10px; display: flex; flex-direction: column; gap: 4px; }
.hv-cite-row { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.hv-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.hv-action-btn { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); padding: 6px 12px; border-radius: 7px; font-size: 0.75rem; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.15s; }
.hv-action-btn:hover { background: rgba(255,255,255,0.18); }
.ai-tag { margin-top: 6px; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.40); font-size: 0.72rem; }
.ai-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; animation: pulse 1.5s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }
/* ===== TYPING INDICATOR ===== */
.hv-typing {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  min-height: 40px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hv-typing.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hv-typing-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 2px;
}
.hv-typing-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  animation: typingBounce 1.1s infinite ease-in-out;
}
.hv-typing-dots span:nth-child(2) { animation-delay: 0.18s; }
.hv-typing-dots span:nth-child(3) { animation-delay: 0.36s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-5px); opacity: 1; }
}

/* ===== PROFESSIONALS HERO CARDS ===== */
.transparency-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.10); border-radius: 10px; padding: 11px 16px; display: flex; align-items: center; gap: 14px; }
.trans-label { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.40); text-transform: uppercase; letter-spacing: 0.8px; min-width: 90px; flex-shrink: 0; }
.trans-value { font-size: 0.82rem; color: rgba(255,255,255,0.90); font-weight: 500; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 6%; text-align: center; }
.trust-bar p { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.ticker-wrap { overflow: hidden; width: 100%; position: relative; }
.ticker-wrap::before, .ticker-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--off-white), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--off-white), transparent); }
.ticker { display: flex; gap: 1.2rem; width: max-content; animation: ticker 60s linear infinite; }
.ticker:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logo-pill { background: white; border: 1px solid var(--border); border-radius: 8px; padding: 9px 20px; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }

/* ===== COMPARISON TABLE ===== */
#comparison { background: var(--white); }
.comparison-table { width: 100%; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.comparison-header { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; background: var(--navy); padding: 16px 20px; gap: 12px; }
.comp-col-label { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; text-align: center; }
.comp-col-label.sigmentix { color: #60A5FA; }
.comparison-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; padding: 14px 20px; gap: 12px; border-top: 1px solid var(--border); align-items: center; }
.comparison-row:nth-child(even) { background: var(--off-white); }
.comp-row-label { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.comp-cell { font-size: 0.825rem; text-align: center; padding: 8px 10px; border-radius: 8px; line-height: 1.4; }
.comp-cell.bad { background: #FEF2F2; color: #991B1B; }
.comp-cell.ok { background: #FFFBEB; color: #92400E; }
.comp-cell.good { background: #F0FDF4; color: #166534; font-weight: 600; }

/* ===== SECTIONS ===== */
section { padding: 90px 6%; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.5px; line-height: 1.25; margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; margin-bottom: 3rem; }

/* ===== FEATURES ===== */
#features { background: var(--off-white); }
#pro-how { background: var(--off-white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 30px; transition: box-shadow 0.25s, transform 0.2s; }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #EFF6FF, #DBEAFE); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
#how-it-works { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--accent), #6366F1); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #6366F1); color: white; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 4px 16px rgba(37,99,235,0.3); }
.step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.825rem; color: var(--text-muted); line-height: 1.6; }

/* ===== COMPLIANCE BAR ===== */
.compliance-bar { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 60px 6%; color: white; text-align: center; }
.compliance-bar h2 { color: white; margin-bottom: 0.75rem; }
.compliance-bar p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto 2rem; }
.compliance-tags { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; }
.ticker-dark::before { background: linear-gradient(to right, #0A1F44, transparent) !important; }
.ticker-dark::after { background: linear-gradient(to left, #0A1F44, transparent) !important; }
.tag-pill { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20); color: rgba(255,255,255,0.85); padding: 7px 18px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; white-space: nowrap; flex-shrink: 0; }

/* ===== TRANSPARENCY SECTION ===== */
#pro-transparency { background: var(--white); }
.transparency-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trans-info-card { border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: box-shadow 0.25s, transform 0.2s; }
.trans-info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.trans-icon { font-size: 1.6rem; margin-bottom: 14px; }
.trans-info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.trans-info-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ===== PRO FEATURES ===== */
#pro-features { background: var(--white); }

/* ===== UNIFIED WAITLIST ===== */
#waitlist { background: var(--navy); text-align: center; padding: 100px 6%; }
#waitlist h2 { color: white; max-width: 580px; margin: 0 auto 1rem; }
.waitlist-inner { max-width: 680px; margin: 0 auto; }

.waitlist-toggle { display: inline-flex; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 4px; gap: 4px; margin-bottom: 2rem; }
.wtoggle-btn { background: none; border: none; color: rgba(255,255,255,0.6); padding: 10px 22px; border-radius: 7px; font-size: 0.88rem; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; transition: background 0.15s, color 0.15s; white-space: nowrap; }
.wtoggle-btn.active { background: white; color: var(--navy); }

.waitlist-form-wrap { text-align: left; }
.waitlist-offer { display: flex; align-items: flex-start; gap: 14px; background: rgba(251,170,74,0.12); border: 1px solid rgba(251,170,74,0.3); border-radius: 12px; padding: 16px 18px; margin-bottom: 1.5rem; }
.waitlist-offer-icon { font-size: 1.6rem; flex-shrink: 0; }
.waitlist-offer-title { font-size: 0.92rem; font-weight: 700; color: #FBAA4A; margin-bottom: 4px; }
.waitlist-offer-desc { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

.wform { display: flex; flex-direction: column; gap: 12px; }
.wform-row { display: flex; gap: 12px; }
.wform-row input, .wform-row select { flex: 1; min-width: 0; }
.wform input, .wform select { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 0.85rem 1.2rem; color: white; font-size: 0.9rem; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; width: 100%; }
.wform input::placeholder { color: rgba(255,255,255,0.4); }
.wform input:focus, .wform select:focus { border-color: rgba(96,165,250,0.6); }
.wform-select { color: rgba(255,255,255,0.6); }
.wform-select option { background: var(--navy); color: white; }
.wform-submit { background: var(--accent); color: white; border: none; padding: 1rem 1.8rem; border-radius: 8px; font-weight: 700; font-size: 1rem; font-family: 'Inter', sans-serif; cursor: pointer; transition: background 0.2s, transform 0.15s; box-shadow: 0 4px 14px rgba(37,99,235,0.4); }
.wform-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.wform-note { font-size: 0.72rem; color: rgba(255,255,255,0.4); line-height: 1.6; text-align: center; }

/* Perk cards — dark variant inside waitlist */
.perk-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 1.5rem; }
.perk-card { cursor: pointer; position: relative; border: 2px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 20px; background: rgba(255,255,255,0.06); transition: border-color 0.2s, box-shadow 0.2s; display: block; }
.perk-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.perk-card:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.2); }
.perk-content { text-align: center; }
.perk-icon { font-size: 2rem; margin-bottom: 10px; }
.perk-title { font-size: 0.92rem; font-weight: 700; color: white; margin-bottom: 6px; }
.perk-desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* LinkedIn button */
.linkedin-btn { display: flex; align-items: center; justify-content: center; gap: 10px; background: #0A66C2; color: white; border: none; padding: 0.85rem 1.8rem; border-radius: 8px; font-weight: 700; font-size: 0.9rem; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s; width: 100%; }
.linkedin-btn:hover { background: #004182; }
.linkedin-btn:disabled {
  background: #64748B;
  cursor: not-allowed;
  opacity: 0.7;
  filter: grayscale(0.25);
}
.linkedin-btn:disabled:hover { background: #64748B; }
.linkedin-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; }

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  line-height: 1.5;
}

.terms-check input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.terms-check a {
  color: #93c5fd;
}

/* ===== FOOTER ===== */
footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 40px 6%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: white; font-weight: 800; font-size: 1.1rem; text-decoration: none; }
.footer-icon { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1); }
footer p { font-size: 0.8rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; cursor: pointer; }
.footer-links a:hover { color: white; }

/* ===== LEGAL PAGES ===== */
.legal-page-body {
  background: var(--off-white);
  color: var(--navy);
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px;
}

.legal-kicker {
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.legal-updated {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-size: 0.92rem;
}

.legal-page section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 16px;
}

.legal-page h1 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.legal-page h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
  margin-top: 1rem;
}

.legal-page p,
.legal-page li {
  color: #334155;
  line-height: 1.65;
}

.legal-page ul {
  margin-left: 1.2rem;
}

.legal-page a {
  color: var(--accent);
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  color: var(--navy);
  background: #ffffff;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #60a5fa;
}

.contact-form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.contact-form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.contact-form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.8rem 0 1rem;
  font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.55rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #eef2ff;
  color: #1e293b;
}

/* ===== INVESTOR PLACEHOLDER PAGE ===== */
.investor-page-body {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  min-height: 100vh;
}

.investor-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 84px 24px;
}

.investor-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #93c5fd;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.investor-sub {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
}

.investor-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 1.8rem;
}

.investor-card h2 {
  color: #bfdbfe;
  font-size: 1.1rem;
}

.investor-card ul {
  margin-left: 1.2rem;
}

.investor-card li {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0.35rem;
}

.investor-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.investor-back-link {
  border-color: rgba(255, 255, 255, 0.55);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.45);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: #93c5fd;
}

#cookie-accept-btn {
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  cursor: pointer;
  white-space: nowrap;
}

#cookie-accept-btn:hover {
  background: var(--accent-hover);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-visual { min-height: 640px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .comparison-header, .comparison-row { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .transparency-grid { grid-template-columns: repeat(2, 1fr); }
  .perk-cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .investor-page {
    padding: 62px 18px;
  }

  .hero { grid-template-columns: 1fr; padding: 70px 5% 60px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .transparency-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(10,31,68,0.98); padding: 16px 6% 24px; border-bottom: 1px solid rgba(255,255,255,0.08); gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 1rem; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .comparison-header { display: none; }
  .comparison-row { grid-template-columns: 1fr; gap: 0; padding: 16px 20px; }
  .comp-row-label { font-size: 0.8rem; font-weight: 800; color: white; background: var(--navy-mid); margin: 0 -20px 10px; padding: 8px 20px; text-transform: uppercase; letter-spacing: 0.5px; }
  .comp-cell { display: flex; align-items: center; gap: 10px; text-align: left; margin-bottom: 6px; }
  .comp-cell::before { content: attr(data-label); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; min-width: 110px; flex-shrink: 0; opacity: 0.7; }
  .comp-cell.bad::before { color: #991B1B; }
  .comp-cell.ok::before { color: #92400E; }
  .comp-cell.good::before { color: #166534; }
  .waitlist-toggle { flex-direction: column; width: 100%; }
  .wtoggle-btn { text-align: center; }
  .wform-row { flex-direction: column; }
  .perk-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 60px 5%; }
  .hero-stats { gap: 1.5rem; }
}
