/* ============================================
   GIGORRA MAIN.CSS - COMPLETE STYLESHEET
   Updated with deep blue background throughout
   ============================================ */

:root {
  --bg: #0a1628;
  --bg2: #0d1b2e;
  --card: rgba(255,255,255,.09);
  --card2: rgba(255,255,255,.13);
  --stroke: rgba(255,255,255,.16);
  --text: #ffffff;
  --muted: rgba(255,255,255,.90);
  --muted2: rgba(255,255,255,.75);
  --shadow: 0 28px 120px rgba(0,0,0,.65);
  --shadow-soft: 0 16px 60px rgba(0,0,0,.4);
  --radius: 22px;
  --radius2: 32px;
  --accent: 92, 168, 255;
  --accent2: 67, 137, 252;
  --container: 1160px;
  --ease: cubic-bezier(.23,.9,.32,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-bounce: cubic-bezier(.68,-0.55,.265,1.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0a1628 0%, #0d1b2e 50%, #112237 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Enhanced Premium Background */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(800px 400px at 50% 15%, rgba(0,0,0,1), transparent 78%);
  opacity: .24;
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.bg-orbs .orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 999px;
  filter: blur(50px);
  opacity: .26;
  animation: float 18s var(--ease) infinite;
}
.bg-orbs .o1 { 
  left: -180px; 
  top: 5vh; 
  background: radial-gradient(circle at 35% 35%, rgba(var(--accent),.75), rgba(var(--accent),.3) 50%, transparent 70%); 
}
.bg-orbs .o2 { 
  right: -200px; 
  top: 20vh; 
  background: radial-gradient(circle at 35% 35%, rgba(var(--accent2),.65), rgba(var(--accent2),.25) 50%, transparent 70%); 
  animation-delay: -6s; 
}
.bg-orbs .o3 { 
  left: 22vw; 
  bottom: -280px; 
  background: radial-gradient(circle at 35% 35%, rgba(92,200,255,.24), rgba(92,200,255,.08) 50%, transparent 70%); 
  animation-delay: -10s; 
}

@keyframes float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  33% { transform: translate3d(12px,-20px,0) scale(1.02); }
  66% { transform: translate3d(-12px,-25px,0) scale(0.98); }
}

.bg-flow {
  position: absolute;
  inset: 0;
  opacity: .22;
  filter: blur(0.4px);
}
.bg-flow path {
  fill: none;
  stroke: rgba(255,255,255,.28);
  stroke-width: 1.4;
  opacity: .30;
  stroke-linecap: round;
}
.bg-flow path:nth-child(2) { opacity: .22; }
.bg-flow path:nth-child(3) { opacity: .16; }

/* Ultra Premium Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(180deg, rgba(10,22,40,.88), rgba(10,22,40,.35));
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 4px 40px rgba(0,0,0,.5), 0 0 1px rgba(var(--accent),.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  transition: transform .35s var(--ease); 
}
.brand:hover { transform: scale(1.03); }
.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(var(--accent)), rgb(var(--accent2)));
  box-shadow: 
    0 0 0 8px rgba(var(--accent),.20), 
    0 0 55px rgba(var(--accent),.40),
    0 0 0 1px rgba(255,255,255,.2) inset;
  animation: pulse 3.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { 
    box-shadow: 
      0 0 0 8px rgba(var(--accent),.20), 
      0 0 55px rgba(var(--accent),.40),
      0 0 0 1px rgba(255,255,255,.2) inset;
  }
  50% { 
    box-shadow: 
      0 0 0 12px rgba(var(--accent),.28), 
      0 0 70px rgba(var(--accent),.50),
      0 0 0 1px rgba(255,255,255,.3) inset;
  }
}

.brand-logo { 
  height: 60px; 
  width: auto; 
  display: block; 
  filter: drop-shadow(0 6px 20px rgba(var(--accent),.35));
}

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}
.nav a {
  padding: 12px 18px;
  border-radius: 16px;
  transition: all .32s var(--ease);
  position: relative;
  overflow: hidden;
}
.nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--accent),.15), rgba(var(--accent2),.10));
  opacity: 0;
  transition: opacity .32s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(var(--accent)), rgb(var(--accent2)));
  transition: all .32s var(--ease);
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav a:hover {
  color: #ffffff;
}
.nav a:hover::before {
  opacity: 1;
}
.nav a:hover::after {
  width: 60%;
}

.header-cta { display: flex; gap: 14px; align-items: center; }

/* Premium Glossy Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 38px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  user-select: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .5s var(--ease);
}
.btn:hover::before {
  left: 100%;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, rgb(var(--accent)), rgb(var(--accent2)));
  color: #000000;
  box-shadow: 
    0 18px 50px rgba(var(--accent),.32), 
    0 6px 16px rgba(0,0,0,.18),
    0 0 0 1px rgba(255,255,255,.20) inset;
  font-weight: 700;
}
.btn-primary:hover {
  box-shadow: 
    0 22px 65px rgba(var(--accent),.42), 
    0 8px 20px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.30) inset;
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.btn-ghost {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.18);
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset;
}
.btn-ghost:hover {
  background: rgba(var(--accent),.18);
  border-color: rgba(var(--accent),.35);
  box-shadow: 0 0 0 1px rgba(var(--accent),.12) inset;
}

.btn-outline {
  background: transparent;
  border-color: rgba(var(--accent),.50);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(var(--accent),.08) inset;
}
.btn-outline:hover {
  background: rgba(var(--accent),.16);
  border-color: rgba(var(--accent),.70);
  box-shadow: 0 0 20px rgba(var(--accent),.15);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.09);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.nav-toggle:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(var(--accent),.30);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  margin: 5px auto;
  background: rgba(255,255,255,.94);
  border-radius: 3px;
  transition: all .3s var(--ease);
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(10,22,40,.75);
  backdrop-filter: blur(20px);
  padding: 16px 24px 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
}

.mobile-nav.mobile-nav-open {
  max-height: 500px;
  padding: 16px 24px 22px;
}

.mobile-nav a {
  display: block;
  padding: 15px 14px;
  border-radius: 16px;
  color: #ffffff;
  transition: all .28s var(--ease);
  font-weight: 500;
}
.mobile-nav a:hover { 
  background: rgba(var(--accent),.16); 
  transform: translateX(4px);
}
.mobile-nav-cta { display: flex; gap: 14px; padding-top: 14px; }

/* Ultra Premium Hero */
.hero {
  padding: 90px 0 70px;
  position: relative;
}
.hero-inner {
  text-align: center;
  position: relative;
}

.hero-logo {
  display: block;
  margin: 0 auto 32px;
  height: 175px;
  width: auto;
  filter: drop-shadow(0 16px 40px rgba(var(--accent),.40)) drop-shadow(0 8px 20px rgba(0,0,0,.3));
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.07));
  border: 1px solid rgba(var(--accent),.32);
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 550;
  box-shadow: 
    0 18px 60px rgba(0,0,0,.45), 
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 0 30px rgba(var(--accent),.08);
  backdrop-filter: blur(12px);
  transition: all .35s var(--ease);
}
.pill:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 22px 70px rgba(0,0,0,.5), 
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 0 40px rgba(var(--accent),.12);
}
.pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgb(var(--accent)), rgb(var(--accent2)));
  box-shadow: 0 0 0 8px rgba(var(--accent),.16), 0 0 20px rgba(var(--accent),.4);
  animation: pulse 3.5s ease-in-out infinite;
}
.pill-sep { width: 1px; height: 18px; background: rgba(255,255,255,.16); }
.pill-link {
  color: rgb(var(--accent));
  font-weight: 650;
  transition: all .28s var(--ease);
}
.pill-link:hover { 
  text-decoration: underline; 
  filter: brightness(1.2); 
}

.hero-title {
  margin: 30px auto 14px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.01;
  letter-spacing: -0.028em;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-title .muted { 
  color: rgba(255,255,255,.80); 
  font-weight: 650; 
}

.hero-subtitle {
  max-width: 860px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.86);
  font-size: 17.5px;
  line-height: 1.68;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-proof {
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.86);
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 190px;
}
.proof-kicker {
  font-size: 13px;
  color: rgba(255,255,255,.70);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 650;
}
.proof-value {
  font-size: 14.5px;
  color: #ffffff;
  font-weight: 650;
}
.proof-divider {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,.16);
  display: none;
}

/* Premium Ecosystem Card with Glassmorphism */
.ecosystem-card {
  margin: 46px auto 0;
  max-width: 1040px;
  border-radius: var(--radius2);
  background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.07));
  border: 1px solid rgba(var(--accent),.28);
  box-shadow: 
    var(--shadow),
    0 0 0 1px rgba(var(--accent),.14) inset,
    0 0 100px rgba(var(--accent),.10);
  overflow: hidden;
  text-align: left;
  backdrop-filter: blur(16px) saturate(150%);
  transition: all .4s var(--ease);
}
.ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 32px 140px rgba(0,0,0,.7),
    0 0 0 1px rgba(var(--accent),.18) inset,
    0 0 120px rgba(var(--accent),.14);
}
.eco-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(var(--accent),.06), transparent 60%);
}
.eco-title {
  margin: 0;
  font-size: 22px;
  color: #ffffff;
  font-weight: 750;
  letter-spacing: -.015em;
}
.eco-subtitle {
  margin: 8px 0 0;
  color: rgba(255,255,255,.80);
  font-size: 14.5px;
}
.eco-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.badge {
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(var(--accent),.16);
  border: 1px solid rgba(var(--accent),.32);
  color: #ffffff;
  font-size: 13px;
  font-weight: 650;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset;
  transition: all .28s var(--ease);
}
.badge:hover {
  background: rgba(var(--accent),.22);
  border-color: rgba(var(--accent),.45);
  transform: translateY(-2px);
}

.eco-graph {
  position: relative;
  height: 460px;
  padding: 30px;
  background:
    radial-gradient(800px 480px at 50% 35%, rgba(var(--accent),.16), transparent 68%),
    radial-gradient(800px 480px at 65% 68%, rgba(var(--accent2),.14), transparent 72%);
}
.eco-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .68;
}
.eco-lines .line {
  stroke: rgba(var(--accent),.60);
  stroke-width: 1.8;
}
.eco-lines .line-soft {
  stroke: rgba(var(--accent),.32);
  stroke-width: 1.4;
  stroke-dasharray: 7 9;
}
.eco-lines path { fill: none; }

.node {
  position: absolute;
  width: 200px;
  padding: 18px 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(10,22,40,.90), rgba(10,22,40,.80));
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 
    0 18px 50px rgba(0,0,0,.50),
    0 0 0 1px rgba(255,255,255,.10) inset;
  transition: all .35s var(--ease-spring);
}
.node:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(var(--accent),.55);
  background: linear-gradient(145deg, rgba(10,22,40,.95), rgba(10,22,40,.85));
  box-shadow: 
    0 24px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(var(--accent),.18) inset,
    0 0 40px rgba(var(--accent),.12);
}
.node-title {
  font-weight: 750;
  letter-spacing: .2px;
  color: #ffffff;
  font-size: 15.5px;
}
.node-sub {
  margin-top: 8px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.n-center {
  left: calc(50% - 115px);
  top: calc(50% - 54px);
  width: 230px;
  border-color: rgba(var(--accent),.60);
  background: linear-gradient(145deg, rgba(10,22,40,.95), rgba(10,22,40,.85));
  box-shadow: 
    0 0 0 1px rgba(var(--accent),.28) inset,
    0 20px 60px rgba(0,0,0,.55),
    0 0 70px rgba(var(--accent),.18);
}
.n1 { left: 9%; top: 18%; }
.n2 { left: 72%; top: 18%; }
.n3 { left: 78%; top: 62%; }
.n4 { left: 6%; top: 58%; }
.n5 { left: 16%; top: 78%; }

.eco-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 30px 26px;
  border-top: 1px solid rgba(255,255,255,.14);
  align-items: center;
  background: linear-gradient(135deg, transparent 40%, rgba(var(--accent),.04));
}
.eco-note {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 14.5px;
  line-height: 1.65;
}
.link {
  color: rgb(var(--accent));
  font-weight: 650;
  transition: all .28s var(--ease);
}
.link:hover {
  text-decoration: underline;
  filter: brightness(1.18);
}


/* FIX: Ensure anchor links scroll correctly with sticky header */
#contact {
  scroll-margin-top: 120px;
}

/* Premium Sections */
.section {
  padding: 90px 0;
  background: transparent;
}
.section-alt {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 140px rgba(var(--accent),.05) inset;
}
.section-head {
  max-width: 800px;
}
.section-head h2 {
  margin: 0 0 14px;
  font-size: 34px;
  letter-spacing: -.018em;
  color: #ffffff;
  font-weight: 800;
}
.section-head p {
  margin: 0;
  color: rgba(255,255,255,.86);
  line-height: 1.72;
  font-size: 16.5px;
}

.grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 24px 22px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.07));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 
    0 18px 54px rgba(0,0,0,.38),
    0 0 0 1px rgba(255,255,255,.06) inset;
  transition: all .35s var(--ease-spring);
  backdrop-filter: blur(10px);
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent),.45);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.09));
  box-shadow: 
    0 24px 70px rgba(0,0,0,.45),
    0 0 0 1px rgba(var(--accent),.14) inset,
    0 0 30px rgba(var(--accent),.08);
}
.card h3 {
  margin: 0 0 11px;
  font-size: 17.5px;
  color: #ffffff;
  font-weight: 750;
}
.card p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.68;
  font-size: 14.5px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}
.split h2 {
  color: #ffffff;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -.015em;
}
.split p {
  color: rgba(255,255,255,.86);
  font-size: 16.5px;
  line-height: 1.7;
}
.list {
  margin: 18px 0 24px;
  padding-left: 22px;
  color: rgba(255,255,255,.86);
}
.list li {
  margin: 14px 0;
  font-size: 15.5px;
}
.list strong {
  color: #ffffff;
  font-weight: 700;
}

.mini-diagram {
  border-radius: var(--radius2);
  padding: 24px;
  border: 1px solid rgba(var(--accent),.28);
  background: linear-gradient(145deg, rgba(10,22,40,.75), rgba(10,22,40,.65));
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.06) inset;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(12px);
}
.mini-block {
  width: 180px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset;
  transition: all .3s var(--ease);
}
.mini-block:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent),.35);
  background: rgba(255,255,255,.12);
}
.mini-title {
  font-weight: 750;
  color: #ffffff;
  font-size: 15px;
}
.mini-sub {
  margin-top: 8px;
  color: rgba(255,255,255,.77);
  font-size: 13px;
}
.mini-arrow {
  color: rgb(var(--accent));
  font-size: 22px;
  font-weight: 700;
}

/* Premium FAQ */
.faq {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  max-width: 960px;
}
.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  padding: 18px 20px;
  transition: all .3s var(--ease);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset;
}
.faq-item:hover {
  border-color: rgba(var(--accent),.35);
  background: rgba(255,255,255,.10);
  transform: translateY(-2px);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 750;
  color: #ffffff;
  font-size: 15.5px;
}
.faq-item p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.84);
  line-height: 1.72;
  font-size: 14.5px;
}
.faq-list {
  margin: 10px 0 0 20px;
  padding: 0;
  list-style: disc;
}
.faq-list li {
  margin: 8px 0;
  color: rgba(255,255,255,.84);
  line-height: 1.72;
  font-size: 14.5px;
}

/* Premium CTA Boxes - WITH SPACING FIX */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 30px 32px;
  border-radius: var(--radius2);
  border: 1px solid rgba(var(--accent),.32);
  background: linear-gradient(145deg, rgba(10,22,40,.75), rgba(10,22,40,.65));
  box-shadow: 
    var(--shadow),
    0 0 0 1px rgba(var(--accent),.12) inset,
    0 0 90px rgba(var(--accent),.08);
  backdrop-filter: blur(16px);
}

/* Add spacing between CTA boxes */
.cta + .cta {
  margin-top: 24px;
}

.cta-left h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -.015em;
}
.cta-left p {
  margin: 0;
  color: rgba(255,255,255,.86);
  line-height: 1.72;
  font-size: 16.5px;
}
.cta-form {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}
.cta-form .btn {
  white-space: nowrap;
  padding: 15px 28px;
}
.cta-form input {
  width: 280px;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.11);
  color: #ffffff;
  outline: none;
  font-size: 15px;
  transition: all .3s var(--ease);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset;
}
.cta-form input::placeholder {
  color: rgba(255,255,255,.64);
}
.cta-form input:focus {
  border-color: rgba(var(--accent),.60);
  background: rgba(255,255,255,.13);
  box-shadow: 0 0 0 5px rgba(var(--accent),.14), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.form-note {
  flex-basis: 100%;
  margin: 8px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  text-align: right;
}

/* CTA Right for Contact button */
.cta-right {
  flex-shrink: 0;
}

/* Footer */
.footer {
  padding: 30px 0 50px;
  color: rgba(255,255,255,.80);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
}
.footer-right a {
  color: rgb(var(--accent));
  font-weight: 650;
  font-size: 14.5px;
  transition: all .25s var(--ease);
}
.footer-right a:hover {
  text-decoration: underline;
  filter: brightness(1.15);
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: linear-gradient(145deg, rgba(10,22,40,.95), rgba(10,22,40,.90));
  border: 1px solid rgba(var(--accent),.35);
  border-radius: var(--radius2);
  max-width: 540px;
  width: 100%;
  padding: 40px 36px;
  box-shadow: 
    0 40px 120px rgba(0,0,0,.8),
    0 0 0 1px rgba(var(--accent),.18) inset,
    0 0 100px rgba(var(--accent),.15);
  backdrop-filter: blur(20px);
  transform: scale(0.9) translateY(20px);
  transition: transform .35s var(--ease-spring), opacity .3s var(--ease);
  opacity: 0;
  position: relative;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
  line-height: 1;
  padding: 0;
}

.modal-close:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(var(--accent),.35);
  transform: scale(1.05);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(10,22,40,.90), rgba(10,22,40,.80));
  border: 1px solid rgba(var(--accent),.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 0 12px rgba(var(--accent),.10), 
    0 10px 40px rgba(var(--accent),.20),
    0 0 0 1px rgba(255,255,255,.08) inset;
  padding: 12px;
}

.modal-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(var(--accent),.3));
}

.modal-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -.015em;
}

.modal-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: all .3s var(--ease);
  backdrop-filter: blur(10px);
}

.form-input::placeholder {
  color: rgba(255,255,255,.5);
}

.form-input:focus {
  border-color: rgba(var(--accent),.55);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 4px rgba(var(--accent),.12);
}

.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, rgb(var(--accent)), rgb(var(--accent2)));
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s var(--ease);
  box-shadow: 
    0 18px 50px rgba(var(--accent),.32), 
    0 6px 16px rgba(0,0,0,.18),
    0 0 0 1px rgba(255,255,255,.20) inset;
  margin-top: 10px;
}

.form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 
    0 22px 65px rgba(var(--accent),.42), 
    0 8px 20px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.30) inset;
  filter: brightness(1.08);
}

.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  text-align: center;
  display: none;
}

.form-message.success {
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: #86efac;
  display: block;
}

.form-message.error {
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
  display: block;
}

.form-note-modal {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-align: center;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 24px; }
  .eco-graph { height: 500px; }
  .n1 { left: 6%; top: 16%; }
  .n2 { left: 62%; top: 16%; }
  .n3 { left: 62%; top: 68%; }
  .n4 { left: 6%; top: 62%; }
  .n5 { left: 24%; top: 82%; }
}

@media (max-width: 780px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav { display: block; }
  .eco-header { flex-direction: column; }
  .eco-badges { justify-content: flex-start; }
  .proof-divider { display: none; }
  .cta { flex-direction: column; text-align: center; }
  .cta-form { 
    flex-direction: column;
    width: 100%;
  }
  .cta-form input {
    width: 100%;
  }
  .cta-right {
    width: 100%;
  }
  .cta-right .btn {
    width: 100%;
  }
  .form-note { text-align: center; }
}

@media (max-width: 560px) {
  .hero { padding: 70px 0 50px; }
  .hero-logo { height: 140px; }
  .brand-logo { height: 50px; }
  .grid { grid-template-columns: 1fr; }

  /* MOBILE MODAL SIZE FIX - WAITLIST ONLY */
  .modal-overlay {
    padding: 12px;
  }

  .modal {
    padding: 24px 18px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 22px;
  }

  .modal-header {
    margin-bottom: 22px;
  }

  .modal-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
  }

  .modal-title {
    font-size: 20px;
  }

  .modal-subtitle {
    font-size: 13px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .form-submit {
    padding: 14px;
    font-size: 14px;
  }

  .form-note-modal {
    font-size: 11px;
    margin-top: 12px;
  }

  /* BETTER MOBILE ECOSYSTEM DIAGRAM */
  .eco-graph { 
    height: auto;
    min-height: 600px;
    padding: 20px 16px 40px;
  }
  
  .eco-lines {
    display: none; /* Hide connection lines on mobile - too messy */
  }
  
  /* Stack nodes vertically on mobile */
  .node { 
    position: relative;
    width: 100%;
    max-width: 280px;
    left: 50% !important;
    top: auto !important;
    transform: translateX(-50%);
    margin-bottom: 16px;
  }
  
  .n-center {
    width: 100%;
    max-width: 280px;
    margin-bottom: 24px;
    order: 1;
  }
  
  .n1 { order: 2; }
  .n2 { order: 3; }
  .n3 { order: 4; }
  .n4 { order: 5; }
  .n5 { order: 6; }
  
  /* Make graph container flex column */
  .eco-graph {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* BETTER MOBILE MINI DIAGRAM */
  .mini-diagram {
    flex-direction: column;
    padding: 20px 16px;
    gap: 12px;
  }
  
  .mini-block {
    width: 100%;
    max-width: 100%;
  }
  
  .mini-arrow {
    transform: rotate(90deg);
    font-size: 28px;
    margin: -8px 0;
  }
}