:root {
  --bg: #050509;
  --bg-alt: #0b0b12;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --primary: #00e5ff;
  --primary-soft: rgba(0, 229, 255, 0.2);
  --accent: #9d6cff;
  --accent-soft: rgba(157, 108, 255, 0.2);
  --highlight: #a5ff3d;
  --text: #f5f7ff;
  --text-soft: #a3a7c4;
  --danger: #ff3d5b;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 0 40px rgba(0, 0, 0, 0.6);
  --shadow-neon: 0 0 35px rgba(0, 229, 255, 0.45);
  --transition-fast: 160ms ease-out;
  --transition-med: 240ms ease;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: radial-gradient(circle at top, #161622 0, #020208 55%);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #151526 0, #050509 55%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ========= GLOBAL LAYOUT ========= */

.glow-orbit {
  position: fixed;
  inset: -200px;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 229, 255, 0.08), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(157, 108, 255, 0.08), transparent 55%),
    radial-gradient(circle at 50% 80%, rgba(165, 255, 61, 0.05), transparent 55%);
  filter: blur(2px);
}

.shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 80px;
}

section {
  padding: 80px 0 40px;
  position: relative;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-heading {
  font-family: "Gugi", system-ui;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-soft);
  max-width: 640px;
  font-size: 0.95rem;
}

/* ========= NAVBAR ========= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 12, 0.95),
    rgba(5, 5, 12, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 20px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, var(--primary), var(--accent));
  box-shadow: var(--shadow-neon);
  position: relative;
  overflow: hidden;
}

.brand-logo::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.28);
  opacity: 0.75;
}

/* Logo image inside wrapper */
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.brand-name {
  font-family: "Gugi", system-ui;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.85rem;
}

.nav-link {
  position: relative;
  color: var(--text-soft);
  cursor: pointer;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 180ms ease-out;
}

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

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

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, var(--primary), var(--accent));
  border: none;
  color: #020208;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-neon);
  transition: transform var(--transition-fast);
}

.nav-cta span {
  font-size: 1.1rem;
}

.nav-cta:hover {
  transform: translateY(-1px) scale(1.01);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  box-shadow: 0 5px 0 var(--text), 0 -5px 0 var(--text);
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    inset: 54px 20px auto 20px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(8, 8, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transform-origin: top;
    transform: scaleY(0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease-out, transform 160ms ease-out;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

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

  .nav-toggle {
    display: inline-flex;
  }
}

/* ========= HERO ========= */

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 30px;
  }
}

.hero-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 10px;
}

.hero-title {
  font-family: "Gugi", system-ui;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-title strong {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--text-soft);
  font-size: 0.98rem;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-pill {
  padding: 6px 10px 6px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--surface), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--highlight);
  box-shadow: 0 0 10px rgba(165, 255, 61, 0.9);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.btn-primary {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: #020208;
  background: radial-gradient(circle at 0 0, var(--primary), var(--accent));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-neon);
  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 0 45px rgba(0, 229, 255, 0.6);
}

.btn-ghost {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-soft);
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.04));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast), transform 150ms ease-out;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text);
  transform: translateY(-1px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid var(--primary);
}

/* HERO RIGHT – HOLOGRAM PANEL */

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 18px 18px 16px;
  background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.16), transparent),
    radial-gradient(circle at bottom right, rgba(157, 108, 255, 0.16), transparent),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background-image: conic-gradient(
    from 180deg at 50% 50%,
    rgba(0, 229, 255, 0.2),
    transparent,
    rgba(157, 108, 255, 0.22),
    transparent,
    rgba(0, 229, 255, 0.2)
  );
  opacity: 0.3;
  filter: blur(24px);
  animation: orbitGlow 18s linear infinite;
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
}

.hero-panel-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hero-panel-title {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-panel-chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-panel-chip span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--highlight);
  box-shadow: 0 0 12px rgba(165, 255, 61, 0.9);
}

.cube-wrap {
  margin-top: 6px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 16px;
}

@media (max-width: 600px) {
  .cube-wrap {
    grid-template-columns: minmax(0, 1fr);
  }
}

.cube-visual {
  position: relative;
  min-height: 180px;
  border-radius: 22px;
  background: radial-gradient(
      circle at 30% 0%,
      rgba(0, 229, 255, 0.3),
      transparent
    ),
    radial-gradient(circle at 80% 70%, rgba(157, 108, 255, 0.3), transparent),
    rgba(2, 1, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.3);
  overflow: hidden;
}

.cube-3d {
  position: absolute;
  inset: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cube {
  width: 90px;
  height: 90px;
  transform-style: preserve-3d;
  animation: spinCube 11s linear infinite;
}

.cube-face {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.5), transparent 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
}

.cube-face:nth-child(1) {
  transform: translateZ(45px);
}
.cube-face:nth-child(2) {
  transform: rotateY(90deg) translateZ(45px);
}
.cube-face:nth-child(3) {
  transform: rotateY(180deg) translateZ(45px);
}
.cube-face:nth-child(4) {
  transform: rotateY(-90deg) translateZ(45px);
}
.cube-face:nth-child(5) {
  transform: rotateX(90deg) translateZ(45px);
}
.cube-face:nth-child(6) {
  transform: rotateX(-90deg) translateZ(45px);
}

.cube-orbit-ring {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.cube-orbit-ring:nth-child(2) {
  transform: rotateX(70deg);
}

.cube-orbit-ring:nth-child(3) {
  transform: rotateY(70deg);
}

.cube-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(2, 2, 8, 0.7);
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cube-metric {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 0.7rem;
  background: rgba(2, 2, 8, 0.76);
  border-radius: 999px;
  padding: 4px 8px;
  border: 1px solid rgba(0, 229, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cube-metric span.spark {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.9);
}

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

.hero-panel-item {
  padding: 8px 9px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(
      circle at 0 0,
      rgba(0, 229, 255, 0.2),
      transparent 60%
    ),
    rgba(2, 2, 10, 0.82);
  font-size: 0.78rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hero-panel-item-icon {
  margin-top: 2px;
  font-size: 0.9rem;
}

.hero-panel-item-main {
  flex: 1;
}

.hero-panel-item-title {
  font-weight: 500;
  margin-bottom: 2px;
}

.hero-panel-item-sub {
  color: var(--text-soft);
  font-size: 0.73rem;
}

.hero-panel-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-soft);
}

.hero-panel-footer span.tag {
  background: rgba(2, 2, 10, 0.8);
  border-radius: 999px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel-footer span.tag strong {
  color: var(--highlight);
}

@keyframes spinCube {
  0% {
    transform: rotateX(-24deg) rotateY(10deg);
  }
  100% {
    transform: rotateX(336deg) rotateY(370deg);
  }
}

@keyframes orbitGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ========= PILLARS ========= */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

@media (max-width: 1000px) {
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .pillars-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pillar-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 16px 14px 14px;
  background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.18), transparent 55%),
    rgba(7, 7, 18, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: default;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.45);
  transition: transform var(--transition-med), box-shadow var(--transition-med),
    border-color var(--transition-med), background var(--transition-med);
}

.pillar-card:hover {
  transform: translateY(-6px) translateZ(0);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 229, 255, 0.7);
  background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.24), transparent 55%),
    rgba(7, 7, 18, 0.98);
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 120% -20%, rgba(157, 108, 255, 0.35), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

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

.pillar-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 8px;
}

.pillar-title {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.pillar-body {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.pillar-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-soft);
}

.pillar-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(2, 2, 8, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* ========= DEMO TERMINAL ========= */

.terminal-wrap {
  margin-top: 34px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.18), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(157, 108, 255, 0.2), transparent 60%),
    rgba(2, 2, 10, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.terminal-header {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.01)
  );
}

.terminal-dots {
  display: inline-flex;
  gap: 6px;
}

.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff5f57;
}

.terminal-dot:nth-child(2) {
  background: #febc2e;
}

.terminal-dot:nth-child(3) {
  background: #28c840;
}

.terminal-body {
  padding: 14px;
  font-family: "Menlo", "SFMono-Regular", ui-monospace, monospace;
  font-size: 0.8rem;
  background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.15), transparent 55%);
}

.terminal-line {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.terminal-prompt {
  color: var(--primary);
}

.terminal-text {
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
}

.terminal-cursor {
  width: 7px;
  height: 1.1em;
  background: var(--primary);
  display: inline-block;
  animation: blinkCursor 1s steps(1, end) infinite;
  vertical-align: bottom;
  margin-left: 2px;
}

@keyframes blinkCursor {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* ========= OFFERINGS ========= */

.offerings-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1000px) {
  .offerings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .offerings-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.offering-card {
  padding: 16px 14px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.offering-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.offering-title {
  font-size: 0.95rem;
}

.offering-body {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.offering-list {
  list-style: none;
  padding-left: 0;
  margin: 6px 0 0;
  font-size: 0.76rem;
  color: var(--text-soft);
}

.offering-list li {
  margin-bottom: 4px;
  display: flex;
  gap: 6px;
}

.offering-bullet {
  font-size: 0.8rem;
  color: var(--highlight);
  margin-top: 1px;
}

.offering-accent {
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.45), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med), transform var(--transition-med);
  transform: translate(20px, 20px);
}

.offering-card:hover .offering-accent {
  opacity: 1;
  transform: translate(0, 0);
}

/* ========= CONTROL TOWER ========= */

.control-wrap {
  margin-top: 34px;
  border-radius: var(--radius-xl);
  padding: 18px 16px;
  background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.18), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(157, 108, 255, 0.18), transparent 55%),
    rgba(2, 2, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-soft);
}

.control-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 18px;
}

@media (max-width: 800px) {
  .control-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.control-visual {
  border-radius: 22px;
  padding: 12px 12px 10px;
  background: radial-gradient(
      circle at 50% 0,
      rgba(0, 229, 255, 0.3),
      transparent 60%
    ),
    rgba(2, 2, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
}

.control-visual-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.control-visual-body {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 10px;
}

.globe {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 30%, #19285c, #040510);
  box-shadow: 0 0 45px rgba(0, 229, 255, 0.5);
  overflow: hidden;
}

.globe-grid-line {
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  border: 1px dashed rgba(0, 229, 255, 0.4);
}

.globe-grid-line:nth-child(2) {
  transform: rotateX(70deg);
}
.globe-grid-line:nth-child(3) {
  transform: rotateY(70deg);
}

.globe-stream {
  position: absolute;
  width: 3px;
  height: 50%;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  left: 52%;
  top: 0;
  opacity: 0.7;
  animation: stream 2.4s ease-in-out infinite;
}

.globe-stream:nth-child(4) {
  left: 30%;
  animation-delay: 0.3s;
}
.globe-stream:nth-child(5) {
  left: 70%;
  animation-delay: 0.7s;
}

@keyframes stream {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10%);
    opacity: 0;
  }
}

.globe-pulse {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--highlight);
  box-shadow: 0 0 14px rgba(165, 255, 61, 0.9);
  top: 35%;
  left: 56%;
  animation: pulseDot 2s ease-out infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.control-metrics {
  display: grid;
  gap: 6px;
  font-size: 0.75rem;
}

.control-metric-chip {
  padding: 6px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 3, 12, 0.94);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.control-metric-label {
  color: var(--text-soft);
}

.control-metric-value {
  font-weight: 500;
  color: var(--highlight);
}

.control-metric-bar {
  position: relative;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-top: 4px;
}

.control-metric-bar-fill {
  position: absolute;
  inset: 0;
  width: var(--value, 60%);
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.control-copy {
  font-size: 0.8rem;
  color: var(--text-soft);
  display: grid;
  gap: 10px;
}

.control-points {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.78rem;
}

.control-points li {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.control-points span.bullet {
  font-size: 0.8rem;
  color: var(--primary);
  margin-top: 1px;
}

/* ========= CASE STUDIES ========= */

.timeline {
  margin-top: 26px;
  border-left: 1px dashed rgba(255, 255, 255, 0.16);
  padding-left: 14px;
  position: relative;
}

.timeline-item {
  margin-bottom: 24px;
  position: relative;
  padding-left: 10px;
}

.timeline-dot {
  position: absolute;
  left: -19px;
  top: 3px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.9);
}

.timeline-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
}

.timeline-title {
  font-size: 0.9rem;
  margin: 4px 0;
}

.timeline-body {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* ========= LEADERSHIP POSTS ========= */

.card-row {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 700px) {
  .card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.thought-card {
  border-radius: var(--radius-lg);
  padding: 14px 14px 12px;
  background: rgba(6, 6, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  color: var(--text-soft);
  position: relative;
  overflow: hidden;
}

.thought-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: radial-gradient(circle at 0 0, rgba(0, 229, 255, 0.22), transparent 60%);
  pointer-events: none;
}

.thought-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin-bottom: 6px;
}

.thought-title {
  color: var(--text);
  margin-bottom: 6px;
}

.thought-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
}

/* ========= CONTACT ========= */

.contact-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-form {
  border-radius: var(--radius-xl);
  padding: 18px 16px 16px;
  background: rgba(2, 2, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.8rem;
}

.form-label {
  color: var(--text-soft);
}

.form-input,
.form-textarea,
.form-select {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 3, 14, 0.9);
  padding: 8px 10px;
  color: var(--text);
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

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

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
  background: radial-gradient(
      circle at 0 0,
      rgba(0, 229, 255, 0.16),
      rgba(3, 3, 14, 0.96)
    );
}

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

.contact-side {
  font-size: 0.8rem;
  color: var(--text-soft);
  display: grid;
  gap: 10px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.contact-badge {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(2, 2, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
}

.footer {
  margin-top: 40px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: var(--text-soft);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer span.highlight {
  color: var(--primary);
}

/* ========= SCROLL FADE-IN ========= */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 460ms ease-out, transform 460ms ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
