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

:root {
  --navy:    #07091A;
  --navy2:   #0B1230;
  --card:    #0F1A35;
  --cardb:   #1A2A50;
  --cyan:    #00D4FF;
  --cyan2:   #00A8CC;
  --purple:  #7B2FFF;
  --purple2: #5A1FCC;
  --green:   #00E5A0;
  --green2:  #00B87C;
  --gold:    #FFB800;
  --gold2:   #D4920A;
  --orange:  #FF6B35;
  --white:   #FFFFFF;
  --lgry:    #B0BEC5;
  --gry:     #7A8599;
  --light:   #F0F4F8;
  --font:    'Inter', sans-serif;
  --font2:   'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: #FAFBFF;
  color: #1A1F2E;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── CONTAINER ──────────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ─────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7, 9, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(7, 9, 26, 0.98);
  border-bottom-color: rgba(0, 212, 255, 0.25);
}

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font2); font-weight: 700; font-size: 13px;
  color: #fff; letter-spacing: -0.5px;
}

.logo-text {
  font-family: var(--font2); font-weight: 700; font-size: 18px;
  color: #fff; letter-spacing: -0.3px;
}

.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}

.nav-links a {
  color: var(--lgry); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }

.nav-cta {
  background: rgba(0, 212, 255, 0.12) !important;
  color: var(--cyan) !important;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.nav-cta:hover {
  background: rgba(0, 212, 255, 0.22) !important;
  color: var(--cyan) !important;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}

.hamburger span {
  width: 22px; height: 2px; background: var(--lgry);
  border-radius: 2px; transition: all 0.3s;
  display: block;
}

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy); padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a {
  color: var(--lgry); text-decoration: none;
  font-size: 15px; padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: #fff; }
.mobile-menu.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
}

.orb-1 { width: 600px; height: 600px; right: -100px; top: -100px; background: rgba(123,47,255,0.18); }
.orb-2 { width: 400px; height: 400px; right: 100px; top: 60px; background: rgba(0,212,255,0.12); }
.orb-3 { width: 300px; height: 300px; right: 200px; bottom: 100px; background: rgba(255,184,0,0.08); }

.hero .container { position: relative; z-index: 1; }

.hero-tag {
  display: inline-block;
  background: rgba(123,47,255,0.2);
  border: 1px solid rgba(123,47,255,0.4);
  color: rgba(180,150,255,0.9);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font2);
  font-weight: 800; line-height: 1.0;
  margin-bottom: 24px;
}

.hero-title-main {
  display: block; font-size: clamp(56px, 9vw, 96px);
  color: #fff; letter-spacing: -3px;
}

.hero-title-sub {
  display: block; font-size: clamp(28px, 4.5vw, 48px);
  color: var(--cyan); letter-spacing: -1px;
}

.hero-tagline {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--lgry); line-height: 1.7;
  max-width: 580px; margin-bottom: 48px;
}

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 48px;
}

.stat-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex; flex-direction: column; gap: 2px;
  min-width: 120px;
}

.stat-val {
  font-family: var(--font2); font-size: 22px; font-weight: 700;
  color: var(--cyan); letter-spacing: -0.5px;
}

.stat-lbl { font-size: 11px; color: var(--gry); font-weight: 500; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  cursor: pointer; border: none;
}

.btn-primary {
  background: var(--cyan); color: var(--navy);
}

.btn-primary:hover { background: #22DDFF; transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-full { width: 100%; justify-content: center; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gry); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--gry), transparent);
}

@keyframes scrollBounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(4px); }
}

/* ── PROBLEM BANNER ──────────────────────────────────────────────────────── */
.problem-banner {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}

.banner-inner {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}

.banner-label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--orange); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px;
}

.banner-text {
  flex: 1; min-width: 280px;
  font-size: 14px; color: var(--lgry); line-height: 1.6;
}

.banner-text strong { color: #fff; }

.banner-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
}

.crisis-pill {
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
}

.crisis-orange { background: rgba(255,107,53,0.15); color: var(--orange); border: 1px solid rgba(255,107,53,0.3); }
.crisis-cyan   { background: rgba(0,212,255,0.12);  color: var(--cyan);   border: 1px solid rgba(0,212,255,0.3); }
.crisis-purple { background: rgba(123,47,255,0.15); color: rgba(180,150,255,0.9); border: 1px solid rgba(123,47,255,0.3); }

/* ── SECTIONS ────────────────────────────────────────────────────────────── */
.section { padding: 100px 0; }

.section-dark {
  background: var(--navy);
}

.section-header {
  text-align: center; margin-bottom: 64px;
}

.section-header-light h2,
.section-header-light p { color: inherit; }

.section-header-light h2 { color: #fff; }
.section-header-light .section-sub { color: var(--lgry); }

.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan2);
  margin-bottom: 14px;
}

.section-tag-gold   { color: var(--gold2); }
.section-tag-purple { color: rgba(180,150,255,0.9); }
.section-tag-cyan   { color: var(--cyan); }
.section-tag-green  { color: var(--green2); }

.section-header h2 {
  font-family: var(--font2); font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; letter-spacing: -1px; margin-bottom: 16px;
  color: #1A1F2E;
}

.section-dark .section-header h2 { color: #fff; }

.section-sub {
  font-size: 17px; color: #6B7A8D;
  max-width: 580px; margin: 0 auto; line-height: 1.65;
}

/* ── PILLARS ─────────────────────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.pillar {
  background: #fff; border-radius: 20px;
  border: 1.5px solid #E8EDF5;
  padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pillar:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }

.pillar-cyan  { border-top: 3px solid var(--cyan); }
.pillar-purple{ border-top: 3px solid var(--purple); }
.pillar-gold  { border-top: 3px solid var(--gold); }

.pillar-num {
  font-family: var(--font2); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; color: var(--gry); margin-bottom: 20px;
}

.pillar-icon {
  width: 56px; height: 56px;
  border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}

.pillar-cyan .pillar-icon  { background: rgba(0,212,255,0.1); color: var(--cyan2); }
.pillar-purple .pillar-icon{ background: rgba(123,47,255,0.1); color: var(--purple); }
.pillar-gold .pillar-icon  { background: rgba(255,184,0,0.1);  color: var(--gold2); }

.pillar h3 {
  font-family: var(--font2); font-size: 19px; font-weight: 700;
  letter-spacing: -0.3px; margin-bottom: 12px; color: #1A1F2E;
}

.pillar p {
  font-size: 14.5px; color: #5A6478; line-height: 1.65;
  margin-bottom: 24px;
}

.pillar-kpi {
  display: inline-block;
  padding: 7px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 700;
}

.pillar-cyan .pillar-kpi   { background: rgba(0,212,255,0.1); color: var(--cyan2); border: 1px solid rgba(0,212,255,0.2); }
.pillar-purple .pillar-kpi { background: rgba(123,47,255,0.1); color: var(--purple2); border: 1px solid rgba(123,47,255,0.2); }
.pillar-gold .pillar-kpi   { background: rgba(255,184,0,0.1); color: var(--gold2); border: 1px solid rgba(255,184,0,0.2); }

/* ── PHYSICS SECTION ─────────────────────────────────────────────────────── */
.physics-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}

.physics-panel {
  border-radius: 20px; overflow: hidden;
}

.physics-cyan  { background: rgba(0,212,255,0.05); border: 1px solid rgba(0,212,255,0.2); }
.physics-gold  { background: rgba(255,184,0,0.05); border: 1px solid rgba(255,184,0,0.2); }

.physics-panel-header {
  padding: 14px 24px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}

.physics-cyan .physics-panel-header  { background: rgba(0,212,255,0.15); color: var(--cyan); }
.physics-gold .physics-panel-header  { background: rgba(255,184,0,0.15);  color: var(--gold); }

.layer-stack { padding: 24px; display: flex; flex-direction: column; gap: 3px; }

.layer {
  padding: 12px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: #fff;
  transition: transform 0.2s;
}

.layer:hover { transform: translateX(4px); }

.layer-1 { background: #1A3A6B; margin-right: 0; }
.layer-2 { background: #0A3A50; margin-right: 10px; }
.layer-3 { background: #0A3D2B; margin-right: 20px; }
.layer-4 { background: #1B3A1B; margin-right: 30px; }

.physics-caption {
  padding: 16px 24px 24px;
  font-size: 13px; color: var(--lgry); line-height: 1.6;
}

.physics-caption strong { color: #fff; }

/* Cavity diagram */
.cavity-diagram { padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 10px; }

.cavity-box {
  padding: 12px 24px; border-radius: 10px;
  font-size: 13px; font-weight: 700; text-align: center; width: 100%;
}

.cavity-nanocavity {
  background: rgba(255,184,0,0.2); color: var(--gold);
  border: 1px solid rgba(255,184,0,0.4);
}

.cavity-matrix {
  background: rgba(180,100,255,0.2); color: rgba(200,150,255,0.95);
  border: 1px solid rgba(180,100,255,0.35);
  width: 75%;
}

.cavity-arrow { color: var(--gry); font-size: 18px; }

.cavity-threshold {
  padding: 14px 20px; border-radius: 10px;
  background: rgba(255,184,0,0.12); border: 1.5px solid var(--gold);
  color: var(--gold); font-size: 14px; font-weight: 800;
  text-align: center; width: 100%;
}

.cavity-desc {
  font-size: 13px; color: var(--lgry); line-height: 1.6;
  text-align: center; margin-top: 6px;
}

/* ── SAWYER EDA ──────────────────────────────────────────────────────────── */
.sawyer-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 40px;
}

.sawyer-moat { display: flex; justify-content: center; }

.moat-ring {
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.moat-outer {
  width: 320px; height: 320px;
  border: 2px solid rgba(123,47,255,0.25);
  background: rgba(123,47,255,0.05);
}

.moat-mid {
  width: 230px; height: 230px;
  border: 2px solid rgba(123,47,255,0.35);
  background: rgba(123,47,255,0.1);
}

.moat-inner {
  width: 150px; height: 150px;
  border: 2px solid rgba(123,47,255,0.5);
  background: rgba(123,47,255,0.2);
}

.moat-core {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}

.moat-label {
  font-family: var(--font2); font-size: 16px; font-weight: 800;
  color: #fff; letter-spacing: 1px;
}

.moat-sub {
  font-size: 11px; color: rgba(180,150,255,0.8);
  font-weight: 600; letter-spacing: 0.5px;
}

.sawyer-modules {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}

.module {
  background: #fff; border-radius: 14px;
  padding: 20px 18px;
  border: 1.5px solid #E8EDF5;
  transition: transform 0.2s;
}

.module:hover { transform: translateY(-2px); }

.module-title {
  font-size: 13.5px; font-weight: 700; margin-bottom: 8px;
}

.module-cyan   .module-title { color: var(--cyan2); }
.module-gold   .module-title { color: var(--gold2); }
.module-green  .module-title { color: var(--green2); }

.module p { font-size: 13px; color: #6B7A8D; line-height: 1.55; }

/* Defect strip */
.defect-strip {
  background: var(--navy2);
  border: 1px solid rgba(123,47,255,0.35);
  border-left: 3px solid var(--purple);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex; gap: 20px; flex-wrap: wrap; align-items: flex-start;
  margin-bottom: 40px;
}

.defect-badge {
  background: rgba(123,47,255,0.25); color: rgba(180,150,255,0.95);
  border: 1px solid rgba(123,47,255,0.4);
  font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; padding: 4px 10px; border-radius: 6px;
  white-space: nowrap; align-self: flex-start; margin-top: 2px;
}

.defect-content {
  flex: 1; font-size: 13.5px; color: var(--lgry); line-height: 1.6;
}

.defect-content strong { color: #fff; }

.defect-hud {
  min-width: 240px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(123,47,255,0.25);
  border-radius: 10px; padding: 14px 16px;
}

.hud-label {
  font-size: 11px; font-weight: 700;
  color: rgba(180,150,255,0.8); margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.hud-status {
  font-size: 12px; color: var(--green);
  font-style: italic; line-height: 1.5;
}

/* Sawyer CTA */
.sawyer-cta {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 24px; border-radius: 14px;
  background: rgba(0,212,255,0.04); border: 1px solid rgba(0,212,255,0.15);
}

.sawyer-price {
  flex: 1; min-width: 160px;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}

.price-val {
  font-family: var(--font2); font-size: 26px; font-weight: 800;
  color: var(--cyan2); letter-spacing: -0.5px;
}

.price-lbl { font-size: 12px; color: var(--gry); }

/* ── ROADMAP ─────────────────────────────────────────────────────────────── */
.imec-timeline {
  background: rgba(255,184,0,0.04);
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: 20px; padding: 28px 32px; margin-bottom: 48px;
}

.imec-header {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}

.imec-nodes {
  display: flex; align-items: flex-end; gap: 0; overflow-x: auto;
  padding-bottom: 8px;
}

.imec-connector {
  flex: 1; height: 2px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 20px; min-width: 20px;
}

.imec-node {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 90px; position: relative;
}

.imec-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid currentColor;
  background: transparent;
}

.imec-dot-gold { background: var(--gold) !important; width: 20px !important; height: 20px !important; }

.imec-node-label { font-size: 12px; font-weight: 700; text-align: center; }
.imec-era { font-size: 10px; font-style: italic; text-align: center; }
.imec-dim { font-size: 11px; font-weight: 600; text-align: center; }

.imec-gray  { color: var(--gry); }
.imec-lgray { color: var(--lgry); }
.imec-cyan  { color: var(--cyan); }
.imec-purple{ color: rgba(160,130,255,0.9); }
.imec-gold  { color: var(--gold); }

.imec-target { position: relative; }
.imec-target-badge {
  position: absolute; top: -24px;
  background: rgba(255,184,0,0.2); color: var(--gold);
  border: 1px solid rgba(255,184,0,0.4);
  font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 6px;
  white-space: nowrap;
}

.sawyer-vector {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
}

.vector-line {
  flex: 1; height: 2px;
  background: linear-gradient(to right, transparent, var(--green));
  border-radius: 2px;
}

.vector-label {
  font-size: 12px; font-weight: 700; color: var(--green);
  white-space: nowrap;
}

/* Phases */
.phases {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}

.phase {
  border-radius: 20px; padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.phase-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 6px;
}

.phase-gray   .phase-tag { color: var(--gry); }
.phase-cyan   .phase-tag { color: var(--cyan); }
.phase-gold   .phase-tag { color: var(--gold); }

.phase-era {
  font-size: 12px; color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.phase h3 {
  font-family: var(--font2); font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}

.phase-items {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}

.phase-items li {
  font-size: 13.5px; color: var(--lgry); padding-left: 16px; position: relative;
  line-height: 1.5;
}

.phase-items li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%;
}

.phase-gray .phase-items li::before  { background: var(--gry); }
.phase-cyan .phase-items li::before  { background: var(--cyan); }
.phase-gold .phase-items li::before  { background: var(--gold); }

.phase-foot {
  display: inline-block; padding: 6px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 700;
  color: var(--gry); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
}

.phase-foot-cyan { color: var(--cyan); background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.25); }
.phase-foot-gold { color: var(--gold); background: rgba(255,184,0,0.1); border-color: rgba(255,184,0,0.25); }

/* ── MARKET ──────────────────────────────────────────────────────────────── */
.market-layout {
  display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: center;
}

.market-circles {
  position: relative;
}

.market-circle {
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.tam {
  width: 360px; height: 360px;
  background: rgba(255,184,0,0.06);
  border: 2px solid rgba(255,184,0,0.2);
}

.sam {
  width: 260px; height: 260px;
  background: rgba(0,212,255,0.08);
  border: 2px solid rgba(0,212,255,0.25);
}

.som {
  width: 160px; height: 160px;
  background: rgba(0,229,160,0.15);
  border: 2px solid rgba(0,229,160,0.35);
}

.market-circle-label {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}

.market-abbr {
  font-size: 14px; font-weight: 800; color: var(--green2);
  letter-spacing: 1px;
}

.market-val {
  font-family: var(--font2); font-size: 19px; font-weight: 800;
  color: var(--green2); letter-spacing: -0.5px;
}

.sam-label, .tam-label {
  position: absolute; top: 12px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px; font-weight: 800;
}

.sam-label { color: var(--cyan2); }
.tam-label { color: var(--gold2); }

.market-cards { display: flex; flex-direction: column; gap: 16px; }

.market-card {
  border-radius: 16px; padding: 24px;
  background: #fff;
  transition: transform 0.2s;
}

.market-card:hover { transform: translateX(4px); }

.mcard-green  { border-left: 4px solid var(--green2); }
.mcard-cyan   { border-left: 4px solid var(--cyan2); }
.mcard-gold   { border-left: 4px solid var(--gold2); }

.mcard-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}

.mcard-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}

.mcard-green .mcard-tag  { color: var(--green2); }
.mcard-cyan  .mcard-tag  { color: var(--cyan2); }
.mcard-gold  .mcard-tag  { color: var(--gold2); }

.mcard-val {
  font-family: var(--font2); font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
}

.mcard-green .mcard-val  { color: var(--green2); }
.mcard-cyan  .mcard-val  { color: var(--cyan2); }
.mcard-gold  .mcard-val  { color: var(--gold2); }

.market-card h4 {
  font-family: var(--font2); font-size: 17px; font-weight: 700;
  color: #1A1F2E; margin-bottom: 8px;
}

.market-card p { font-size: 13.5px; color: #6B7A8D; line-height: 1.6; margin-bottom: 10px; }

.mcard-timeline {
  font-size: 12px; font-weight: 600; color: var(--gry);
}

/* ── COMPETITIVE TABLE ───────────────────────────────────────────────────── */
.comp-table-wrap { overflow-x: auto; margin-bottom: 24px; }

.comp-table {
  width: 100%; border-collapse: collapse; font-size: 13.5px;
}

.comp-table th {
  padding: 14px 16px; text-align: left;
  background: var(--navy2);
  font-size: 12px; font-weight: 700; color: var(--lgry);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.th-stonewood {
  background: rgba(0,212,255,0.1) !important;
  color: var(--cyan) !important;
  border-left: 2px solid var(--cyan) !important;
}

.th-sub  { color: var(--gry); font-weight: 400; display: block; font-size: 11px; }
.th-sub-sw { color: rgba(0,212,255,0.7); font-weight: 400; display: block; font-size: 11px; }

.comp-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--lgry);
}

.comp-table .row-alt td { background: rgba(255,255,255,0.02); }

.feat {
  color: #fff !important; font-weight: 600;
}

.bad  { color: var(--orange) !important; }
.warn { color: var(--gold) !important; }
.good { color: var(--green) !important; font-weight: 600 !important; }

.comp-table td:last-child {
  background: rgba(0,212,255,0.05);
  border-left: 2px solid rgba(0,212,255,0.2);
}

.comp-footer {
  font-size: 13.5px; color: var(--lgry);
  font-style: italic; text-align: center;
  padding: 16px; background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.1); border-radius: 10px;
}

/* ── FINANCIALS ──────────────────────────────────────────────────────────── */
.financials-layout {
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start;
}

.fin-chart-wrap { min-width: 0; }

.fin-legend {
  display: flex; gap: 20px; margin-top: 12px;
}

.legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gry);
}

.legend-dot {
  width: 12px; height: 12px; border-radius: 3px;
}

.legend-rev { background: rgba(0,212,255,0.6); }
.legend-gm  { background: rgba(0,229,160,0.6); }

.fin-table-wrap { min-width: 280px; }

.fin-table {
  width: 100%; border-collapse: collapse; margin-bottom: 20px;
  border-radius: 12px; overflow: hidden;
}

.fin-table th {
  background: var(--navy); color: #fff;
  padding: 12px 16px; text-align: center; font-size: 13px;
  font-weight: 700;
}

.fin-table th:first-child { text-align: left; }

.fin-table td {
  padding: 12px 16px; border-bottom: 1px solid #E8EDF5;
  font-size: 13.5px; text-align: center; color: #1A1F2E;
}

.fin-table td:first-child { text-align: left; font-weight: 600; color: var(--navy); }
.fin-table .row-alt td { background: #F8FAFD; }
.neg { color: var(--orange) !important; }

.breakeven-box {
  background: rgba(0,229,160,0.08);
  border: 1px solid rgba(0,229,160,0.25);
  border-radius: 10px; padding: 14px 16px;
  font-size: 13.5px; color: var(--green2); font-weight: 600;
  line-height: 1.6;
}

.be-star { font-size: 16px; margin-right: 4px; }

.breakeven-box small { color: var(--gry); font-weight: 400; display: block; margin-top: 2px; }

/* ── TEAM ────────────────────────────────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px; margin-bottom: 48px;
}

.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 32px;
  display: flex; gap: 24px; align-items: flex-start;
  transition: border-color 0.2s;
}

.team-card:hover { border-color: rgba(0,212,255,0.3); }

.team-avatar {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 16px;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font2); font-size: 24px; font-weight: 800;
  color: var(--cyan);
}

.team-avatar-purple {
  background: rgba(123,47,255,0.15);
  border-color: rgba(123,47,255,0.3);
  color: rgba(180,150,255,0.9);
}

.team-info h3 {
  font-family: var(--font2); font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}

.team-title {
  font-size: 13px; color: var(--cyan); font-style: italic;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 13.5px; color: var(--lgry); line-height: 1.6;
  margin-bottom: 14px;
}

.team-focus { display: flex; flex-wrap: wrap; gap: 6px; }

.focus-tag {
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,0.07); color: var(--lgry);
  border: 1px solid rgba(255,255,255,0.1);
}

.advisors-section { }

.advisors-title {
  font-family: var(--font2); font-size: 17px; font-weight: 700;
  color: #fff; margin-bottom: 20px;
}

.advisors-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.advisor-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; color: var(--lgry); line-height: 1.55;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03); border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}

.advisor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0; margin-top: 5px;
}

/* ── INVESTORS / ASK ─────────────────────────────────────────────────────── */
.ask-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
  align-items: start; margin-bottom: 40px;
}

.ask-raise-card {
  background: var(--navy);
  border: 1.5px solid var(--green2);
  border-radius: 20px; padding: 32px;
}

.ask-amount {
  font-family: var(--font2); font-size: 48px; font-weight: 800;
  color: var(--green); letter-spacing: -2px; margin-bottom: 4px;
}

.ask-type {
  font-size: 14px; color: var(--lgry); margin-bottom: 24px;
}

.ask-terms {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}

.ask-terms li {
  font-size: 13.5px; color: var(--lgry);
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}

.ask-fund-bar {
  display: flex; height: 6px; border-radius: 100px;
  overflow: hidden; margin-bottom: 20px; gap: 2px;
}

.fund-seg { height: 100%; border-radius: 2px; }
.fund-purple { background: var(--purple); }
.fund-cyan   { background: var(--cyan); }
.fund-gold   { background: var(--gold); }

.ask-fund-cards {
  display: flex; flex-direction: column; gap: 12px;
}

.fund-card {
  padding: 18px 20px; border-radius: 12px; background: #fff;
  border-left: 3px solid;
}

.fund-card-purple { border-left-color: var(--purple); }
.fund-card-cyan   { border-left-color: var(--cyan2); }
.fund-card-gold   { border-left-color: var(--gold2); }

.fund-pct {
  font-size: 12px; font-weight: 700; margin-bottom: 2px;
}

.fund-card-purple .fund-pct { color: var(--purple2); }
.fund-card-cyan   .fund-pct { color: var(--cyan2); }
.fund-card-gold   .fund-pct { color: var(--gold2); }

.fund-name {
  font-family: var(--font2); font-size: 15px; font-weight: 700;
  color: #1A1F2E; margin-bottom: 4px;
}

.fund-card p { font-size: 13px; color: #6B7A8D; margin: 0; }

/* TRL strip */
.trl-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 56px; flex-wrap: wrap;
}

.trl-node {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 80px;
}

.trl-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--gry); background: transparent;
}

.trl-dot-green  { background: var(--green); border-color: var(--green); }
.trl-dot-purple { background: var(--purple); border-color: var(--purple); width: 20px; height: 20px; }

.trl-label { font-size: 13px; font-weight: 700; color: #1A1F2E; }
.trl-sub   { font-size: 11px; color: var(--gry); }

.trl-line {
  flex: 1; height: 2px; background: #DDE3EE;
  min-width: 30px; max-width: 80px;
}

.trl-line-thick { background: var(--purple); height: 3px; }

.trl-now    .trl-label { color: var(--gry); }
.trl-mid    .trl-label { color: var(--cyan2); }
.trl-target .trl-label { color: var(--green2); }
.trl-series .trl-label { color: var(--purple2); }

/* Contact form */
.contact-section {
  background: #fff; border-radius: 24px;
  border: 1.5px solid #E0E8F5;
  padding: 48px;
}

.contact-header { text-align: center; margin-bottom: 36px; }

.contact-header h3 {
  font-family: var(--font2); font-size: 26px; font-weight: 700;
  color: #1A1F2E; margin-bottom: 8px;
}

.contact-header p { font-size: 15px; color: #6B7A8D; }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
}

.form-group {
  display: flex; flex-direction: column; gap: 6px;
}

.form-group label {
  font-size: 13px; font-weight: 600; color: #4A5568;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #DDE3EE;
  border-radius: 10px; font-size: 14px; font-family: var(--font);
  color: #1A1F2E; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan2);
  box-shadow: 0 0 0 3px rgba(0,168,204,0.12);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-group { margin-bottom: 0; }

.contact-form .btn-primary { margin-top: 20px; }

.form-success {
  display: none; text-align: center; padding: 48px;
}

.form-success.show { display: block; }

.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0,229,160,0.15); border: 2px solid var(--green2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--green2);
  margin: 0 auto 20px;
}

.form-success h4 {
  font-family: var(--font2); font-size: 22px; font-weight: 700;
  color: #1A1F2E; margin-bottom: 8px;
}

.form-success p { font-size: 15px; color: #6B7A8D; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid; grid-template-columns: 1fr auto; gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13.5px; color: var(--gry); line-height: 1.65;
}

.footer-links {
  display: flex; gap: 48px;
}

.footer-col {
  display: flex; flex-direction: column; gap: 10px;
}

.footer-col h4 {
  font-size: 12px; font-weight: 700; color: var(--lgry);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px;
}

.footer-col a {
  font-size: 13.5px; color: var(--gry); text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

.footer-bottom p { font-size: 12px; color: var(--gry); }

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .physics-grid { grid-template-columns: 1fr; }
  .sawyer-layout { grid-template-columns: 1fr; }
  .moat-outer { width: 240px; height: 240px; }
  .moat-mid   { width: 170px; height: 170px; }
  .moat-inner { width: 110px; height: 110px; }

  .market-layout { grid-template-columns: 1fr; }
  .tam { width: 280px; height: 280px; }
  .sam { width: 200px; height: 200px; }
  .som { width: 120px; height: 120px; }
  .market-circles { display: flex; justify-content: center; }

  .financials-layout { grid-template-columns: 1fr; }
  .fin-table-wrap { min-width: unset; }

  .ask-layout { grid-template-columns: 1fr; }
  .ask-raise-card { display: flex; flex-direction: column; align-items: flex-start; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .hero { padding: 120px 0 80px; }
  .hero-title-main { letter-spacing: -2px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-section { padding: 28px 20px; }

  .team-card { flex-direction: column; }

  .imec-nodes { gap: 4px; }
  .imec-node { min-width: 60px; }
  .imec-node-label { font-size: 10px; }

  .pillars { grid-template-columns: 1fr; }
  .sawyer-modules { grid-template-columns: 1fr; }
}
