/* WebVerificada.com — sitio principal */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg-0: #04060f;
  --bg-1: #0a1024;
  --bg-2: #0f1733;
  --bg-card: #0c1430;
  --bg-card-2: #111a3d;
  --border: rgba(96, 134, 255, 0.14);
  --border-strong: rgba(96, 134, 255, 0.32);
  --text: #e8edff;
  --text-mute: #9aa3c7;
  --text-dim: #6b7399;
  --blue: #2b7fff;
  --blue-bright: #4c95ff;
  --blue-soft: #60a5fa;
  --cyan: #3ddcff;
  --glow: rgba(43, 127, 255, 0.6);
  --green: #34d399;
  --danger: #ff5a6e;
}

body {
  background: var(--bg-0);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Ambient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(43, 127, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 100%, rgba(61, 220, 255, 0.08), transparent 60%),
    linear-gradient(180deg, #04060f 0%, #060a1a 50%, #04060f 100%);
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(96, 134, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 134, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, .display {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

section {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 720px) { section { padding: 80px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(43, 127, 255, 0.08);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--blue-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue-bright);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(4, 6, 15, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  position: relative;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--text-mute);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 880px) { .nav-links { display: none; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: white;
  box-shadow: 0 8px 24px -8px var(--glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px var(--glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { background: rgba(43, 127, 255, 0.08); border-color: var(--blue); }
.btn-lg { padding: 14px 26px; font-size: 15px; border-radius: 12px; }

/* === HERO === */
.hero {
  padding: 24px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.02;
  margin: 24px 0 24px;
  font-weight: 600;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.01em;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-mute);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust svg { color: var(--blue-soft); }

/* Hero shield + demo card */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shield-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin-bottom: -40px;
}
.shield-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(43, 127, 255, 0.25), transparent 60%);
  filter: blur(30px);
}
.globe {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(43, 127, 255, 0.15), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(43, 127, 255, 0.05), transparent 70%);
  border: 1px solid var(--border-strong);
  box-shadow:
    inset 0 0 80px rgba(43, 127, 255, 0.15),
    0 0 60px rgba(43, 127, 255, 0.1);
  overflow: hidden;
}
.globe::before, .globe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(96, 134, 255, 0.18);
  transform: rotate(-15deg) scaleY(0.3);
}
.globe::after { transform: rotate(15deg) scaleY(0.3); border-style: dotted; }
.globe-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(96, 134, 255, 0.4) 1px, transparent 1.5px);
  background-size: 14px 14px;
  mask: radial-gradient(circle at 50% 50%, black 40%, transparent 70%);
  animation: spin 60s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
@keyframes spin { to { transform: rotate(360deg); } }

.shield-wrap {
  position: relative;
  width: 70%;
  filter: drop-shadow(0 30px 50px rgba(43, 127, 255, 0.5));
  animation: float 6s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.shield-rings {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 30px;
  perspective: 500px;
}
.shield-rings span {
  position: absolute;
  left: 0; right: 0;
  border: 1px solid var(--blue);
  border-radius: 50%;
  transform: rotateX(70deg);
  opacity: 0;
  animation: ring 3s ease-out infinite;
}
.shield-rings span:nth-child(2) { animation-delay: 1s; }
.shield-rings span:nth-child(3) { animation-delay: 2s; }
@keyframes ring {
  0% { transform: rotateX(70deg) scale(0.4); opacity: 0.9; border-color: var(--blue-bright); }
  100% { transform: rotateX(70deg) scale(1.4); opacity: 0; border-color: var(--blue); }
}

/* === Live demo widget === */
.demo-card {
  background: linear-gradient(180deg, rgba(20, 31, 71, 0.7), rgba(11, 17, 43, 0.85));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(96, 134, 255, 0.06) inset;
}
.demo-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(96, 134, 255, 0.5), transparent 40%, rgba(61, 220, 255, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.demo-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  text-align: center;
}
.demo-brand {
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--blue-soft);
  letter-spacing: 0.04em;
  margin: 4px 0 16px;
}
.demo-code {
  background: linear-gradient(180deg, rgba(43, 127, 255, 0.18), rgba(43, 127, 255, 0.08));
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.demo-code::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
}
.demo-code-skel {
  display: inline-block;
  width: 70%;
  height: 1em;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(96, 134, 255, 0.18), rgba(96, 134, 255, 0.35), rgba(96, 134, 255, 0.18));
  background-size: 200% 100%;
  animation: skel-shimmer 1.4s linear infinite;
  vertical-align: middle;
}
@keyframes skel-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes shimmer {
  100% { transform: translateX(100%); }
}
.demo-code-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.demo-ring {
  width: 120px; height: 120px;
  margin: 0 auto 12px;
  position: relative;
}
.demo-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.demo-ring-bg { stroke: rgba(96, 134, 255, 0.15); }
.demo-ring-fg {
  stroke: var(--blue-bright);
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px var(--blue));
  transition: stroke-dashoffset 1s linear;
}
.demo-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 26px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.demo-valid {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.4;
}
.demo-qr {
  background: white;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  width: 150px; height: 150px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.demo-qr:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px -6px rgba(76, 149, 255, 0.4);
}
.demo-qr img, .demo-qr canvas, .demo-qr svg { width: 100%; height: 100%; display: block; }

.demo-cert-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-soft);
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(43, 127, 255, 0.06);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.demo-cert-link:hover {
  background: rgba(43, 127, 255, 0.14);
  color: white;
  border-color: var(--blue);
}
.demo-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.demo-foot::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 1.5s infinite;
}

/* === SECTION HEADERS === */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 16px 0 16px;
}
.section-head p {
  color: var(--text-mute);
  font-size: 17px;
}

/* === FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  background: linear-gradient(180deg, rgba(15, 23, 51, 0.6), rgba(10, 16, 36, 0.4));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature:hover {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(20, 31, 71, 0.7), rgba(15, 23, 51, 0.5));
  transform: translateY(-2px);
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature:hover::before { opacity: 0.6; }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(43, 127, 255, 0.18), rgba(43, 127, 255, 0.06));
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 17px;
  margin-bottom: 6px;
  font-weight: 500;
}
.feature p {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.55;
}
.feature-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--blue-soft);
  text-transform: uppercase;
  font-family: "JetBrains Mono", monospace;
}

/* === DNS SECTION === */
.dns {
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(43, 127, 255, 0.08), transparent 70%);
  position: relative;
}
.dns-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .dns-grid { grid-template-columns: 1fr; gap: 48px; } }

.dns h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin: 16px 0 20px;
}
.dns p.lead {
  color: var(--text-mute);
  font-size: 17px;
  margin-bottom: 28px;
}
.dns-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dns-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.dns-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -2px var(--glow);
}
.dns-step h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}
.dns-step p {
  font-size: 14px;
  color: var(--text-mute);
}

/* DNS terminal card */
.dns-terminal {
  background: linear-gradient(180deg, #0a112a, #060a1a);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
}
.dns-terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
}
.dns-terminal-head .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.dns-terminal-head .dot.red { background: #ff5f56; }
.dns-terminal-head .dot.yel { background: #ffbd2e; }
.dns-terminal-head .dot.grn { background: #27c93f; }
.dns-terminal-head .title {
  margin-left: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--text-dim);
}
.dns-terminal-body {
  padding: 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 1.7;
}
.dns-line { color: var(--text-mute); white-space: pre-wrap; }
.dns-line .prompt { color: var(--blue-bright); }
.dns-line .cmd { color: white; }
.dns-line .key { color: var(--cyan); }
.dns-line .val { color: var(--green); }
.dns-line .ok { color: var(--green); font-weight: 600; }
.dns-line .err { color: var(--danger); }

.dns-record {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(43, 127, 255, 0.06);
  border: 1px solid var(--border);
  margin: 4px 0;
  font-size: 12px;
  align-items: center;
}
.dns-record .type {
  background: var(--blue);
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 2px 0;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.dns-record .val {
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dns-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--blue-bright);
  vertical-align: middle;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { to { opacity: 0; } }

/* === HOW IT WORKS === */
.howto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 880px) { .howto-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .howto-grid { grid-template-columns: 1fr; } }

.howto-step {
  position: relative;
  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 23, 51, 0.5), rgba(10, 16, 36, 0.3));
  border: 1px solid var(--border);
}
.howto-step .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--blue-bright);
  margin-bottom: 16px;
}
.howto-step .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(43, 127, 255, 0.2), rgba(43, 127, 255, 0.06));
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  color: var(--blue-bright);
  margin-bottom: 18px;
}
.howto-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
}
.howto-step p {
  font-size: 14px;
  color: var(--text-mute);
}

/* === PRICING === */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.plan {
  background: linear-gradient(180deg, rgba(15, 23, 51, 0.7), rgba(10, 16, 36, 0.5));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.plan:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.plan.featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(43, 127, 255, 0.12), rgba(10, 16, 36, 0.6));
  box-shadow: 0 30px 60px -20px var(--glow);
}
.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  color: #04060f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.plan-name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-soft);
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 12px;
}
.plan-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-price .unit { font-size: 16px; color: var(--text-mute); font-weight: 400; }
.plan-desc {
  color: var(--text-mute);
  font-size: 14px;
  margin: 12px 0 24px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 14px;
}
.plan-features li {
  display: flex;
  gap: 10px;
  color: var(--text);
  align-items: flex-start;
}
.plan-features svg { color: var(--blue-bright); flex-shrink: 0; margin-top: 3px; }
.plan-features li.muted { color: var(--text-dim); }
.plan-features li.muted svg { color: var(--text-dim); }

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(15, 23, 51, 0.4);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--blue-soft);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 24px 20px;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.6;
}

/* === CTA === */
.cta-band {
  background: linear-gradient(135deg, rgba(43, 127, 255, 0.18), rgba(15, 23, 51, 0.6));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 60% at 80% 50%, rgba(61, 220, 255, 0.15), transparent 70%);
  pointer-events: none;
}
.cta-band h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  margin-bottom: 8px;
}
.cta-band p { color: var(--text-mute); font-size: 16px; }
@media (max-width: 720px) {
  .cta-band { flex-direction: column; align-items: flex-start; padding: 36px 28px; text-align: left; }
}

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  background: linear-gradient(180deg, rgba(20, 31, 71, 0.5), rgba(11, 17, 43, 0.6));
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.contact-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 50% at 100% 0%, rgba(43, 127, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.contact-grid > * { position: relative; z-index: 1; }
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; padding: 36px 28px; gap: 36px; }
}

.contact-title {
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.1;
  margin: 16px 0 16px;
}
.contact-title .accent {
  background: linear-gradient(90deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-desc {
  color: var(--text-mute);
  font-size: 16px;
  margin-bottom: 24px;
}
.contact-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14px;
}
.contact-bullets li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
}
.contact-bullets svg { color: var(--blue-bright); flex-shrink: 0; }
.contact-direct {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.contact-direct a {
  color: var(--blue-soft);
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
}
.contact-direct a:hover { color: var(--blue-bright); }

/* Form */
.contact-form {
  background: linear-gradient(180deg, rgba(10, 17, 42, 0.6), rgba(6, 10, 26, 0.4));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 560px) { .contact-form { padding: 24px 20px; } }

.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-soft);
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
}
.form-label em { color: var(--blue-bright); font-style: normal; }

.contact-form input {
  width: 100%;
  padding: 13px 14px;
  background: rgba(4, 6, 15, 0.5);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.contact-form input::placeholder {
  color: var(--text-dim);
}
.contact-form input:hover {
  border-color: rgba(96, 134, 255, 0.5);
}
.contact-form input:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: rgba(43, 127, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(43, 127, 255, 0.15);
}
.contact-form input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(255, 90, 110, 0.5);
}

.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-submit {
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.form-submit-loading {
  display: none;
  align-items: center;
  gap: 10px;
}
.form-submit-loading svg { animation: spin-fast 0.8s linear infinite; }
@keyframes spin-fast { to { transform: rotate(360deg); } }

.contact-form.is-loading .form-submit { pointer-events: none; opacity: 0.85; }
.contact-form.is-loading .form-submit-label { display: none; }
.contact-form.is-loading .form-submit-loading { display: inline-flex !important; }

.form-legal {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-top: 4px;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 36px 28px;
  border: 1px solid rgba(52, 211, 153, 0.4);
  background: linear-gradient(180deg, rgba(52, 211, 153, 0.1), rgba(52, 211, 153, 0.04));
  border-radius: 14px;
  margin-top: 8px;
  animation: success-in 0.5s ease-out;
}
@keyframes success-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-success-ico {
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--green);
  filter: drop-shadow(0 4px 12px rgba(52, 211, 153, 0.4));
  animation: success-bounce 0.6s ease-out 0.1s both;
}
@keyframes success-bounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.form-success-ico svg { display: block; }
.form-success-ico svg path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: success-check 0.5s ease-out 0.4s forwards;
}
@keyframes success-check { to { stroke-dashoffset: 0; } }
.form-success h3 {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-success p {
  font-size: 14px;
  color: var(--text-mute);
}

.contact-form.is-success .form-row,
.contact-form.is-success .form-submit,
.contact-form.is-success .form-legal { display: none; }
.contact-form.is-success .form-success { display: block !important; }

.form-error {
  display: none;
  padding: 12px 14px;
  background: rgba(255, 90, 110, 0.1);
  border: 1px solid rgba(255, 90, 110, 0.4);
  border-radius: 10px;
  color: #ffb3bd;
  font-size: 14px;
}
.contact-form.is-error .form-error { display: block !important; }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 16px;
  font-family: "JetBrains Mono", monospace;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer ul a { color: var(--text-mute); }
.footer ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Verified badge mark used in nav + footer */
.verify-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  border-radius: 50%;
  color: white;
  font-size: 12px;
  box-shadow: 0 2px 8px -1px var(--glow);
}

/* Tweaks panel hooks (light overrides) */
body[data-accent="cyan"] { --blue: #06b6d4; --blue-bright: #22d3ee; --blue-soft: #67e8f9; --cyan: #a5f3fc; --glow: rgba(34, 211, 238, 0.5); }
body[data-accent="violet"] { --blue: #7c3aed; --blue-bright: #a78bfa; --blue-soft: #c4b5fd; --cyan: #ddd6fe; --glow: rgba(167, 139, 250, 0.5); }
body[data-accent="emerald"] { --blue: #059669; --blue-bright: #10b981; --blue-soft: #6ee7b7; --cyan: #a7f3d0; --glow: rgba(16, 185, 129, 0.5); }

.tweaks-toggle-hint {
  position: fixed;
  bottom: 16px; right: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  padding: 8px 12px;
  border: 1px dashed var(--border);
  border-radius: 999px;
  background: rgba(4, 6, 15, 0.6);
  backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
body.has-tweaks-hint .tweaks-toggle-hint { opacity: 1; }
