/* ForgeGuard — Variação A "Editorial Quiet"
   Vercel/Linear style: sans-only, deep navy, cyan accent used with restraint. */

:root {
  /* Foundation */
  --bg:           #0A0E1A;
  --surface:      #101828;
  --surface-2:   #0F172A;
  --border:       #1E293B;
  --border-strong:#334155;
  --fg:           #F8FAFC;
  --fg-dim:       #CBD5E1;
  --fg-muted:     #94A3B8;
  --fg-faint:     #64748B;

  /* Accent — used with avareza */
  --accent:       #06B6D4;
  --accent-glow:  rgba(6, 182, 212, 0.18);
  --primary:      #2563EB;
  --primary-soft: rgba(37, 99, 235, 0.16);

  /* Functional */
  --live:         #10B981;
  --whatsapp:     #25D366;

  /* Brand signature — ember used ONLY in logo-mark */
  --ember:        #E88646;

  /* Type */
  --sans: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container-max: 1120px;
  --container-pad-mobile: 24px;
  --container-pad-desktop: 64px;
  --section-pad-desktop: 160px;
  --section-pad-mobile: 96px;
  --nav-height: 72px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 120ms;
  --t-base: 180ms;
  --t-slow: 400ms;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11", "tnum";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--accent-glow); color: var(--fg); }

/* ─── Fade-in on first paint ────────────────────────── */
@keyframes fg-enter {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
body { animation: fg-enter 600ms var(--ease) both; }

/* ─── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; letter-spacing: -0.02em; color: var(--fg); }

.h1-hero {
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.h1-page {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 21px;
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 56ch;
  font-weight: 400;
}

p { margin: 0; color: var(--fg-dim); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.eyebrow .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.mono { font-family: var(--mono); }
.tabular { font-variant-numeric: tabular-nums slashed-zero; }

.text-dim { color: var(--fg-dim); }
.text-muted { color: var(--fg-muted); }
.text-faint { color: var(--fg-faint); }

/* ─── Layout primitives ─────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-mobile);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--container-pad-desktop); }
}

.section {
  padding-top: var(--section-pad-mobile);
  padding-bottom: var(--section-pad-mobile);
}
@media (min-width: 768px) {
  .section {
    padding-top: var(--section-pad-desktop);
    padding-bottom: var(--section-pad-desktop);
  }
}
.section-sm { padding: 96px 0; }
@media (min-width: 768px) { .section-sm { padding: 120px 0; } }

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

/* ─── Navigation ────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 26, 0.72);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.logo-mark {
  width: 22px; height: 22px;
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark::before {
  content: "";
  position: absolute; inset: 0;
  border: 1.5px solid var(--fg);
  transform: rotate(45deg);
}
.logo-mark::after {
  content: "";
  width: 8px; height: 8px;
  background: var(--ember);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--ember);
  position: relative; z-index: 1;
  animation: logo-pulse 2.4s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--ember); }
  50%      { opacity: 0.7; box-shadow: 0 0 14px var(--ember); }
}
.logo .amp {
  color: var(--fg-muted);
  font-style: italic;
  margin: 0 1px;
}
.nav-links {
  display: none;
  gap: 28px;
  font-size: 14px;
}
@media (min-width: 920px) {
  .nav-links { display: flex; align-items: center; }
}
.nav-links a {
  color: var(--fg-muted);
  font-weight: 500;
  transition: color var(--t-base) var(--ease);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }
.nav-cta { display: inline-flex; align-items: center; gap: 12px; }

/* WhatsApp pill in nav */
.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: all var(--t-base) var(--ease);
}
.wa-pill:hover { background: rgba(37, 211, 102, 0.14); border-color: rgba(37, 211, 102, 0.45); color: var(--fg); }
.wa-pill .wa-mark {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--whatsapp);
  display: inline-block;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn-primary:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px -8px rgba(248, 250, 252, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--fg); background: rgba(248, 250, 252, 0.03); }
.btn-link {
  height: auto; padding: 0;
  color: var(--fg);
  border: none;
  position: relative;
  font-weight: 500;
}
.btn-link::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.btn-link:hover::after { transform: scaleX(1); }
.btn-arrow::after {
  content: "→";
  margin-left: 4px;
  transition: transform var(--t-base) var(--ease);
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* WhatsApp ghost button (hero + CTA) */
.btn-wa {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-wa:hover { border-color: rgba(37, 211, 102, 0.5); background: rgba(37, 211, 102, 0.05); }
.btn-wa .wa-mark {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--whatsapp);
  display: inline-block;
}

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding-top: 180px; padding-bottom: 180px; }
}
.hero-eyebrow { margin-bottom: 32px; }
.hero h1 { margin-bottom: 28px; max-width: 14ch; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { margin-bottom: 40px; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 56px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--live);
}

/* Subtle ambient glow behind hero — restrained, almost imperceptible */
.hero::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  width: 720px; height: 720px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
  filter: blur(40px);
}

/* ─── Section header (eyebrow + h2 + lead) ──────────── */
.section-header {
  display: grid;
  gap: 24px;
  margin-bottom: 72px;
  max-width: 880px;
}
@media (min-width: 920px) {
  .section-header { gap: 40px; margin-bottom: 96px; }
}
.section-header .h2 { max-width: 18ch; }
.section-header .lead { max-width: 60ch; }

/* ─── Pillars (3 cards) ─────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 920px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.pillar {
  position: relative;
  padding: 40px 32px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 340px;
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.pillar:hover { border-color: var(--border-strong); }
.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.pillar-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.pillar-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; }
.pillar-status.live { color: var(--live); border-color: rgba(16, 185, 129, 0.3); }
.pillar-status.live::before { background: var(--live); box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18); }
.pillar-status.soon { color: var(--fg-muted); }
.pillar-status.soon::before { background: var(--fg-faint); }
.pillar h3 { line-height: 1.1; }
.pillar p { color: var(--fg-dim); flex: 1; }
.pillar-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  position: relative;
}
.pillar-link::after {
  content: "→";
  margin-left: 6px;
  transition: transform var(--t-base) var(--ease);
  display: inline-block;
}
.pillar:hover .pillar-link::after { transform: translateX(4px); }

/* ─── Numbers (stats row) ───────────────────────────── */
.numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 24px;
}
@media (min-width: 768px) {
  .numbers { grid-template-columns: repeat(4, 1fr); }
}
.number-cell { display: flex; flex-direction: column; gap: 12px; }
.number-cell .big {
  font-family: var(--mono);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
  font-variant-numeric: tabular-nums slashed-zero;
}
.number-cell .big em {
  font-style: normal;
  color: var(--accent);
}
.number-cell .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  line-height: 1.4;
}

/* ─── Differentials grid (8 items, WhatsApp highlighted) ─ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(4, 1fr); }
}
.diff-cell {
  background: var(--bg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--t-base) var(--ease);
}
.diff-cell:hover { background: var(--surface); }
.diff-cell.highlight {
  position: relative;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.06), transparent 60%);
}
.diff-cell.highlight::before {
  content: "";
  position: absolute;
  left: 0; top: 16px; bottom: 16px;
  width: 2px;
  background: var(--accent);
}
.diff-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-faint);
}
.diff-cell h4 { letter-spacing: -0.015em; }
.diff-cell p { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* ─── WhatsApp dedicated section ────────────────────── */
.wa-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 920px) {
  .wa-section { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.wa-text h2 { margin-bottom: 28px; max-width: 14ch; }
.wa-text .lead { margin-bottom: 32px; }
.wa-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 14px;
}
.wa-text li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--fg-dim);
  font-size: 15px;
}
.wa-text li::before {
  content: "✓";
  flex-shrink: 0;
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--whatsapp);
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 4px;
  margin-top: 2px;
}

/* Mock conversation card (static) */
.wa-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.wa-mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.wa-mock-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp), #128C7E);
  flex-shrink: 0;
}
.wa-mock-meta { display: flex; flex-direction: column; gap: 2px; }
.wa-mock-meta strong { font-weight: 500; font-size: 14px; color: var(--fg); }
.wa-mock-meta span { font-family: var(--mono); font-size: 11px; color: var(--fg-faint); letter-spacing: 0.06em; }
.wa-mock-meta span::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--live); margin-right: 6px;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.wa-bubble {
  padding: 12px 14px;
  border-radius: 12px;
  max-width: 90%;
  line-height: 1.45;
}
.wa-bubble.in {
  background: var(--surface-2);
  border-top-left-radius: 4px;
  color: var(--fg-dim);
}
.wa-bubble.out {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-top-right-radius: 4px;
  margin-left: auto;
  color: var(--fg);
}
.wa-bubble code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(0,0,0,0.3);
  padding: 1px 6px;
  border-radius: 4px;
}
.wa-mock-time {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--fg-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
  margin-top: 4px;
}

/* ─── CTA final ─────────────────────────────────────── */
.cta-final {
  text-align: center;
}
.cta-final .container { max-width: 780px; }
.cta-final h2 { margin: 24px 0 20px; }
.cta-final .lead { margin: 0 auto 36px; }
.cta-final .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.cta-final .ps {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* ─── Footer ────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
}
.footer-brand p { color: var(--fg-muted); font-size: 14px; max-width: 38ch; }
.footer-tag {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a {
  color: var(--fg-muted);
  font-size: 14px;
  transition: color var(--t-base) var(--ease);
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-faint);
}

/* ─── Inner-page hero meta row ──────────────────────── */
.meta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .meta-row { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
.meta-row .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: block;
  margin-bottom: 8px;
}
.meta-row .value {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.5;
}
.meta-row .value strong { color: var(--fg); font-weight: 500; }

/* ─── Chips & badges ────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.chip-accent { border-color: rgba(6, 182, 212, 0.4); color: var(--accent); background: rgba(6, 182, 212, 0.06); }
.chip-soon { color: var(--fg-muted); }
.chip-live { color: var(--live); border-color: rgba(16, 185, 129, 0.35); }
.chip-live::before, .chip-soon::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
}
.chip-live::before { background: var(--live); box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
.chip-soon::before { background: var(--fg-faint); }

/* ─── Pricing: tabs + cards ─────────────────────────── */
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
  padding-bottom: 0;
}
.pricing-tab {
  position: relative;
  padding: 16px 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color var(--t-base) var(--ease);
}
.pricing-tab:hover { color: var(--fg-dim); }
.pricing-tab.active { color: var(--fg); }
.pricing-tab.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--accent);
}
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .plans { grid-template-columns: repeat(4, 1fr); } }
.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--t-base) var(--ease);
}
.plan:hover { border-color: var(--border-strong); }
.plan.featured { border-color: var(--accent); }
.plan.featured::before {
  content: "Recomendado";
  position: absolute;
  top: -1px; left: -1px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px 0 8px 0;
}
.plan-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0;
}
.plan-price .currency {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-muted);
}
.plan-price .amount {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.plan-price .period {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-faint);
  letter-spacing: 0.08em;
}
.plan-price .quote {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.plan-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.plan-features { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.plan-features li {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.02em;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}
.plan-features li::before {
  content: "+";
  color: var(--accent);
  flex-shrink: 0;
}
.plan-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.plan-cta::after {
  content: "→";
  transition: transform var(--t-base) var(--ease);
}
.plan-cta:hover::after { transform: translateX(3px); }

/* ─── Regions table ─────────────────────────────────── */
.regions {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.region-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--bg);
  padding: 18px 24px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-dim);
  transition: background var(--t-base) var(--ease);
}
.region-row:hover { background: var(--surface); }
.region-row.primary {
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.06), transparent 40%);
  color: var(--fg);
  position: relative;
}
.region-row.primary::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px; background: var(--accent);
}
.region-row .region-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-faint);
  text-transform: uppercase;
}
.region-row .region-city { color: inherit; }
.region-row .region-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.region-row .region-status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--fg-faint);
}
.region-row .region-status.live { color: var(--live); }
.region-row .region-status.live::before {
  background: var(--live); box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}
.regions-group-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  padding: 24px 24px 8px;
  background: var(--bg);
}

/* ─── Bundles ───────────────────────────────────────── */
.bundles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 920px) { .bundles { grid-template-columns: repeat(3, 1fr); } }
.bundle {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color var(--t-base) var(--ease);
}
.bundle:hover { border-color: var(--border-strong); }
.bundle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.bundle-discount {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
}
.bundle h3 { line-height: 1.15; }
.bundle p { font-size: 14px; color: var(--fg-muted); }
.bundle ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
  font-family: var(--mono); font-size: 12px;
  color: var(--fg-dim);
}
.bundle ul li::before { content: "→ "; color: var(--accent); }

/* ─── FAQ ───────────────────────────────────────────── */
.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  letter-spacing: -0.005em;
  transition: color var(--t-base) var(--ease);
}
.faq-q:hover { color: var(--accent); }
.faq-toggle {
  flex-shrink: 0;
  width: 16px; height: 16px;
  position: relative;
  transition: transform var(--t-base) var(--ease);
}
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute;
  background: currentColor;
}
.faq-toggle::before { top: 7px; left: 0; right: 0; height: 1.5px; }
.faq-toggle::after { left: 7px; top: 0; bottom: 0; width: 1.5px; transition: transform var(--t-base) var(--ease); }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding-bottom: 24px;
}

/* ─── Timeline / process ────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}
@media (min-width: 920px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
  .timeline.five { grid-template-columns: repeat(5, 1fr); }
}
.timeline-step {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
@media (max-width: 919px) {
  .timeline-step { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
}
.timeline-step .step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg-faint);
}
.timeline-step .step-name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.timeline-step .step-detail {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.timeline-step .step-meta {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

/* ─── Capability / generic card grid ────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--t-base) var(--ease);
}
.card:hover { border-color: var(--border-strong); }
.card.featured { border-color: var(--accent); }
.card-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.card h3, .card h4 { letter-spacing: -0.015em; }
.card p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }
.card-metric {
  font-family: var(--mono);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

/* ─── Manifesto block ───────────────────────────────── */
.manifesto {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.manifesto p {
  font-size: 22px;
  line-height: 1.5;
  color: var(--fg-dim);
  margin-bottom: 28px;
}
.manifesto p:last-child { margin-bottom: 0; }
.manifesto p strong { color: var(--fg); font-weight: 500; }

/* ─── Two-column grid (text / list) ─────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 920px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* ─── Inline checklist (LGPD etc.) ──────────────────── */
.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .checklist { grid-template-columns: 1fr 1fr; gap: 14px 40px; } }
.checklist li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--fg-dim);
}
.checklist li::before {
  content: "✓";
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ─── Scroll-reveal (subtle) ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-stagger="1"] { transition-delay: 60ms; }
.reveal[data-stagger="2"] { transition-delay: 120ms; }
.reveal[data-stagger="3"] { transition-delay: 180ms; }
.reveal[data-stagger="4"] { transition-delay: 240ms; }

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