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

:root {
  --bg: #01000a;
  --bg-light: #060612;
  --gold: #ffcc60;
  --orange: #ff7700;
  --red: #ff3300;
  --blue: #2266ff;
  --deep-blue: #0044dd;
  --text: #c8c8c8;
  --text-dim: #888;
  --text-bright: #e8e8e8;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #222 var(--bg);
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }

.gradient-text {
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-full {
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--red), var(--blue), var(--deep-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-border {
  position: relative;
  background: var(--bg);
  border-radius: 16px;
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  z-index: -1;
  opacity: 0.4;
  transition: opacity 0.4s ease;
}
.gradient-border:hover::before {
  opacity: 0.8;
}

.gradient-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange) 30%, var(--blue) 70%, transparent);
  opacity: 0.3;
  margin: 0 auto;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(1, 0, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

#navGlobe {
  width: 36px;
  height: 36px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--text-bright); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  position: relative;
}

.globe-container {
  position: relative;
  margin-bottom: 40px;
}

#heroGlobe {
  display: block;
}

.hero-wordmark {
  text-align: center;
  margin-top: -10px;
}

.hero-content {
  text-align: center;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg);
  background: linear-gradient(90deg, var(--orange), var(--blue));
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 119, 0, 0.25), 0 8px 30px rgba(34, 102, 255, 0.15);
}

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-bright);
  background: transparent;
  position: relative;
  transition: transform 0.3s ease;
  letter-spacing: 0.02em;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1.5px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.btn-outline:hover { transform: translateY(-2px); }

.btn-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 2px;
}
.btn-text:hover { color: var(--text-bright); }

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

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 60px;
  font-size: 1rem;
}

/* ── SERVICES ── */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  padding: 40px 32px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 36px;
  height: 36px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--bg-light);
}

.steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  opacity: 0.3;
}

.step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.step:last-child { margin-bottom: 0; }

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  background: var(--bg-light);
  border: 1px solid rgba(255,119,0,0.3);
}

.step:nth-child(1) .step-number { color: var(--gold); border-color: rgba(255,204,96,0.4); }
.step:nth-child(2) .step-number { color: var(--orange); border-color: rgba(255,119,0,0.4); }
.step:nth-child(3) .step-number { color: var(--red); border-color: rgba(255,51,0,0.4); }
.step:nth-child(4) .step-number { color: var(--blue); border-color: rgba(34,102,255,0.4); }

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  margin-top: 4px;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--text);
}

/* ── PROOF SLIDESHOW ── */
.proof {
  background: var(--bg);
  text-align: center;
}

.proof-slider {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.proof-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.proof-slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

.proof-slide blockquote {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--text-bright);
  line-height: 1.8;
  font-weight: 300;
  max-width: 640px;
}

.proof-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.proof-dot.active {
  background: linear-gradient(135deg, var(--orange), var(--blue));
  transform: scale(1.3);
}

/* ── PRICING ── */
.pricing { background: var(--bg-light); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  padding: 36px 28px;
  text-align: left;
  position: relative;
}

.pricing-card.featured {
  transform: scale(1.04);
  background: var(--bg-light);
}
.pricing-card.featured::before {
  opacity: 0.7;
}
.pricing-card.featured .tier-name {
  color: #fff;
}
.pricing-card.featured .best-for {
  color: var(--text);
}
.pricing-card.featured ul li {
  color: var(--text-bright);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--orange), var(--blue));
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card .tier-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.pricing-card .price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 4px;
}
.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-dim);
}

.pricing-card .best-for {
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-card ul li {
  font-size: 0.88rem;
  padding: 6px 0;
  color: var(--text);
  position: relative;
  padding-left: 20px;
}
.pricing-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  opacity: 0.6;
}

.pricing-card .setup {
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

.enterprise-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.enterprise-card p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
}

/* ── CONTACT ── */
.contact {
  background: var(--bg);
  text-align: center;
  padding: 120px 20px;
}

.contact h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.contact .subtitle {
  max-width: 560px;
  margin: 0 auto 12px;
  font-size: 1rem;
  color: var(--text);
}

.contact .email {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.contact .email a {
  color: var(--text-bright);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.3s;
}
.contact .email a:hover { border-color: var(--orange); }

.contact .fine-print {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── FOOTER ── */
footer {
  padding: 48px 40px 32px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

footer .tagline {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}

footer .location {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--text-bright); }

footer .copyright {
  font-size: 0.75rem;
  color: #555;
}

/* ── WORKFLOW DIAGRAM ── */
.workflow-demo {
  background: var(--bg);
  padding: 100px 20px 80px;
}

.workflow-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

#flowCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
  min-height: 420px;
}

.wf-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wf-col-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
  padding-left: 4px;
}

.wf-node {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color 0.4s, background 0.4s;
}

.wf-node:hover {
  border-color: rgba(255,119,0,0.25);
  background: rgba(255,255,255,0.05);
}

.wf-node-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.wf-node-icon.sys {
  background: rgba(255,119,0,0.1);
  border: 1px solid rgba(255,119,0,0.15);
}

.wf-node-icon.agent {
  background: rgba(34,102,255,0.1);
  border: 1px solid rgba(34,102,255,0.15);
}

.wf-node-icon.orch {
  background: linear-gradient(135deg, rgba(255,119,0,0.15), rgba(34,102,255,0.15));
  border: 1px solid rgba(255,200,100,0.2);
}

.wf-agents-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
}

.wf-orchestrator {
  padding: 16px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,200,100,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-bright);
  margin-bottom: 8px;
  position: relative;
}

.wf-orchestrator::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255,119,0,0.2), rgba(34,102,255,0.2));
  z-index: -1;
  opacity: 0.5;
}

.wf-agent-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.wf-agent-card {
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(34,102,255,0.04);
  border: 1px solid rgba(34,102,255,0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text);
  transition: border-color 0.4s;
  min-width: 150px;
}

.wf-agent-card:hover {
  border-color: rgba(34,102,255,0.3);
}

/* Dashboard mock */
.wf-dashboard {
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.wf-dash-header {
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 6px;
}

.wf-dash-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.wf-dash-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-left: 6px;
  letter-spacing: 0.04em;
}

.wf-dash-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wf-dash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wf-dash-stat {
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.wf-dash-stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 2px;
}

.wf-dash-stat-label {
  font-size: 0.65rem;
  color: var(--text-dim);
}

.wf-dash-feed {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wf-dash-feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.wf-dash-feed-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.workflow-scenario {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--text-dim);
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile flow: hidden on desktop */
.wf-mobile-flow {
  display: none;
}

@media (max-width: 900px) {
  /* Hide desktop workflow, show mobile */
  .workflow-grid {
    display: none !important;
  }
  #flowCanvas {
    display: none;
  }
  .wf-mobile-flow {
    display: block;
    position: relative;
  }
  #flowCanvasMobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }
  .wf-mobile-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    padding: 20px 0;
  }
  .wf-mobile-box {
    width: 100%;
    max-width: 320px;
    padding: 20px 24px;
    border-radius: 14px;
    text-align: center;
    position: relative;
  }
  .wf-mobile-box-label {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-bright);
    margin-bottom: 6px;
  }
  .wf-mobile-box-items {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.5;
  }
  .wf-mobile-systems {
    background: rgba(255,119,0,0.04);
    border: 1px solid rgba(255,119,0,0.2);
  }
  .wf-mobile-orch {
    background: linear-gradient(135deg, rgba(255,119,0,0.04), rgba(34,102,255,0.04));
    border: 1px solid rgba(255,200,100,0.2);
  }
  .wf-mobile-agents {
    background: rgba(34,102,255,0.04);
    border: 1px solid rgba(34,102,255,0.2);
  }
  .wf-mobile-dash {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
  }
}

/* ── WAITLIST ── */
.waitlist {
  background: var(--bg);
  text-align: center;
  padding: 80px 20px;
}

.waitlist-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 40px;
}

.waitlist-box h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.waitlist-box p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 28px;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-bright);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s;
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--orange);
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-dim);
}

.waitlist-form button {
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg);
  background: linear-gradient(90deg, var(--orange), var(--blue));
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.waitlist-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 119, 0, 0.25), 0 8px 30px rgba(34, 102, 255, 0.15);
}

.waitlist-success {
  display: none;
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 16px;
}

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

/* ── CONTACT FORM ── */
.contact-form-wrap {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

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

.form-group label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-bright);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

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

.form-group select option {
  background: var(--bg);
  color: var(--text);
}

.form-submit {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg);
  background: linear-gradient(90deg, var(--orange), var(--blue));
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 119, 0, 0.25), 0 8px 30px rgba(34, 102, 255, 0.15);
}

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

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

.form-success h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text);
}

.or-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.or-divider span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* ── COOKIE CONSENT ── */
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(6, 6, 18, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 40px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner.show { display: flex; }

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--text);
  max-width: 600px;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--text-bright);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: transform 0.2s;
  white-space: nowrap;
}

.cookie-btn:hover { transform: translateY(-1px); }

.cookie-btn-accept {
  color: var(--bg);
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.cookie-btn-decline {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .waitlist-form {
    flex-direction: column;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: if JS hasn't run after 3s, show everything */
@keyframes revealFallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: revealFallback 0s 3s forwards;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  nav { padding: 14px 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(1, 0, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .mobile-toggle { display: flex; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .steps::before { left: 18px; }
  .step-number { width: 40px; height: 40px; font-size: 1rem; }
  .step { gap: 20px; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing .services-grid {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .proof-stats { gap: 32px; }

  #heroGlobe {
    width: 400px;
    height: 267px;
  }

  .hero { padding-top: 80px; }
}

@media (max-width: 480px) {
  #heroGlobe {
    width: 320px;
    height: 213px;
  }
  section { padding: 70px 16px; }
  .proof-card { padding: 32px 20px; }
}
