:root {
  --bg: #050505;
  --surface: #0a0c12;
  --panel: #0f111a;
  --panel-strong: #131826;
  --text: #f6f7fb;
  --muted: #9aa0b5;
  --accent: #f23142;
  --accent-soft: rgba(242, 49, 66, 0.2);
  --border: #1b1f2d;
  --glow: 0 0 90px rgba(242, 49, 66, 0.35);
}

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

body {
  margin: 0;
  font-family: 'Sora', 'Space Grotesk', sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(242, 49, 66, 0.08), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(242, 49, 66, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* Thin, themed scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(242, 49, 66, 0.5) rgba(10, 12, 18, 0.9);
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: rgba(10, 12, 18, 0.9);
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(242, 49, 66, 0.9), rgba(155, 14, 25, 0.9));
  border-radius: 999px;
  border: 1px solid rgba(10, 12, 18, 0.8);
  box-shadow: 0 0 8px rgba(242, 49, 66, 0.25);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(242, 49, 66, 1), rgba(155, 14, 25, 1));
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
}

.page-surface {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(15, 17, 24, 0.92) 0%, rgba(10, 12, 18, 0.98) 30%, #080a0f 100%);
  transform: translateY(100vh);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px 4vw;
  background: rgba(5, 5, 7, 0.7);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: padding 0.24s ease;
}

.site-header.compressed {
  padding: 12px 4vw;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(242, 49, 66, 0.25));
  animation: none;
}

.wordmark .brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.wordmark .subtitle,
.subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.primary-nav {
  display: flex;
  gap: 18px;
  font-size: 0.96rem;
}

.primary-nav a {
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.primary-nav a:hover {
  color: var(--accent);
  background: rgba(242, 49, 66, 0.1);
}

.primary-nav a:focus-visible,
.primary-nav a:focus,
.primary-nav a.is-active {
  color: var(--accent);
  background: rgba(242, 49, 66, 0.12);
  outline: none;
  box-shadow: 0 0 0 2px rgba(242, 49, 66, 0.25);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.cta.solid {
  background: linear-gradient(135deg, #f23142, #9b0e19);
  box-shadow: 0 10px 30px rgba(242, 49, 66, 0.3);
  border: 1px solid rgba(242, 49, 66, 0.6);
  --glow-weak: rgba(242, 49, 66, 0.22);
  --glow-strong: rgba(242, 49, 66, 0.32);
  --glow-stronger: rgba(242, 49, 66, 0.24);
  animation: glowPulse 7.5s ease-in-out infinite;
}

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

.cta.solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(242, 49, 66, 0.4);
}

.cta.ghost {
  border-color: rgba(242, 49, 66, 0.6);
  color: var(--text);
}

.cta.ghost:hover {
  background: rgba(242, 49, 66, 0.08);
}

.cta.inline {
  padding: 0;
  border: none;
  color: var(--accent);
  background: none;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 18px var(--glow-weak, rgba(242, 49, 66, 0.25)), 0 0 40px var(--glow-strong, rgba(242, 49, 66, 0.16));
  }
  50% {
    box-shadow: 0 0 36px var(--glow-strong, rgba(242, 49, 66, 0.46)), 0 0 90px var(--glow-stronger, rgba(242, 49, 66, 0.3));
  }
  100% {
    box-shadow: 0 0 22px var(--glow-weak, rgba(242, 49, 66, 0.28)), 0 0 55px var(--glow-strong, rgba(242, 49, 66, 0.18));
  }
}

@keyframes dropGlow {
  0% {
    filter: drop-shadow(0 0 14px rgba(242, 49, 66, 0.38)) drop-shadow(0 0 32px rgba(242, 49, 66, 0.16));
  }
  50% {
    filter: drop-shadow(0 0 24px rgba(242, 49, 66, 0.58)) drop-shadow(0 0 48px rgba(242, 49, 66, 0.28));
  }
  100% {
    filter: drop-shadow(0 0 18px rgba(242, 49, 66, 0.44)) drop-shadow(0 0 36px rgba(242, 49, 66, 0.2));
  }
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
  padding: 96px 5vw 72px;
  min-height: 100vh;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 10%, rgba(242, 49, 66, 0.15), transparent 40%);
  pointer-events: none;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 12px 0 16px;
  letter-spacing: -0.01em;
}

.hero .lede {
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 26px 0 18px;
  flex-wrap: wrap;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 700;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.signal {
  padding: 14px 16px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(19, 24, 38, 0.7), rgba(13, 16, 25, 0.8));
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
  animation: none;
}

.signal:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 49, 66, 0.4);
}

.signal .label {
  color: var(--muted);
  font-size: 0.85rem;
}

.signal .value {
  display: block;
  font-weight: 700;
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  padding: 22px;
  background: linear-gradient(140deg, rgba(14, 17, 27, 0.8), rgba(7, 8, 13, 0.9));
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 17, 24, 0.35);
  height: 70vh;
  min-height: 420px;
}

.orbital {
  position: relative;
  height: 100%;
  border-radius: 0;
  background: radial-gradient(circle at 40% 40%, rgba(242, 49, 66, 0.16), rgba(10, 12, 18, 0.9));
  border: 1px solid rgba(242, 49, 66, 0.22);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 20px 40px rgba(0, 0, 0, 0.45),
    inset 0 -14px 28px rgba(242, 49, 66, 0.1),
    0 10px 40px rgba(0, 0, 0, 0.35);
  perspective: 900px;
  transform-style: preserve-3d;
}

.orbital-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(0.15px);
}

.orbital .node {
  position: absolute;
  padding: 6px 10px;
  min-width: 0;
  border-radius: 6px;
  background: transparent;
  border: none;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: none;
  opacity: 0;
  transition: opacity 1.4s ease, transform 0.6s ease;
  animation: none;
  will-change: transform, opacity;
}

.orbital.reading .node {
  transition: opacity 1.4s ease, transform 0.6s ease;
}

.orbital .node.wide {
  min-width: 0;
}

.orbital .node.small {
  min-width: 0;
  padding: 5px 10px;
  font-size: 0.92rem;
}

.orbital .node.tiny {
  min-width: 0;
  padding: 4px 8px;
  font-size: 0.88rem;
}

.orbital .node.visible {
  opacity: 0.85;
  animation: labelFade 12s ease-in-out infinite alternate;
}

.orbital::before,
.orbital::after {
  content: '';
  position: absolute;
  inset: -20px;
  background-size: 70px 70px;
  opacity: 0.16;
  transform: rotateX(65deg) translateZ(-60px) scale(1.05);
  transform-origin: center;
  pointer-events: none;
}

.orbital::before {
  background-image: linear-gradient(rgba(242, 49, 66, 0.25) 1px, transparent 1px);
  background-repeat: repeat-y;
  background-size: 100% 36px;
  mix-blend-mode: screen;
}

.orbital::after {
  background-image: linear-gradient(90deg, rgba(242, 49, 66, 0.25) 1px, transparent 1px);
  background-repeat: repeat-x;
  background-size: 36px 100%;
  mix-blend-mode: screen;
}

.welcome-screen {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc((var(--welcome-progress, 1) - 1) * 100vh));
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.welcome-screen.show {
  opacity: 1;
  pointer-events: auto;
}

.welcome-screen.exiting {
  opacity: 0;
}

.welcome-visual {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.welcome-orbital {
  height: 100%;
}

.welcome-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(242, 49, 66, 0.18), rgba(10, 12, 18, 0) 46%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

.welcome-visual > * {
  position: relative;
  z-index: 1;
}

.welcome-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
  text-align: center;
}

.welcome-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(242, 49, 66, 0.35));
}

.welcome-wordmark {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-shadow: 0 0 24px rgba(242, 49, 66, 0.26);
}

.welcome-active {
  overflow: hidden;
}

.welcome-active .site-header,
.welcome-active .scroll-hint.home-hint {
  display: none !important;
}

.welcome-orbital {
  border-radius: 0;
}

.welcome-active .page-surface {
  pointer-events: none;
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
}

.welcome-active .site-footer {
  display: none !important;
}

.welcome-hint {
  /* uses base .scroll-hint styles; visibility is controlled via the .visible class */
}

.tone-a {
  color: #f23142;
}

.tone-b {
  color: #d62f3d;
}

.tone-c {
  color: #b32029;
}

.tone-d {
  color: #ff4b5f;
}

.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2s; }
.delay-3 { animation-delay: 3s; }
.delay-4 { animation-delay: 4s; }
.delay-5 { animation-delay: 5s; }
.delay-6 { animation-delay: 6s; }

@keyframes labelFade {
  0% { opacity: 0.35; text-shadow: 0 0 6px rgba(242, 49, 66, 0.2); }
  50% { opacity: 0.9; text-shadow: 0 0 12px rgba(242, 49, 66, 0.35); }
  100% { opacity: 0.45; text-shadow: 0 0 6px rgba(242, 49, 66, 0.2); }
}

.orbital .trace {
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  border: 1px dashed rgba(242, 49, 66, 0.35);
  --glow-weak: rgba(242, 49, 66, 0.2);
  --glow-strong: rgba(242, 49, 66, 0.3);
  --glow-stronger: rgba(242, 49, 66, 0.22);
  animation: pulse 8s linear infinite, glowPulse 9s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.03);
  }
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 4px 0;
}

.stat-sub {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 80px 5vw;
}

.section-header {
  max-width: 900px;
}

.section h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.section-desc {
  color: var(--muted);
  max-width: 720px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.card {
  background: linear-gradient(160deg, rgba(19, 24, 38, 0.8), rgba(10, 12, 18, 0.95));
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 49, 66, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(242, 49, 66, 0.14);
  border: 1px solid rgba(242, 49, 66, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  --glow-weak: rgba(242, 49, 66, 0.18);
  --glow-strong: rgba(242, 49, 66, 0.28);
  --glow-stronger: rgba(242, 49, 66, 0.2);
}

.badge.neutral {
  background: rgba(154, 160, 181, 0.1);
  border-color: rgba(154, 160, 181, 0.4);
  --glow-weak: rgba(154, 160, 181, 0.18);
  --glow-strong: rgba(154, 160, 181, 0.26);
  --glow-stronger: rgba(154, 160, 181, 0.19);
}

.card .badge {
  animation: none;
  box-shadow: 0 0 4px var(--glow-weak);
}

.card .badge.neutral {
  box-shadow: 0 0 4px var(--glow-weak);
}

.product-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.card-body {
  color: var(--muted);
  margin: 10px 0 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  color: var(--text);
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  top: 8px;
  border-radius: 50%;
  background: var(--accent);
  --glow-weak: rgba(242, 49, 66, 0.18);
  --glow-strong: rgba(242, 49, 66, 0.26);
  --glow-stronger: rgba(242, 49, 66, 0.2);
  box-shadow: 0 0 10px var(--glow-weak);
  animation: glowPulse 8s ease-in-out infinite;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.meta-note {
  font-size: 0.9rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.pillar {
  padding: 20px;
  border-radius: 16px;
  background: rgba(15, 17, 26, 0.85);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pillar:hover {
  border-color: rgba(242, 49, 66, 0.4);
  transform: translateY(-3px);
}

.pillar h3 {
  margin: 0 0 8px;
}

.pillar p {
  color: var(--muted);
}

.tagline {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(242, 49, 66, 0.12);
  border: 1px solid rgba(242, 49, 66, 0.35);
  font-size: 0.9rem;
}

.pipeline {
  background: linear-gradient(180deg, rgba(13, 15, 23, 0.6), rgba(8, 10, 16, 0.9));
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  border-left: 2px solid rgba(242, 49, 66, 0.4);
  padding-left: 18px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(13, 16, 25, 0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  align-items: center;
}

.step-index {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  align-self: center;
}

.timeline-step h3 {
  margin: 0 0 6px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.case {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(12, 14, 22, 0.9);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.case:hover {
  border-color: rgba(242, 49, 66, 0.35);
  transform: translateY(-3px);
}

/* scroll hint arrows */
.scroll-hint {
  --hint-color: rgba(242, 49, 66, 0.8);
  --hint-speed: 3.6s;
  --hint-size: 14px;
  position: fixed;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  z-index: 30;
  pointer-events: none;
  opacity: 0;
  padding: 8px;
  border-radius: 14px;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: opacity 0.8s ease, filter 0.8s ease;
}

.scroll-hint::before {
  display: none;
}

.scroll-hint.visible {
  opacity: 1;
}

.scroll-hint.visible::before {
  opacity: 0.9;
  animation: hintBeam 6s ease-in-out infinite;
}

.home-hint {
  opacity: 0;
  transform: translate(-50%, calc(var(--welcome-progress, 1) * 20px));
}

.home-hint.visible {
  opacity: 1;
}

.welcome-hint {
  display: flex;
}

/* arrows only on welcome */
.home-hint {
  display: none !important;
}

@media (max-width: 720px) {
  .scroll-hint {
    --hint-size: 12px;
    gap: 4px;
    padding: 6px;
  }
}

.scroll-hint .arrow {
  width: var(--hint-size);
  height: var(--hint-size);
  border-left: 2px solid var(--hint-color);
  border-bottom: 2px solid var(--hint-color);
  transform: rotate(-45deg);
  border-radius: 2px;
  filter: drop-shadow(0 0 10px rgba(242, 49, 66, 0.28));
  animation: arrowFloat var(--hint-speed) ease-in-out infinite;
}

.scroll-hint .arrow:nth-child(2) {
  animation-delay: 0.25s;
}

.scroll-hint .arrow:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes arrowFloat {
  0% {
    opacity: 0;
    transform: translateY(-12px) rotate(-45deg) scale(0.92);
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translateY(6px) rotate(-45deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(18px) rotate(-45deg) scale(1.06);
  }
}

@keyframes hintBeam {
  0% {
    opacity: 0.35;
    transform: translateX(-50%) scaleY(0.94);
  }
  50% {
    opacity: 0.9;
    transform: translateX(-50%) scaleY(1.04);
  }
  100% {
    opacity: 0.35;
    transform: translateX(-50%) scaleY(0.94);
  }
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.case-title {
  font-weight: 700;
}

.cta-block {
  padding-bottom: 120px;
}

.cta-panel {
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(242, 49, 66, 0.3);
  background: linear-gradient(140deg, rgba(242, 49, 66, 0.12), rgba(14, 16, 23, 0.9));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(15, 17, 24, 0.35);
}

.cta-copy {
  flex: 1 1 320px;
}

.contact-highlights {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.contact-highlights li {
  position: relative;
  padding-left: 16px;
}

.contact-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  --glow-weak: rgba(242, 49, 66, 0.18);
  --glow-strong: rgba(242, 49, 66, 0.26);
  --glow-stronger: rgba(242, 49, 66, 0.2);
  box-shadow: 0 0 10px var(--glow-weak);
  animation: glowPulse 8.5s ease-in-out infinite;
}

.cta-form {
  flex: 1 1 360px;
  background: rgba(10, 12, 18, 0.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

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

.field {
  display: grid;
  gap: 6px;
  color: var(--text);
}

.field-label {
  font-size: 0.92rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(7, 8, 13, 0.9);
  color: var(--text);
  font-family: 'Sora', 'Space Grotesk', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  background-image: none;
  padding-right: 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(242, 49, 66, 0.5);
  box-shadow: 0 0 0 4px rgba(242, 49, 66, 0.12);
}

.field input.accepted,
.field select.accepted,
.field textarea.accepted {
  border-color: rgba(84, 228, 154, 0.7);
  box-shadow: 0 0 0 3px rgba(84, 228, 154, 0.16);
}

.field input.input_invalid,
.field select.input_invalid,
.field textarea.input_invalid {
  border-color: rgba(242, 49, 66, 0.8);
  box-shadow: 0 0 0 3px rgba(242, 49, 66, 0.18);
}

.field select::-ms-expand {
  display: none;
}

.field select option,
.field select optgroup {
  background: #0a0c12;
  color: var(--text);
}

.field textarea {
  resize: vertical;
}

.span-2 {
  grid-column: span 2;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.inline-email a {
  color: var(--accent);
}

.inline-email a:hover {
  text-decoration: underline;
}

.form-status {
  min-height: 20px;
  font-size: 0.95rem;
}

.form-status.success {
  color: #54e49a;
}

.form-status.error {
  color: #ff7b7b;
}

.cta-actions {
  display: flex;
  gap: 12px;
}

.site-footer {
  padding: 26px 5vw 32px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
  gap: 16px;
  background: #050507;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-note {
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-legal .dot {
  color: var(--muted);
}

.footer-legal a:hover {
  color: var(--accent);
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
  filter: blur(2px);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .primary-nav {
    order: 3;
    flex-wrap: wrap;
  }

  .site-header .cta.ghost {
    justify-self: flex-start;
  }

  .timeline {
    border-left: none;
    padding-left: 0;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 5vw;
    grid-template-columns: auto auto;
  }

  .primary-nav {
    display: none;
  }

  .hero {
    padding: 70px 5vw 56px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    margin-top: 10px;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    height: auto;
    min-height: 0;
  }

  .orbital {
    display: none;
  }

  /* keep welcome orbital and glow on mobile */
  .welcome-visual .orbital {
    display: block;
    height: 100%;
  }

  /* hide only in-page orbitals (home hero) */
  .page-surface .orbital {
    display: none;
  }

  .section {
    padding: 52px 5vw;
  }

  .card-grid,
  .pillars,
  .case-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .pillar,
  .case,
  .signal {
    width: 100%;
  }

  .cta-panel {
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta.solid.full {
    width: 100%;
  }

  .cta-form {
    padding: 14px;
  }

  .input-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-links {
    display: none;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .hero .lede {
    font-size: 0.98rem;
  }

  .hero-stats {
    gap: 10px;
    font-size: 0.94rem;
  }

  .signal-grid {
    gap: 10px;
  }

  .card,
  .pillar,
  .case,
  .signal {
    padding: 16px;
  }

  .cta-panel {
    gap: 12px;
  }

  .cta-copy,
  .cta-form {
    width: 100%;
  }

  .orbital .node {
    font-size: 0.8rem;
    opacity: 0.6;
  }

  .hero {
    min-height: auto;
    padding: 28px 5vw 60px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-visual {
    display: none;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    width: 100%;
  }
}
