/* ===================================
   WANAK.TECH — Design System
   Premium dark theme with cyan accents
   =================================== */

/* --- Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --bg-glass: rgba(22, 22, 31, 0.6);
  --bg-glass-border: rgba(255, 255, 255, 0.06);

  --text-primary: #f0f0f5;
  --text-secondary: #9394a5;
  --text-muted: #5d5e72;

  --accent-primary: #00d4ff;
  --accent-secondary: #7b61ff;
  --accent-gradient: linear-gradient(135deg, #00d4ff 0%, #7b61ff 100%);
  --accent-gradient-text: linear-gradient(135deg, #00d4ff 0%, #a78bfa 50%, #7b61ff 100%);
  --accent-glow: rgba(0, 212, 255, 0.15);
  --accent-glow-strong: rgba(0, 212, 255, 0.3);

  --success: #22c55e;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.938rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent-gradient);
  color: #000;
  box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 0 40px var(--accent-glow-strong), 0 8px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

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

.btn--glass {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--bg-glass-border);
  backdrop-filter: blur(12px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-arrow {
  transition: transform var(--transition-base);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent-gradient);
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  letter-spacing: -0.05em;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

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

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition-base);
  border-radius: 1px;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--accent-gradient);
  color: #000;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  box-shadow: 0 0 16px var(--accent-glow);
}

.nav-cta:hover {
  box-shadow: 0 0 32px var(--accent-glow-strong);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: var(--accent-primary);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.12;
}

.hero-glow--2 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  bottom: -100px;
  right: -100px;
  opacity: 0.1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(0, 212, 255, 0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-title--gradient {
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 24px 40px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-glass-border);
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid var(--border-hover);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 4px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(12px);
    opacity: 0.3;
  }
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Partners Section --- */
.partners {
  background: var(--bg-secondary);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partner-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.partner-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.partner-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--accent-primary);
  transition: all var(--transition-base);
}

.partner-card:hover .partner-icon {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px var(--accent-glow);
}

.partner-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.partner-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Support Section --- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.support-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  overflow: hidden;
}

.support-card__glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent-primary);
  opacity: 0;
  filter: blur(80px);
  transition: opacity var(--transition-slow);
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.support-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.support-card:hover .support-card__glow {
  opacity: 0.06;
}

.support-card--featured {
  border-color: rgba(0, 212, 255, 0.15);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, var(--bg-card) 100%);
}

.support-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--accent-primary);
}

.support-card__content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.support-card__content p {
  font-size: 0.938rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.support-cta {
  text-align: center;
}

/* --- Consultancy Section --- */
.consultancy {
  background: var(--bg-secondary);
}

.consultancy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.consultancy-content .section-tag {
  margin-bottom: 20px;
}

.consultancy-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.consultancy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.consultancy-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.938rem;
  color: var(--text-secondary);
}

.consultancy-list li svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* Console Window */
.consultancy-visual {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.console-window {
  width: 100%;
  max-width: 100%;
  background: #0d0d14;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.04);
}

.console-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

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

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

.console-dots span:nth-child(1) {
  background: #ff5f57;
}

.console-dots span:nth-child(2) {
  background: #febc2e;
}

.console-dots span:nth-child(3) {
  background: #28c840;
}

.console-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.console-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.813rem;
  line-height: 1.9;
}

.console-line {
  opacity: 0;
  transform: translateY(4px);
  animation: console-appear 0.4s ease forwards;
}

.console-line[data-line="1"] {
  animation-delay: 0.3s;
}

.console-line[data-line="2"] {
  animation-delay: 0.8s;
}

.console-line[data-line="3"] {
  animation-delay: 1.3s;
}

.console-line[data-line="4"] {
  animation-delay: 1.8s;
}

.console-line[data-line="5"] {
  animation-delay: 2.3s;
}

.console-line[data-line="6"] {
  animation-delay: 2.8s;
}

.console-line[data-line="7"] {
  animation-delay: 3.3s;
}

@keyframes console-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.console-prompt {
  color: var(--accent-primary);
  margin-right: 8px;
}

.console-cmd {
  color: var(--text-primary);
}

.console-flag {
  color: var(--accent-secondary);
  margin-left: 4px;
}

.console-arg {
  color: #fbbf24;
  margin-left: 4px;
}

.console-output {
  color: var(--text-secondary);
}

.console-success {
  color: var(--success);
  font-weight: 500;
}

.console-cursor {
  color: var(--accent-primary);
  animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
}

.cta-glow--1 {
  width: 500px;
  height: 500px;
  background: var(--accent-primary);
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
}

.cta-glow--2 {
  width: 400px;
  height: 400px;
  background: var(--accent-secondary);
  top: 40%;
  right: 10%;
  opacity: 0.05;
}

.cta-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.cta-title--gradient {
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
}

/* --- Support Banner --- */
.support-banner {
  background: var(--bg-secondary);
  overflow: hidden;
}

.banner-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.banner-subtitle {
  font-size: 1.1rem;
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: 32px;
}

.banner-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.banner-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--accent-primary);
  flex-shrink: 0;
}

.banner-features strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.banner-features span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ======================================
   Orbit Animation — Enhanced
   ====================================== */
.orbit-container {
  position: relative;
  width: 440px;
  height: 440px;
  margin: 0 auto;
}

/* --- Radar sweep --- */
.orbit-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  margin: -220px 0 0 -220px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      rgba(0, 212, 255, 0.06) 30deg,
      transparent 60deg);
  animation: radar-sweep 6s linear infinite;
  pointer-events: none;
}

@keyframes radar-sweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* --- Center breathing glow --- */
.orbit-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  animation: center-breathe 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes center-breathe {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* --- Center logo --- */
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--accent-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 30px var(--accent-glow-strong),
    0 0 60px var(--accent-glow);
  z-index: 5;
}

.orbit-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #000;
  letter-spacing: -0.05em;
}

.orbit-center-pulse {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(0, 212, 255, 0.3);
  animation: center-pulse-ring 3s ease-out infinite;
}

@keyframes center-pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* --- Orbit rings --- */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid transparent;
}

.orbit--1 {
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 1px dashed rgba(0, 212, 255, 0.12);
  animation: orbit-rotate 10s linear infinite;
}

.orbit--2 {
  width: 240px;
  height: 240px;
  margin: -120px 0 0 -120px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  animation: orbit-rotate 18s linear infinite reverse;
}

.orbit--3 {
  width: 330px;
  height: 330px;
  margin: -165px 0 0 -165px;
  border: 1px dashed rgba(123, 97, 255, 0.1);
  animation: orbit-rotate 28s linear infinite;
}

.orbit--4 {
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  animation: orbit-rotate 40s linear infinite reverse;
}

@keyframes orbit-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* --- Orbit dots --- */
.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow-strong);
  z-index: 3;
}

.orbit-dot--sm {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--accent-glow);
}

.orbit-dot--lg {
  width: 16px;
  height: 16px;
  box-shadow: 0 0 20px var(--accent-glow-strong);
}

.orbit-dot--purple {
  background: var(--accent-secondary);
  box-shadow: 0 0 12px rgba(123, 97, 255, 0.5);
}

.orbit-dot--purple.orbit-dot--sm {
  box-shadow: 0 0 8px rgba(123, 97, 255, 0.35);
}

/* --- Dot labels (counter-rotate to stay horizontal) --- */
.orbit-label {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 3px 8px;
  background: rgba(22, 22, 31, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: label-fade 6s ease-in-out infinite;
  pointer-events: none;
}

/* Stagger label visibility */
.orbit--2 .orbit-dot:nth-child(1) .orbit-label {
  animation-delay: 0s;
}

.orbit--2 .orbit-dot:nth-child(2) .orbit-label {
  animation-delay: 2s;
}

.orbit--3 .orbit-dot:nth-child(1) .orbit-label {
  animation-delay: 1s;
}

.orbit--3 .orbit-dot:nth-child(2) .orbit-label {
  animation-delay: 3.5s;
}

.orbit--4 .orbit-dot:nth-child(1) .orbit-label {
  animation-delay: 0.5s;
}

@keyframes label-fade {

  0%,
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }

  20%,
  80% {
    opacity: 0.85;
    transform: translateX(-50%) translateY(0);
  }
}

/* --- Dot ping (pulse ring) --- */
.orbit-dot-ping {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-primary);
  animation: dot-ping 2.5s ease-out infinite;
}

.orbit-dot--purple .orbit-dot-ping {
  border-color: var(--accent-secondary);
}

@keyframes dot-ping {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* --- Dot outer ring (for large dots) --- */
.orbit-dot-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 212, 255, 0.25);
  animation: dot-ring-spin 8s linear infinite;
}

@keyframes dot-ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* --- SVG connection lines --- */
.orbit-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.orbit-line {
  stroke: rgba(0, 212, 255, 0.06);
  stroke-width: 1;
  stroke-dasharray: 6 8;
  animation: line-dash 20s linear infinite;
}

.orbit-line--2 {
  stroke: rgba(123, 97, 255, 0.06);
  animation-delay: -5s;
}

.orbit-line--3 {
  animation-delay: -10s;
}

.orbit-line--4 {
  stroke: rgba(123, 97, 255, 0.06);
  animation-delay: -15s;
}

@keyframes line-dash {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 100;
  }
}

/* --- Orbit floating particles --- */
.orbit-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orbit-particle {
  position: absolute;
  border-radius: 50%;
  animation: orbit-particle-float linear infinite;
  pointer-events: none;
}

@keyframes orbit-particle-float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translate(var(--dx), var(--dy)) scale(0.3);
    opacity: 0;
  }
}

/* --- Footer --- */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col li {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-col li svg {
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.813rem;
  color: var(--text-muted);
}

/* --- Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .consultancy-layout,
  .banner-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .consultancy-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .hero {
    flex-direction: column;
    justify-content: flex-start;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1000;
  }

  .nav-links.active a {
    font-size: 1.25rem;
    color: var(--text-primary);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-scroll {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    left: auto;
    transform: none;
    display: flex;
    justify-content: center;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .consultancy-content {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
  }

  .consultancy-content .section-title--left {
    text-align: center;
  }

  .consultancy-list {
    align-items: center;
  }

  .consultancy-list li {
    justify-content: center;
  }

  .banner-content {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
  }

  .banner-content .section-title--left {
    text-align: center;
  }

  .banner-features {
    align-items: center;
  }

  .banner-features li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

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

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

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .orbit-container {
    width: 240px;
    height: 240px;
  }

  .orbit-radar {
    width: 240px;
    height: 240px;
    margin: -120px 0 0 -120px;
  }

  .orbit-center-glow {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
  }

  .orbit-center {
    width: 48px;
    height: 48px;
  }

  .orbit-logo {
    font-size: 1.2rem;
  }

  .orbit--1 {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
  }

  .orbit--2 {
    width: 130px;
    height: 130px;
    margin: -65px 0 0 -65px;
  }

  .orbit--3 {
    width: 180px;
    height: 180px;
    margin: -90px 0 0 -90px;
  }

  .orbit--4 {
    width: 230px;
    height: 230px;
    margin: -115px 0 0 -115px;
  }

  .orbit-dot {
    width: 8px;
    height: 8px;
  }

  .orbit-dot--sm {
    width: 6px;
    height: 6px;
  }

  .orbit-dot--lg {
    width: 12px;
    height: 12px;
  }

  .orbit-label {
    font-size: 0.55rem;
    top: -22px;
    padding: 2px 6px;
  }

  .console-body {
    padding: 16px;
    font-size: 0.75rem;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .container,
  .nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding: 100px 16px 60px;
  }

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

  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

/* ======================================
   Contact Form Styles
   ====================================== */
.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.02);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-of-type {
  margin-bottom: 30px;
}

.form-group label {
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 10, 15, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.938rem;
  transition: all var(--transition-fast);
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(10, 10, 15, 0.8);
  box-shadow: 0 0 12px var(--accent-glow);
}

.form-actions {
  display: flex;
  justify-content: center;
}

.form-actions .btn {
  width: 100%;
  justify-content: center;
}

/* Button Spinner Animation */
.btn-spinner {
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

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

/* Form Success State */
.form-success-message {
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.5s ease forwards;
}

.success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-full);
  margin: 0 auto 20px;
  color: var(--success);
}

.form-success-message h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.form-success-message p {
  font-size: 0.938rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}