/* ═══════════════════════════════════════════
   ROOT VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --dark:    #1A3D1A;
  --mid:     #2D6B2D;
  --bright:  #4CAF50;
  --light:   #E8F5E9;
  --offwhite:#F7FAF7;
  --teal:    #006B6B;
  --orange:  #E07B39;
  --text:    #1a2a1a;
  --muted:   #5a725a;
  --red:     #c0392b;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--offwhite);
  color: var(--text);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  background: var(--dark);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; cursor: pointer; }
.nav-logo img { height: 42px; filter: brightness(0) invert(1); }
.nav-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; 
  font-weight: 700;
  color: white;
}
.nav-wordmark span { color: var(--bright); }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.72);
    background: none; border: none; padding: 8px 14px; border-radius: 4px;
    cursor: pointer; transition: all 0.2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--bright); }
.nav-links a.nav-cta {
  background: var(--bright); color: var(--dark);
  font-weight: 700;
}
.nav-links a.nav-cta:hover { background: #66BB6A; }

/* ═══════════════════════════════════════════
   SHARED UTILITIES
═══════════════════════════════════════════ */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-pad { padding: 88px 0; }
.lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 12px; display: block;
}
h2.title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px,3.5vw,52px); font-weight: 700;
  color: var(--dark); line-height: 1.05; margin-bottom: 20px;
}
.body-text { font-size: 16px; line-height: 1.8; color: var(--muted); max-width: 640px; }
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; background: var(--bright); color: var(--dark);
  border: none; padding: 14px 32px; border-radius: 4px; cursor: pointer;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: #66BB6A; transform: translateY(-1px); }
.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.4); color: white;
  background: none; padding: 14px 32px; border-radius: 4px; cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.06); }

/* ═══════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════ */
.hero {
  min-height: 92vh; background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 80px; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--bright);
  margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 32px; height: 2px; background: var(--bright);
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px,5.5vw,80px); font-weight: 800;
  line-height: 0.95; letter-spacing: -1px; color: white; margin-bottom: 28px;
}
.hero h1 span { color: var(--bright); }
.hero-sub {
  font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.72);
  max-width: 480px; margin-bottom: 44px; font-style: italic;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width:100%; height:100%; object-fit:cover; object-position:center; opacity:.85; }
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 40%);
}
.hero-stats {
  position: absolute; bottom: 40px; left: 80px;
  display: flex; gap: 40px; z-index: 2;
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800; line-height: 1; color: var(--bright);
}
.hero-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px;
}
.intro-strip {
  background: var(--bright); padding: 24px 80px;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.intro-strip-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--dark); flex: 1;
}
.intro-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  background: var(--dark); color: white; padding: 6px 12px; border-radius: 3px;
}
/* Showcase */
.showcase {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: #c8d8c8; border-radius: 12px; overflow: hidden; margin: 48px 0;
}
.showcase-img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.showcase-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; display:block; }
.showcase-img:hover img { transform: scale(1.04); }
.showcase-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,61,26,0.9));
  padding: 40px 24px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: white;
}
/* Tech grid */
.tech-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  background: #c8d8c8; border-radius: 10px; overflow: hidden; margin-top: 48px;
}
.tech-item { background: white; padding: 36px 28px; transition: background 0.2s; }
.tech-item:hover { background: var(--light); }
.tech-icon { font-size: 28px; margin-bottom: 16px; }
.tech-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px;
}
.tech-desc { font-size: 14px; line-height: 1.7; color: var(--muted); }
/* Performance */
.perf-band { background: var(--light); padding: 80px 0; margin-top: 80px; }
.perf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.perf-img { border-radius: 10px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.perf-img img { width:100%; display:block; }
.perf-points { list-style: none; margin-top: 32px; }
.perf-points li {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px; font-size: 15px; line-height: 1.65; color: var(--muted);
}
.perf-points li::before {
  content: '→'; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; color: var(--bright); flex-shrink: 0; margin-top: 1px;
}
/* Applications */
.apps-bg { background: var(--dark); }
.apps-bg .lbl { color: var(--bright); }
.apps-bg h2.title { color: white; }
.apps-bg .body-text { color: rgba(255,255,255,0.7); max-width: 520px; }
.apps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; margin-top: 48px;
}
.app-card { position: relative; overflow: hidden; min-height: 340px; }
.app-card img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; display:block; }
.app-card:hover img { transform: scale(1.05); }
.app-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,61,26,0.92) 0%, rgba(26,61,26,0.2) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px 28px;
}
.app-market {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--bright); margin-bottom: 8px;
}
.app-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 700; color: white; line-height: 1.1; margin-bottom: 10px;
}
.app-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.apps-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; margin-top: 2px;
}
.app-card-sm {
  background: rgba(255,255,255,0.04); padding: 32px 28px;
  border-top: 3px solid transparent; transition: border-color 0.2s, background 0.2s;
}
.app-card-sm:hover { border-color: var(--bright); background: rgba(76,175,80,0.06); }
.app-market-sm {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--bright); margin-bottom: 10px;
}
.app-title-sm {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 700; color: white; margin-bottom: 10px;
}
.app-desc-sm { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.72); }
/* Proven strip */
.proven-strip {
  background: var(--teal); padding: 60px 80px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center;
}
.proven-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px; font-weight: 800; color: white; line-height: 1;
}
.proven-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-top: 8px;
}
/* CTA */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  padding: 100px 80px; text-align: center;
}
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px,5vw,68px); font-weight: 800; color: white; margin-bottom: 20px;
}
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto 40px; font-style: italic; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   TEAM PAGE
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 60%, var(--teal) 100%);
  padding: 88px 40px 72px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}
.page-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--bright); margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px,6vw,76px); font-weight: 800; color: white; line-height: 1; margin-bottom: 20px;
}
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; line-height: 1.7; font-style: italic; }
/* Team section labels */
.section-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px,4vw,48px); font-weight: 700; color: var(--dark); margin-bottom: 16px; line-height: 1.1;
}
.section-intro { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 700px; margin-bottom: 64px; }
/* Leadership grid */
.leadership-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px,1fr));
  gap: 2px; background: #c8d8c8; border-radius: 12px; overflow: hidden; margin-bottom: 80px;
}
.person-card { background: white; padding: 40px; position: relative; transition: background 0.25s; }
.person-card:hover { background: var(--light); }
.person-card::before {
  content: ''; position: absolute; top: 0; left: 40px; right: 40px;
  height: 3px; background: var(--dark);
}
.person-card.featured { background: var(--dark); color: white; }
.person-card.featured:hover { background: var(--mid); }
.person-card.featured::before { background: var(--bright); }
.person-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.person-card.featured .person-role { color: var(--bright); }
.person-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700; line-height: 1.1; color: var(--dark); margin-bottom: 6px;
}
.person-card.featured .person-name { color: white; }
.person-quals {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; color: var(--muted); letter-spacing: 1px; margin-bottom: 20px;
}
.person-card.featured .person-quals { color: rgba(255,255,255,0.6); }
.person-bio { font-size: 15px; line-height: 1.75; color: var(--muted); }
.person-card.featured .person-bio { color: rgba(255,255,255,0.8); }
/* Advisors band */
.advisors-band { background: var(--dark); padding: 72px 40px; }
.advisors-band .section-lbl { color: var(--bright); }
.advisors-band .section-title { color: white; }
.advisors-band .section-intro { color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.advisor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.advisor-card {
  border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 32px;
  background: rgba(255,255,255,0.04); transition: border-color 0.2s, background 0.2s;
}
.advisor-card:hover { border-color: var(--bright); background: rgba(76,175,80,0.06); }
.advisor-org {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; color: white; margin-bottom: 6px;
}
.advisor-ttl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--bright); margin-bottom: 16px;
}
.advisor-bio { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); }
/* Engineering partner */
.partner-section { background: var(--light); padding: 80px 40px; }
.partner-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.partner-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 4px; margin-bottom: 24px;
}
.partner-badge span { color: var(--bright); }
.partner-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 700; line-height: 1.1; color: var(--dark); margin-bottom: 20px;
}
.partner-body { font-size: 15px; line-height: 1.8; color: var(--muted); }
.partner-body p { margin-bottom: 16px; }
.partner-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.stat-box {
  background: white; border-radius: 8px; padding: 20px; border-left: 3px solid var(--bright);
}
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px;
}

/* ═══════════════════════════════════════════
   PARTNERSHIPS PAGE
═══════════════════════════════════════════ */
.partnerships-grid {
  max-width: 1160px; margin: 0 auto; padding: 64px 40px 80px;
  display: flex; flex-direction: column; gap: 48px;
}
.p-card {
  background: #fff;
  border: 1.5px solid #d6e8d6;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,61,26,0.07);
}
.p-card-header {
  background: var(--dark);
  padding: 28px 36px 24px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.p-card-header-left { flex: 1; }
.p-card-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--bright); margin-bottom: 8px;
}
.p-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px; font-weight: 700; color: #fff; line-height: 1.2;
}
.p-card-body {
  padding: 32px 36px;
}
.p-card-body p {
  font-size: 15px; line-height: 1.85; color: var(--muted); margin-bottom: 16px;
}
.p-card-body p:last-child { margin-bottom: 0; }
.p-card-body ul {
  margin: 0 0 16px 0; padding: 0; list-style: none;
}
.p-card-body ul li {
  font-size: 15px; line-height: 1.75; color: var(--muted);
  padding: 4px 0 4px 22px; position: relative;
}
.p-card-body ul li::before {
  content: '▸'; position: absolute; left: 0; color: var(--bright); font-size: 12px; top: 6px;
}
.p-card-highlight {
  background: var(--light); border-left: 4px solid var(--bright);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px; margin-top: 20px;
  font-size: 14px; line-height: 1.75; color: var(--dark); font-style: italic;
}
@media (max-width: 640px) {
  .partnerships-grid { padding: 40px 20px 60px; gap: 32px; }
  .p-card-header, .p-card-body { padding: 20px; }
  .p-card-title { font-size: 22px; }
}

/* ═══════════════════════════════════════════
   INVEST PAGE — GATE
═══════════════════════════════════════════ */
#gate-screen {
  min-height: calc(100vh - 72px); display: flex;
  align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--dark) 0%, #0d260d 55%, #0a1f0a 100%);
  padding: 60px 24px; position: relative; overflow: hidden;
}
#gate-screen::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent 0, transparent 60px,
    rgba(76,175,80,0.03) 60px, rgba(76,175,80,0.03) 61px);
}
.gate-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 56px 52px; max-width: 680px; width: 100%;
  position: relative; z-index: 2; backdrop-filter: blur(12px);
}
.gate-icon {
  width: 56px; height: 56px; background: rgba(76,175,80,0.15);
  border: 1.5px solid var(--bright); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; font-size: 22px;
}
.gate-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--bright); margin-bottom: 14px;
}
.gate-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px,5vw,48px); font-weight: 800; color: white; line-height: 1.05; margin-bottom: 20px;
}
.gate-text { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.gate-text strong { color: rgba(255,255,255,0.9); }
.gate-warning {
  background: rgba(192,57,43,0.12); border: 1px solid rgba(192,57,43,0.35);
  border-left: 3px solid var(--red); border-radius: 6px; padding: 16px 20px;
  margin-bottom: 36px; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.7);
}
.gate-warning strong { color: #e74c3c; }
.elig-question {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; color: white; margin-bottom: 18px;
}
.elig-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.elig-option {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 18px 20px; cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.elig-option:hover { border-color: rgba(76,175,80,0.5); background: rgba(76,175,80,0.06); }
.elig-option.selected { border-color: var(--bright); background: rgba(76,175,80,0.1); }
.elig-radio {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3);
  flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center;
}
.elig-option.selected .elig-radio { border-color: var(--bright); background: var(--bright); }
.elig-option.selected .elig-radio::after {
  content: ''; width: 8px; height: 8px; background: var(--dark); border-radius: 50%;
}
.elig-ttl { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: white; margin-bottom: 5px; }
.elig-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.55); }
.confirm-check {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 18px 20px; margin-bottom: 28px; cursor: pointer;
}
.check-box {
  width: 22px; height: 22px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.confirm-check.checked .check-box { background: var(--bright); border-color: var(--bright); }
.confirm-check.checked .check-box::after { content: '✓'; color: var(--dark); font-weight: 900; font-size: 13px; font-family: sans-serif; }
.confirm-text { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.confirm-text strong { color: rgba(255,255,255,0.85); }
.gate-btn {
  width: 100%; font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--bright); color: var(--dark); border: none; border-radius: 8px;
  padding: 18px 32px; cursor: pointer; transition: all 0.2s; opacity: 0.4; pointer-events: none;
}
.gate-btn.active { opacity: 1; pointer-events: all; }
.gate-btn.active:hover { background: #66BB6A; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(76,175,80,0.3); }
.gate-decline {
  display: block; text-align: center; margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.35); background: none; border: none; cursor: pointer; width: 100%; transition: color 0.2s;
}
.gate-decline:hover { color: rgba(255,255,255,0.65); }
/* Decline screen */
#decline-screen {
  display: none; min-height: calc(100vh - 72px);
  background: var(--dark); align-items: center; justify-content: center;
  flex-direction: column; text-align: center; padding: 60px 32px;
}
#decline-screen h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 700; color: white; margin-bottom: 16px; }
#decline-screen p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 480px; line-height: 1.75; margin-bottom: 32px; font-style: italic; }
/* Invest content */
#invest-content { display: none; }
.invest-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 60%, var(--teal) 100%); padding: 88px 48px 72px; text-align: center; }
.invest-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(44px,6vw,76px); font-weight: 800; color: white; line-height: 1; margin-bottom: 20px; }
.invest-hero p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; line-height: 1.7; font-style: italic; }
/* Why grid */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  background: #c8d8c8; border-radius: 12px; overflow: hidden; margin-top: 48px;
}
.why-card { background: white; padding: 36px 28px; transition: background 0.2s; }
.why-card:hover { background: var(--light); }
.why-num { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 800; color: var(--bright); line-height: 1; margin-bottom: 10px; }
.why-head { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-desc { font-size: 14px; line-height: 1.7; color: var(--muted); }
/* EIS band */
.eis-band { background: var(--dark); padding: 60px 48px; }
.eis-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.eis-band .lbl { color: var(--bright); }
.eis-band h2.title { color: white; }
.eis-band .body-text { color: rgba(255,255,255,0.7); }
.eis-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.eis-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 20px; border-top: 3px solid var(--bright); }
.eis-box-num { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 800; color: var(--bright); line-height: 1; }
.eis-box-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 6px; }
/* Form */
.form-section { background: var(--light); padding: 88px 48px; }
.form-inner { max-width: 760px; margin: 0 auto; }
.form-subtitle { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 40px; font-style: italic; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label.field-label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); }
label.field-label .req { color: var(--orange); }
input[type=text], input[type=email], input[type=tel], select, textarea {
  font-family: 'Lora', serif; font-size: 15px; color: var(--text);
  background: white; border: 1.5px solid #c0d0c0; border-radius: 6px; padding: 13px 16px;
  width: 100%; outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--mid); box-shadow: 0 0 0 3px rgba(45,107,45,0.12); }
textarea { resize: vertical; min-height: 120px; }
.itype-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.itype-opt {
  border: 1.5px solid #c0d0c0; border-radius: 8px; padding: 16px 18px;
  cursor: pointer; background: white; transition: all 0.2s;
}
.itype-opt:hover { border-color: var(--mid); }
.itype-opt.selected { border-color: var(--dark); background: var(--light); }
.itype-head { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.itype-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid #aac0aa; flex-shrink: 0; transition: all 0.2s; }
.itype-opt.selected .itype-dot { background: var(--dark); border-color: var(--dark); }
.itype-desc { font-size: 12px; line-height: 1.6; color: var(--muted); padding-left: 22px; }
.data-notice {
  background: rgba(26,61,26,0.06); border: 1px solid rgba(26,61,26,0.15);
  border-radius: 6px; padding: 16px 20px; font-size: 13px; line-height: 1.65; color: var(--muted); margin-bottom: 24px;
}
.data-notice strong { color: var(--dark); }
.form-terms { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px; cursor: pointer; }
.form-terms input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--dark); margin-top: 3px; cursor: pointer; }
.form-terms-text { font-size: 13px; line-height: 1.7; color: var(--muted); }
.submit-btn {
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; background: var(--dark); color: white;
  border: none; border-radius: 8px; padding: 18px 48px; cursor: pointer; transition: all 0.2s; width: 100%;
}
.submit-btn:hover { background: var(--mid); box-shadow: 0 8px 24px rgba(26,61,26,0.25); }
#form-success {text-align: center; padding: 60px 40px; background: white; border-radius: 12px; border: 1px solid #c0d0c0; }
.success-icon {
  width: 64px; height: 64px; background: var(--light); border: 2px solid var(--bright);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 24px;
}
#form-success h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
#form-success p { font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 420px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer { background: #0f220f; color: rgba(255,255,255,0.55); padding: 48px 80px 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { height: 36px; filter: brightness(0) invert(1); opacity: .7; width: auto; }
.footer-tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); font-style: italic; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col a {
  display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 15px;
  color: rgba(255,255,255,0.65); background: none; border: none; cursor: pointer;
  padding: 0; margin-bottom: 8px; transition: color 0.2s; text-align: left;
  text-decoration: none;
}
.footer-col a:hover { color: var(--bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 320px; }
  .hero-left { padding: 60px 32px; }
  .hero-stats { left: 32px; bottom: 24px; gap: 24px; }
  .intro-strip { padding: 20px 32px; }
  .wrap { padding: 0 24px; }
  .showcase { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .apps-grid, .apps-grid-2 { grid-template-columns: 1fr; }
  .perf-grid { grid-template-columns: 1fr; gap: 32px; }
  .proven-strip { grid-template-columns: 1fr 1fr; padding: 48px 32px; }
  .cta-band { padding: 72px 32px; }
  .partner-inner { grid-template-columns: 1fr; gap: 32px; }
  .eis-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  footer { padding: 48px 24px 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .itype-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gate-box { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .tech-grid, .proven-strip, .leadership-grid { grid-template-columns: 1fr; }
}