/* ===================================
   IBI - International Business Integrations
   Premium Fintech Design System
   =================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---- CSS Variables / Design Tokens ---- */
:root {
  /* Primary Colors */
  --navy-deepest: #050816;
  --navy-deep: #0a0e27;
  --navy: #0f1535;
  --navy-light: #1a1f3a;
  --charcoal: #1e2348;
  --charcoal-light: #252b56;

  /* Accent Colors */
  --gold: #c9a44c;
  --gold-light: #e8c76a;
  --gold-dim: #a68a3e;
  --amber: #e0b24a;
  --champagne: #dccaa0;

  /* Brushed metal gold — highlight, core, shadow, highlight (echoes the emblem) */
  --gold-metal: linear-gradient(135deg, #f6e6ad 0%, #d9b967 20%, #c9a44c 42%, #9c7d34 60%, #d4b25c 80%, #f2e1a2 100%);

  /* Cool tone is subordinate to gold — a refined steel that lives in the navy family */
  --steel: #7d93c8;
  --electric-blue: #7d93c8;
  --electric-blue-light: #9db0dd;

  /* Green reserved only for the live status dot */
  --emerald: #34c98a;
  --emerald-light: #5bd6a1;

  /* Text Colors */
  --text-primary: #f2f2f7;
  --text-secondary: #b7bcd4;
  --text-muted: #838aac;
  --text-gold: #e8c76a;

  /* Glassmorphism */
  --glass-bg: rgba(15, 21, 53, 0.6);
  --glass-border: rgba(201, 164, 76, 0.15);
  --glass-border-hover: rgba(201, 164, 76, 0.35);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-heading: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

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

  /* Transitions */
  --transition-fast: 160ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-base: 300ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 520ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-spring: 550ms cubic-bezier(0.34, 1.4, 0.5, 1);

  /* Z-index Scale */
  --z-base: 0;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-overlay: 40;
  --z-modal: 100;
  --z-toast: 1000;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-deepest);
  color: var(--text-primary);
  line-height: 1.7;
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

::selection {
  background: rgba(201, 164, 76, 0.3);
  color: var(--text-primary);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-deepest);
}

::-webkit-scrollbar-thumb {
  background: var(--charcoal-light);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dim);
}

/* ---- Utility Classes ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--amber), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* ---- Animated Background Elements ---- */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.bg-glow.gold {
  background: var(--gold);
}

.bg-glow.blue {
  background: var(--electric-blue);
}

.bg-glow.emerald {
  background: var(--emerald);
}

/* ---- Grid Lines Background ---- */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(201, 164, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 164, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
  padding: var(--space-lg) 0;
}

.navbar.scrolled {
  background: rgba(5, 8, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--space-md) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-logo .logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy-deepest);
  transition: transform var(--transition-spring);
}

.navbar-logo:hover .logo-mark {
  transform: scale(1.05) rotate(-2deg);
}

.navbar-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.navbar-logo .logo-text span {
  color: var(--gold);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: var(--space-xs) 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  transition: width var(--transition-base);
}

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

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

.navbar-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--navy-deepest);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(201, 164, 76, 0.3);
}

.navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 164, 76, 0.5);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

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

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

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 22, 0.3) 0%,
    rgba(5, 8, 22, 0.6) 50%,
    rgba(5, 8, 22, 0.95) 100%
  );
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  background: rgba(201, 164, 76, 0.1);
  border: 1px solid rgba(201, 164, 76, 0.25);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out forwards;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.15s forwards;
  opacity: 0;
}

.hero-title .gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.45s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--navy-deepest);
  box-shadow: 0 4px 25px rgba(201, 164, 76, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(201, 164, 76, 0.55);
}

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

.btn-secondary:hover {
  border-color: var(--glass-border-hover);
  background: rgba(201, 164, 76, 0.1);
  transform: translateY(-3px);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(201, 164, 76, 0.1);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
  background: linear-gradient(180deg, var(--navy-deepest) 0%, var(--navy-deep) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.about-feature:hover {
  border-color: var(--glass-border-hover);
  transform: translateX(8px);
}

.about-feature .feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.15), rgba(232, 184, 75, 0.05));
  border: 1px solid rgba(201, 164, 76, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.about-feature .feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.about-feature h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.about-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-visual .visual-ring {
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 164, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotateRing 30s linear infinite;
}

.about-visual .visual-ring::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(201, 164, 76, 0.05);
  border-radius: 50%;
  animation: rotateRing 45s linear infinite reverse;
}

.about-visual .ring-center {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.1), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(201, 164, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateRing 30s linear infinite reverse;
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: var(--space-md);
}

.about-visual .ring-logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 0 15px rgba(201, 164, 76, 0.4));
}

.about-visual .orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(201, 164, 76, 0.5);
}

.about-visual .orbit-dot:nth-child(2) { top: 0; left: 50%; transform: translate(-50%, -50%); }
.about-visual .orbit-dot:nth-child(3) { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.about-visual .orbit-dot:nth-child(4) { top: 50%; right: 0; transform: translate(50%, -50%); }
.about-visual .orbit-dot:nth-child(5) { top: 50%; left: 0; transform: translate(-50%, -50%); }

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
  background: var(--navy-deep);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.services-header .section-label {
  justify-content: center;
}

.services-header .section-label::before {
  display: none;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all var(--transition-slow);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.service-card .card-image {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .card-image img {
  transform: scale(1.08);
}

.service-card .card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.15), rgba(201, 164, 76, 0.05));
  border: 1px solid rgba(201, 164, 76, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.service-card .card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.service-card:hover h3 {
  color: var(--gold);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.service-card .tag {
  padding: 4px 10px;
  background: rgba(201, 164, 76, 0.08);
  border: 1px solid rgba(201, 164, 76, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-gold);
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

/* ===================================
   TRADING HUBS SECTION
   =================================== */
.trading-hubs {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-deepest) 100%);
  position: relative;
  overflow: hidden;
}

.trading-hubs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hubs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hubs-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
}

.hubs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hubs-image:hover img {
  transform: scale(1.03);
}

.hubs-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.1), transparent);
  pointer-events: none;
}

.hubs-content .hubs-features {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.hub-feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.hub-feature:hover {
  border-color: var(--glass-border-hover);
  transform: translateX(8px);
}

.hub-feature .hub-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 40px;
}

.hub-feature h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.hub-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================
   TECHNOLOGY SECTION
   =================================== */
.technology {
  background: var(--navy-deepest);
  position: relative;
}

.technology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
}

.tech-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.tech-header .section-label {
  justify-content: center;
}

.tech-header .section-label::before {
  display: none;
}

.tech-header .section-subtitle {
  margin: 0 auto;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.tech-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.tech-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.tech-card .tech-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-card .tech-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--electric-blue);
  fill: none;
  stroke-width: 1.5;
}

.tech-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.tech-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================
   GLOBAL REACH SECTION
   =================================== */
.global-reach {
  background: linear-gradient(180deg, var(--navy-deepest) 0%, var(--navy-deep) 100%);
  position: relative;
}

.global-reach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
}

.global-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.global-header .section-label {
  justify-content: center;
}

.global-header .section-label::before {
  display: none;
}

.global-header .section-subtitle {
  margin: 0 auto;
}

.global-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-bottom: var(--space-3xl);
}

.global-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.global-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--navy-deep) 0%, transparent 30%, transparent 70%, rgba(5, 8, 22, 0.3) 100%);
  pointer-events: none;
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.global-stat {
  text-align: center;
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.global-stat:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.global-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.global-stat:nth-child(1) .stat-number { color: var(--gold); }
.global-stat:nth-child(2) .stat-number { color: var(--electric-blue); }
.global-stat:nth-child(3) .stat-number { color: var(--emerald); }
.global-stat:nth-child(4) .stat-number { color: var(--amber); }

.global-stat .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
  background: var(--navy-deep);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item .item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.15), rgba(201, 164, 76, 0.05));
  border: 1px solid rgba(201, 164, 76, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item .item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form {
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(201, 164, 76, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.1);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a44c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-submit {
  width: 100%;
  margin-top: var(--space-sm);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--navy-deepest);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid rgba(201, 164, 76, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--navy-deepest);
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(201, 164, 76, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

.footer-bottom .footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom .footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.4s; }

.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   KEYFRAME ANIMATIONS
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .about-visual .visual-ring {
    width: 300px;
    height: 300px;
  }

  .about-visual .visual-ring::before {
    width: 320px;
    height: 320px;
  }

  .about-visual .ring-center {
    width: 150px;
    height: 150px;
  }

  .about-visual .ring-logo-img {
    width: 110px;
    height: 110px;
  }

  /* Navbar tablet — hide extra text */
  .navbar-logo .logo-text {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  /* Navbar Mobile */
  .navbar {
    padding: var(--space-md) 0;
  }

  .navbar-logo .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .navbar-logo .logo-text {
    font-size: 0.8rem;
    max-width: 140px;
    line-height: 1.2;
  }

  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(5, 8, 22, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    z-index: var(--z-overlay);
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links a {
    font-size: 1.25rem;
    padding: var(--space-sm) var(--space-lg);
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .mobile-toggle {
    display: flex;
    z-index: var(--z-modal);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .navbar-cta.desktop-only {
    display: none;
  }

  /* Hero Mobile */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 80px;
  }

  .hero-logo-img {
    width: 100px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    min-height: 48px;
  }

  .hero-stats {
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .stat-item {
    flex: 0 0 45%;
  }

  .stat-item .stat-number {
    font-size: 1.75rem;
  }

  /* About Mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-visual {
    order: -1;
  }

  .about-visual .visual-ring {
    width: 220px;
    height: 220px;
  }

  .about-visual .visual-ring::before {
    width: 240px;
    height: 240px;
  }

  .about-visual .ring-center {
    width: 110px;
    height: 110px;
    padding: var(--space-sm);
  }

  .about-visual .ring-logo-img {
    width: 80px;
    height: 80px;
  }

  .about-feature {
    padding: var(--space-md);
  }

  .about-feature:hover {
    transform: none;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .service-card {
    padding: var(--space-lg);
  }

  .service-card:hover {
    transform: none;
  }

  .service-card .card-image {
    height: 160px;
  }

  /* Trading Hubs Mobile */
  .hubs-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hubs-image {
    order: -1;
  }

  .hub-feature {
    padding: var(--space-md);
  }

  .hub-feature:hover {
    transform: none;
  }

  /* Tech Mobile */
  .tech-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .tech-card {
    padding: var(--space-lg);
  }

  .tech-card:hover {
    transform: none;
  }

  /* Global Mobile */
  .global-stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .global-stat {
    padding: var(--space-lg);
  }

  .global-stat .stat-number {
    font-size: 1.75rem;
  }

  .global-stat:hover {
    transform: none;
  }

  .global-visual img {
    height: 220px;
  }

  /* Contact Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: var(--space-lg);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 14px 16px;
    font-size: 16px; /* Prevents iOS zoom on focus */
    min-height: 48px;
  }

  .form-submit {
    min-height: 48px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .footer-col ul li a {
    padding: var(--space-xs) 0;
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .navbar-logo .logo-text {
    display: none;
  }

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

  .global-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .stat-item {
    flex: 0 0 100%;
  }

  .hero-actions .btn {
    font-size: 0.9rem;
  }

  .about-visual .visual-ring {
    width: 180px;
    height: 180px;
  }

  .about-visual .visual-ring::before {
    width: 200px;
    height: 200px;
  }

  .about-visual .ring-center {
    width: 90px;
    height: 90px;
  }

  .about-visual .ring-logo-img {
    width: 60px;
    height: 60px;
  }

  .service-card .card-image {
    height: 130px;
  }
}

/* ===================================
   HERO LOGO
   =================================== */
.hero-logo {
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-logo-img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(201, 164, 76, 0.4)) drop-shadow(0 0 60px rgba(201, 164, 76, 0.15));
  animation: logoFloat 4s ease-in-out infinite, logoGlow 3s ease-in-out infinite alternate;
  border-radius: var(--radius-md);
}

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

@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 20px rgba(201, 164, 76, 0.3)) drop-shadow(0 0 40px rgba(201, 164, 76, 0.1)); }
  100% { filter: drop-shadow(0 0 40px rgba(201, 164, 76, 0.6)) drop-shadow(0 0 80px rgba(201, 164, 76, 0.2)); }
}

/* ===================================
   AI & INNOVATION SECTION
   =================================== */
.ai-innovation {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-deepest) 50%, var(--navy-deep) 100%);
  position: relative;
}

.ai-innovation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-blue), var(--gold), transparent);
}

.ai-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.ai-header .section-label {
  justify-content: center;
}

.ai-header .section-label::before {
  display: none;
}

.ai-header .section-subtitle {
  margin: 0 auto;
}

/* Video Grid */
.ai-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.video-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all var(--transition-slow);
}

.video-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: var(--space-lg);
}

.video-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.video-card:hover .video-info h3 {
  color: var(--gold);
}

.video-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* AI Capabilities Row */
.ai-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.ai-cap {
  text-align: center;
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.ai-cap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-blue), var(--gold));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.ai-cap:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}

.ai-cap:hover::before {
  opacity: 1;
}

.ai-cap-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(201, 164, 76, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-cap-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--electric-blue);
  fill: none;
  stroke-width: 1.5;
}

.ai-cap h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.ai-cap p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===================================
   AI SECTION RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .ai-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .ai-videos-grid {
    grid-template-columns: 1fr;
  }

  .ai-capabilities {
    grid-template-columns: 1fr 1fr;
  }

  .hero-logo-img {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .ai-capabilities {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   PREMIUM PASS — brand-true metal, interaction, depth, finish
   (appended; overrides base rules where they share specificity)
   =================================== */

/* ---- Metal-true gold on the key gold surfaces ---- */
.section-title .highlight,
.hero-title .gold-text {
  background-image: var(--gold-metal);
}

.navbar-logo .logo-mark,
.footer-brand .logo-mark,
.navbar-cta,
.btn-primary {
  background: var(--gold-metal);
}

/* ---- Gold sheen sweep on hover (light moving across metal) ---- */
.btn,
.navbar-cta {
  position: relative;
  overflow: hidden;
}

.logo-mark {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.navbar-cta::after,
.navbar-logo .logo-mark::after,
.footer-brand .logo-mark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.5) 50%, transparent 68%);
  transform: translateX(-130%);
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover::after,
.navbar-cta:hover::after,
.navbar-logo:hover .logo-mark::after,
.footer-brand .logo-mark:hover::after {
  transform: translateX(130%);
}

.btn:active,
.navbar-cta:active {
  transform: translateY(-1px) scale(0.99);
}

/* ---- Cursor-aware spotlight on grid cards ---- */
.service-card,
.tech-card,
.ai-cap,
.video-card,
.global-stat {
  position: relative;
}

.tech-card,
.global-stat {
  overflow: hidden;
}

.service-card::after,
.tech-card::after,
.ai-cap::after,
.video-card::after,
.global-stat::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 164, 76, 0.15), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::after,
.tech-card:hover::after,
.ai-cap:hover::after,
.video-card:hover::after,
.global-stat:hover::after {
  opacity: 1;
}

/* ---- Ambient depth: soft top light + faint corner colour (behind content) ---- */
.ambient-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(62% 46% at 50% -6%, rgba(201, 164, 76, 0.10), transparent 60%),
    radial-gradient(48% 40% at 88% 8%, rgba(59, 130, 246, 0.06), transparent 60%);
}

/* ---- Cinematic vignette (above content, below navbar) ---- */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 12;
  pointer-events: none;
  background: radial-gradient(125% 120% at 50% 34%, transparent 55%, rgba(2, 4, 12, 0.42) 100%);
}

/* ---- Fine grain for tactility ---- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 13;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 60;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--gold-metal);
  box-shadow: 0 0 12px rgba(201, 164, 76, 0.6);
  transition: transform 0.1s linear;
}

/* ---- Active-section nav highlight (scroll spy) ---- */
.navbar-links a.active {
  color: var(--text-primary);
}

.navbar-links a.active::after {
  width: 100%;
}

/* ---- Calmer, more assured entrances ---- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal {
  transform: translateY(28px);
}

.hero-title {
  animation: fadeUpBlur 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero-subtitle {
  animation: fadeUpBlur 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes fadeUpBlur {
  from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ---- Calm the hero logo: one slow float, steady glow ---- */
.hero-logo-img {
  animation: logoFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 0 26px rgba(201, 164, 76, 0.4)) drop-shadow(0 0 60px rgba(201, 164, 76, 0.12));
}

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

/* ---- Keyboard focus visibility ---- */
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: none;
}

/* ---- Respect reduced-motion preference ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .hero-logo-img,
  .about-visual .visual-ring,
  .about-visual .visual-ring::before,
  .about-visual .ring-center,
  .hero-badge .pulse-dot {
    animation: none !important;
  }

  .scroll-progress span {
    transition: none !important;
  }
}

/* ---- Photo cohesion scrim: uniform tone so card photos read as one set ---- */
.service-card .card-image {
  position: relative;
}

.service-card .card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(201, 164, 76, 0.06) 0%, transparent 22%, transparent 55%, rgba(5, 8, 22, 0.55) 100%);
}

/* ===================================
   GOLD-LED ACCENTS — one brand accent across icons and stats
   (the emblem is gold on navy; cool tones stay in the background only)
   =================================== */
.tech-card .tech-icon,
.ai-cap-icon {
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.16), rgba(201, 164, 76, 0.05));
  border-color: rgba(201, 164, 76, 0.22);
}

.tech-card .tech-icon svg,
.ai-cap-icon svg {
  stroke: var(--gold);
}

.ai-cap::before {
  background: linear-gradient(90deg, var(--gold), var(--amber));
}

.global-stat:nth-child(1) .stat-number { color: var(--gold); }
.global-stat:nth-child(2) .stat-number { color: var(--champagne); }
.global-stat:nth-child(3) .stat-number { color: var(--gold-light); }
.global-stat:nth-child(4) .stat-number { color: var(--amber); }

/* Section hairlines settle to gold for a single-accent read */
.technology::before {
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* ===================================
   ICON SYSTEM — one consistent family (Lucide), uniform stroke
   =================================== */
.about-feature .feature-icon svg,
.service-card .card-icon svg,
.tech-card .tech-icon svg,
.ai-cap-icon svg,
.contact-item .item-icon svg,
.btn-icon {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

/* ===================================
   WIZARD CONTACT FORM — multi-step with progress and inline validation
   =================================== */
.wizard-head {
  margin-bottom: var(--space-lg);
}

.wizard-progress {
  height: 4px;
  background: rgba(201, 164, 76, 0.12);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.wizard-progress span {
  display: block;
  height: 100%;
  width: 33.333%;
  background: var(--gold-metal);
  border-radius: var(--radius-full);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition-base);
}

.wizard-step .ws-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(201, 164, 76, 0.08);
  border: 1px solid var(--glass-border);
  transition: color var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}

.wizard-step.active,
.wizard-step.done {
  color: var(--text-primary);
}

.wizard-step.active .ws-dot,
.wizard-step.done .ws-dot {
  background: var(--gold-metal);
  color: var(--navy-deepest);
  border-color: transparent;
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: wizStepIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.wizard-nav {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.wizard-nav .btn {
  flex: 1;
  justify-content: center;
}

.form-group .req {
  color: var(--gold);
}

.field-error {
  color: #ff9a9a;
  font-size: 0.78rem;
  line-height: 1.4;
  margin-top: 6px;
  min-height: 1.1em;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #e0666b;
  box-shadow: 0 0 0 3px rgba(224, 102, 107, 0.14);
}

@media (max-width: 480px) {
  .wizard-step .ws-label {
    display: none;
  }
}

/* ===================================
   MOTION — one rhythm, transform/opacity/colour only
   =================================== */
.service-card,
.tech-card,
.ai-cap,
.video-card,
.global-stat,
.about-feature,
.hub-feature,
.btn,
.navbar-cta {
  transition-property: transform, box-shadow, border-color, background-color, color;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-duration: var(--transition-base);
}

.service-card,
.video-card {
  transition-duration: var(--transition-slow);
}

/* Calmer, more composed hover travel */
.service-card:hover { transform: translateY(-6px); }
.tech-card:hover,
.video-card:hover { transform: translateY(-5px); }
.global-stat:hover,
.ai-cap:hover { transform: translateY(-3px); }
.about-feature:hover,
.hub-feature:hover { transform: translateX(6px); }

/* Fast, tracking transitions while a card is tilting / a button is magnetizing */
.service-card.tilting,
.tech-card.tilting {
  transition: transform 0.12s linear, box-shadow var(--transition-base), border-color var(--transition-base);
}

.btn.magnetizing,
.navbar-cta.magnetizing {
  transition: transform 0.15s ease-out;
}

/* ===================================
   SECTORS MARQUEE
   =================================== */
.sectors {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(5, 8, 22, 0.4);
  position: relative;
  overflow: hidden;
}

.sectors-lead {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.sectors-viewport {
  position: relative;
  overflow: hidden;
}

.sectors-track {
  display: flex;
  width: max-content;
  animation: sectorsScroll 42s linear infinite;
}

.sectors:hover .sectors-track {
  animation-play-state: paused;
}

.sectors-group {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-right: var(--space-lg);
}

.sector {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color var(--transition-base);
}

.sector:hover {
  color: var(--gold);
}

.sector-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-dim);
  flex: none;
}

.sectors-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.sectors-fade-left { left: 0; background: linear-gradient(90deg, var(--navy-deepest), transparent); }
.sectors-fade-right { right: 0; background: linear-gradient(270deg, var(--navy-deepest), transparent); }

@keyframes sectorsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-deepest) 100%);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-3xl);
}

.process-header .section-label { justify-content: center; }
.process-header .section-label::before { display: none; }
.process-header .section-subtitle { margin: 0 auto; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.process-step {
  position: relative;
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.process-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.16), rgba(201, 164, 76, 0.05));
  border: 1px solid rgba(201, 164, 76, 0.22);
}

.process-icon svg { width: 26px; height: 26px; stroke: var(--gold); }

.process-index {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(201, 164, 76, 0.2);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (min-width: 1025px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: calc(var(--space-xl) + 27px);
    right: calc(var(--space-lg) / -2);
    width: var(--space-lg);
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 164, 76, 0.35), transparent);
  }
}

@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ===================================
   WIZARD — high-end interactive layer
   =================================== */
.wizard-panel-head {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.wizard-panel-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.16), rgba(201, 164, 76, 0.05));
  border: 1px solid rgba(201, 164, 76, 0.22);
}

.wizard-panel-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.75; }
.wizard-panel-head h4 { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.wizard-panel-head p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Step dots become checkmarks once completed */
.ws-check { width: 15px; height: 15px; display: none; }
.wizard-step.done .ws-num { display: none; }
.wizard-step.done .ws-check { display: block; }

/* Field focus emphasis */
.form-group:focus-within label { color: var(--gold); }

/* Directional step transitions */
.wizard-panel.active {
  display: block;
  animation: wizIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.wizard-panel.active.from-next { animation-name: wizInNext; }
.wizard-panel.active.from-prev { animation-name: wizInPrev; }

@keyframes wizIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes wizInNext { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }
@keyframes wizInPrev { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: none; } }

/* Success confirmation */
.wizard-success {
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  animation: wizIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.wizard-success h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; margin-bottom: var(--space-sm); }
.wizard-success p { color: var(--text-secondary); max-width: 360px; margin: 0 auto; line-height: 1.7; }

.success-check { width: 84px; height: 84px; margin: 0 auto var(--space-lg); }
.success-check svg { width: 100%; height: 100%; }
.success-check .sc-ring {
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: scRing 0.6s ease-out forwards;
}
.success-check .sc-tick {
  stroke: var(--gold);
  stroke-width: 3.5;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: scTick 0.4s 0.5s ease-out forwards;
}

@keyframes scRing { to { stroke-dashoffset: 0; } }
@keyframes scTick { to { stroke-dashoffset: 0; } }

/* ===================================
   EXPANDABLE SERVICE CARDS — click to open
   =================================== */
.services-grid { align-items: start; }

.service-card { cursor: pointer; }

.card-teaser {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, margin-top 0.35s ease;
}

.service-card.open .card-reveal {
  opacity: 1;
  margin-top: var(--space-md);
}

.card-reveal .card-detail {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.card-reveal .card-tags { margin-top: 0; }

.card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.card-chevron {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-base);
}

.service-card.open .card-chevron { transform: rotate(180deg); }

/* ===================================
   CAPABILITIES ORBITAL
   =================================== */
.capabilities {
  background: var(--navy-deepest);
  position: relative;
  overflow: hidden;
}

.capabilities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.cap-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-3xl);
}

.cap-header .section-label { justify-content: center; }
.cap-header .section-label::before { display: none; }
.cap-header .section-subtitle { margin: 0 auto; }

.orbital {
  --radius: 210px;
  --node: 78px;
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 560px;
  margin: 0 auto;
}

.orbital-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbital-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbital-ring.r1 {
  width: calc(var(--radius) * 2);
  height: calc(var(--radius) * 2);
  border: 1px solid rgba(201, 164, 76, 0.12);
}

.orbital-ring.r2 {
  width: calc(var(--radius) * 2 + 48px);
  height: calc(var(--radius) * 2 + 48px);
  border: 1px dashed rgba(201, 164, 76, 0.07);
  animation: rotateRing 60s linear infinite;
}

.orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  max-width: 62%;
  text-align: center;
  z-index: 2;
}

.orbital-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.orbital-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.orbital-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.orbital-content.swap { animation: orbSwap 0.45s cubic-bezier(0.22, 1, 0.36, 1); }

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

.orbital-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--node);
  height: var(--node);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle)));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: rgba(15, 21, 53, 0.7);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  z-index: 3;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
  touch-action: manipulation;
}

.orbital-node .node-ico svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-base);
}

.orbital-node .node-name {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 72px;
  line-height: 1.15;
}

@media (hover: hover) {
  .orbital-node:hover { border-color: var(--glass-border-hover); }
}

.orbital-node.active {
  background: var(--gold-metal);
  border-color: transparent;
  box-shadow: 0 0 28px rgba(201, 164, 76, 0.5);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius))) rotate(calc(-1 * var(--angle))) scale(1.12);
}

.orbital-node.active .node-ico svg { stroke: var(--navy-deepest); }
.orbital-node.active .node-name { color: var(--navy-deepest); }

@media (max-width: 1024px) {
  .orbital { 
    height: auto; 
    display: flex; 
    flex-direction: column; 
    gap: var(--space-md);
    overflow: hidden; /* Constrain any remaining absolute children */
    width: 100%;
    max-width: 100%;
  }
  .orbital-rings { display: none; }
  .orbital-center { 
    position: relative; 
    top: auto; 
    left: auto; 
    transform: none; 
    max-width: 100%; 
    width: 100%;
    margin-bottom: var(--space-lg);
    background: rgba(15, 21, 53, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .orbital-node {
    position: relative;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    gap: var(--space-md);
  }
  .orbital-node::after {
    content: attr(data-title);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
  }
  .orbital-node.active {
    transform: none !important;
  }
  .orbital-node.active::after {
    color: var(--navy-deepest);
  }
  .orbital-node .node-name {
    display: none;
  }
  .orbital-title { font-size: 1.35rem; }
}

/* ===================================
   INTERACTIVE MENU — minimal bar + full-screen overlay
   =================================== */
.navbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* Menu toggle is now available on every screen size */
.mobile-toggle {
  display: flex;
  position: relative;
  z-index: var(--z-modal);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 8, 22, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Dedicated close control (the overlay now covers the navbar hamburger) */
.menu-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, border-color var(--transition-base);
}

.menu-overlay.active .menu-close {
  opacity: 1;
  transform: scale(1);
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--text-secondary);
  transition: background var(--transition-base);
}

.menu-close::before { transform: rotate(45deg); }
.menu-close::after { transform: rotate(-45deg); }

.menu-close:hover {
  border-color: var(--gold);
  transform: rotate(90deg);
}

.menu-close:hover::before,
.menu-close:hover::after { background: var(--gold); }

.menu-inner {
  display: flex;
  align-items: center;
  gap: var(--space-4xl);
  width: min(1200px, 90vw);
  margin: 0 auto;
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-2xl);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1 1 auto;
  min-width: 0;
}

.menu-list a {
  display: flex;
  align-items: baseline;
  gap: var(--space-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  transform: translateY(24px);
}

.menu-overlay.active .menu-list a {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-overlay.active .menu-list a:nth-child(1) { transition-delay: 0.06s; }
.menu-overlay.active .menu-list a:nth-child(2) { transition-delay: 0.10s; }
.menu-overlay.active .menu-list a:nth-child(3) { transition-delay: 0.14s; }
.menu-overlay.active .menu-list a:nth-child(4) { transition-delay: 0.18s; }
.menu-overlay.active .menu-list a:nth-child(5) { transition-delay: 0.22s; }
.menu-overlay.active .menu-list a:nth-child(6) { transition-delay: 0.26s; }
.menu-overlay.active .menu-list a:nth-child(7) { transition-delay: 0.30s; }
.menu-overlay.active .menu-list a:nth-child(8) { transition-delay: 0.34s; }

.menu-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  min-width: 34px;
  letter-spacing: 1px;
}

.menu-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.menu-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.menu-list a:hover .menu-label,
.menu-list a.active .menu-label {
  color: var(--gold);
}

.menu-aside {
  flex: 0 0 320px;
  border-left: 1px solid var(--glass-border);
  padding-left: var(--space-2xl);
  opacity: 0;
  transition: opacity 0.6s ease 0.35s;
}

.menu-overlay.active .menu-aside { opacity: 1; }

.menu-aside-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.menu-contact {
  display: block;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.menu-contact:hover { color: var(--gold); }

.menu-aside-loc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: var(--space-md) 0 var(--space-xl);
}

.menu-aside .btn { width: auto; }

@media (max-width: 860px) {
  .menu-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xl);
    width: 100%;
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
    padding-top: var(--space-4xl);
  }
  .menu-list { width: 100%; }
  .menu-list a { gap: var(--space-md); }
  .menu-desc {
    white-space: normal;
    overflow-wrap: break-word;
  }
  .menu-aside {
    flex-basis: auto;
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--glass-border);
    padding-left: 0;
    padding-top: var(--space-xl);
  }
}

@media (max-width: 420px) {
  .menu-label { font-size: 1.6rem; }
  .menu-inner { padding-top: var(--space-3xl); }
  .menu-close { top: var(--space-lg); right: var(--space-lg); }
}

/* ===================================
   SECURITY & COMPLIANCE
   =================================== */
.security {
  background: linear-gradient(180deg, var(--navy-deepest) 0%, var(--navy-deep) 100%);
  position: relative;
}

.security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.security-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.security-point {
  padding: var(--space-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.security-point:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
}

.sp-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 164, 76, 0.16), rgba(201, 164, 76, 0.05));
  border: 1px solid rgba(201, 164, 76, 0.22);
  margin-bottom: var(--space-md);
}

.sp-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-point h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.security-point p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .security-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

@media (max-width: 480px) {
  .security-points { grid-template-columns: 1fr; }
}

/* ===================================
   FAQ ACCORDION
   =================================== */
.faq {
  background: var(--navy-deepest);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.faq-header .section-label { justify-content: center; }
.faq-header .section-label::before { display: none; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  transition: color var(--transition-base);
}

.faq-q:hover { color: var(--gold); }

.faq-chevron {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--gold);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.faq-item.open .faq-a { opacity: 1; }

.faq-a p {
  padding: 0 0 var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 94%;
}


