/* ================================================================
   IA CRECE — LANDING PAGE  (v2 — Professional Match)
   Dark navy theme, cyan accents, matching iacrece.es identity
   ================================================================ */

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ── TOKENS ── */
:root {
  --navy-deep: #070d1b;
  --navy-dark: #0a1225;
  --navy-mid: #0d1830;
  --navy-card: #111d35;
  --navy-border: rgba(255, 255, 255, 0.07);
  --navy-hover: rgba(255, 255, 255, 0.04);

  --cyan: #00c8e8;
  --cyan-dk: #0099b8;
  --cyan-glow: rgba(0, 200, 232, 0.18);
  --cyan-glow-lg: rgba(0, 200, 232, 0.08);

  --green: #22c55e;
  --red: #ef4444;
  --orange: #f59e0b;

  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #4b6080;

  --ff-display: 'Outfit', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px var(--cyan-glow);

  --t: 0.28s ease;
}

/* ── BASE ── */
body {
  font-family: var(--ff-body);
  background: var(--navy-deep);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: 700;
}

img {
  display: block;
  max-width: 100%;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

.text-center {
  text-align: center;
}

.text-cyan {
  color: var(--cyan);
}

/* == SECTION SHELLS == */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.s-dark {
  background: var(--navy-deep);
}

.s-navy {
  background: var(--navy-dark);
}

.s-key {
  background: linear-gradient(135deg, #0a0619 0%, #070d1b 100%);
}

/* == EYEBROW == */
.section-eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

/* ── SECTION TITLE ── */
.s-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 48px;
}

.s-title--left {
  text-align: left;
  margin-bottom: 28px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-deep);
  background: var(--cyan);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  transition: all var(--t);
  box-shadow: 0 0 32px var(--cyan-glow), 0 4px 20px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: #20d6f2;
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(0, 200, 232, 0.4), 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.1rem;
}

/* nav buttons */
.btn-nav-outline {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-white);
  border: 1px solid rgba(0, 200, 232, 0.45);
  border-radius: var(--radius-pill);
  padding: 9px 22px;
  transition: all var(--t);
}

.btn-nav-outline:hover {
  background: rgba(0, 200, 232, 0.1);
  border-color: var(--cyan);
}

.btn-nav-fill {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy-deep);
  background: var(--cyan);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  transition: all var(--t);
}

.btn-nav-fill:hover {
  background: #20d6f2;
  transform: translateY(-1px);
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 0;
  transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t);
}

.nav.scrolled {
  background: rgba(7, 13, 27, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box {
  width: 38px;
  height: 38px;
  background: var(--cyan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--navy-deep);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.logo-word {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: 0.04em;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--t);
}

.nav-links a:hover {
  color: var(--text-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--t);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  text-align: center;
}

/* Radial cyan glow — same as .cta-bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0, 200, 232, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(107deg,
      rgba(7, 13, 27, 0.92) 0%,
      rgba(7, 13, 27, 0.75) 55%,
      rgba(7, 13, 27, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    align-items: center;
    text-align: center;
  }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-white);
  background: rgba(0, 200, 232, 0.12);
  border: 1px solid rgba(0, 200, 232, 0.3);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}

/* Headline */
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
  text-align: inherit;
}

.hero-cyan {
  background: linear-gradient(90deg, var(--cyan) 0%, #60efff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.7s 0.45s forwards;
  text-align: inherit;
  max-width: 600px;
}

.hero-desc strong {
  color: var(--text-white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .hero-actions {
    align-items: center;
  }
}

.hero-micro {
  font-size: 0.78rem;
  /* color: var(--text-dim);*/
  letter-spacing: 0.02em;
}

/* ================================================================
   HERO MOCKUP (GLASSMORPHISM)
   ================================================================ */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: rgba(17, 29, 53, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 200, 232, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: left;
}

.hero-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 232, 0.4), transparent);
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(10, 18, 37, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.mh-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mh-avatar {
  width: 36px;
  height: 36px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  box-shadow: 0 0 12px rgba(0, 200, 232, 0.4);
}

.mh-info {
  display: flex;
  flex-direction: column;
}

.mh-info strong {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 600;
}

.mh-info span {
  font-size: 0.75rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.mh-info span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
}

.mockup-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 0h18v2H2zM0 2h2v18H0z' fill='rgba(255,255,255,0.01)' fill-rule='evenodd'/%3E%3C/svg%3E");
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.msg {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.4;
  position: relative;
  animation: slideIn 0.5s ease-out both;
}

.user-msg {
  align-self: flex-end;
  background: #d9fdd3;
  color: #111b21;
  border-bottom-right-radius: 4px;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
}

.ai-msg {
  align-self: flex-start;
  background: #ffffff;
  border: none;
  color: #111b21;
  border-bottom-left-radius: 4px;
  padding-bottom: 24px;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
}

.msg-time {
  display: block;
  font-size: 0.65rem;
  color: #667781;
  margin-top: 6px;
  text-align: right;
}

.ai-msg .msg-time {
  color: #667781;
  position: absolute;
  right: 34px;
  bottom: 8px;
}

.msg-check {
  position: absolute;
  right: 12px;
  bottom: 6px;
}

.ai-msg:nth-child(2) {
  animation-delay: 1.2s;
}

.user-msg:nth-child(3) {
  animation-delay: 2.2s;
}

.ai-msg:nth-child(4) {
  animation-delay: 3.2s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mockup-tag {
  position: absolute;
  right: -20px;
  top: -15px;
  background: var(--navy-dark);
  border: 1px solid var(--cyan);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  animation: bounceTag 2.5s infinite ease-in-out;
  z-index: 10;
}

.mockup-tag svg {
  color: var(--cyan);
}

@keyframes bounceTag {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* ================================================================
   REALIDAD
   ================================================================ */
.s-dark .s-title {
  margin-bottom: 52px;
}

.reality-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin-bottom: 52px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.r-card {
  padding: 36px 32px 0 32px;
  /*border-radius: var(--radius-xl);*/
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.r-card--yes {
  background: linear-gradient(180deg, var(--navy-mid) 0%, rgba(0, 200, 232, 0.08) 100%);
  border-color: rgba(0, 200, 232, 0.3);
}

.r-card--no {
  background: linear-gradient(180deg, rgba(30, 10, 15, 0.9) 0%, rgba(100, 10, 15, 0.3) 100%);
  border-color: rgba(239, 68, 68, 0.3);
}

.r-img-wrap {
  margin-top: auto;
  margin-left: -32px;
  margin-right: -32px;
  margin-bottom: 0;
  width: calc(100% + 64px);
  position: relative;
  display: flex;
  justify-content: center;
}

.r-img-wrap img {
  width: 100%;
  max-width: 400px;
  object-fit: contain;
  display: block;
}

.r-card--no .r-number {
  color: var(--red);
}

.r-card-top {
  margin-bottom: 20px;
}

.r-tag {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

.r-tag--green {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.r-tag--red {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.r-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 4px;
}

.r-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.r-divider {
  height: 1px;
  background: var(--navy-border);
  margin: 16px 0;
}

.r-pain {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 16px;
}

.r-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.r-note--muted {
  color: var(--text-dim);
}

.r-versus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
}

.vs-pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.vs-arrow {
  color: var(--text-dim);
  font-size: 1.2rem;
}

/* micro bomb */
.micro-bomb {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  /*border-radius: var(--radius-lg);*/
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--text-muted);
}

.micro-bomb span {
  font-size: 1.4rem;
}

.micro-bomb strong {
  color: var(--text-white);
}

/* ================================================================
   SPLIT LAYOUT (Problema)
   ================================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-img-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 40, 0.4);
}

.split-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 20px;
  background: rgba(7, 13, 27, 0.85);
  border: 1px solid rgba(0, 200, 232, 0.25);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  text-align: center;
  min-width: 120px;
}

.split-badge--top {
  top: 20px;
  right: 20px;
}

.split-badge--bot {
  bottom: 20px;
  left: 20px;
}

.sb-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.sb-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Problem Infographic */
.problem-infographic {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.problem-infographic::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 30px;
  left: 0;
  width: 2px;
  background: var(--navy-border);
  z-index: 0;
}

.pi-node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.pi-node::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 2px solid var(--text-muted);
  z-index: 2;
  transition: all var(--t);
}

.pi-node:hover::before {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.pi-icon {
  font-size: 1.6rem;
  color: var(--cyan);
  background: var(--navy-card);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--navy-border);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pi-content {
  background: linear-gradient(180deg, var(--navy-card), var(--navy-dark));
  border: 1px solid var(--navy-border);
  border-top: 2px solid rgba(0, 200, 232, 0.45);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  flex: 1;
  transition: all var(--t);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 20px rgba(0, 200, 232, 0.1);
}

.pi-content::after {
  content: '';
  position: absolute;
  left: -8.5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: var(--navy-card);
  border-bottom: 1px solid var(--navy-border);
  border-left: 1px solid var(--navy-border);
  transition: background var(--t);
}

.pi-node:hover .pi-content {
  border-color: rgba(0, 200, 232, 0.2);
  background: rgba(0, 200, 232, 0.03);
}

.pi-node:hover .pi-content::after {
  background: var(--navy-deep);
  border-color: rgba(0, 200, 232, 0.2);
}

.pi-content strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text-white);
}

.pi-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pi-content p strong {
  display: inline;
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.9rem;
}

.pi-urgent::before {
  border-color: var(--red);
  background: rgba(239, 68, 68, 0.2);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

.pi-urgent .pi-icon {
  color: var(--red);
  border-color: rgba(239, 68, 68, 0.3);
}

@media (min-width: 900px) {

  /* Cascading layout for desktop */
  .pi-node:nth-child(2) {
    margin-left: 40px;
  }

  .pi-node:nth-child(3) {
    margin-left: 80px;
  }

  .pi-node:nth-child(4) {
    margin-left: 120px;
  }
}

.problem-closing {
  text-align: center;
  margin-top: 36px;
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-white);
  padding-top: 24px;
  border-top: 1px dashed var(--navy-border);
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 40px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.stat-desc {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--navy-border);
}

/* ================================================================
   SOLUTION CARDS
   ================================================================ */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.sol-card {
  padding: 36px 28px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all var(--t);
  cursor: default;
}

.sol-card:hover {
  border-color: rgba(0, 200, 232, 0.3);
  background: rgba(0, 200, 232, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 32px var(--cyan-glow-lg);
}

.sol-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 200, 232, 0.1);
  border: 1px solid rgba(0, 200, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: all var(--t);
}

.sol-card:hover .sol-icon-wrap {
  background: rgba(0, 200, 232, 0.18);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.sol-card h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
}

.sol-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
}

.step-box {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  background: linear-gradient(180deg, var(--navy-card), var(--navy-dark));
  border: 1px solid var(--navy-border);
  border-top: 2px solid rgba(0, 200, 232, 0.45);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 20px rgba(0, 200, 232, 0.1);
}

.step-box:hover {
  border-color: rgba(0, 200, 232, 0.5);
  border-top-color: rgba(0, 200, 232, 0.8);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 200, 232, 0.18);
  transform: translateY(-3px);
}

.step-n {
  font-family: var(--ff-display);
  font-size: 12rem;
  font-weight: 600;
  color: var(--cyan);
  opacity: 0.25;
  line-height: 1;
  /* letter-spacing: -0.02em;*/
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t), color var(--t);
}

.step-box:hover .step-n {
  opacity: 0.6;
}

.step-content {
  padding: 20px 18px;
  text-align: left;
}

.step-box h3 {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-white);
}

.step-box p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-conn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(0, 200, 232, 0.3);
  padding: 0 8px;
  user-select: none;
  padding-top: 20px;
}

.step-conn i {
  font-size: 1.6rem;
}

.how-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hn-check {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================================================================
   KEY BLOCK
   ================================================================ */
.key-h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 12px;
}

.key-sub {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.key-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 660px;
  margin: 0 auto 36px;
}

.kt-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: var(--radius-md);
  transition: all var(--t);
}

.kt-row:hover {
  background: rgba(239, 68, 68, 0.09);
  border-color: rgba(239, 68, 68, 0.3);
}

.kt-cond {
  flex: 1;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: left;
}

.kt-arr {
  color: var(--text-dim);
  font-size: 1.1rem;
}

.kt-lose {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.06em;
}

.key-always {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  padding: 14px 32px;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-pill);
}

/* ================================================================
   RESULTS
   ================================================================ */
.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.res-card {
  padding: 48px 24px;
  background: linear-gradient(180deg, var(--navy-card), var(--navy-dark));
  border: 1px solid rgba(0, 200, 232, 0.18);
  border-top: 2px solid rgba(0, 200, 232, 0.45);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--t);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 20px rgba(0, 200, 232, 0.1);
}

.res-card:hover {
  border-color: rgba(0, 200, 232, 0.5);
  border-top-color: rgba(0, 200, 232, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 32px var(--cyan-glow-lg);
}

.res-num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 10px;
}

.res-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.res-note {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 24px;
  display: block;
}

/* ================================================================
   FILTER
   ================================================================ */
.filter-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.filter-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.filter-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.filter-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white);
}

.fc-check {
  color: var(--green);
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.bomb-card {
  padding: 40px 32px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bomb-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bomb-card strong {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.01em;
}

.bomb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
  transition: all var(--t);
}

.bomb-link:hover {
  text-decoration-color: var(--cyan);
  color: var(--cyan);
}

.bomb-link i {
  color: var(--cyan);
  font-size: 1.1rem;
}

/* ================================================================
   DEMO
   ================================================================ */
.demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.demo-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 420px;
}

.demo-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 320px;
}

.btn-demo-wp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  background: #25d366;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  transition: all var(--t);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  text-align: center;
}

.btn-demo-wp:hover {
  background: #1fbc5a;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.btn-demo-voice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(0, 200, 232, 0.08);
  border: 1px solid rgba(0, 200, 232, 0.25);
  border-radius: var(--radius-md);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--cyan);
  transition: all var(--t);
}

.btn-demo-voice:hover {
  background: rgba(0, 200, 232, 0.15);
  border-color: var(--cyan);
  transform: translateX(3px);
}

/* Chat mockup */
.chat-mockup {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--navy-border);
}

.chat-dots {
  display: flex;
  gap: 6px;
}

.chat-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.chat-dots span:nth-child(1) {
  background: #ff5f57;
}

.chat-dots span:nth-child(2) {
  background: #febc2e;
}

.chat-dots span:nth-child(3) {
  background: #28c840;
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.chat-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.chat-msg--user {
  flex-direction: row-reverse;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 200, 232, 0.15);
  border: 1px solid rgba(0, 200, 232, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

.chat-avatar--user {
  background: rgba(148, 163, 184, 0.1);
  border-color: rgba(148, 163, 184, 0.2);
  color: var(--text-muted);
}

.chat-bubble {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: 0 14px 14px 14px;
  padding: 12px 16px;
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.55;
  max-width: 280px;
}

.chat-bubble--user {
  background: rgba(0, 200, 232, 0.1);
  border-color: rgba(0, 200, 232, 0.2);
  border-radius: 14px 0 14px 14px;
  color: var(--cyan);
  font-weight: 500;
}

.chat-stats-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cs-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 200, 232, 0.1);
  border: 1px solid rgba(0, 200, 232, 0.2);
  color: var(--cyan);
}

.chat-tag {
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  border-top: 1px solid var(--navy-border);
  background: var(--navy-mid);
}

/* ================================================================
   FORM
   ================================================================ */
.cta-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.form-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 44px 44px 36px;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.form-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 28px;
  text-align: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text-white);
  transition: all var(--t);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(0, 200, 232, 0.5);
  background: rgba(0, 200, 232, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 200, 232, 0.08);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234b6080' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy-dark);
  color: var(--text-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-form {
  width: 100%;
  padding: 16px;
  background: var(--cyan);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-deep);
  cursor: pointer;
  transition: all var(--t);
  box-shadow: 0 0 24px var(--cyan-glow);
  margin-top: 8px;
}

.btn-form:hover {
  background: #20d6f2;
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(0, 200, 232, 0.35);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 16px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 24px 0;
}

.fs-icon {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 12px;
}

.form-success h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ================================================================
   CTA FINAL
   ================================================================ */
/* ── CTA intermedio (entre proceso y resultados) ── */
.s-cta-mid {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #091020 50%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 200, 232, 0.12);
  border-bottom: 1px solid rgba(0, 200, 232, 0.12);
}

.s-cta-mid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0, 200, 232, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
}

.s-cta-mid .s-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
}

.s-cta-final {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0, 200, 232, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 28px;
}

.up-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

.cta-h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 24px;
}

.cta-body {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.65;
}

.cta-fine {
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ================================================================
   ANIMATIONS & SCROLL REVEAL
   ================================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px currentColor;
  }

  50% {
    opacity: 0.5;
    box-shadow: 0 0 14px currentColor;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-delay-4 {
  transition-delay: 0.48s;
}

/* ================================================================
   TESTIMONIALS / SOCIAL PROOF
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  border-color: rgba(0, 200, 232, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.t-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.t-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.t-date {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--ff-display);
  letter-spacing: 0.04em;
}

.t-metric {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(0, 200, 232, 0.08);
  border: 1px solid rgba(0, 200, 232, 0.2);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
}

.t-metric i {
  font-size: 1rem;
}

.t-quote {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
  border-top: 1px solid var(--navy-border);
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--navy-deep);
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  color: var(--text-white);
  margin-bottom: 2px;
}

.t-author span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── Problem list icons (Phosphor) ── */
.pl-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cyan);
  display: flex;
  align-items: flex-start;
}

.pl-icon i {
  font-size: 1.4rem;
  line-height: 1;
}

/* ── Filter checks (Phosphor) ── */
.fc-check {
  color: var(--green);
  font-size: 1.1rem;
  margin-right: 6px;
  flex-shrink: 0;
}

/* ── How-note checks (Phosphor) ── */
.hn-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.hn-check i {
  font-size: 1.1rem;
}

/* ── key-always (Phosphor arrow) ── */
.key-always i {
  font-size: 1.2rem;
  color: var(--cyan);
  vertical-align: middle;
  margin-right: 4px;
}

/* ── micro-bomb (Phosphor trend-down) ── */
.micro-bomb i {
  font-size: 1.8rem;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── Step icon chip above number ── */
.step-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(0, 200, 232, 0.1);
  border: 1px solid rgba(0, 200, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 1.2rem;
}

/* ── step-conn Phosphor arrow ── */
.step-conn i {
  font-size: 1.4rem;
  color: var(--text-dim);
}

/* ── CTA after process section ── */
.how-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-context {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── CTA after results section ── */
.res-cta {
  margin-top: 36px;
}

/* ── Filter CTA link ── */
.filter-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan);
  border-bottom: 1px solid rgba(0, 200, 232, 0.3);
  padding-bottom: 2px;
  transition: all var(--t);
}

.filter-cta:hover {
  color: #20d6f2;
  border-color: #20d6f2;
  gap: 12px;
}

/* ── Bomb card icon (Phosphor x-circle) ── */
.bomb-icon-wrap {
  font-size: 3.2rem;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  line-height: 1;
}

/* ── Demo buttons hierarchy ── */
.btn-demo-primary {
  background: #25d366 !important;
  font-size: 1rem !important;
  padding: 18px 32px !important;
  box-shadow: 0 0 32px rgba(37, 211, 102, 0.3) !important;
}

.btn-demo-primary:hover {
  background: #1fb855 !important;
  box-shadow: 0 0 48px rgba(37, 211, 102, 0.45) !important;
}

/* Demo trust micro-copy */
.demo-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 14px;
}

.demo-trust i {
  color: var(--cyan);
  font-size: 0.9rem;
}

/* ================================================================
   FOCUS VISIBLE — Accessiblity
   ================================================================ */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 900px) {

  .split-layout,
  .demo-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .split-img {
    order: -1;
  }

  .sol-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps-row {
    flex-direction: column;
    gap: 0;
  }

  .step-box {
    padding: 24px 20px;
  }

  .step-conn {
    padding: 6px 0;
    transform: rotate(90deg);
  }

  .res-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .reality-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .r-versus {
    flex-direction: row;
    padding: 0;
  }

  .vs-arrow {
    transform: rotate(90deg);
  }

  .stats-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-sep {
    display: none;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .form-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reality-grid {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .res-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .key-table {
    padding: 0;
  }

  .kt-row {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* Mobile nav open */
.nav-open .nav-links,
.nav-open .nav-actions {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(7, 13, 27, 0.97);
  backdrop-filter: blur(18px);
  padding: 24px 32px;
  border-bottom: 1px solid var(--navy-border);
  gap: 20px;
  z-index: 199;
}

.nav-open .nav-links {
  top: 68px;
}

.nav-open .nav-actions {
  top: calc(68px + 180px);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding-top: 72px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Reuse the logo-mark from nav but sized for footer */
.brand-logo .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--navy-deep);
  flex-shrink: 0;
  overflow: hidden;
}

.brand-logo .mark-i {
  font-family: var(--ff-display);
  font-weight: 900;
  font-style: italic;
  color: var(--navy-deep);
}

.brand-logo .mark-a {
  font-family: var(--ff-display);
  font-weight: 900;
  color: var(--navy-deep);
}

.brand-logo .logo-text {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text-white);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

/* Link columns */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-links h4 {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 0;
  transition: color var(--t);
  display: block;
}

.footer-links a:hover {
  color: var(--cyan);
}

/* Social column */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-social h4 {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--navy-border);
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: all var(--t);
  text-decoration: none;
}

.social-icons a:hover {
  background: rgba(0, 200, 232, 0.12);
  border-color: rgba(0, 200, 232, 0.35);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-align: center;
}

.footer-bottom p a {
  color: var(--text-muted);
  transition: color var(--t);
}

.footer-bottom p a:hover {
  color: var(--cyan);
}

/* ── Footer responsive ── */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer {
    padding-top: 52px;
  }
}

/* ================================================================
   FLOATING CHAT WIDGET
   ================================================================ */

/* ── Floating bot button ── */
.floating-bot-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 200, 232, 0.35), 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: botBounce 3s ease-in-out infinite;
}

.floating-bot-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 200, 232, 0.5), 0 4px 16px rgba(0, 0, 0, 0.5);
  animation: none;
}

@keyframes botBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ── Chat window container ── */
.chat-widget-container {
  position: fixed;
  bottom: 108px;
  right: 28px;
  z-index: 999;
  width: 370px;
  height: 520px;
  border-radius: 18px;
  background: var(--navy-dark);
  border: 1px solid rgba(0, 200, 232, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 40px rgba(0, 200, 232, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;

  /* Hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

/* Open state — toggled via JS */
.chat-widget-container.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* ── Header ── */
.chat-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(0, 200, 232, 0.12) 0%, rgba(0, 200, 232, 0.06) 100%);
  border-bottom: 1px solid rgba(0, 200, 232, 0.15);
  flex-shrink: 0;
}

.chat-widget-header span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-white);
}

.chat-widget-header span i {
  font-size: 1.2rem;
  color: var(--cyan);
}

.chat-widget-header button {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.chat-widget-header button:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* ── Chat body (scrollable messages) ── */
.cw-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--navy-deep);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 200, 232, 0.2) transparent;
}

.cw-body::-webkit-scrollbar {
  width: 5px;
}

.cw-body::-webkit-scrollbar-thumb {
  background: rgba(0, 200, 232, 0.25);
  border-radius: 8px;
}

/* ── Message bubbles ── */
.cw-msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.55;
  word-break: break-word;
  animation: cwFadeIn 0.25s ease;
}

@keyframes cwFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cw-msg--bot {
  align-self: flex-start;
  background: rgba(0, 200, 232, 0.1);
  border: 1px solid rgba(0, 200, 232, 0.15);
  color: var(--text-light);
  border-bottom-left-radius: 4px;
}

.cw-msg--bot a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cw-msg--bot strong {
  color: var(--cyan);
  font-weight: 700;
}

.cw-msg--user {
  align-self: flex-end;
  background: var(--cyan);
  color: var(--navy-deep);
  font-weight: 500;
  border-bottom-right-radius: 4px;
}

/* ── Typing indicator ── */
.cw-typing {
  align-self: flex-start;
  display: flex;
  gap: 5px;
  padding: 10px 16px;
  background: rgba(0, 200, 232, 0.08);
  border: 1px solid rgba(0, 200, 232, 0.12);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}

.cw-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.4;
  animation: cwDot 1.2s infinite ease-in-out;
}

.cw-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.cw-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes cwDot {

  0%,
  80%,
  100% {
    opacity: 0.25;
    transform: scale(0.85);
  }

  40% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* ── Input bar ── */
.cw-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(0, 200, 232, 0.12);
  background: rgba(7, 13, 27, 0.8);
  flex-shrink: 0;
}

.cw-input-bar input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--text-white);
  font-family: var(--ff-body);
  outline: none;
  transition: border-color 0.2s;
}

.cw-input-bar input::placeholder {
  color: var(--text-dim);
}

.cw-input-bar input:focus {
  border-color: rgba(0, 200, 232, 0.4);
}

.cw-input-bar button {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cyan);
  border: none;
  color: var(--navy-deep);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}

.cw-input-bar button:hover {
  background: #20d6f2;
  transform: scale(1.06);
}

/* ── Responsive: smaller on mobile ── */
@media (max-width: 480px) {
  .chat-widget-container {
    width: calc(100vw - 24px);
    right: 12px;
    bottom: 96px;
    height: 460px;
  }

  .floating-bot-btn {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 16px;
  }
}

/* ================================================================
   NEW BLOQUE CLAVE (Images)
   ================================================================ */
.key-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.key-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 0;
  overflow: hidden;
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.key-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(239, 68, 68, 0.3);
}

.key-card-img-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.key-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.key-card:hover .key-card-img {
  transform: scale(1.08);
}

.key-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 27, 0.85) 0%, rgba(7, 13, 27, 0.15) 40%, rgba(7, 13, 27, 0.15) 60%, rgba(7, 13, 27, 0.7) 100%);
  z-index: 1;
}

.kt-lose-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(239, 68, 68, 0.9);
  color: var(--text-white);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.key-card-content {
  position: relative;
  z-index: 2;
  padding: 24px 24px 0;
}

.key-card-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.key-card-desc {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.5;
  max-width: 80%;
  /* Para no chocar con el badge a la derecha */
}

.key-always {
  display: inline-block;
  margin-top: 56px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 0;
  padding: 18px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.key-always-text {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--text-light);
  margin-top: 0;
  font-weight: 500;
}

.key-always-text strong {
  color: var(--red);
  font-weight: 900;
  font-size: 1.6rem;
}

/* ── Tech Green Futuristic Tags ── */
.tech-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.tech-tag {
  background: var(--navy-dark);
  border: 1px solid #10b981;
  /* Emerald green */
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.15);
  /* Tech glow */
  transition: all var(--t);
  margin-bottom: 8px;
}

.tech-tag i,
.tech-tag svg {
  color: #10b981;
  /* Neon green pop */
  font-size: 1.2rem;
}

.tech-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.35);
  border-color: #34d399;
  /* Brighter on hover */
  color: #fff;
}

/* ── TOKENS (solo añádelos si no los tienes) ───────────────────────── */
.iac-scope {
  --iac-navy-deep: #070d1b;
  --iac-navy-dark: #0a1225;
  --iac-navy-card: #111d35;
  --iac-navy-card-2: #152448;
  --iac-navy-border: rgba(255, 255, 255, .07);
  --iac-navy-border-strong: rgba(255, 255, 255, .14);
  --iac-cyan: #00c8e8;
  --iac-green: #22c55e;
  --iac-red: #ef4444;
  --iac-text-white: #ffffff;
  --iac-text-light: #e2e8f0;
  --iac-text-muted: #94a3b8;
  --iac-text-dim: #4b6080;
  --iac-ff-display: 'Outfit', sans-serif;
  --iac-ff-body: 'Inter', sans-serif;
  --iac-ff-mono: 'JetBrains Mono', ui-monospace, monospace;
}

.iac-scope *,
.iac-scope *::before,
.iac-scope *::after {
  box-sizing: border-box
}

.iac-scope {
  background: var(--iac-navy-deep);
  color: var(--iac-text-light);
  font-family: var(--iac-ff-body);
  padding: 90px 0 120px;
  position: relative;
}

.iac-scope::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(0, 200, 232, .05), transparent 60%),
    radial-gradient(800px 500px at 90% 90%, rgba(139, 92, 246, .04), transparent 60%);
}

.iac-container {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px
}

/* ── HEADER COMÚN ──────────────────────────────────────────────────── */
.iac-head {
  margin-bottom: 64px;
  max-width: 780px
}

.iac-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto
}

.iac-eyebrow {
  font-family: var(--iac-ff-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--iac-cyan);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.iac-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--iac-cyan);
  display: inline-block
}

.iac-title {
  font-family: var(--iac-ff-display);
  font-weight: 800;
  color: var(--iac-text-white);
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-top: 18px;
}

.iac-title .iac-accent {
  color: var(--iac-cyan)
}

.iac-sub {
  color: var(--iac-text-muted);
  font-size: 18px;
  margin-top: 18px;
  max-width: 620px
}

.iac-head.center .iac-sub {
  margin-left: auto;
  margin-right: auto
}

/* ── SECCIÓN 1 · DASHBOARD DUAL (V1) ───────────────────────────────── */
.iac-real-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: stretch
}

.iac-panel {
  background: linear-gradient(180deg, var(--iac-navy-card), var(--iac-navy-dark));
  border: 1px solid var(--iac-navy-border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.iac-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px
}

.iac-panel.on::before {
  background: linear-gradient(90deg, transparent, var(--iac-cyan), transparent)
}

.iac-panel.off::before {
  background: linear-gradient(90deg, transparent, var(--iac-red), transparent)
}

.iac-panel.on {
  box-shadow: 0 20px 60px rgba(0, 200, 232, .07)
}

.iac-panel.off {
  background: linear-gradient(180deg, #1a0f14, #0e0709);
  border-color: rgba(239, 68, 68, .15)
}

.iac-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.iac-tabs {
  display: flex;
  gap: 4px;
  background: var(--iac-navy-deep);
  padding: 4px;
  border-radius: 10px
}

.iac-tab {
  font-family: var(--iac-ff-mono);
  font-size: 11px;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--iac-text-dim);
  text-transform: uppercase;
}

.iac-tab.active {
  background: var(--iac-navy-card);
  color: var(--iac-text-white)
}

.iac-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--iac-ff-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--iac-text-muted);
  text-transform: uppercase;
}

.iac-blip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--iac-green);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .7);
  animation: iac-blip 1.6s infinite;
  display: inline-block;
}

.iac-blip.off {
  background: var(--iac-red);
  animation: none;
  opacity: .5
}

@keyframes iac-blip {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .6)
  }

  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0)
  }
}

.iac-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, .02);
  border-radius: 14px;
  border: 1px solid var(--iac-navy-border);
}

.iac-kpis>div {
  display: flex;
  flex-direction: column;
  align-items: center
}

.iac-kpis b {
  font-family: var(--iac-ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--iac-cyan);
  line-height: 1;
}

.iac-kpis.off b {
  color: var(--iac-red)
}

.iac-kpis span {
  font-family: var(--iac-ff-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--iac-text-dim);
  text-transform: uppercase;
  margin-top: 6px;
}

.iac-list {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.iac-row {
  display: grid;
  grid-template-columns: 52px 1fr auto 24px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .015);
  border: 1px solid var(--iac-navy-border);
  border-radius: 10px;
  font-size: 13px;
}

.iac-row.ok {
  border-left: 2px solid var(--iac-cyan)
}

.iac-row.miss {
  border-left: 2px solid var(--iac-red);
  opacity: .85
}

.iac-row.dim {
  opacity: .45
}

.iac-row.empty {
  opacity: .3;
  border-left: 2px solid var(--iac-text-dim)
}

.iac-time {
  font-family: var(--iac-ff-mono);
  color: var(--iac-text-dim);
  font-size: 11px
}

.iac-who {
  color: var(--iac-text-white);
  font-weight: 500;
  font-size: 13px
}

.iac-tag {
  color: var(--iac-text-muted);
  font-size: 12px
}

.iac-row.miss .iac-tag {
  color: #fca5a5
}

.iac-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--iac-ff-mono);
  font-size: 13px;
  font-weight: 600;
}

.iac-row.ok .iac-check {
  background: rgba(0, 200, 232, .15);
  color: var(--iac-cyan)
}

.iac-row.miss .iac-check {
  background: rgba(239, 68, 68, .15);
  color: var(--iac-red)
}

.iac-row.dim .iac-check,
.iac-row.empty .iac-check {
  color: var(--iac-text-dim)
}

.iac-panel-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px dashed var(--iac-navy-border);
  color: var(--iac-cyan);
  font-size: 13px;
  font-weight: 500;
}

.iac-panel-foot.off {
  color: var(--iac-red)
}

.iac-arrow {
  font-size: 20px
}

.iac-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.iac-vs-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--iac-navy-border-strong), transparent)
}

.iac-vs-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--iac-navy-card);
  border: 1px solid var(--iac-navy-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--iac-ff-mono);
  font-size: 12px;
  color: var(--iac-text-muted);
  letter-spacing: .08em;
}

.iac-bottom {
  margin-top: 48px;
  text-align: center;
  padding: 16px;
  border: 1px dashed var(--iac-navy-border);
  border-radius: 999px;
  font-family: var(--iac-ff-mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--iac-text-dim);
}

.iac-bottom .iac-accent {
  color: var(--iac-cyan);
  font-weight: 600
}

/* ── SECCIÓN 2 · STACK ASIMÉTRICO (V3) ─────────────────────────────── */
.iac-eq-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px
}

.iac-eq-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.iac-eq-row.flip {
  grid-template-columns: 1.1fr 1fr
}

.iac-eq-row.flip .iac-eq-text {
  order: 2
}

.iac-eq-row.flip .iac-eq-mock {
  order: 1
}

.iac-eq-tag {
  font-family: var(--iac-ff-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--iac-cyan);
  text-transform: uppercase;
  font-weight: 500;
}

.iac-eq-title {
  font-family: var(--iac-ff-display);
  font-weight: 800;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.05;
  color: var(--iac-text-white);
  letter-spacing: -.02em;
  margin: 14px 0 14px;
}

.iac-eq-copy {
  color: var(--iac-text-muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 460px
}

.iac-eq-stat {
  margin-top: 24px;
  padding: 18px;
  background: var(--iac-navy-card);
  border: 1px solid var(--iac-navy-border);
  border-left: 3px solid var(--iac-red);
  border-radius: 14px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  max-width: 440px;
}

.iac-eq-stat-num {
  font-family: var(--iac-ff-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--iac-red);
}

.iac-eq-stat-lab {
  font-family: var(--iac-ff-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--iac-text-muted);
  text-transform: uppercase;
}

.iac-eq-mock {
  display: flex;
  justify-content: center
}

/* Mockup common */
.iac-mock {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, var(--iac-navy-card), var(--iac-navy-dark));
  border: 1px solid var(--iac-navy-border-strong);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.iac-mock-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--iac-navy-border);
}

.iac-mock-tag {
  font-family: var(--iac-ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--iac-text-muted);
  text-transform: uppercase;
}

.iac-mock-tag.miss {
  color: var(--iac-red)
}

.iac-mock-dimtag {
  font-family: var(--iac-ff-mono);
  font-size: 10px;
  color: var(--iac-text-dim)
}

.iac-mock-bubble {
  align-self: flex-start;
  max-width: 80%;
  background: var(--iac-navy-card-2);
  color: var(--iac-text-light);
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: 13px;
}

.iac-mock-timer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px
}

.iac-mock-bar {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: rgba(239, 68, 68, .15);
  overflow: hidden;
  position: relative
}

.iac-mock-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--iac-red), #ff8080);
  width: 92%
}

.iac-mock-timer .iac-mock-time {
  font-family: var(--iac-ff-mono);
  font-size: 11px;
  color: var(--iac-red);
  letter-spacing: .06em
}

.iac-mock-foot {
  text-align: center;
  font-family: var(--iac-ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
}

.iac-mock-foot.miss {
  background: rgba(239, 68, 68, .1);
  color: var(--iac-red)
}

.iac-mock-inbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 260px;
  overflow: hidden
}

.iac-mock-inbox-row {
  display: grid;
  grid-template-columns: 32px 1fr auto 8px;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .02);
  border-radius: 8px;
}

.iac-mock-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--iac-navy-card-2);
  color: var(--iac-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
}

.iac-mock-name {
  color: var(--iac-text-light);
  font-size: 13px;
  font-weight: 500
}

.iac-mock-age {
  font-family: var(--iac-ff-mono);
  font-size: 11px;
  color: var(--iac-red)
}

.iac-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--iac-red);
  opacity: .6
}

.iac-mock-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.iac-slot {
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--iac-ff-mono);
  font-size: 12px;
}

.iac-slot.cold {
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .2);
  color: var(--iac-red)
}

.iac-slot.hot {
  background: rgba(0, 200, 232, .1);
  border: 1px solid rgba(0, 200, 232, .25);
  color: var(--iac-cyan)
}

.iac-slot-who {
  letter-spacing: .1em;
  font-size: 10px
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .iac-real-grid {
    grid-template-columns: 1fr
  }

  .iac-vs {
    flex-direction: row;
    padding: 8px 0
  }

  .iac-vs-line {
    height: 1px;
    width: auto
  }

  .iac-eq-row,
  .iac-eq-row.flip {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .iac-eq-row.flip .iac-eq-text,
  .iac-eq-row.flip .iac-eq-mock {
    order: unset
  }


  /* ═══════════════════════════════════════════════════════════
   VARIANTE A · BENTO ASIMÉTRICO
   ═══════════════════════════════════════════════════════════ */
  .A-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
  }

  .A-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--navy-card), var(--navy-dark));
    border: 1px solid var(--navy-border);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform .3s, border-color .3s, box-shadow .3s;
  }

  .A-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, .25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4)
  }

  .A-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    background: linear-gradient(135deg, transparent 55%, rgba(239, 68, 68, .06))
  }

  /* Hero card (grande) */
  .A-hero {
    grid-column: span 4;
    grid-row: span 2;
    padding: 36px
  }

  .A-med {
    grid-column: span 2;
    grid-row: span 1
  }

  .A-small {
    grid-column: span 3;
    grid-row: span 1
  }

  .A-kicker {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .18em;
    color: var(--red);
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .A-kicker::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    display: inline-block
  }

  .A-big {
    font-family: var(--ff-display);
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    letter-spacing: -.03em;
    font-size: 96px;
    margin: auto 0;
  }

  .A-hero .A-big {
    font-size: 140px
  }

  .A-small .A-big {
    font-size: 64px
  }

  .A-title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--text-white);
    letter-spacing: -.01em;
    line-height: 1.15;
    margin-top: 14px;
  }

  .A-hero .A-title {
    font-size: 32px
  }

  .A-copy {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.5
  }

  .A-hero .A-copy {
    font-size: 16px
  }

  /* Hero viz: decay curve */
  .A-hero-viz {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 55%;
    opacity: .85;
    pointer-events: none;
  }

  /* Medium cards viz */
  .A-med-viz {
    height: 70px;
    display: flex;
    align-items: end;
    gap: 3px;
    margin-top: 10px
  }

  .A-med-viz .bar {
    flex: 1;
    background: var(--red);
    opacity: .3;
    border-radius: 2px 2px 0 0
  }

  .A-med-viz .bar.hot {
    opacity: .9
  }

  .A-stat-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--navy-border);
  }

  .A-stat-label {
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--text-dim);
    text-transform: uppercase
  }

  /* Severity pill */
  .A-sev {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--ff-mono);
    font-size: 9px;
    letter-spacing: .14em;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(239, 68, 68, .15);
    color: var(--red);
  }

  .A-sev.mid {
    background: rgba(245, 158, 11, .15);
    color: var(--orange)
  }

  .A-bottom {
    margin-top: 48px;
    text-align: center;
    padding: 18px;
    border: 1px dashed var(--navy-border);
    border-radius: 999px;
    font-family: var(--ff-mono);
    font-size: 13px;
    letter-spacing: .08em;
    color: var(--text-dim);
  }

  .A-bottom .accent {
    color: var(--cyan);
    font-weight: 600
  }

  /* ═══════════════════════════════════════════════════════════
   VARIANTE C · FEED DE NOTIFICACIONES
   ═══════════════════════════════════════════════════════════ */
  .C-stage {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
  }

  .C-left {
    display: flex;
    flex-direction: column;
    gap: 28px
  }

  .C-stat-block {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 22px;
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 16px;
  }

  .C-stat-block .num {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 54px;
    color: var(--red);
    line-height: 1;
  }

  .C-stat-block .lab {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4
  }

  .C-stat-block .lab b {
    color: var(--text-white);
    display: block;
    font-size: 16px;
    margin-bottom: 4px
  }

  .C-list-title {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 8px;
  }

  /* Phone */
  .C-phone {
    position: relative;
    width: 420px;
    height: 720px;
    background: linear-gradient(180deg, #0d1830, #060a14);
    border-radius: 48px;
    border: 8px solid #1a2440;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .6), 0 0 0 1px rgba(0, 200, 232, .08);
    overflow: hidden;
    padding: 18px 14px 20px;
  }

  .C-phone::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 10;
  }

  .C-status {
    display: flex;
    justify-content: space-between;
    padding: 4px 18px 16px;
    font-family: var(--ff-mono);
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: .04em;
  }

  .C-time-big {
    text-align: center;
    font-family: var(--ff-display);
    font-weight: 300;
    font-size: 64px;
    color: var(--text-white);
    line-height: 1;
    margin-top: 8px;
    letter-spacing: -.02em;
  }

  .C-date {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 6px;
    margin-bottom: 24px;
  }

  .C-notifs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 8px;
  }

  .C-notif {
    background: rgba(20, 32, 60, .85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 12px 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-12px);
    animation: C-in .5s cubic-bezier(.4, 0, .2, 1) forwards;
  }

  .C-notif.lost {
    border-color: rgba(239, 68, 68, .25);
    background: linear-gradient(180deg, rgba(40, 15, 20, .85), rgba(20, 32, 60, .85))
  }

  @keyframes C-in {
    to {
      opacity: 1;
      transform: translateY(0)
    }
  }

  .C-notif:nth-child(1) {
    animation-delay: .1s
  }

  .C-notif:nth-child(2) {
    animation-delay: .3s
  }

  .C-notif:nth-child(3) {
    animation-delay: .5s
  }

  .C-notif:nth-child(4) {
    animation-delay: .7s
  }

  .C-notif:nth-child(5) {
    animation-delay: .9s
  }

  .C-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 14px;
  }

  .C-icon.wa {
    background: #25d366;
    color: #fff
  }

  .C-icon.call {
    background: var(--red);
    color: #fff
  }

  .C-icon.mail {
    background: #4285f4;
    color: #fff
  }

  .C-icon.alert {
    background: var(--orange);
    color: #fff
  }

  .C-icon.sys {
    background: var(--navy-card-2);
    color: var(--cyan)
  }

  .C-notif-body {
    flex: 1;
    min-width: 0
  }

  .C-notif-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2px;
  }

  .C-notif-app {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em
  }

  .C-notif-time {
    font-family: var(--ff-mono);
    font-size: 10px;
    color: var(--text-dim)
  }

  .C-notif-title {
    color: var(--text-white);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3
  }

  .C-notif-sub {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.35;
    margin-top: 2px
  }

  .C-notif.lost .C-notif-sub {
    color: #fca5a5
  }

  .C-overlay-red {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 30%, transparent 40%, rgba(239, 68, 68, .08) 100%);
  }

  .C-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--red);
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(239, 68, 68, .15);
    border: 1px solid rgba(239, 68, 68, .3);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }

  .C-blip {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, .6);
    animation: blip 1.6s infinite;
  }

  @keyframes blip {
    0% {
      box-shadow: 0 0 0 0 rgba(239, 68, 68, .6)
    }

    70% {
      box-shadow: 0 0 0 8px rgba(239, 68, 68, 0)
    }

    100% {
      box-shadow: 0 0 0 0 rgba(239, 68, 68, 0)
    }
  }

  .C-foot {
    margin-top: 72px;
    text-align: center;
    padding: 22px 32px;
    background: linear-gradient(90deg, rgba(0, 200, 232, .08), rgba(0, 200, 232, .02));
    border: 1px solid rgba(0, 200, 232, .2);
    border-radius: 16px;
    font-family: var(--ff-mono);
    font-size: 14px;
    letter-spacing: .04em;
    color: var(--text-light);
  }

  .C-foot .accent {
    color: var(--cyan);
    font-weight: 600
  }

  @media (max-width: 960px) {

    .A-hero,
    .A-med,
    .A-small {
      grid-column: span 6
    }

    .A-hero {
      grid-row: auto
    }

    .A-hero .A-big {
      font-size: 88px
    }

    .C-stage {
      grid-template-columns: 1fr;
      gap: 40px
    }

    .C-phone {
      width: 100%;
      max-width: 380px;
      margin: 0 auto
    }
  }

  :root {
    --navy-deep: #070d1b;
    --navy-dark: #0a1225;
    --navy-card: #111d35;
    --navy-card-2: #152448;
    --navy-border: rgba(255, 255, 255, .07);
    --navy-border-strong: rgba(255, 255, 255, .14);
    --cyan: #00c8e8;
    --green: #22c55e;
    --red: #ef4444;
    --orange: #f59e0b;
    --text-white: #fff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dim: #4b6080;
    --ff-display: 'Outfit', sans-serif;
    --ff-body: 'Inter', sans-serif;
    --ff-mono: 'JetBrains Mono', monospace;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
  }

  body {
    font-family: var(--ff-body);
    background: var(--navy-deep);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
  }

  button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit
  }

  .scope {
    padding: 100px 0 140px;
    position: relative
  }

  .scope::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 500px at 15% 10%, rgba(0, 200, 232, .05), transparent 60%),
      radial-gradient(800px 500px at 90% 90%, rgba(139, 92, 246, .04), transparent 60%)
  }

  .container {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px
  }

  .head {
    margin-bottom: 64px;
    max-width: 780px
  }

  .head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
  }

  .eyebrow {
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px
  }

  .eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--cyan)
  }

  .title {
    font-family: var(--ff-display);
    font-weight: 800;
    color: var(--text-white);
    font-size: clamp(40px, 5.2vw, 64px);
    line-height: 1.02;
    letter-spacing: -.02em;
    margin-top: 18px
  }

  .title .accent {
    color: var(--cyan)
  }

  .sub {
    color: var(--text-muted);
    font-size: 18px;
    margin-top: 18px;
    max-width: 620px
  }

  .head.center .sub {
    margin-left: auto;
    margin-right: auto
  }

  .variant-label {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 8px 14px;
    background: rgba(10, 18, 37, .8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--navy-border-strong);
    border-radius: 999px;
  }

  .nav-pills {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 150;
    background: rgba(7, 13, 27, .85);
    backdrop-filter: blur(14px);
    border: 1px solid var(--navy-border-strong);
    border-radius: 999px;
    padding: 8px;
  }

  .nav-pill {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .1em;
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--text-muted);
    transition: all .2s;
    text-transform: uppercase;
  }

  .nav-pill.active {
    background: var(--cyan);
    color: var(--navy-deep);
    font-weight: 600
  }

  .nav-pill:not(.active):hover {
    color: var(--text-white)
  }

}