/* ============================================================
   BML Tech — Marketing site design system  (REDESIGN PROPOSAL)
   Corporate palette unchanged: every token below is copied from the
   live site's own :root. No new hues introduced.

   Measured problems in the current styles.css this replaces:
     · 25 distinct font-size values across 94 declarations, despite a
       --text-* scale already being defined and then ignored
     · a full-screen loading screen that blocks first paint
     · 56 animated particles + 11 keyframe animations
     · flip-cards hiding real content behind a hover gimmick
   ============================================================ */

:root {
  /* ---- brand palette (unchanged, from the live site) ---- */
  --bg-deep:       #040811;
  --bg-primary:    #080e1c;
  --bg-elevated:   #0c1528;
  --cyan-primary:  #00cdff;
  --cyan-glow:     #00cdff44;
  --cyan-deep:     #0293c0;
  --cyan-dark:     #065272;
  --red-alert:     #d3354f;
  --white:         #ffffff;
  --gray-100:      #e8e9eb;
  --gray-300:      #b0b3ba;
  --gray-500:      #7a8194;
  --accent-green:  #00e89d;
  --accent-purple: #a78bfa;
  --accent-amber:  #f0a030;
  --accent-pink:   #f472b6;
  --accent-teal:   #34d399;

  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Share Tech Mono', monospace;

  /* ---- surfaces ---- */
  --surface-1: linear-gradient(168deg, rgba(15,26,48,0.86), rgba(8,14,28,0.90));
  --surface-2: linear-gradient(168deg, rgba(19,32,58,0.92), rgba(11,19,36,0.94));
  --surface-sunken: rgba(3,7,16,0.60);

  --line-faint:  rgba(120,190,255,0.09);
  --line-soft:   rgba(120,190,255,0.17);

  --shadow-2: 0 6px 22px -8px rgba(0,0,0,0.6);
  --shadow-3: 0 26px 60px -18px rgba(0,0,0,0.75);

  /* ---- spacing: 4px base ---- */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
  --s-12: 56px; --s-16: 80px; --s-20: 112px;

  /* ---- radius ---- */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 22px; --r-pill: 999px;

  /* ---- type: 8 steps, fluid where it matters ---- */
  --t-micro: 0.6875rem;
  --t-xs:    0.8125rem;
  --t-sm:    0.9375rem;
  --t-md:    1.0625rem;
  --t-lg:    1.25rem;
  --t-xl:    clamp(1.5rem, 2.2vw, 2rem);
  --t-2xl:   clamp(2rem, 3.6vw, 3rem);
  --t-3xl:   clamp(2.6rem, 6vw, 4.6rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-1: 150ms;
  --dur-2: 260ms;

  --nav-h: 68px;
  --maxw: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--gray-100);
  background: var(--bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient field — replaces the 56-particle DOM soup with two gradients
   and one grid, all in a single fixed pseudo-element. */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1200px 700px at 82% -10%, rgba(0,205,255,0.10), transparent 60%),
    radial-gradient(900px 600px at 2% 8%, rgba(167,139,250,0.07), transparent 58%),
    linear-gradient(90deg, rgba(0,205,255,0.018) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(0,205,255,0.018) 1px, transparent 1px);
  background-size: auto, auto, 52px 52px, 52px 52px;
}

::selection { background: rgba(0,205,255,0.28); color: var(--white); }
:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--bg-deep), 0 0 0 4px var(--cyan-primary); border-radius: var(--r-sm); }
img { max-width: 100%; display: block; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-6); }
.page { position: relative; z-index: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; gap: var(--s-5);
  padding: 0 var(--s-6);
  background: rgba(4,8,17,0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}
.nav.scrolled { background: rgba(4,8,17,0.90); border-bottom-color: var(--line-faint); }
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo-img { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: var(--s-2); margin-left: auto; }
.nav-links a {
  position: relative;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-sm);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--gray-300);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--cyan-primary); }
.nav-links a.active::after {
  content: ''; position: absolute; left: var(--s-3); right: var(--s-3); bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--cyan-primary);
  box-shadow: 0 0 10px rgba(0,205,255,0.8);
}
.nav-cta-mobile { display: none; }

.nav-hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-hamburger span { display: block; width: 18px; height: 1.5px; background: var(--gray-100); transition: transform var(--dur-2) var(--ease), opacity var(--dur-1); }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary, .btn-ghost, .btn-quiet {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  height: 46px; padding: 0 var(--s-6);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease),
              background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-deep));
  color: var(--bg-deep);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 26px -12px rgba(0,205,255,0.9);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 16px 34px -12px rgba(0,205,255,1); }
.btn-ghost { border-color: var(--line-soft); color: var(--gray-100); background: rgba(255,255,255,0.03); }
.btn-ghost:hover { border-color: rgba(0,205,255,0.5); color: var(--cyan-primary); background: rgba(0,205,255,0.08); }
.btn-quiet { height: 40px; padding: 0 var(--s-4); color: var(--gray-300); }
.btn-quiet:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-cta { height: 40px; padding: 0 var(--s-4); font-size: var(--t-xs); flex-shrink: 0; }

/* ============================================================
   SECTION RHYTHM
   ============================================================ */
.section { position: relative; padding: var(--s-20) 0; }
.section--contrast { background: linear-gradient(180deg, transparent, rgba(8,14,28,0.75) 12%, rgba(8,14,28,0.75) 88%, transparent); }
.section--tight { padding: var(--s-16) 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-primary);
  margin-bottom: var(--s-4);
}
.section-tag::before { content: ''; width: 22px; height: 1px; background: var(--cyan-primary); box-shadow: 0 0 8px var(--cyan-primary); }

.section-title {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 20ch;
}
.section-title em { font-style: normal; color: var(--cyan-primary); }
.section-title.wide { max-width: 26ch; }

.section-desc {
  margin-top: var(--s-4);
  max-width: 62ch;
  font-size: var(--t-md);
  color: var(--gray-300);
  line-height: 1.7;
}
.section-head { margin-bottom: var(--s-12); }
.section-head.center { text-align: center; }
.section-head.center .section-title,
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + var(--s-16)) 0 var(--s-16);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-6); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: var(--s-12); align-items: center; }

.hero-tag {
  display: inline-flex; align-items: center; gap: var(--s-2);
  height: 30px; padding: 0 var(--s-3);
  border: 1px solid rgba(0,205,255,0.32);
  border-radius: var(--r-pill);
  background: rgba(0,205,255,0.08);
  font-size: var(--t-xs); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cyan-primary);
  margin-bottom: var(--s-5);
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-green); box-shadow: 0 0 8px var(--accent-green); }

.hero-title {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-title em { font-style: normal; color: var(--cyan-primary); }
.hero-sub { margin-top: var(--s-5); max-width: 54ch; font-size: var(--t-lg); color: var(--gray-300); line-height: 1.6; }
.hero-sub strong { color: var(--gray-100); font-weight: 700; }
.hero-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-8); }

.hero-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1px; margin-top: var(--s-12);
  border: 1px solid var(--line-faint); border-radius: var(--r-lg);
  background: var(--line-faint); overflow: hidden;
}
.hero-stats > div { padding: var(--s-4); background: rgba(8,14,28,0.72); }
.hero-stat-value { font-family: var(--font-display); font-size: var(--t-lg); font-weight: 700; color: var(--white); display: block; line-height: 1.2; }
.hero-stat-label { font-size: var(--t-xs); color: var(--gray-500); margin-top: 2px; letter-spacing: 0.04em; }

/* ---- Radar: the site's signature motif, kept but rebuilt ---- */
.hero-visual { position: relative; aspect-ratio: 1; max-width: 460px; margin-left: auto; width: 100%; }
.radar { position: absolute; inset: 0; border-radius: 50%; }
.radar-ring { position: absolute; inset: 0; margin: auto; border: 1px solid rgba(0,205,255,0.16); border-radius: 50%; }
.radar-ring:nth-child(1) { width: 100%; height: 100%; }
.radar-ring:nth-child(2) { width: 74%; height: 74%; }
.radar-ring:nth-child(3) { width: 48%; height: 48%; }
.radar-ring:nth-child(4) { width: 22%; height: 22%; border-color: rgba(0,205,255,0.3); }
.radar-cross-h, .radar-cross-v { position: absolute; background: rgba(0,205,255,0.10); }
.radar-cross-h { left: 0; right: 0; top: 50%; height: 1px; }
.radar-cross-v { top: 0; bottom: 0; left: 50%; width: 1px; }
.radar-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(0,205,255,0.20) 30deg, transparent 68deg);
  animation: sweep 6s linear infinite;
}
@keyframes sweep { to { rotate: 360deg; } }
.radar-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan-primary); box-shadow: 0 0 14px var(--cyan-primary);
  translate: -50% -50%;
}
.radar-dot.threat { background: var(--red-alert); box-shadow: 0 0 18px var(--red-alert); width: 10px; height: 10px; }
.radar-dot.threat::after {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid var(--red-alert); opacity: 0.55;
  animation: ping 2s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(0.6); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
.radar-badge {
  position: absolute; left: 50%; bottom: -6px; translate: -50% 0;
  display: inline-flex; align-items: center; gap: var(--s-2);
  height: 30px; padding: 0 var(--s-4);
  border-radius: var(--r-pill);
  background: rgba(4,8,17,0.9);
  border: 1px solid rgba(0,205,255,0.3);
  font-family: var(--font-mono); font-size: var(--t-xs);
  color: var(--cyan-primary); white-space: nowrap;
}
.radar-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-green); box-shadow: 0 0 8px var(--accent-green); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + var(--s-16)) 0 var(--s-12);
  border-bottom: 1px solid var(--line-faint);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--t-2xl); font-weight: 900; line-height: 1.1;
  color: var(--white); max-width: 22ch;
}
.page-hero h1 em { font-style: normal; color: var(--cyan-primary); }
.page-hero p { margin-top: var(--s-4); max-width: 62ch; font-size: var(--t-md); color: var(--gray-300); }

.subnav { display: flex; gap: var(--s-2); flex-wrap: wrap; margin-top: var(--s-8); }
.subnav a {
  height: 36px; padding: 0 var(--s-4);
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-faint); border-radius: var(--r-pill);
  background: rgba(255,255,255,0.02);
  font-size: var(--t-xs); font-weight: 700; color: var(--gray-300);
  text-decoration: none; transition: all var(--dur-1) var(--ease);
}
.subnav a:hover { border-color: var(--line-soft); color: var(--white); }
.subnav a.active { background: rgba(0,205,255,0.12); border-color: rgba(0,205,255,0.45); color: var(--cyan-primary); }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  position: relative;
  padding: var(--s-8);
  border: 1px solid var(--line-faint);
  border-radius: var(--r-lg);
  background: var(--surface-1);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,205,255,0.34), transparent);
}
.card:hover { transform: translateY(-3px); border-color: var(--line-soft); box-shadow: var(--shadow-3); }
.card h3 { font-family: var(--font-display); font-size: var(--t-lg); font-weight: 700; color: var(--white); margin-bottom: var(--s-3); line-height: 1.25; }
.card p { color: var(--gray-300); font-size: var(--t-sm); line-height: 1.7; }

.feature-icon {
  width: 52px; height: 52px; margin-bottom: var(--s-5);
  display: grid; place-items: center;
  border-radius: var(--r-md);
  border: 1px solid rgba(0,205,255,0.28);
  background: rgba(0,205,255,0.08);
  color: var(--cyan-primary);
  box-shadow: 0 0 28px -10px rgba(0,205,255,0.7);
}
.feature-icon svg { width: 26px; height: 26px; }
/* Accent rotation gives the grid variety without new hues */
.card:nth-child(3n+2) .feature-icon { border-color: rgba(167,139,250,0.30); background: rgba(167,139,250,0.09); color: var(--accent-purple); box-shadow: 0 0 28px -10px rgba(167,139,250,0.7); }
.card:nth-child(3n+3) .feature-icon { border-color: rgba(0,232,157,0.30); background: rgba(0,232,157,0.09); color: var(--accent-green); box-shadow: 0 0 28px -10px rgba(0,232,157,0.7); }

.check-list { list-style: none; display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-5); }
.check-list li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: var(--t-sm); color: var(--gray-300); line-height: 1.6; }
.check-list li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 3px;
  border-radius: 50%;
  background: rgba(0,232,157,0.14);
  border: 1px solid rgba(0,232,157,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e89d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

/* ============================================================
   SPOTLIGHT (IntelliSight on the home page)
   ============================================================ */
.spotlight {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--s-12); align-items: center;
  padding: var(--s-12);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  background:
    radial-gradient(900px 340px at 100% 0, rgba(0,205,255,0.12), transparent 62%),
    var(--surface-2);
  box-shadow: var(--shadow-3);
}
.spotlight-badge {
  display: inline-flex; align-items: center; gap: var(--s-2);
  height: 26px; padding: 0 var(--s-3);
  border-radius: var(--r-sm);
  background: rgba(0,205,255,0.12); border: 1px solid rgba(0,205,255,0.34);
  font-family: var(--font-mono); font-size: var(--t-micro);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan-primary);
  margin-bottom: var(--s-4);
}
.spotlight-name { font-family: var(--font-display); font-size: var(--t-xl); font-weight: 900; color: var(--white); }
.spotlight-name span { color: var(--cyan-primary); }
.spotlight-pitch { margin-top: var(--s-3); color: var(--gray-300); font-size: var(--t-md); line-height: 1.7; }
.spotlight-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-8); }

/* Camera device illustration */
.device { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.device-lens {
  position: relative; width: 62%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, rgba(0,205,255,0.30), rgba(4,8,17,0.98) 62%);
  border: 1px solid rgba(0,205,255,0.34);
  box-shadow: 0 0 70px -14px rgba(0,205,255,0.75), inset 0 0 50px rgba(0,205,255,0.14);
  display: grid; place-items: center;
}
.device-lens::after {
  content: ''; width: 26%; aspect-ratio: 1; border-radius: 50%;
  background: var(--cyan-primary); box-shadow: 0 0 34px var(--cyan-primary);
  opacity: 0.9;
}
.device-scan {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(0,205,255,0.5);
  animation: ping 3s var(--ease) infinite;
}
.device-scan:nth-of-type(2) { animation-delay: 1s; }
.device-scan:nth-of-type(3) { animation-delay: 2s; }

/* ============================================================
   PRICING
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-5); align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: var(--s-8);
  border: 1px solid var(--line-faint); border-radius: var(--r-lg);
  background: var(--surface-1);
  box-shadow: var(--shadow-2);
}
.plan--featured {
  border-color: rgba(0,205,255,0.45);
  background: radial-gradient(700px 260px at 50% 0, rgba(0,205,255,0.14), transparent 64%), var(--surface-2);
  box-shadow: var(--shadow-3), 0 0 46px -18px rgba(0,205,255,0.7);
}
.plan-flag {
  position: absolute; top: 0; left: 50%; translate: -50% -50%;
  height: 26px; padding: 0 var(--s-4);
  display: inline-flex; align-items: center;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-deep));
  color: var(--bg-deep); font-size: var(--t-micro); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.plan-name { font-family: var(--font-display); font-size: var(--t-sm); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); }
.plan-price { margin-top: var(--s-3); font-family: var(--font-display); font-size: var(--t-xl); font-weight: 900; color: var(--white); line-height: 1; }
.plan-price small { font-family: var(--font-body); font-size: var(--t-xs); font-weight: 600; color: var(--gray-500); margin-left: var(--s-2); letter-spacing: 0.04em; }
.plan-for { margin-top: var(--s-3); font-size: var(--t-sm); color: var(--gray-300); }
.plan .check-list { flex: 1; }
.plan .btn-primary, .plan .btn-ghost { width: 100%; margin-top: var(--s-8); }

/* ============================================================
   STEPS (proceso)
   ============================================================ */
.steps { display: grid; gap: var(--s-5); counter-reset: step; }
.step {
  position: relative; display: grid; grid-template-columns: 56px minmax(0,1fr); gap: var(--s-5);
  padding: var(--s-6);
  border: 1px solid var(--line-faint); border-radius: var(--r-lg);
  background: var(--surface-1);
}
.step-num {
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: var(--r-md);
  border: 1px solid rgba(0,205,255,0.3);
  background: rgba(0,205,255,0.09);
  font-family: var(--font-display); font-size: var(--t-lg); font-weight: 900;
  color: var(--cyan-primary);
}
.step h3 { font-family: var(--font-display); font-size: var(--t-lg); color: var(--white); margin-bottom: var(--s-2); }
.step p { color: var(--gray-300); font-size: var(--t-sm); line-height: 1.7; }

/* ============================================================
   FAQ — native disclosure, no JS
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: var(--s-2); max-width: 860px; }
.faq details {
  border: 1px solid var(--line-faint); border-radius: var(--r-md);
  background: var(--surface-1); overflow: hidden;
}
.faq details[open] { border-color: var(--line-soft); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: var(--s-5) var(--s-6);
  display: flex; align-items: center; gap: var(--s-4);
  font-size: var(--t-md); font-weight: 700; color: var(--gray-100);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; margin-left: auto; flex-shrink: 0;
  width: 10px; height: 10px;
  border-right: 2px solid var(--cyan-primary); border-bottom: 2px solid var(--cyan-primary);
  rotate: 45deg; transition: rotate var(--dur-2) var(--ease);
}
.faq details[open] summary::after { rotate: -135deg; }
.faq .faq-body { padding: 0 var(--s-6) var(--s-5); color: var(--gray-300); font-size: var(--t-sm); line-height: 1.75; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  margin: var(--s-20) auto;
  max-width: var(--maxw);
  padding: var(--s-16) var(--s-8);
  text-align: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  background: radial-gradient(760px 300px at 50% 0, rgba(0,205,255,0.16), transparent 64%), var(--surface-2);
  box-shadow: var(--shadow-3);
}
.cta h2 { font-family: var(--font-display); font-size: var(--t-2xl); font-weight: 900; color: var(--white); line-height: 1.14; }
.cta h2 em { font-style: normal; color: var(--cyan-primary); }
.cta p { margin: var(--s-4) auto 0; max-width: 56ch; color: var(--gray-300); font-size: var(--t-md); }
.cta-actions { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; margin-top: var(--s-8); }

/* ============================================================
   FORMS (contacto)
   ============================================================ */
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--s-4); }
.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0 var(--s-4); height: 46px;
  border: 1px solid var(--line-soft); border-radius: var(--r-md);
  background: var(--surface-sunken); color: var(--gray-100);
  font-family: var(--font-body); font-size: var(--t-md); outline: none;
  transition: border-color var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.field textarea { height: auto; min-height: 132px; padding: var(--s-3) var(--s-4); resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--gray-500); opacity: 0.75; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--cyan-primary); background: rgba(0,205,255,0.05);
  box-shadow: 0 0 0 3px rgba(0,205,255,0.16);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--line-faint); background: rgba(6,11,22,0.7); margin-top: var(--s-20); }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: var(--s-16) var(--s-6) var(--s-10);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: var(--s-12);
}
.footer-brand-img { height: 38px; width: auto; }
.footer-brand-sub { margin-top: var(--s-3); font-family: var(--font-mono); font-size: var(--t-xs); color: var(--gray-500); letter-spacing: 0.06em; }
.footer-tagline { margin-top: var(--s-4); font-size: var(--t-sm); color: var(--gray-500); max-width: 34ch; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--s-8); }
.footer-links-col { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-links-col h4 { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); }
.footer-links-col a { font-size: var(--t-sm); color: var(--gray-300); text-decoration: none; transition: color var(--dur-1) var(--ease); }
.footer-links-col a:hover { color: var(--cyan-primary); }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto; padding: var(--s-5) var(--s-6) var(--s-10);
  border-top: 1px solid var(--line-faint);
  font-size: var(--t-xs); color: var(--gray-500);
  display: flex; gap: var(--s-4); flex-wrap: wrap; align-items: center;
}
.footer-bottom a { color: var(--cyan-primary); text-decoration: none; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 520ms var(--ease), transform 520ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-10); }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .spotlight { grid-template-columns: 1fr; gap: var(--s-8); padding: var(--s-8); }
  .device { max-width: 300px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--s-8); }
}

@media (max-width: 760px) {
  :root { --nav-h: 60px; }
  .nav { padding: 0 var(--s-4); }
  .nav-hamburger { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: var(--s-1);
    margin: 0; padding: var(--s-4);
    background: rgba(4,8,17,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-faint);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: var(--s-3) var(--s-4); font-size: var(--t-md); }
  .nav-links a.active::after { display: none; }
  .nav-cta-mobile { justify-content: center; margin-top: var(--s-2); background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-deep)); color: var(--bg-deep); border-radius: var(--r-md); height: 44px; font-weight: 700; }

  .section { padding: var(--s-16) 0; }
  .cta { margin: var(--s-16) var(--s-4); padding: var(--s-10) var(--s-5); }
  .card, .plan, .step { padding: var(--s-5); }
  .step { grid-template-columns: 44px minmax(0,1fr); gap: var(--s-4); }
  .step-num { width: 44px; height: 44px; font-size: var(--t-md); }
  .hero-actions .btn-primary, .hero-actions .btn-ghost,
  .cta-actions .btn-primary, .cta-actions .btn-ghost { width: 100%; }
  .container { padding: 0 var(--s-4); }
}
