/* ════════════════════════════════════════════════════════════
   BITAKORAHOST — Sistema de diseño
   Paleta: carmesí + naranja sobre negro cálido (ADN de marca)
   Tipografías: Bricolage Grotesque · Archivo · IBM Plex Mono
   ════════════════════════════════════════════════════════════ */

:root {
  --bg: #0b0508;
  --bg-2: #100810;
  --surface: #170d13;
  --surface-2: #1d1118;
  --line: rgba(255, 240, 235, 0.09);
  --line-strong: rgba(255, 240, 235, 0.16);

  --red: #e8173a;
  --red-deep: #b30f2c;
  --orange: #ff5a1f;

  --text: #f6eeea;
  --muted: #a8969b;
  --muted-2: #7d6c72;

  --grad: linear-gradient(92deg, var(--red) 10%, var(--orange) 90%);
  --grad-soft: linear-gradient(135deg, rgba(232, 23, 58, 0.16), rgba(255, 90, 31, 0.1));

  --font-display: "Bricolage Grotesque", "Archivo", sans-serif;
  --font-body: "Archivo", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-h: 76px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }

::selection { background: var(--orange); color: #160703; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--red), var(--orange));
  border-radius: 8px;
  border: 3px solid var(--bg);
}

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ── Utilidades ────────────────────────────────────────────── */
.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }

.section { padding: 110px 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 20px;
}
.eyebrow.light { color: #ffd9c4; }

.accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.section-sub { color: var(--muted); margin-top: 18px; font-size: 1.05rem; }

/* Punto pulsante */
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.55);
  animation: pulse 2s infinite;
  flex: none;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 90, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0); }
}

/* ── Botones ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-solid {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(232, 23, 58, 0.55);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(255, 90, 31, 0.5); }

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid var(--line-strong);
  width: 100%;
}
.btn-outline:hover { border-color: var(--red); background: var(--grad-soft); }

.btn.big { padding: 16px 32px; font-size: 1rem; }

/* ── Grano global ──────────────────────────────────────────── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, border-color 0.35s, height 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  height: 64px;
  background: rgba(11, 5, 8, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-wrap { display: flex; align-items: center; gap: 32px; }

.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand-mark { width: 34px; height: 34px; object-fit: contain; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--red);
  line-height: 1;
}
.brand-word em {
  font-style: normal;
  color: var(--orange);
  display: inline-block;
  margin-left: 2px;
}

.nav { display: flex; gap: 28px; margin-inline: auto; }
.nav a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav a:hover { color: var(--text); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--grad);
  transition: right 0.3s var(--ease);
}
.nav a:hover::after { right: 0; }

.nav-cta-mobile { display: none; }

.nav-actions { display: flex; align-items: center; gap: 12px; flex: none; }
.nav-actions .btn { padding: 11px 20px; font-size: 0.88rem; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 90px;
  overflow: hidden;
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 14s ease-in-out infinite alternate;
}
.orb-red {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(232, 23, 58, 0.5), transparent 65%);
  top: -180px; right: -120px;
}
.orb-orange {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.34), transparent 65%);
  bottom: -160px; left: -140px;
  animation-delay: -7s;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-40px, 30px) scale(1.12); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 240, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 240, 235, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
}

.hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -3.5vw;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 16vw, 15rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 240, 235, 0.055);
  white-space: nowrap;
  user-select: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}
.hero-title .italic { font-style: italic; font-weight: 500; }

.hero-sub {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Buscador de dominios */
.domain-search {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 540px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 7px 7px 20px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.domain-search:focus-within {
  border-color: rgba(255, 90, 31, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}
.ds-icon { color: var(--muted-2); flex: none; }
.domain-search input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  color: var(--text);
  font-size: 1rem;
  padding: 8px 4px;
}
.domain-search input::placeholder { color: var(--muted-2); }
.domain-search .btn { padding: 12px 22px; font-size: 0.9rem; }

.domain-result {
  max-width: 540px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  min-height: 22px;
  color: var(--muted);
}
.domain-result .ok { color: #4ade80; }
.domain-result .no { color: var(--red); }
.domain-result .price { color: var(--orange); }

.domain-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.domain-chips li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s, transform 0.25s var(--ease);
  cursor: default;
}
.domain-chips li:hover { border-color: var(--orange); transform: translateY(-2px); }
.domain-chips strong { font-family: var(--font-mono); font-weight: 500; }
.domain-chips span { color: var(--muted); font-size: 0.78rem; }

/* Terminal */
.hero-visual { position: relative; }

.terminal {
  background: rgba(13, 6, 10, 0.88);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 90, 31, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.t-dot { width: 11px; height: 11px; border-radius: 50%; }
.t-dot.r { background: #ff5f57; }
.t-dot.y { background: #febc2e; }
.t-dot.g { background: #28c840; }
.t-title { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted-2); margin-left: 8px; }
.t-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  color: var(--orange);
}

.terminal-body {
  padding: 22px 24px 26px;
  font-family: var(--font-mono);
  font-size: 0.83rem;
  line-height: 2.05;
  color: #d9c8ce;
}
.terminal-body .t-prompt { color: var(--orange); margin-right: 8px; }
.terminal-body b { color: var(--text); font-weight: 500; }
.terminal-body .ok { color: #4ade80; }
.terminal-body .t-line {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s, transform 0.4s;
}
.terminal-body .t-line.show { opacity: 1; transform: none; }
.t-cursor { animation: blink 1.05s steps(1) infinite; color: var(--orange); }
@keyframes blink { 50% { opacity: 0; } }

/* Tarjetas flotantes */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(23, 13, 19, 0.92);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-card svg { color: var(--orange); flex: none; }
.float-card strong { display: block; font-size: 0.92rem; line-height: 1.25; }
.float-card span { font-size: 0.72rem; color: var(--muted); }

.fc-uptime { top: -26px; right: -18px; animation-delay: -2.7s; }
.fc-mail { bottom: -24px; left: -26px; }
.fc-shield { bottom: -36px; right: -12px; }

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

/* Stats hero */
.hero-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 84px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero-stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats dd { color: var(--muted); font-size: 0.88rem; margin-top: 6px; }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 18px 0;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track i { font-style: normal; color: var(--orange); margin: 0 26px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════ SERVICIOS ═══════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 90, 31, 0.09), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 31, 0.35);
  box-shadow: 0 30px 60px -30px rgba(232, 23, 58, 0.35);
}
.service-card:hover::before { opacity: 1; }

.sc-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--orange);
  background: var(--grad-soft);
  border: 1px solid rgba(255, 90, 31, 0.22);
  margin-bottom: 22px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 650;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 22px; }

.sc-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--orange);
  border: 1px dashed rgba(255, 90, 31, 0.4);
  border-radius: 999px;
  padding: 6px 13px;
}

/* ═══════════════ PRECIOS ═══════════════ */
.pricing-section {
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(232, 23, 58, 0.07), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.pricing-section .section-head { margin-inline: auto; text-align: center; }
.pricing-section .section-head h2 { margin-inline: auto; }

.billing-toggle {
  position: relative;
  display: inline-flex;
  margin-top: 34px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px;
}
.bt-opt {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s;
}
.bt-opt.active { color: #fff; }
.save-pill {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  background: var(--grad);
  color: #fff;
  border-radius: 999px;
  padding: 3px 8px;
}
.bt-slider {
  position: absolute;
  top: 5px; bottom: 5px; left: 5px;
  width: calc(50% - 5px);
  border-radius: 999px;
  background: var(--grad);
  transition: transform 0.35s var(--ease);
}
.billing-toggle.yearly .bt-slider { transform: translateX(100%); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }

.price-card.featured {
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 40px 80px -40px rgba(232, 23, 58, 0.5);
}
.price-card.featured:hover { transform: translateY(-8px); }

.pc-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
}
.price-card header p { color: var(--muted); font-size: 0.88rem; margin-top: 6px; }

.price { display: flex; align-items: baseline; gap: 4px; margin-top: 26px; }
.price .currency { font-size: 1.3rem; color: var(--muted); }
.price .amount {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1;
}
.featured .amount {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price .period { color: var(--muted); font-size: 0.95rem; }

.billing-note { font-size: 0.78rem; color: var(--muted-2); margin-top: 8px; min-height: 19px; }

.feature-list { margin: 26px 0 30px; flex: 1; }
.feature-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 0.93rem;
  color: var(--muted);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid rgba(255, 90, 31, 0.4);
}
.feature-list li::after {
  content: "";
  position: absolute;
  left: 4.5px; top: 15.5px;
  width: 8px; height: 5px;
  border-left: 1.8px solid var(--orange);
  border-bottom: 1.8px solid var(--orange);
  transform: rotate(-45deg);
}

.pricing-footnote {
  text-align: center;
  color: var(--muted-2);
  font-size: 0.9rem;
  margin-top: 44px;
}
.pricing-footnote a { color: var(--orange); border-bottom: 1px dashed rgba(255, 90, 31, 0.5); }

/* ═══════════════ CORREO ═══════════════ */
.mail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.mail-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.mail-features { margin: 34px 0 38px; display: grid; gap: 22px; }
.mail-features li { display: flex; gap: 16px; align-items: flex-start; }
.mf-icon {
  flex: none;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--orange);
  background: var(--grad-soft);
  border: 1px solid rgba(255, 90, 31, 0.22);
}
.mail-features strong { display: block; font-size: 0.98rem; }
.mail-features span { color: var(--muted); font-size: 0.88rem; }

.mail-visual { position: relative; }

.mail-window {
  background: rgba(13, 6, 10, 0.9);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.mw-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.mw-logo { width: 24px; height: 24px; object-fit: contain; }
.mw-account { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); }
.mw-head .t-live { margin-left: auto; }

.mw-compose {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(232, 23, 58, 0.06), transparent);
}
.mw-chip {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 11px;
}
.mw-chip.subject { color: var(--text); border-color: rgba(255, 90, 31, 0.35); }

.mw-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
.mw-list li:last-child { border-bottom: 0; }
.mw-list li:hover { background: rgba(255, 255, 255, 0.02); }
.mw-from {
  flex: none;
  width: 172px;
  font-size: 0.84rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mw-subject {
  flex: 1;
  font-size: 0.84rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mw-time { flex: none; font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted-2); }
.mw-list li.unread { background: rgba(232, 23, 58, 0.05); }
.mw-list li.unread .mw-subject { color: var(--text); }
.mw-list li.unread::before {
  content: "";
  flex: none;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* ═══════════════ INFRAESTRUCTURA ═══════════════ */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.infra-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.infra-card:hover { transform: translateY(-5px); border-color: rgba(255, 90, 31, 0.3); }
.infra-card svg { color: var(--orange); margin-bottom: 18px; }
.infra-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 650;
  margin-bottom: 8px;
}
.infra-card p { color: var(--muted); font-size: 0.9rem; }

.infra-card.big {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(500px 300px at 20% 0%, rgba(232, 23, 58, 0.1), transparent 60%),
    var(--surface);
}
.ic-num span {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.infra-card.big > p { margin-top: 16px; font-size: 0.95rem; }

.uptime-bars {
  display: flex;
  gap: 4px;
  margin-top: 28px;
  align-items: flex-end;
}
.uptime-bars i {
  flex: 1;
  height: 34px;
  border-radius: 3px;
  background: rgba(74, 222, 128, 0.55);
  transform-origin: bottom;
  transform: scaleY(0.25);
  transition: transform 0.6s var(--ease);
}
.uptime-bars i.warn { background: rgba(255, 90, 31, 0.8); }
.in-view .uptime-bars i { transform: scaleY(1); }
.ic-caption {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-top: 12px;
}

/* ═══════════════ TESTIMONIOS ═══════════════ */
.testimonials-section { background: var(--bg-2); border-block: 1px solid var(--line); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.testi-card:hover { transform: translateY(-5px); border-color: rgba(255, 90, 31, 0.3); }
.stars { color: var(--orange); letter-spacing: 4px; font-size: 0.9rem; }
.testi-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  flex: 1;
  line-height: 1.7;
}
.testi-card figcaption strong { display: block; font-size: 0.92rem; }
.testi-card figcaption span { font-size: 0.8rem; color: var(--muted-2); }

/* ═══════════════ FAQ ═══════════════ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.faq-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: rgba(255, 90, 31, 0.35); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }

.faq-chevron {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.faq-chevron::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 9px; height: 9px;
  border-left: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translate(-50%, -65%) rotate(-45deg);
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}

.faq-body { padding: 0 24px 22px; }
.faq-body p { color: var(--muted); font-size: 0.93rem; max-width: 60ch; }

/* ═══════════════ CTA FINAL ═══════════════ */
.cta-section { padding-top: 40px; }

.cta-banner {
  position: relative;
  text-align: center;
  padding: 90px 40px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 90, 31, 0.3);
  background:
    radial-gradient(600px 300px at 50% -10%, rgba(232, 23, 58, 0.28), transparent 65%),
    radial-gradient(500px 260px at 85% 110%, rgba(255, 90, 31, 0.16), transparent 60%),
    var(--surface);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -0.03em;
}
.cta-banner h2 span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 550;
}
.cta-banner > p { color: var(--muted); margin-top: 18px; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 70px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 20px 0 24px;
  max-width: 34ch;
}
.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
  background: rgba(74, 222, 128, 0.06);
  border-radius: 999px;
  padding: 8px 16px;
}
.footer-status .pulse-dot { background: #4ade80; animation-name: pulse-green; }
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s, transform 0.2s var(--ease);
  width: fit-content;
}
.footer-col a:hover { color: var(--orange); transform: translateX(3px); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
  font-size: 0.82rem;
  color: var(--muted-2);
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--muted-2); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text); }

/* ═══════════════ ANIMACIONES DE ENTRADA ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal.in { opacity: 1; transform: none; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero-sub { max-width: 100%; }
  .hero-visual { max-width: 620px; }
  .fc-uptime { right: 8px; }
  .fc-mail { left: 8px; }
  .services-grid, .pricing-grid, .testi-grid, .infra-grid { grid-template-columns: 1fr 1fr; }
  .infra-card.big { grid-row: auto; grid-column: span 2; }
  .mail-grid { grid-template-columns: 1fr; gap: 64px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero { padding-top: calc(var(--header-h) + 56px); }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 32px 20px; margin-top: 64px; }
  .nav {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px;
    background: rgba(11, 5, 8, 0.97);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .nav.open { opacity: 1; pointer-events: auto; z-index: 999; }
  .nav a { font-size: 1.35rem; font-family: var(--font-display); font-weight: 600; }
  .nav a::after { display: none; }
  .nav-cta-mobile {
    display: inline-flex;
    background: var(--grad);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    color: #fff;
    border-radius: 999px;
    padding: 14px 34px;
    margin-top: 10px;
  }
  .burger { display: flex; position: relative; z-index: 1001; }
  .nav-actions .btn-ghost, .nav-actions .btn-solid { display: none; }
  .domain-search { flex-direction: row; }
  .domain-search .btn { padding: 12px 16px; font-size: 0.82rem; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 40px); }
  .services-grid, .pricing-grid, .testi-grid, .infra-grid { grid-template-columns: 1fr; }
  .infra-card.big { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 64px 24px; }
  .float-card { display: none; }
  .domain-search { border-radius: 20px; flex-wrap: wrap; padding: 14px; gap: 10px; }
  .domain-search input { width: 100%; flex: none; padding: 6px 8px; }
  .domain-search .btn { width: 100%; }
  .mw-from { width: 118px; }
  .billing-toggle { width: 100%; justify-content: center; }
}

/* ── Accesibilidad: menos movimiento ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
