/* ==========================================================================
   Radisa Landing Page Design System
   Vanilla CSS Implementation
   References: Finex, Glass-Effect 2, Volta EV
   ========================================================================== */

/* Fonts & Imports */

/* Fallback Fonts to Mitigate CLS (Layout Shift) */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  size-adjust: 97%;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Space Grotesk Fallback';
  src: local('Arial');
  size-adjust: 102%;
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Archivo Fallback';
  src: local('Arial');
  size-adjust: 98%;
  ascent-override: 98%;
  descent-override: 24%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'JetBrains Mono Fallback';
  src: local('Courier New'), local('Courier');
  size-adjust: 105%;
  ascent-override: 86%;
  descent-override: 21%;
  line-gap-override: 0%;
}


/* Color Variables */
:root {
  --bg-dark: #020408;
  --bg-card: rgba(10, 15, 30, 0.4);
  --color-primary: #3b82f6;      /* Blue */
  --color-secondary: #06b6d4;    /* Cyan */
  --color-accent: #6366f1;       /* Indigo */
  
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --text-placeholder: rgba(255, 255, 255, 0.65);
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-glow: rgba(59, 130, 246, 0.3);
  
  --cursor-size: 20px;
  --cursor-hover-size: 70px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

html {
  scrollbar-gutter: stable;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}

html, body {
  width: 100%;
  min-height: 100%;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'Inter', 'Inter Fallback', system-ui, -apple-system, sans-serif;
  overflow-x: clip;
}

@media (hover: hover) and (pointer: fine) {
  html, body {
    cursor: none; /* Hide default cursor for custom cursor experience */
  }
  a, button, input, textarea, select, label {
    cursor: none;
  }
}

section p, section h1, section h2, section h3, section li {
  user-select: text;
}

/* Typographic orphans and balancing controls */
h1, h2, h3, h4, h5, h6, 
.hero-heading, .section-heading, 
.sol-card-title, .dif-card-title, .tec-card-title, 
.sob-card-title, .con-heading, .con-console-title {
  text-wrap: balance;
}

p, .section-sub, .hero-subtitle, 
.sol-card-desc, .dif-card-desc, .tec-card-desc, 
.sob-card-desc, .sob-manifesto-para, .con-desc {
  text-wrap: pretty;
}

/* Ensure SplitText elements do not wrap internally during animations */
.split-line, .word, .char {
  text-wrap: nowrap !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Selection */
::selection {
  background-color: rgba(59, 130, 246, 0.3);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Background Effects (Noise & Ambient Blobs)
   -------------------------------------------------------------------------- */

/* Noise Texture Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}



/* --------------------------------------------------------------------------
   Custom Interactive Cursor
   -------------------------------------------------------------------------- */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 10001;
}

.cursor-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  background-color: var(--text-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
              background-color 0.25s cubic-bezier(0.25, 1, 0.5, 1),
              border 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  mix-blend-mode: difference;
  will-change: transform;
}

#cursor.hovered .cursor-circle {
  transform: translate(-50%, -50%) scale(3.5); /* 70px / 20px */
  background-color: rgba(59, 130, 246, 0.1);
  border: 1.5px solid rgba(59, 130, 246, 0.5);
  mix-blend-mode: normal;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  #cursor { display: none; }
  html, body { cursor: auto; }
  a, button, label { cursor: pointer; }
  input, textarea, select { cursor: auto; }
}

/* --------------------------------------------------------------------------
   Glassmorphism System
   -------------------------------------------------------------------------- */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); /* Tighter, more anchored shadow to seat it */
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-panel-hover:hover {
  background: rgba(10, 15, 30, 0.65); /* Keep it within panel-glass ranges rather than hardcoded 15, 23, 42 */
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.25); /* Emitted brand glow instead of large drop shadow */
}

.sol-card.glass-panel,
.sol-card-cta {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: linear-gradient(160deg, rgba(10, 15, 30, 0.92), rgba(10, 15, 30, 0.80));
}

.pre-skip {
  margin-top: 2.4rem;
  min-height: 44px;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-family: 'JetBrains Mono', 'JetBrains Mono Fallback', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pre-skip:hover,
.pre-skip:focus-visible {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}

/* --------------------------------------------------------------------------
   Navigation Header
   -------------------------------------------------------------------------- */
header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 24px 16px 0;
  z-index: 60;
}

.navbar {
  width: 100%;
  max-width: 1100px;
  border-radius: 9999px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(2, 4, 8, 0.85);
}

.nav-logo {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.nav-logo img {
  height: 38px;
  object-fit: contain;
  transition: transform 0.3s;
}

.nav-logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Small premium badge button inside navigation */
.nav-cta-btn {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 9999px;
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.02);
}

.nav-cta-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3), inset 0 0 10px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: none;
  padding: 10px;
  width: 44px;
  height: 44px;
}

@media (max-width: 768.98px), (max-height: 500px) {
  .nav-links {
    display: none;
  }
  .nav-actions .nav-cta-btn {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   Hero Section Layout
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 110px;
  z-index: 10;
  overflow: hidden;
  background-color: transparent;
}

/* Background Shader Canvas and Overlays */
.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: transparent;
  pointer-events: none;
}

/*.hero-bg-canvas style*/
.hero-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: radial-gradient(
    circle at center, 
    rgba(0, 0, 0, 0.65) 0%, 
    rgba(0, 0, 0, 0.72) 20%, 
    rgba(0, 0, 0, 0.80) 45%, 
    rgba(0, 0, 0, 0.88) 68%, 
    rgba(0, 0, 0, 0.96) 88%, 
    #000000 100%
  );
  pointer-events: none;
}


.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1400px;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Hero Layout Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px;
  }
  
  .hero-grid-left {
    grid-column: span 6 / span 6;
  }

  .hero-heading {
    text-align: left;
  }

  .hero-subtitle {
    text-align: left;
  }

  .hero-subtitle-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-tech-links {
    position: absolute;
    right: clamp(24px, 4vw, 56px);
    bottom: clamp(72px, 12vh, 140px);
    z-index: 6;
    max-width: 210px;
    margin: 0;
    padding: 0;
  }
}

/* Heading Typography */
.hero-heading {
  --title-wght: 900;
  --title-wdth: 120;
  font-family: 'Archivo', 'Archivo Fallback', 'Space Grotesk', 'Space Grotesk Fallback', sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  font-weight: 800;
  font-variation-settings: 'wght' 800, 'wdth' 100;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 24px 0;
  text-align: center;
}

.hero-heading .hero-title-line {
  display: block;
  font-variation-settings: 'wght' 900, 'wdth' 120;
}

.hero-heading .word {
  display: inline-block;
  white-space: nowrap;
}

.hero-heading .char {
  display: inline-block;
  text-align: center;
  font-variation-settings: 'wght' var(--title-wght, 900), 'wdth' var(--title-wdth, 120);
}

.hero-heading.title-measuring .char {
  font-variation-settings: 'wght' 900, 'wdth' 120;
}

.hero-heading .text-brand-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: 'wght' 280, 'wdth' 74;
  letter-spacing: 0.06em;
}

.hero-heading .text-white {
  color: #ffffff;
}

/* Subtitle */
.hero-subtitle-wrapper {
  max-width: 65ch;
  margin-top: 24px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  text-align: center;
}

/* CTAs Buttons Group */
.hero-ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-ctas button, .hero-ctas a {
    width: 100%;
  }
}

/* Primary Border Beam Button (Finex Inspired) */
.btn-primary-beam {
  position: relative;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8px; /* Ultra-thin border for high-end minimalist feel */
  border-radius: 9999px;
  overflow: hidden;
  background: transparent;
  border: none;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  min-height: 54px;
}

/* Glowing Conic Beam (Centered perfect square rotating around center) */
.btn-primary-beam::before {
  content: '';
  position: absolute;
  width: 200%;
  aspect-ratio: 1 / 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  /* Tighter sweep (40deg) for a subtle glowing spark instead of a thick block */
  background: conic-gradient(from 0deg, transparent 0% 320deg, var(--color-primary) 350deg, var(--color-secondary) 360deg);
  animation: spin-beam 3s linear infinite;
  opacity: 0.7; /* Softer light for a clean minimalist aesthetic */
  z-index: -2;
}

@keyframes spin-beam {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Inner Background and Animating Lines */
.btn-primary-beam-inner {
  position: relative;
  border-radius: 9999px;
  background: #06090e;
  padding: 13px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  overflow: hidden;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Background blue glow overlay */
.btn-primary-beam-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 35%;
  background: radial-gradient(ellipse at bottom, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0) 70%);
  filter: blur(8px);
  pointer-events: none;
  transition: opacity 0.5s;
  opacity: 0.4;
}

/* Slide line animations inside */
.btn-lines {
  position: absolute;
  inset: 0;
  opacity: 0.05; /* Even more subtle lines */
  mix-blend-mode: plus-lighter;
  background-image: repeating-linear-gradient(90deg, #fff, #fff 1px, transparent 1px, transparent 8px);
  background-size: 24px 100%;
  animation: slide-lines 2s linear infinite;
}

@keyframes slide-lines {
  0% { background-position: 0 0; }
  100% { background-position: 24px 0; }
}

.btn-primary-beam:hover {
  transform: scale(1.02);
  /* Very soft minimalist glow */
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.18), inset 0 0 10px rgba(59, 130, 246, 0.08);
}

.btn-primary-beam:hover .btn-primary-beam-inner::after {
  opacity: 0.7;
}

.btn-primary-beam svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.btn-primary-beam:hover svg {
  transform: translateX(4px);
}

/* Secondary Button (Glassmorphism & Border Accent) */
.btn-secondary-glass {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  min-height: 54px;
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary-glass svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s;
}

.btn-secondary-glass:hover svg {
  transform: translateY(2px);
}

.hero-tech-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 328px;
  margin: 48px auto 0 auto;
  padding: 0 24px;
}

.tech-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border-glass);
  padding-bottom: 12px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.tech-link-item:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.tech-link-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.tech-link-item:hover .tech-link-arrow {
  transform: translate(2px, -2px);
}


html.is-loading {
  overflow: hidden;
}

#gl {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

:focus-visible {
  outline: 1px solid rgba(6, 182, 212, 0.7);
  outline-offset: 3px;
}

.mono {
  font-family: 'JetBrains Mono', 'JetBrains Mono Fallback', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.section {
  position: relative;
  z-index: 10;
  padding: clamp(6rem, 14vh, 10rem) 24px;
}

.container {
  max-width: 1400px;
  margin-inline: auto;
}

.overline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.overline-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 6px;
  padding: 4px 8px;
}

.overline-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  white-space: nowrap;
}

.overline-line {
  flex: 1;
  height: 1px;
  background: var(--border-glass);
  transform-origin: left center;
}

.section-heading {
  font-family: 'Space Grotesk', 'Space Grotesk Fallback', sans-serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 28px;
}

.section-heading .dim {
  color: rgba(255, 255, 255, 0.42);
}

.section-heading .accent {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.section-sub {
  font-weight: 300;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0;
}

.hairline {
  height: 1px;
  background: var(--border-glass);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 9999px;
  padding: 10px 18px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.chip:hover {
  color: #ffffff;
  border-color: rgba(6, 182, 212, 0.4);
}

.phase-exit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  opacity: 0.5;
  margin-top: clamp(3rem, 8vh, 6rem);
}

.pre-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.pre-panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5%;
  background: #020408;
}

.pre-panel-top {
  top: 0;
}

.pre-panel-bottom {
  bottom: 0;
}

.pre-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.pre-flash {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
}

.pre-count-mask {
  overflow: hidden;
  line-height: 1;
}

.pre-count {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.pre-count.pre-ignite {
  color: var(--color-secondary);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.08em;
}

.pre-count-static {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.3em;
}

.pre-bar {
  width: min(40vw, 420px);
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.pre-bar-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform-origin: left center;
}

.pre-percent {
  position: absolute;
  top: 32px;
  right: 36px;
}

.pre-log {
  position: absolute;
  bottom: 32px;
  left: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pre-log-line {
  opacity: 0.5;
}

.pre-log-current::after {
  content: '▮';
  margin-left: 8px;
  animation: pre-caret 1.1s steps(2) infinite;
}

@keyframes pre-caret {
  50% { opacity: 0; }
}

.mq-strip {
  position: relative;
  z-index: 10;
  padding: clamp(4rem, 10vh, 7rem) 0;
  overflow: hidden;
}

.mq-label {
  text-align: center;
  margin-bottom: 28px;
  opacity: 0.6;
}

.mq-rows {
  transform: rotate(-1.5deg) scale(1.02);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: rgba(10, 15, 30, 0.6);
}

.mq-row {
  overflow: hidden;
  display: flex;
}

.mq-row-main {
  border-bottom: 1px solid var(--border-glass);
}

.mq-track {
  display: flex;
  flex-shrink: 0;
}

.mq-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 18px 0;
}

.mq-item {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  padding: 0 28px;
  white-space: nowrap;
}

.mq-item-sep {
  color: var(--color-secondary);
}

.mq-row-alt .mq-group {
  padding: 13px 0;
}

.mq-row-alt .mq-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 22px;
}

.hud {
  position: fixed;
  left: 28px;
  bottom: 24px;
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
}

.hud-phase-mask {
  overflow: hidden;
  display: inline-block;
}

.hud-phase {
  display: inline-block;
}

@media (max-width: 768.98px), (max-height: 500px) {
  .hud {
    display: none;
  }
}

html.reduced-motion .hud {
  display: none;
}

.cursor-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
}

#cursor.labeled {
  background-color: rgba(2, 4, 8, 0.55);
  border: 1px solid rgba(6, 182, 212, 0.5);
  mix-blend-mode: normal;
}

#cursor.labeled .cursor-label {
  opacity: 1;
  transition: opacity 0.2s ease 0.1s;
}

.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  width: 100%;
}

.sol-section {
  position: relative;
  z-index: 10;
}

.sol-intro {
  padding-bottom: 0;
  margin-bottom: -4rem;
}

.sol-outro {
  padding-top: clamp(2rem, 5vh, 3.5rem);
}

.sol-stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.sol-track {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.6vw, 44px);
  padding-inline: max(24px, calc((100vw - 1400px) / 2));
}

.sol-card {
  position: relative;
  isolation: isolate;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: clamp(340px, 38vw, 520px);
  height: min(62vh, 620px);
  min-height: 460px;
  padding: 40px;
  border-radius: 24px;
  overflow: hidden;
  transition: none;
}

.sol-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  border-radius: inherit;
  background: radial-gradient(240px circle at var(--sol-mx, 50%) var(--sol-my, 50%), rgba(6, 182, 212, 0.9), rgba(59, 130, 246, 0.35) 45%, transparent 75%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.sol-card:hover::before {
  opacity: 1;
}

.sol-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--sol-mx, 50%) var(--sol-my, 50%), rgba(6, 182, 212, 0.07), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.sol-card:hover::after {
  opacity: 1;
}

.sol-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(20px, 4vh, 36px);
}

.sol-card-mod {
  color: var(--text-muted);
}

.sol-card-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
  animation: sol-pulse 1.6s ease-in-out infinite alternate;
}

@keyframes sol-pulse {
  from { opacity: 0.4; transform: scale(0.75); }
  to { opacity: 1; transform: scale(1.15); }
}

.sol-card-ghost {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  z-index: -1;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 9rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.sol-card-icon {
  width: 46px;
  height: 46px;
  color: #60a5fa;
  margin-bottom: clamp(20px, 3.4vh, 32px);
  filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.35));
}

.sol-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 14px;
}

.sol-card-desc {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 42ch;
}

.sol-card-metric {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.sol-card-metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  letter-spacing: -0.02em;
  color: var(--color-secondary);
  text-shadow: 0 0 24px rgba(6, 182, 212, 0.35);
}

.sol-card-metric-label {
  color: var(--text-muted);
}

.sol-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
  text-decoration: none;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.sol-card-link:hover {
  color: #fff;
}

.sol-card-link-arrow {
  transition: transform 0.3s ease;
}

.sol-card-link:hover .sol-card-link-arrow {
  transform: translateX(5px);
}

.sol-card-cta {
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  background: linear-gradient(150deg, rgba(6, 182, 212, 0.12), rgba(10, 15, 30, 0.5) 55%, rgba(10, 15, 30, 0.35));
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(6, 182, 212, 0.4);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5), inset 0 0 80px rgba(6, 182, 212, 0.05);
}

.sol-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 13ch;
}

.sol-cta-accent {
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sol-progress {
  position: absolute;
  left: max(24px, calc((100vw - 1400px) / 2));
  bottom: clamp(24px, 6vh, 56px);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sol-progress-count {
  display: inline-flex;
  align-items: baseline;
  color: var(--text-muted);
}

.sol-progress-mask {
  display: inline-block;
  overflow: hidden;
}

.sol-progress-current {
  display: inline-block;
  color: #fff;
}

.sol-progress-rail {
  position: relative;
  display: block;
  width: clamp(140px, 16vw, 220px);
  height: 2px;
  background: var(--border-glass);
}

.sol-progress-fill {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transform-origin: left center;
}

.sol-progress-tick {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.7);
}

.sol-progress-tick:nth-child(2) { left: 0; }
.sol-progress-tick:nth-child(3) { left: 20%; }
.sol-progress-tick:nth-child(4) { left: 40%; }
.sol-progress-tick:nth-child(5) { left: 60%; }
.sol-progress-tick:nth-child(6) { left: 80%; }

@media (max-width: 1100px) {
  .sol-card {
    padding: 32px;
  }
  .sol-card-ghost {
    font-size: 7.5rem;
  }
}

@media (max-width: 768.98px), (max-height: 500px) {
  .sol-intro {
    margin-bottom: 3rem;
  }
  .sol-stage {
    height: auto;
    display: block;
    overflow: visible;
    padding-inline: 24px;
  }
  .sol-track {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-inline: 0;
  }
  .sol-card {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 28px;
  }
  .sol-card-ghost {
    font-size: 6.2rem;
    top: 0.5rem;
    right: 0.8rem;
  }
  .sol-card-desc {
    max-width: none;
  }
  .sol-card-metric {
    padding-top: 28px;
  }
  .sol-cta-title {
    max-width: none;
  }
  .sol-progress {
    display: none;
  }
}

.dif-section {
  overflow-x: clip;
}

.dif-split {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(48px, 7vw, 120px);
}

.dif-sticky {
  position: sticky;
  top: 20vh;
}

.dif-heading .dim {
  display: block;
}

.dif-sub {
  margin-top: 28px;
}

.dif-right {
  min-width: 0;
  padding-top: 4vh;
}

.dif-row {
  position: relative;
  margin-bottom: 22vh;
}

.dif-row:last-of-type {
  margin-bottom: 0;
}

.dif-ghost {
  position: absolute;
  top: 50%;
  right: -4%;
  z-index: 0;
  margin-top: -0.5em;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 18vw;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  opacity: 0.04;
  pointer-events: none;
}

.dif-row-inner {
  position: relative;
  z-index: 1;
}

.dif-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(28px, 5vh, 52px);
}

.dif-hairline {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--border-glass);
}

.dif-row-index {
  flex: none;
}

.dif-data {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px clamp(32px, 4vw, 72px);
}

.dif-value {
  display: flex;
  align-items: baseline;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.dif-digits {
  font-variant-numeric: tabular-nums;
}

.dif-sign,
.dif-unit {
  display: inline-block;
  color: var(--color-secondary);
  text-shadow: 0 0 32px rgba(6, 182, 212, 0.35);
}

.dif-sign {
  margin-right: 0.02em;
}

.dif-unit {
  font-size: 0.5em;
  margin-left: 0.08em;
}


.dif-meta {
  flex: 1 1 240px;
  max-width: 340px;
  padding-bottom: 0.4em;
}

.dif-label {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.dif-copy {
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 40ch;
}

.dif-source {
  display: inline-flex;
  margin-top: 16px;
  padding: 5px 10px;
  border: 1px solid var(--border-glass);
  border-radius: 4px;
}

.dif-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 20px clamp(32px, 5vw, 72px);
  margin-top: clamp(6rem, 18vh, 13rem);
}

.dif-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.dif-check-mark {
  color: var(--color-secondary);
}

.dif-exit {
  margin-top: clamp(5rem, 12vh, 9rem);
}

@media (max-width: 768.98px), (max-height: 500px) {
  .dif-split {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .dif-sticky {
    position: static;
  }
  .dif-right {
    padding-top: 0;
  }
  .dif-row {
    margin-bottom: 48px;
  }
  .dif-row:last-of-type {
    margin-bottom: 0;
  }
  .dif-ghost {
    font-size: 38vw;
    right: -2%;
    opacity: 0.05;
  }
  .dif-data {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .dif-meta {
    max-width: none;
    padding-bottom: 0;
  }
  .dif-checklist {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 56px;
  }
  .dif-exit {
    margin-top: 4rem;
  }
}

.tec-section {
  padding: 0;
}

.tec-stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

@supports (height: 100svh) {
  .tec-stage {
    height: 100svh;
  }
}

.tec-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(2, 4, 8, 0) 52%, rgba(2, 4, 8, 0.5) 100%);
}

.tec-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tec-ghost {
  position: absolute;
  top: 7vh;
  right: 3vw;
  z-index: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(9rem, 16vw, 15rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.tec-header {
  max-width: 860px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tec-overline {
  width: min(440px, 72vw);
}

.tec-heading {
  text-wrap: balance;
}

.tec-header .section-sub {
  margin: 28px auto 0;
}

.tec-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(44px, 8vh, 90px);
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.tec-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
}

.tec-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.35s ease, color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.tec-chip-dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.tec-chip-lit {
  border-color: rgba(6, 182, 212, 0.45);
  color: var(--text-primary);
  background: rgba(6, 182, 212, 0.07);
  box-shadow: 0 0 22px rgba(6, 182, 212, 0.14), inset 0 0 12px rgba(6, 182, 212, 0.06);
}

.tec-chip-lit .tec-chip-dot {
  background: #06b6d4;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.95);
}

.tec-readout {
  position: absolute;
  left: clamp(24px, 4vw, 56px);
  top: clamp(104px, 13vh, 150px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.tec-readout-rail {
  display: block;
  width: 110px;
  height: 2px;
  background: var(--border-glass);
  overflow: hidden;
}

.tec-readout-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.tec-readout-value {
  color: var(--text-secondary);
}

.tec-readout-count {
  color: rgba(6, 182, 212, 0.8);
}

.tec-exit {
  max-width: 1400px;
  margin-inline: auto;
  padding: 40px 24px 64px;
}

@media (max-width: 768.98px), (max-height: 500px) {
  .tec-readout {
    display: none;
  }

  .tec-ghost {
    top: 5vh;
    right: 2vw;
    font-size: clamp(6.5rem, 24vw, 10rem);
  }

  .tec-header {
    max-width: 100%;
  }

  .tec-inner {
    padding-bottom: 310px;
  }

  .tec-foot {
    bottom: clamp(30px, 6vh, 56px);
  }

  .tec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 460px;
  }

  .tec-chip {
    justify-content: flex-start;
    padding: 10px 14px;
  }

  .tec-exit {
    padding: 32px 24px 48px;
  }
}

.sob-section {
  overflow: hidden;
}

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

.sob-ghost {
  position: absolute;
  top: -1rem;
  right: -1vw;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(11rem, 22vw, 20rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
  pointer-events: none;
  z-index: -1;
}

.sob-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-top: clamp(2rem, 5vh, 3.5rem);
}

.sob-manifesto {
  max-width: 72ch;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.sob-manifesto .sob-key {
  color: var(--color-secondary);
}

.sob-station {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
  padding-top: 0.6rem;
}

.sob-coords {
  white-space: nowrap;
}

.sob-radar {
  flex: none;
  display: block;
}

.sob-radar-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
}

.sob-radar-axis {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.sob-radar-wedge {
  fill: rgba(6, 182, 212, 0.16);
}

.sob-radar-beam {
  stroke: rgba(6, 182, 212, 0.85);
  stroke-width: 1;
  stroke-linecap: round;
}

.sob-radar-sweep {
  transform-origin: 14px 14px;
  animation: sob-radar-spin 4s linear infinite;
}

.sob-radar-blip {
  fill: var(--color-secondary);
  animation: sob-radar-blip 4s linear infinite;
}

@keyframes sob-radar-spin {
  to { transform: rotate(360deg); }
}

@keyframes sob-radar-blip {
  0%, 12% { opacity: 0.15; }
  16% { opacity: 1; }
  55% { opacity: 0.3; }
  100% { opacity: 0.15; }
}

.sob-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(5rem, 12vh, 8rem);
}

.sob-card {
  height: 100%;
  border-radius: 20px;
  padding: clamp(26px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sob-card:hover {
  border-color: rgba(6, 182, 212, 0.32);
  background: rgba(12, 20, 38, 0.55);
  box-shadow: 0 16px 50px rgba(6, 182, 212, 0.08);
}

.sob-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sob-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
  animation: sob-dot-pulse 1.8s ease-in-out infinite alternate;
}

@keyframes sob-dot-pulse {
  from { opacity: 0.45; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1.15); }
}

.sob-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--text-primary);
}

.sob-card-copy {
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.sob-sectors {
  margin-top: clamp(4rem, 9vh, 6rem);
}

.sob-sectors-label {
  display: block;
  margin-bottom: 18px;
}

.sob-sectors-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sob-exit {
  margin-top: clamp(5rem, 10vh, 7rem);
}

.sob-horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44vh;
  pointer-events: none;
  z-index: 0;
  background: none;
}

@media (max-width: 900px) {
  .sob-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768.98px), (max-height: 500px) {
  .sob-ghost {
    display: none;
  }
  .sob-head {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .sob-station {
    justify-self: start;
    padding-top: 0;
  }
  .sob-manifesto {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }
  .sob-cards {
    margin-top: 4rem;
  }
  .sob-sectors {
    margin-top: 3.5rem;
  }
  .sob-exit {
    margin-top: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sob-radar-sweep,
  .sob-radar-blip,
  .sob-card-dot {
    animation: none;
  }
}

.con-section {
  overflow: hidden;
}

.con-ghost {
  position: absolute;
  top: -2rem;
  right: -3rem;
  z-index: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(12rem, 24vw, 22rem);
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.con-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 520px);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.con-left {
  max-width: 580px;
}

.con-heading {
  margin-bottom: 24px;
}

.con-heading .accent {
  display: block;
}

.con-channels {
  list-style: none;
  margin-top: clamp(2.5rem, 5vh, 3.5rem);
}

.con-channel {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 2px;
  border-bottom: 1px solid var(--border-glass);
  transition: border-color 0.3s ease;
}

.con-channel:first-child {
  border-top: 1px solid var(--border-glass);
}

.con-channel:hover {
  border-color: rgba(6, 182, 212, 0.35);
}

.con-channel-key {
  flex-shrink: 0;
  color: var(--text-muted);
}

.con-channel-value {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-align: right;
}

.con-channel-text {
  color: var(--text-secondary);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: none;
  transition: color 0.3s ease;
}

a.con-channel-value:hover .con-channel-text {
  color: #fff;
}

.con-channel-arrow {
  display: inline-block;
  color: var(--color-secondary);
  transition: transform 0.3s ease;
}

a.con-channel-value:hover .con-channel-arrow {
  transform: translateX(5px);
}

.con-status {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px;
}

.con-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.9);
  animation: con-pulse 1.5s ease-in-out infinite alternate;
}

.con-status-text {
  color: var(--text-secondary);
}

.con-clock {
  margin-left: auto;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

@keyframes con-pulse {
  from { transform: scale(0.75); opacity: 0.55; }
  to { transform: scale(1.25); opacity: 1; }
}

.con-console {
  border-radius: 20px;
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.con-console-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-glass);
}

.con-console-dots {
  display: flex;
  gap: 7px;
}

.con-console-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.con-console-dots span:nth-child(1) { background: rgba(239, 68, 68, 0.85); }
.con-console-dots span:nth-child(2) { background: rgba(245, 158, 11, 0.85); }
.con-console-dots span:nth-child(3) { background: rgba(16, 185, 129, 0.85); }

.con-console-title {
  text-transform: lowercase;
}

.con-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 30px 28px 34px;
}

.con-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.con-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.con-field-index {
  color: #60a5fa;
  transition: color 0.3s ease;
}

.con-label.is-focus,
.con-label.is-focus .con-field-index {
  color: var(--color-secondary);
}

.con-field.is-valid .con-field-index {
  color: var(--color-secondary);
}

.con-field.is-error .con-field-index {
  color: #ef4444;
}

.con-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-glass);
  border-radius: 0;
  padding: 4px 2px 12px;
  color: var(--text-primary);
  font-family: 'Inter', 'Inter Fallback', system-ui, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  caret-color: var(--color-secondary);
  user-select: text;
  -webkit-user-select: text;
}

.con-control::placeholder {
  color: var(--text-placeholder);
  opacity: 1;
}

.con-control:focus {
  outline: none;
}

.con-control:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  transition: background-color 999999s ease-out;
}

textarea.con-control {
  resize: none;
  min-height: 88px;
}

.con-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  pointer-events: none;
}

.con-submit {
  width: 100%;
  margin-top: 6px;
  transition: box-shadow 0.3s ease;
}

.con-submit .btn-primary-beam-inner {
  width: 100%;
}

.con-submit-label {
  display: inline-block;
}

.con-submit.is-confirmed .con-submit-label {
  color: var(--color-secondary);
}

.foot {
  position: relative;
  z-index: 10;
  padding: clamp(4rem, 9vh, 6.5rem) 24px 44px;
  overflow: hidden;
}

.foot-hairline {
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.foot-stage {
  position: relative;
}

.foot-wordmark {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: min(80vw, 640px);
  margin-inline: auto;
  padding-bottom: 24px;
}

.foot-logo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: clamp(3rem, 7vh, 5rem);
}

.foot-col-title {
  display: block;
  margin-bottom: 18px;
}

.foot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.foot-link:hover {
  color: #fff;
}

.foot-link-static {
  color: var(--text-secondary);
}

.foot-link-plain {
  text-transform: none;
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: clamp(3rem, 6vh, 4rem);
  padding-top: 28px;
  border-top: 1px solid var(--border-glass);
}

.foot-copy {
  color: var(--text-secondary);
}

.foot-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 999px;
  color: rgba(6, 182, 212, 0.85);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.08);
}

.foot-seal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
  animation: con-pulse 1.6s ease-in-out infinite alternate;
}

.foot-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: none;
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  color: var(--text-secondary);
  cursor: none;
  transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.foot-top:hover {
  color: #fff;
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.15);
}

.foot-top-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.foot-top:hover .foot-top-arrow {
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .con-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .con-left {
    max-width: none;
  }
}

@media (max-width: 768.98px), (max-height: 500px) {
  .con-ghost {
    top: 2.5rem;
    right: -1.5rem;
    font-size: clamp(9rem, 34vw, 12rem);
  }
  .con-form {
    padding: 24px 20px 28px;
    gap: 22px;
  }
  .con-status {
    margin-top: 36px;
  }
  .con-clock {
    margin-left: 0;
    width: 100%;
  }
  .foot-cols {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 40px;
  }
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

[data-magnetic] {
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.mtoggle-close {
  display: none;
}

html.menu-open .mtoggle-open {
  display: none;
}

html.menu-open .mtoggle-close {
  display: block;
}

html.menu-open {
  overflow: hidden;
}

.mmenu {
  position: fixed;
  inset: 0;
  z-index: 58;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  padding: 96px 32px 48px;
  background: rgba(2, 4, 8, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

html.menu-open .mmenu {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.mmenu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mmenu-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 9vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

html.menu-open .mmenu-link {
  opacity: 1;
  transform: translateY(0);
}

html.menu-open .mmenu-link:nth-child(1) { transition-delay: 0.05s; }
html.menu-open .mmenu-link:nth-child(2) { transition-delay: 0.1s; }
html.menu-open .mmenu-link:nth-child(3) { transition-delay: 0.15s; }
html.menu-open .mmenu-link:nth-child(4) { transition-delay: 0.2s; }
html.menu-open .mmenu-link:nth-child(5) { transition-delay: 0.25s; }

.mmenu-cta {
  color: #60a5fa;
}

.mmenu-tag {
  opacity: 0.6;
}

@media (min-width: 769px) {
  .mmenu {
    display: none;
  }
}

@media (max-width: 480px) {
  .overline-label {
    white-space: normal;
  }
}

.con-control {
  font-size: 16px;
}

.con-control:focus-visible {
  outline: 1px solid rgba(6, 182, 212, 0.7);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.con-form-status {
  min-height: 18px;
  margin-top: 12px;
  color: #f87171;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  #preloader, #cursor, #gl, #hud, .noise-overlay, .liquid-blob-container, .mq-strip, .mmenu, .main-header {
    display: none !important;
  }
  html, body {
    background: #ffffff;
    color: #000000;
    cursor: auto;
  }
}

html.no-gsap,
html.no-gsap body {
  cursor: auto;
}

html.no-gsap #cursor,
html.no-gsap #hud {
  display: none;
}

html.no-gsap a,
html.no-gsap button,
html.no-gsap input,
html.no-gsap textarea,
html.no-gsap select,
html.no-gsap label {
  cursor: auto;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links {
    gap: 18px;
  }

  .nav-link {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .nav-cta-btn {
    padding: 9px 14px;
    font-size: 10px;
  }

  .nav-logo img {
    height: 32px;
  }
}
