:root {
  --bg-color: #030507;
  --bg-soft: #070b12;
  --surface-color: rgba(10, 14, 20, 0.82);
  --surface-2: rgba(255, 255, 255, 0.03);
  --text-main: #f4f8ff;
  --text-muted: #a6b7c9;
  --text-dim: #728198;
  --accent-green: #58d223;
  --accent-green-2: #1b8f2f;
  --accent-blue: #0b66ff;
  --accent-warm: #89c8ff;
  --border-color: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(88, 210, 35, 0.28);
  --shadow-xl: 0 40px 120px rgba(0, 0, 0, 0.45);
  --font-sans: 'Manrope', sans-serif;
  --font-tech: 'Sora', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 15% 10%, rgba(11, 102, 255, 0.14), transparent 35%),
    radial-gradient(circle at 80% 15%, rgba(88, 210, 35, 0.10), transparent 42%),
    radial-gradient(circle at 50% 120%, rgba(8, 29, 77, 0.35), transparent 55%),
    var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.55;
}

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

ul {
  list-style: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
  z-index: 10002;
  box-shadow: 0 0 18px rgba(88, 210, 35, 0.45);
}

.preloader {
  position: fixed;
  inset: 0;
  background: #020303;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-content {
  width: min(360px, 85vw);
}

.terminal-text {
  font-family: var(--font-tech);
  color: var(--accent-green);
  font-size: 0.78rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  margin-bottom: 8px;
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
  width: 0%;
  transition: width 0.12s linear;
}

.progress-perc {
  font-family: var(--font-tech);
  color: var(--text-muted);
  font-size: 0.72rem;
  text-align: right;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: soft-light;
  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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.blueprint-lines {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
  z-index: 0;
}

.blueprint-lines .line {
  width: 1px;
  height: 100vh;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.04) 10%, rgba(255, 255, 255, 0.03) 90%, transparent);
}

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.18s, height 0.18s, background-color 0.18s;
  box-shadow: 0 0 12px rgba(88, 210, 35, 0.55);
}

.cursor-follower {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(88, 210, 35, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.18s, height 0.18s, border-color 0.18s, background-color 0.18s;
}

.cursor.hovered {
  width: 11px;
  height: 11px;
  background: #fff;
}

.cursor-follower.hovered {
  width: 50px;
  height: 50px;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

.content-wrapper {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(3, 5, 7, 0.9), rgba(3, 5, 7, 0.98));
  box-shadow: 0 10px 70px rgba(0, 0, 0, 0.65);
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background:
    radial-gradient(circle at 25% 30%, rgba(11, 102, 255, 0.11), transparent 58%),
    radial-gradient(circle at 75% 20%, rgba(88, 210, 35, 0.08), transparent 55%),
    #030406;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  padding: 72px 5%;
  text-align: center;
}

.footer-content {
  max-width: 820px;
}

.footer-logo {
  font-size: 2rem;
  justify-content: center;
}

.footer-content p {
  margin-top: 16px;
  color: var(--text-muted);
}

.footer-meta {
  margin-top: 30px;
  color: var(--text-dim);
  font-size: 0.82rem;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

nav.scrolled {
  background: rgba(5, 7, 8, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border-color);
  padding: 14px 5%;
}

.logo {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
}

.logo-r {
  color: var(--accent-green);
}

.logo-cam {
  color: #3f5fb8;
}

.logo-dot {
  color: var(--accent-green);
}

.logo-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
  flex-shrink: 0;
}

.footer-logo .logo-mark {
  width: 44px;
  height: 44px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.83rem;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

@media (min-width: 769px) {
  nav {
    justify-content: flex-start;
  }

  .nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
  }
}

.mobile-btn-link {
  display: none;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 6px;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 26px;
  height: 2px;
  background: var(--text-main);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: linear-gradient(180deg, rgba(88, 210, 35, 0.14), rgba(88, 210, 35, 0.03));
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.08), transparent 50%);
  transform: translateX(-110%);
  transition: transform 0.7s ease;
}

.btn:hover::before {
  transform: translateX(110%);
}

.btn:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 1px rgba(88, 210, 35, 0.12), 0 16px 30px rgba(88, 210, 35, 0.08);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 5% 80px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 20%, rgba(6, 7, 8, 0.65) 62%, var(--bg-color) 100%),
    linear-gradient(180deg, rgba(6, 7, 8, 0.25), rgba(6, 7, 8, 0.94));
  z-index: 1;
  pointer-events: none;
}

.hero-grid-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 45%, black 20%, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  display: grid;
  gap: 22px;
  justify-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid rgba(11, 102, 255, 0.22);
  background: rgba(8, 14, 19, 0.58);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-badge-brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-badge-items {
  font-size: 0.64rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.hero-badge-items-extra {
  color: rgba(137, 200, 255, 0.9);
}

.hero-title {
  font-family: var(--font-tech);
  font-size: clamp(2.2rem, 5.1vw, 4.9rem);
  line-height: 1.05;
  max-width: 980px;
  letter-spacing: -1.5px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-title-brand {
  font-size: clamp(3rem, 9vw, 7.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.95;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 0.08em;
  padding: 0 0.08em 0.06em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero-title-logo {
  width: auto;
  height: 1.18em;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  margin-right: 0.05em;
  transform: translateY(0.03em);
}

.hero-title-r {
  color: var(--accent-green);
  text-shadow: 0 0 18px rgba(88, 210, 35, 0.18);
}

.hero-title-cam {
  color: var(--accent-blue);
  text-shadow: 0 0 18px rgba(11, 102, 255, 0.18);
}

.hero-subtitle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 980px;
  color: var(--text-muted);
  font-family: var(--font-tech);
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.15;
}

.hero-subtitle-label {
  color: rgba(244, 248, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.46em;
  font-weight: 600;
}

.hero-subtitle-sep {
  color: rgba(137, 200, 255, 0.7);
  font-size: 0.7em;
  line-height: 1;
}

.hero-subtitle-swap {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #d9f5ff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.hero-description {
  max-width: 820px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.gradient-text {
  color: var(--accent-green);
}

.text-swap-container {
  display: inline-grid;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  min-height: 1.12em;
  min-width: min(34ch, 92vw);
  justify-items: center;
}

.swap-word {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(100%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.hero-signals {
  max-width: 820px;
}

.hero-signals .contact-tag {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.07);
}

.hero-panels {
  margin-top: 10px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-panel {
  text-align: left;
  background: linear-gradient(180deg, rgba(14, 18, 22, 0.76), rgba(10, 12, 15, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 16px 16px 14px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.panel-label {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 0.65rem;
  color: var(--accent-blue);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-panel h3 {
  font-family: var(--font-tech);
  font-size: 1rem;
  margin-bottom: 8px;
}

.hero-panel p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.ui-element {
  position: absolute;
  font-family: var(--font-tech);
  color: var(--accent-green);
  font-size: 0.75rem;
  letter-spacing: 1.8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  opacity: 0.72;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.ui-element span {
  color: var(--text-dim);
  font-size: 0.63rem;
}

.coord-1 {
  top: 22%;
  left: 7%;
  text-align: left;
}

.coord-2 {
  bottom: 23%;
  right: 7%;
  text-align: right;
}

.ui-line {
  width: 44px;
  height: 1px;
  margin-top: 7px;
  background: linear-gradient(90deg, var(--accent-green), transparent);
  opacity: 0.7;
}

.coord-2 .ui-line {
  margin-left: auto;
  background: linear-gradient(90deg, transparent, var(--accent-green));
}

.scroll-cue {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--text-muted);
  text-decoration: none;
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
}

.scroll-cue i {
  display: block;
  width: 28px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  background: rgba(255, 255, 255, 0.015);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 5px;
  height: 9px;
  border-radius: 99px;
  background: var(--accent-green);
  transform: translateX(-50%);
  animation: cuePulse 1.5s ease-in-out infinite;
}

@keyframes cuePulse {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  60% { transform: translateX(-50%) translateY(13px); opacity: 0.3; }
  100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(10, 13, 15, 0.65);
  backdrop-filter: blur(10px);
}

.marquee-track {
  display: inline-block;
  animation: scrollMarquee 28s linear infinite;
  font-family: var(--font-tech);
  color: var(--accent-green);
  font-size: 0.78rem;
  letter-spacing: 1.6px;
}

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

section {
  position: relative;
  z-index: 2;
  padding: 110px 5%;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.004));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.eyebrow {
  font-family: var(--font-tech);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  font-size: 0.76rem;
}

.section-title {
  font-family: var(--font-tech);
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.6px;
  max-width: 950px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 780px;
  font-size: 0.98rem;
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card,
.service-card,
.metric-card,
.tech-card,
.video-card,
.source-card,
.faq-item,
.deliverables-panel {
  background: linear-gradient(180deg, rgba(16, 20, 23, 0.86), rgba(12, 14, 17, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.insight-card {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.insight-card.featured {
  border-color: rgba(88, 210, 35, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 0 0 1px rgba(88, 210, 35, 0.08);
}

.insight-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-tech);
}

.insight-card h3 {
  font-family: var(--font-tech);
  font-size: 1.08rem;
}

.insight-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.insight-card ul {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.insight-card li {
  color: var(--text-main);
  font-size: 0.88rem;
  position: relative;
  padding-left: 14px;
}

.insight-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-green);
}

.metrics-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: start;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 18px;
}

.metric-value {
  font-family: var(--font-tech);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent-green);
  margin-bottom: 10px;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  padding: 22px 20px;
  display: grid;
  gap: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.insight-card:hover,
.tech-card:hover,
.video-card:hover,
.source-card:hover,
.metric-card:hover,
.faq-item:hover,
.deliverables-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(88, 210, 35, 0.2);
}

.service-icon {
  font-size: 1.6rem;
  color: var(--accent-green);
}

.service-title {
  font-family: var(--font-tech);
  font-size: 1.02rem;
  line-height: 1.25;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(88, 210, 35, 0.08);
  border: 1px solid rgba(88, 210, 35, 0.14);
  color: #e6ffd8;
  font-size: 0.73rem;
  line-height: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(14, 17, 20, 0.75), rgba(11, 13, 15, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-step {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 210, 35, 0.08);
  color: var(--accent-green);
  border: 1px solid rgba(88, 210, 35, 0.14);
  font-family: var(--font-tech);
  font-size: 0.8rem;
}

.timeline-item h3 {
  font-family: var(--font-tech);
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.deliverables-panel {
  padding: 20px;
  position: sticky;
  top: 88px;
  display: grid;
  gap: 12px;
}

.panel-title {
  font-family: var(--font-tech);
  font-size: 1.02rem;
}

.panel-copy {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.deliverables-list {
  display: grid;
  gap: 9px;
}

.deliverables-list li {
  position: relative;
  padding-left: 14px;
  color: var(--text-main);
  font-size: 0.88rem;
}

.deliverables-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.info-box {
  margin-top: 4px;
  border-radius: 14px;
  border: 1px solid rgba(11, 102, 255, 0.2);
  background: rgba(11, 102, 255, 0.06);
  padding: 12px;
}

.info-box strong {
  display: block;
  color: var(--accent-warm);
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.info-box p {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tech-card {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.tech-num {
  font-family: var(--font-tech);
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 1.3px;
}

.tech-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  overflow: hidden;
}

.video-frame {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.video-copy h3 {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  line-height: 1.28;
}

.video-copy p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text-main);
  text-align: left;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 0.98rem;
}

.faq-question span {
  font-weight: 600;
}

.faq-question i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  flex-shrink: 0;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--text-muted);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-question i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: var(--text-muted);
  padding: 0 18px 16px;
  font-size: 0.92rem;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.source-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
}

.source-badge {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  color: var(--accent-blue);
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.source-card h3 {
  font-family: var(--font-tech);
  font-size: 0.95rem;
}

.source-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 18px;
  background:
    radial-gradient(circle at 14% 16%, rgba(11, 102, 255, 0.12), transparent 45%),
    radial-gradient(circle at 88% 12%, rgba(88, 210, 35, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(8, 11, 15, 0.92), rgba(5, 7, 10, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.contact-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.03), transparent 52%);
  transform: translateX(-120%);
  animation: mapSweep 9s ease-in-out infinite;
  pointer-events: none;
}

.contact-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-info-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.contact-list {
  display: grid;
  gap: 8px;
}

.contact-list li {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-list li strong {
  color: var(--text-main);
  font-weight: 600;
}

.contact-note {
  color: var(--text-dim);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 10px;
}

.map-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(14, 18, 20, 0.84), rgba(10, 12, 14, 0.72));
  min-height: 520px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 24px 60px rgba(0, 0, 0, 0.34);
}

.map-card-premium::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(11, 102, 255, 0.28), rgba(88, 210, 35, 0.22), rgba(255, 255, 255, 0.06));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.map-frame {
  position: relative;
  min-height: 380px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.08) saturate(0.9) contrast(1.02) brightness(0.92);
  transform: scale(1.03);
}

.map-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 56% 44%, black 22%, transparent 82%);
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 30%, rgba(11, 102, 255, 0.13), transparent 42%),
    radial-gradient(circle at 62% 50%, rgba(88, 210, 35, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(3, 5, 7, 0.03), rgba(3, 5, 7, 0.28));
}

.map-float-panel {
  position: absolute;
  z-index: 4;
  left: 20px;
  top: 20px;
  max-width: min(420px, calc(100% - 40px));
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 0% 0%, rgba(11, 102, 255, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(7, 10, 15, 0.86), rgba(7, 10, 15, 0.72));
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  animation: panelFloat 5.5s ease-in-out infinite;
}

.map-float-panel h3 {
  font-family: var(--font-tech);
  font-size: 1rem;
  margin: 6px 0 8px;
}

.map-float-panel p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.map-float-meta {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 4px;
}

.map-float-meta span {
  color: var(--text-dim);
  font-family: var(--font-tech);
  font-size: 0.69rem;
  letter-spacing: 0.7px;
}

.map-meta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.004));
}

.map-meta h3 {
  font-family: var(--font-tech);
  font-size: 1rem;
  margin-top: 4px;
}

.map-meta p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.map-meta-main {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.map-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.map-feature-pill {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0.008));
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.25;
}

.map-coords {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  align-content: start;
}

.map-kv-row {
  display: grid;
  gap: 4px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.map-kv-row:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.map-kv-label {
  font-family: var(--font-tech);
  color: var(--text-dim);
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.map-kv-value {
  color: var(--text-main);
  font-size: 0.86rem;
  line-height: 1.35;
  text-wrap: pretty;
}

@keyframes panelFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes mapSweep {
  0%, 100% {
    transform: translateX(-120%);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  50% {
    transform: translateX(120%);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
}

.contact-desc {
  margin-top: 6px;
}

.contact-highlights {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.contact-tag {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-size: 0.82rem;
}

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

.form-group.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #74838d;
}

input:focus,
textarea:focus {
  border-color: rgba(88, 210, 35, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

textarea {
  resize: vertical;
  min-height: 132px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #58d223, #1b8f2f);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 28px rgba(27, 143, 47, 0.38), 0 0 0 6px rgba(27, 143, 47, 0.1);
  z-index: 9997;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 34px rgba(27, 143, 47, 0.42), 0 0 0 8px rgba(27, 143, 47, 0.12);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: #fff;
}

@media (max-width: 1200px) {
  .hero-panels {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .split-cards,
  .services-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-wrap,
  .process-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .deliverables-panel {
    position: static;
    top: auto;
  }
}

@media (max-width: 992px) {
  section {
    padding: 84px 5%;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-content {
    gap: 18px;
  }

  .hero-title-brand {
    font-size: clamp(3.2rem, 11vw, 5.8rem);
    letter-spacing: 0.05em;
    gap: 0.07em;
  }

  .hero-title-logo {
    height: 1.08em;
  }

  .hero-subtitle {
    font-size: clamp(1.15rem, 3.6vw, 1.7rem);
    gap: 8px;
  }

  .hero-subtitle-swap {
    font-weight: 700;
  }

  .text-swap-container {
    min-width: min(30ch, 88vw);
  }

  .coord-1,
  .coord-2 {
    display: none;
  }
}

@media (max-width: 768px) {
  * {
    cursor: auto !important;
  }

  .cursor,
  .cursor-follower {
    display: none !important;
  }

  .desktop-btn {
    display: none;
  }

  .mobile-btn-link {
    display: inline-block;
    color: var(--accent-green) !important;
  }

  .menu-toggle {
    display: flex;
    opacity: 0.86;
  }

  nav {
    background: linear-gradient(180deg, rgba(3, 5, 7, 0.34), rgba(3, 5, 7, 0.04));
    backdrop-filter: blur(6px);
  }

  nav.scrolled {
    background: rgba(5, 7, 8, 0.46);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
  }

  .logo {
    opacity: 0.9;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(86vw, 320px);
    height: 100vh;
    background: rgba(10, 12, 14, 0.98);
    border-left: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    letter-spacing: -0.8px;
  }

  #hero-canvas {
    opacity: 0.98;
    transform: scale(1.1);
    transform-origin: center 46%;
  }

  #hero-canvas canvas {
    filter: saturate(1.18) brightness(1.08) contrast(1.06);
  }

  .hero-overlay {
    background:
      radial-gradient(circle at center, transparent 14%, rgba(6, 7, 8, 0.4) 56%, rgba(3, 5, 7, 0.92) 100%),
      linear-gradient(180deg, rgba(6, 7, 8, 0.1), rgba(6, 7, 8, 0.78));
  }

  .hero-grid-glow {
    opacity: 0.13;
    background-size: 42px 42px;
  }

  .hero-content {
    gap: 16px;
  }

  .hero-title-brand {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
    line-height: 0.92;
    gap: 0.08em;
    padding: 0.02em 0.08em 0.08em;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .hero-title-logo {
    height: 1.28em;
    margin-right: 0.06em;
    transform: translateY(0.02em);
  }

  .hero-subtitle {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    font-size: clamp(1.05rem, 5.1vw, 1.5rem);
    line-height: 1.08;
    padding: 0 4px;
  }

  .hero-subtitle-label {
    font-size: 0.5em;
    letter-spacing: 0.2em;
    color: rgba(244, 248, 255, 0.78);
  }

  .hero-subtitle-sep {
    display: none;
  }

  .hero-subtitle-swap {
    width: 100%;
    max-width: 22ch;
    font-size: 1.26em;
    font-weight: 700;
    text-shadow: 0 10px 28px rgba(27, 143, 47, 0.24), 0 0 16px rgba(11, 102, 255, 0.16);
  }

  .text-swap-container {
    width: 100%;
    min-width: 0;
    min-height: 1.35em;
    justify-items: center;
    padding-bottom: 0.02em;
  }

  .swap-word {
    width: 100%;
    text-align: center;
  }

  .hero-badge {
    width: 100%;
    max-width: 720px;
    padding: 12px 14px;
    border-radius: 18px;
    gap: 6px;
    background: rgba(6, 12, 18, 0.44);
    border-color: rgba(11, 102, 255, 0.14);
    backdrop-filter: blur(8px);
  }

  .hero-badge-items-extra {
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 1.4px;
    text-align: center;
    color: rgba(171, 211, 255, 0.94);
  }

  .hero-description {
    max-width: 92vw;
    font-size: 1.02rem;
    line-height: 1.42;
    color: rgba(244, 248, 255, 0.78);
    text-wrap: balance;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

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

  .hero-signals {
    justify-content: center;
    gap: 10px;
  }

  .hero-signals .contact-tag {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.98rem;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
  }

  .split-cards,
  .services-grid,
  .metric-grid,
  .tech-grid,
  .video-grid,
  .sources-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 42px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .timeline-step {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.72rem;
  }

  .form-group.two-col {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-wrap {
    padding: 16px;
  }

  .map-card {
    min-height: 420px;
  }

  .map-frame {
    min-height: 300px;
  }

  .map-float-panel {
    left: 14px;
    right: 14px;
    top: 14px;
    max-width: none;
    padding: 12px 14px;
  }

  .map-meta {
    grid-template-columns: 1fr;
  }

  .map-meta-main,
  .map-coords {
    padding: 14px;
  }

  .map-feature-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .map-feature-pill {
    font-size: 0.8rem;
    padding: 9px 11px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .scroll-cue i::after,
  .map-float-panel,
  .contact-wrap::before {
    animation: none;
  }

  * {
    scroll-behavior: auto;
  }
}
