/* ==========================================================
   UNOGRID — Site stylesheet
   Aesthetic: dark editorial-tech, emerald + coral accents
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=JetBrains+Mono:wght@400;500;600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #07101F;
  --bg-elev: #0F1D33;
  --surface: #152231;
  --surface-2: #1A2B3F;
  --border: #1F2F47;
  --border-2: #2A3F5C;
  --teal: #10B981;
  --teal-bright: #34D399;
  --teal-dim: #059669;
  --coral: #F97316;
  --coral-soft: #FB923C;
  --purple: #A78BFA;
  --text: #E5E7EB;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --white: #fff;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== Background atmosphere ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% -10%, rgba(16, 185, 129, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 110%, rgba(249, 115, 22, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ===== Header / nav ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(7, 16, 31, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.brand-mark {
  width: 28px; height: 28px;
  background: var(--teal);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--bg);
  font-weight: 900;
  font-size: 16px;
  font-family: var(--font-mono);
}
.brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 4px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--bg);
}
.btn-primary:hover { background: var(--teal-bright); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-coral {
  background: var(--coral);
  color: var(--white);
}
.btn-coral:hover { background: var(--coral-soft); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

@media (max-width: 800px) {
  .nav { padding: 14px 20px; gap: 12px; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .brand-name { font-size: 15px; letter-spacing: 3px; }
}

/* ===== Container ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 700px) { .container { padding: 0 20px; } }

/* ===== Hero ===== */
.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.06);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.4; transform: scale(1.3); } }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  font-variation-settings: 'opsz' 144;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal-bright);
  font-weight: 500;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-trust strong { color: var(--teal); font-weight: 600; }

/* Hero visual: stylized sync diagram */
.hero-visual {
  position: relative;
  aspect-ratio: 1.05 / 1;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--border);
  padding: 28px;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1), transparent 40%);
}
.hero-grids {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  height: 100%;
}
.hero-mini {
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  display: flex;
  flex-direction: column;
}
.hero-mini-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 10px;
  color: var(--text-muted);
}
.hero-mini-dot { width: 8px; height: 8px; border-radius: 2px; }
.hero-mini-row {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 4px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(31, 47, 71, 0.4);
  color: var(--text);
}
.hero-mini-row.hl { color: var(--teal-bright); animation: hlpulse 3s infinite; }
@keyframes hlpulse { 0%, 100% { background: rgba(16, 185, 129, 0); } 30%, 60% { background: rgba(16, 185, 129, 0.12); } }
.hero-arrow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--bg-elev);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  font-size: 20px;
  z-index: 2;
}

/* ===== Section primitives ===== */
section { padding: 80px 0; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 720px;
}
.section-title em {
  font-style: italic;
  color: var(--teal-bright);
  font-weight: 500;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.55;
  margin-bottom: 48px;
}

/* ===== Problem section ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 800px) { .problem-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.pain-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.pain-score {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--coral);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pain-score-bar {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.pain-score-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: var(--score, 100%);
  background: var(--coral);
}
.pain-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.pain-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== How it works ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
@media (max-width: 800px) { .how-grid { grid-template-columns: 1fr; } }
.how-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  position: relative;
}
.how-step:last-child { border-right: none; }
@media (max-width: 800px) {
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-step:last-child { border-bottom: none; }
}
.how-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 56px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 16px;
}
.how-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.how-step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== Pillars (use cases) ===== */
.pillars {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 800px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent, var(--teal));
}
.pillar-1 { --accent: var(--teal); }
.pillar-2 { --accent: var(--coral); }
.pillar-3 { --accent: var(--purple); }
.pillar-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--accent, var(--teal));
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pillar p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.pillar-list li {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0;
  display: flex;
  align-items: start;
  gap: 10px;
}
.pillar-list li::before {
  content: '→';
  color: var(--accent, var(--teal));
  font-weight: 700;
}

/* ===== CTA section ===== */
.cta-section {
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(16, 185, 129, 0.08), transparent 70%);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 24px;
  letter-spacing: -0.015em;
}
.cta-section h2 em { font-style: italic; color: var(--teal-bright); font-weight: 500; }
.cta-section p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 280px;
  margin-top: 14px;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ===== Page header (interior pages) ===== */
.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 800px;
}
.page-hero h1 em { font-style: italic; color: var(--teal-bright); font-weight: 500; }
.page-hero .lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.55;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--teal);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), var(--surface));
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--teal);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 6px;
}
.price-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.price-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 18px 0 6px;
}
.price-amount .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-amount .unit { font-size: 14px; color: var(--text-muted); }
.price-billing { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
.price-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-features {
  list-style: none;
  margin: 0 0 28px;
  flex-grow: 1;
}
.price-features li {
  font-size: 13.5px;
  color: var(--text);
  padding: 7px 0;
  display: flex;
  align-items: start;
  gap: 10px;
}
.price-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
}
.price-features li.muted { color: var(--text-dim); }
.price-features li.muted::before { content: '−'; color: var(--text-dim); }
.pricing-note {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-mono);
}

/* ===== Feature blocks (Product page) ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.flip { grid-template-columns: 1fr 1fr; direction: rtl; }
.feature-block.flip > * { direction: ltr; }
@media (max-width: 800px) {
  .feature-block, .feature-block.flip { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
}
.feature-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.feature-text h2 em { font-style: italic; color: var(--teal-bright); font-weight: 500; }
.feature-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.feature-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

/* ===== About page ===== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
@media (max-width: 800px) { .about-section { grid-template-columns: 1fr; } }
.about-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-section p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.founder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.founder-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dim));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--bg);
  flex-shrink: 0;
}
.founder-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}
.founder-role { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.founder-bio { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ===== Contact form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-group textarea { min-height: 110px; resize: vertical; }

.contact-info {
  padding-top: 8px;
}
.contact-info-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-info-item p {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-info-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== Investors page ===== */
.investor-banner {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 13px;
  color: var(--coral-soft);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 36px 0;
}
@media (max-width: 800px) { .metric-grid { grid-template-columns: repeat(2, 1fr); } }
.metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
}
.metric-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.metric-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.metric-sub { font-size: 12px; color: var(--text-muted); }

.investor-section {
  margin-bottom: 56px;
}
.investor-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.investor-section .lead {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 700px;
}
.competitor-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.competitor-table th {
  background: var(--surface);
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.competitor-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.competitor-table tr:last-child td { border-bottom: none; }
.competitor-table tr.us td { background: rgba(16, 185, 129, 0.06); color: var(--white); font-weight: 500; }
.check { color: var(--teal); font-weight: 700; }
.cross { color: var(--text-dim); }

/* ===== Demo embed page ===== */
.demo-frame-wrap {
  margin-top: 24px;
  padding: 12px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.demo-frame {
  width: 100%;
  min-height: 920px;
  border: none;
  background: var(--bg);
  border-radius: 8px;
}

/* ===== Toast for form submissions ===== */
.toast {
  position: fixed;
  top: 24px; right: 24px;
  background: var(--teal);
  color: var(--bg);
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-12px);
  transition: all 0.3s;
  max-width: calc(100vw - 48px);
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
