/* ==========================================================================
   CONNECT - ESTILO NEO-EDITORIAL FINTECH / SQUARE CARD
   Inspirado en la estética Square Card de la referencia:
   - Paleta: Fondo gris claro (#f1f2f6), blanco puro (#ffffff), negro azabache (#090a0f)
   - Acentos: Verde lima neón (#ccff00) y morado eléctrico (#8b5cf6)
   - Elementos: Botones pill con flecha diagonal (↗), tarjetas redondeadas (28px - 36px),
     diagramas vectoriales interactivos, y footer negro curvo.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg-page: #f1f2f6;
  --bg-card: #ffffff;
  --bg-card-subtle: #f8f9fc;
  --border-card: rgba(15, 23, 42, 0.08);
  --border-card-hover: rgba(15, 23, 42, 0.16);

  --text-main: #0a0c10;
  --text-secondary: #4b5563;
  --text-muted: #8c96a8;

  --accent-lime: #ccff00;
  --accent-lime-hover: #b8e600;
  --accent-lime-light: rgba(204, 255, 0, 0.16);
  --accent-purple: #8b5cf6;
  --accent-purple-light: rgba(139, 92, 246, 0.12);
  --accent-cyan: #06b6d4;

  --dark-bg: #090a0f;
  --dark-card: #12131a;
  --dark-border: rgba(255, 255, 255, 0.12);
  --dark-text: #ffffff;
  --dark-text-muted: #94a3b8;

  --radius-pill: 9999px;
  --radius-card: 28px;
  --radius-card-lg: 36px;
  --radius-card-sm: 18px;

  --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.09);
  --shadow-glow-lime: 0 10px 30px rgba(204, 255, 0, 0.35);
  --shadow-glow-purple: 0 10px 30px rgba(139, 92, 246, 0.3);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-page);
  overflow-x: hidden;
  line-height: 1.55;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

p {
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Gradients & Accents */
.text-purple {
  color: var(--accent-purple);
}

.text-lime {
  color: #65a30d;
}

.highlight-lime {
  background: var(--accent-lime);
  color: #0a0c10;
  padding: 2px 10px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-block;
}

/* ==========================================================================
   BUTTONS (Neo Pill Style)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-lime {
  background: var(--accent-lime);
  color: #0a0c10;
  border-color: rgba(0, 0, 0, 0.08);
}
.btn-lime:hover {
  background: var(--accent-lime-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-lime);
}

.btn-dark {
  background: var(--dark-bg);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-dark:hover {
  background: #1a1c24;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: var(--text-main);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.btn-white:hover {
  background: #f8f9fc;
  border-color: rgba(15, 23, 42, 0.25);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13.5px;
}

.arrow-diag {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 1.1em;
}
.btn:hover .arrow-diag {
  transform: translate(2px, -2px);
}

/* ==========================================================================
   HEADER / NAVBAR (Floating Rounded Pill)
   ========================================================================== */
.header-wrapper {
  position: sticky;
  top: 18px;
  z-index: 1000;
  padding: 0 20px;
  margin-bottom: 30px;
}

.navbar-pill {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: var(--text-main);
}
.nav-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.2s ease;
}
.nav-links a:hover {
  color: var(--text-main);
}
.nav-links a:hover .dot {
  background: var(--accent-lime);
  transform: scale(1.4);
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 40px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: clamp(38px, 4.3vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
  color: #0b0c11;
}

.hero-subtitle {
  font-size: 17.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.metric-item {
  display: flex;
  flex-direction: column;
}
.metric-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}
.metric-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Right: 3D Terminal Card with Disintegrating Pixels */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.terminal-card {
  width: 100%;
  max-width: 440px;
  background: var(--dark-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--dark-border);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  transform: perspective(1000px) rotateY(-4deg) rotateX(4deg);
  transition: transform 0.4s ease;
}
.terminal-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.terminal-header {
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mac-dots {
  display: flex;
  gap: 6px;
}
.mac-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333846;
}
.mac-dots span:nth-child(1) { background: #ef4444; }
.mac-dots span:nth-child(2) { background: #f59e0b; }
.mac-dots span:nth-child(3) { background: #10b981; }

.terminal-status {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--accent-lime);
  background: rgba(204, 255, 0, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.terminal-content {
  padding: 24px;
}

.chat-bubble-mock {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  position: relative;
}
.chat-sender {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-lime);
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.chat-body {
  font-size: 13.5px;
  color: #e2e8f0;
  line-height: 1.45;
}

/* Audio wave visualization */
.audio-player-mock {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 14px;
  padding: 10px 14px;
  margin-top: 10px;
}
.audio-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
}
.wave-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-grow: 1;
  height: 24px;
}
.wave-bars span {
  width: 3px;
  background: var(--accent-purple);
  border-radius: 2px;
  height: 8px;
}
.wave-bars span:nth-child(2n) { height: 18px; }
.wave-bars span:nth-child(3n) { height: 24px; }
.wave-bars span:nth-child(4n) { height: 12px; }

.terminal-node-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--dark-text-muted);
}
.terminal-node-status strong {
  color: #ffffff;
}

/* Floating Pixel Mosaic Effect */
.pixel-particle {
  position: absolute;
  border-radius: 6px;
  pointer-events: none;
  animation: floatPixel 4s ease-in-out infinite alternate;
}
.pixel-1 {
  width: 22px;
  height: 22px;
  background: var(--accent-lime);
  top: -15px;
  right: -10px;
  box-shadow: var(--shadow-glow-lime);
  animation-delay: 0s;
}
.pixel-2 {
  width: 16px;
  height: 16px;
  background: var(--accent-purple);
  bottom: 40px;
  right: -24px;
  box-shadow: var(--shadow-glow-purple);
  animation-delay: 0.8s;
}
.pixel-3 {
  width: 28px;
  height: 28px;
  background: #06b6d4;
  bottom: -15px;
  left: 20px;
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.35);
  animation-delay: 1.6s;
}
.pixel-4 {
  width: 12px;
  height: 12px;
  background: #ffffff;
  top: 35%;
  left: -20px;
  opacity: 0.8;
  animation-delay: 0.4s;
}
@keyframes floatPixel {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-14px) rotate(12deg); }
}

/* ==========================================================================
   HUB CARD (Great Rounded White Surface with 4 Vector Diagrams)
   ========================================================================== */
.hub-section {
  padding: 40px 0 80px;
}

.hub-card {
  background: var(--bg-card);
  border-radius: var(--radius-card-lg);
  border: 1px solid var(--border-card);
  padding: 56px;
  box-shadow: var(--shadow-subtle);
}

.hub-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hub-title {
  font-size: clamp(28px, 2.8vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.hub-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hub-header-right p {
  font-size: 15.5px;
  line-height: 1.55;
}

/* 4-Columns Grid with Vector Diagrams */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.hub-col {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--bg-card-subtle);
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}
.hub-col:hover {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.14);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Diagram 1: Concentric Rings */
.diagram-box {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.rings-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent-purple);
}
.ring-1 { width: 90px; height: 90px; opacity: 0.25; }
.ring-2 { width: 66px; height: 66px; opacity: 0.55; }
.ring-3 { width: 42px; height: 42px; opacity: 0.9; }
.ring-center {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-lime);
  box-shadow: var(--shadow-glow-lime);
}

/* Diagram 2: Toggles / UI Switches */
.toggles-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 140px;
}
.mini-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-pill);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
}
.mini-pill-dot {
  width: 22px;
  height: 12px;
  border-radius: 10px;
  background: var(--accent-lime);
  position: relative;
}
.mini-pill-dot::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0a0c10;
}

/* Diagram 3: Audio Radar / Sonar Wave */
.sonar-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sonar-wave {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent-purple);
  width: 100%;
  height: 100%;
  opacity: 0.3;
  animation: sonarRipple 2.5s infinite linear;
}
.sonar-wave:nth-child(2) {
  animation-delay: 1.25s;
}
.sonar-center-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-lime);
  font-size: 14px;
}
@keyframes sonarRipple {
  0% { transform: scale(0.4); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Diagram 4: Node Tree Hierarchy */
.tree-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.tree-root {
  background: var(--dark-bg);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
}
.tree-lines {
  width: 90px;
  height: 14px;
  border-left: 2px solid rgba(15, 23, 42, 0.2);
  border-right: 2px solid rgba(15, 23, 42, 0.2);
  border-top: 2px solid rgba(15, 23, 42, 0.2);
}
.tree-leaves {
  display: flex;
  gap: 12px;
}
.tree-leaf {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.hub-col-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}
.hub-col-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   CARDS ROW (3 Showcase Cards with Arrows Header)
   ========================================================================== */
.showcase-section {
  padding: 40px 0 80px;
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.showcase-title {
  font-size: clamp(26px, 2.5vw, 34px);
}

.arrows-group {
  display: flex;
  gap: 10px;
}
.circle-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}
.circle-arrow-btn:hover {
  background: var(--text-main);
  color: #ffffff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  min-height: 380px;
  box-shadow: var(--shadow-subtle);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: var(--shadow-hover);
}

.feature-tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg-card-subtle);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.feature-card-bottom {
  margin-top: auto;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 24px;
}

/* Feature 1 bottom visual */
.cost-comparison-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card-subtle);
  padding: 12px 18px;
  border-radius: 16px;
}
.cost-col {
  text-align: left;
}
.cost-col-title {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}
.cost-col-val {
  font-size: 16px;
  font-weight: 800;
}
.cost-col-val.strike {
  text-decoration: line-through;
  color: #ef4444;
}
.cost-col-val.lime {
  color: #15803d;
}

/* Feature 2 bottom visual */
.device-badges-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mini-dev-badge {
  background: var(--bg-card-subtle);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mini-dev-badge.active {
  background: rgba(204, 255, 0, 0.2);
  border-color: rgba(204, 255, 0, 0.4);
}

/* Feature 3 bottom visual */
.group-chat-bubble {
  background: var(--bg-card-subtle);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 12.5px;
  border-left: 3px solid var(--accent-purple);
}

/* ==========================================================================
   DISTINCTIVE SECTION (Numbered Items Left + Orbital Node Radar Right)
   ========================================================================== */
.distinctive-section {
  padding: 60px 0 100px;
}

.distinctive-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.distinctive-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.distinctive-title {
  font-size: clamp(32px, 3.5vw, 46px);
  margin-bottom: 36px;
  letter-spacing: -0.04em;
}

.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.numbered-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-card);
  padding: 20px 24px;
  transition: all 0.25s ease;
}
.numbered-item:hover {
  transform: translateX(6px);
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: var(--shadow-subtle);
}

.num-pill {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--accent-lime);
  color: #0a0c10;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(204, 255, 0, 0.3);
}

.item-content h4 {
  font-size: 16.5px;
  margin-bottom: 4px;
  color: var(--text-main);
}
.item-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Orbital Node Radar Illustration */
.orbital-radar-box {
  width: 100%;
  max-width: 440px;
  height: 440px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(15, 23, 42, 0.15);
}
.orbit-1 { width: 420px; height: 420px; }
.orbit-2 { width: 300px; height: 300px; }
.orbit-3 { width: 180px; height: 180px; }

.orbit-center-core {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--dark-bg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  z-index: 5;
}
.orbit-center-core img {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}

/* Orbiting Satellites */
.satellite {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  box-shadow: var(--shadow-subtle);
  animation: floatSat 4s ease-in-out infinite alternate;
}
.sat-1 {
  width: 52px;
  height: 52px;
  background: var(--accent-lime);
  color: #0a0c10;
  top: 30px;
  left: 60px;
}
.sat-2 {
  width: 46px;
  height: 46px;
  background: var(--accent-purple);
  color: #ffffff;
  bottom: 40px;
  right: 50px;
  animation-delay: 1.5s;
}
.sat-3 {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  top: 50%;
  right: -5px;
  animation-delay: 0.8s;
}
@keyframes floatSat {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-8px) scale(1.05); }
}

/* ==========================================================================
   PRICING SECTION (Square Neo Editorial Cards)
   ========================================================================== */
.pricing-section {
  padding: 80px 0 100px;
  background: #ebedf2;
}

.pricing-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.pricing-header h2 {
  font-size: clamp(34px, 3.8vw, 48px);
  margin-bottom: 14px;
}

.pricing-header p {
  font-size: 17px;
  color: var(--text-secondary);
}

/* Toggle Switcher */
.pricing-switch-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.switch-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
}
.switch-label.active {
  color: var(--text-main);
}

.switch-pill {
  width: 60px;
  height: 32px;
  background: #d5d9e2;
  border-radius: var(--radius-pill);
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}
.switch-thumb {
  width: 26px;
  height: 26px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.switch-pill.annual {
  background: var(--dark-bg);
}
.switch-pill.annual .switch-thumb {
  transform: translateX(28px);
  background: var(--accent-lime);
}

.save-badge {
  background: var(--accent-lime);
  color: #0a0c10;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* 3 Pricing Cards Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Popular Card (Dark Jet Black) */
.pricing-card.popular {
  background: var(--dark-bg);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transform: scale(1.03);
  z-index: 2;
}
.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
}
.pricing-card.popular h3,
.pricing-card.popular .plan-price-num,
.pricing-card.popular .plan-feature-item {
  color: #ffffff;
}
.pricing-card.popular p,
.pricing-card.popular .plan-period {
  color: var(--dark-text-muted);
}
.pricing-card.popular .plan-divider {
  background: rgba(255, 255, 255, 0.1);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 32px;
  background: var(--accent-lime);
  color: #0a0c10;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow-lime);
}

.plan-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 42px;
}

.plan-price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.plan-currency {
  font-size: 26px;
  font-weight: 700;
}
.plan-price-num {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan-period {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.3;
}

.plan-annual-notice {
  font-size: 12.5px;
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 24px;
  min-height: 20px;
}
.pricing-card.popular .plan-annual-notice {
  color: var(--accent-lime);
}

.plan-divider {
  width: 100%;
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
  margin: 20px 0;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.plan-feature-item .check-icon {
  color: var(--accent-purple);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}
.pricing-card.popular .plan-feature-item .check-icon {
  color: var(--accent-lime);
}

.pricing-note-banner {
  margin-top: 40px;
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius-pill);
  padding: 16px 28px;
  border: 1px solid var(--border-card);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  font-weight: 600;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
}

.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.faq-header h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 12px;
}

.faq-accordion-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border-card);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-card:hover {
  border-color: rgba(15, 23, 42, 0.16);
}

.faq-question {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-main);
  user-select: none;
}
.faq-chevron {
  font-size: 20px;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.faq-card.open .faq-chevron {
  transform: rotate(45deg);
  color: var(--text-main);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 28px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}
.faq-card.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ==========================================================================
   FOOTER (Deep Black with Curved Cutout / Top Wave)
   ========================================================================== */
.footer-curved {
  background: var(--dark-bg);
  color: #ffffff;
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  padding: 80px 0 40px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.footer-curved::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.4), transparent);
}

.footer-cta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card-lg);
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.footer-cta-left h3 {
  color: #ffffff;
  font-size: clamp(26px, 2.5vw, 36px);
  margin-bottom: 10px;
}
.footer-cta-left p {
  color: var(--dark-text-muted);
  font-size: 15.5px;
}

.footer-newsletter-pill {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-pill);
  padding: 6px;
  max-width: 440px;
  width: 100%;
}
.footer-newsletter-pill input {
  flex-grow: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 18px;
  font-size: 14.5px;
  color: var(--text-main);
  font-family: var(--font-sans);
}
.footer-newsletter-pill input::placeholder {
  color: var(--text-muted);
}

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

.footer-col-brand img {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}
.footer-col-brand p {
  color: var(--dark-text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  color: var(--dark-text-muted);
  font-size: 14px;
}
.footer-col ul a:hover {
  color: var(--accent-lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--dark-text-muted);
}

.system-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}
.system-status-indicator .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-metrics {
    justify-content: center;
  }
  .hub-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .distinctive-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.popular {
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }
  .footer-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }
  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hub-card {
    padding: 28px 20px;
  }
  .hub-grid {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   LEGAL PAGES STYLING (Terms, Privacy, Security, SLA)
   ========================================================================== */
.legal-header-section {
  padding: 40px 0 24px;
}

.legal-container {
  max-width: 1040px;
  margin: 0 auto;
}

.legal-content-card {
  background: #ffffff;
  border-radius: var(--radius-card-lg);
  border: 1px solid var(--border-card);
  padding: 56px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 60px;
}

.legal-meta-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.legal-badge {
  background: var(--bg-card-subtle);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legal-badge.accent {
  background: var(--accent-lime);
  color: #0a0c10;
  border-color: rgba(0, 0, 0, 0.08);
}

.legal-nav-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.legal-nav-tab {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legal-nav-tab.active,
.legal-nav-tab:hover {
  background: var(--dark-bg);
  color: #ffffff;
  border-color: var(--dark-bg);
}

.legal-section-block {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.legal-section-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section-block h2 {
  font-size: 21px;
  margin-bottom: 14px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section-block h3 {
  font-size: 16.5px;
  margin: 18px 0 8px;
  color: var(--text-main);
}

.legal-section-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.legal-section-block ul,
.legal-section-block ol {
  margin-left: 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section-block li {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.legal-callout {
  background: var(--bg-card-subtle);
  border-left: 4px solid var(--accent-purple);
  padding: 18px 22px;
  border-radius: 14px;
  margin: 20px 0;
}

.legal-callout.lime {
  border-left-color: var(--accent-lime);
  background: rgba(204, 255, 0, 0.08);
}

.legal-callout p {
  margin-bottom: 0;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .legal-content-card {
    padding: 32px 20px;
  }
}
