/* ─── FUENTES LOCALES PONTIA ─── */
@font-face {
  font-family: 'Galyon';
  src: url('../assets/fonts/Galyon-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Galyon';
  src: url('../assets/fonts/Galyon-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --surface: #F1F3F5;
  --border: #E4E8ED;
  --border-light: #EEF1F5;
  --text-primary: #0D1117;
  --text-secondary: #4A5568;
  --text-muted: #8A96A3;
  --teal: #00B4D8;
  --teal-light: #3ECAAA;
  --teal-subtle: rgba(0, 180, 216, 0.08);
  --teal-subtle-2: rgba(0, 180, 216, 0.12);
  --teal-a: #3ECAAA;
  --teal-b: #00B4D8;
  --grad: linear-gradient(90deg, #3ECAAA 0%, #00B4D8 100%);
  --black: #060606;
  --black-2: #111318;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.06);
  --font-display: 'Galyon', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
}

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

html { scroll-behavior: smooth; }

/* ─── A11Y: focus rings globales ─── */
:focus-visible {
  outline: 2px solid var(--teal-b);
  outline-offset: 2px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal-b);
  outline-offset: 3px;
}

/* ─── A11Y: skip link (visible solo al recibir focus por teclado) ─── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 1000;
  background: var(--text-primary);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: 2px solid var(--teal-b);
  outline-offset: 2px;
}

/* ─── A11Y: respetar prefers-reduced-motion globalmente ─── */
@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;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #EDEEF0;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
}

/* SVG icon inline */
.pontia-icon {
  width: 28px;
  height: 28px;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #6B7280;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  /* A11Y: tap target >=44px de altura */
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
}

.nav-links a:hover { color: #0D1117; }

.nav-cta {
  background: #0F1012;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #1a1c20 !important; color: var(--white) !important; }

/* ─── HERO (centered) ─── */
.hero {
  padding: 140px 32px 120px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82vh;
  text-align: center;
}

.hero-center {
  width: 100%;
  max-width: 1040px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-line {
  white-space: nowrap;
}

@media (max-width: 720px) {
  .hero-title-line { white-space: normal; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-subtle);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--teal);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
}

.hero-title strong {
  font-weight: 700;
  display: block;
}

.hero-title .teal-word {
  color: inherit;
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 44px;
  font-weight: 300;
  text-align: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(90deg, #3ECAAA 0%, #00B4D8 100%);
  color: #FFFFFF;
  border: none;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,180,216,0.3);
}

.btn-secondary {
  color: #00B4D8;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #00B4D8;
  padding: 12px 22px;
  border-radius: 100px;
  transition: all 0.2s;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(0,180,216,0.06);
  color: #00B4D8;
}

/* Métricas centradas debajo de los CTAs */
.hero-metrics {
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.hero-metric-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-metric-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  font-weight: 400;
  font-family: var(--font-mono);
  text-transform: lowercase;
}

.hero-metric-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  display: inline-block;
}

/* Mobile hero */
@media (max-width: 720px) {
  .hero { padding: 120px 20px 80px; min-height: auto; }
  .hero-metrics { gap: 24px; margin-top: 56px; }
  .hero-metric-value { font-size: 24px; }
  .hero-metric-sep { display: none; }
}

/* ─── AUTHORITY STRIP ─── */
.authority-strip {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--off-white);
  padding: 24px 48px;
}

.authority-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.authority-strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.authority-strip-items {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.authority-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.2s, transform 0.2s;
  min-height: 44px;
}

.authority-item[href]:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.authority-item[href]:focus-visible {
  outline: 2px solid var(--teal-b);
  outline-offset: 2px;
}

.authority-item--static {
  cursor: default;
}

.authority-item-icon {
  width: 18px;
  height: 18px;
  color: var(--teal-b);
  flex-shrink: 0;
}

.authority-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
}

.authority-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.authority-item-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 400;
}

.authority-item-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
  display: inline-block;
}

@media (max-width: 720px) {
  .authority-strip { padding: 20px 16px; }
  .authority-strip-inner { gap: 16px; flex-direction: column; }
  .authority-item-sep { display: none; }
  .authority-strip-items { gap: 4px; }
}

/* ─── PAYMENTS FEED WIDGET ─── */
.pay-feed {
  background: var(--white);
  border: 1px solid #E4E6E8;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  flex-shrink: 0;
}

.pay-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #F0F2F4;
}

.pay-feed-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.pay-illustrative-label {
  font-size: 11px;
  color: #909499;
  font-weight: 400;
}

.pay-disclaimer {
  font-size: 11px;
  font-weight: 300;
  color: #C0C0C0;
  text-align: center;
  margin-top: 8px;
}

.pay-feed-stat--tooltip {
  position: relative;
}

.pay-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #0F1012;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 300;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
}

.pay-feed-stat--tooltip:hover .pay-tooltip {
  display: block;
}

.pay-feed-list {
  padding: 8px 0;
  height: 280px;
  overflow: hidden;
  position: relative;
  contain: layout style;
}

.pay-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  transition: background 0.2s;
  animation: rowSlideUp 0.4s ease forwards;
  opacity: 0;
}

.pay-row:hover { background: #FAFAFA; }

@keyframes rowSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pay-row-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.pay-row-info {
  flex: 1;
  min-width: 0;
}

.pay-row-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pay-row-route {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.pay-row-amounts {
  text-align: right;
  flex-shrink: 0;
}

.pay-row-main {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.pay-row-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.pay-row-badge {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}

.pay-row-badge.settled {
  background: rgba(62,202,170,0.1);
  color: #3ECAAA;
}

.pay-row-badge.processing {
  background: rgba(0,0,0,0.05);
  color: var(--text-muted);
}

.pay-feed-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 16px 24px;
  border-top: 1px solid #F0F2F4;
  background: #FAFAFA;
}

.pay-feed-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pay-feed-stat-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}

.pay-feed-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.pay-feed-divider {
  width: 1px;
  height: 28px;
  background: #E8EAEC;
}


/* ─── PROBLEM STATEMENT SECTION ─── */
.problem-section {
  padding: 96px 48px;
  background: var(--white);
}

.problem-inner {
  max-width: 800px;
  margin: 0 auto;
}

.problem-question {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: #0F1012;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.problem-answer {
  font-size: 17px;
  font-weight: 300;
  color: #6B7280;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .problem-section { padding: 72px 24px; }
}

/* ─── FEATURES SECTION ─── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 128px 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--teal);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title strong { font-weight: 700; }

.section-sub {
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* Features grid */
.features-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--off-white); }

.feature-card.featured {
  background: var(--text-primary);
  color: var(--white);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card.featured .feature-icon {
  background: rgba(255,255,255,0.08);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-secondary);
  stroke-width: 1.8;
  fill: none;
}

.feature-card.featured .feature-icon svg {
  stroke: rgba(255,255,255,0.6);
}

.feature-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.feature-card.featured .feature-title { color: var(--white); }

.feature-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

.feature-card.featured .feature-desc { color: rgba(255,255,255,0.65); }

/* ─── BLACK SECTION (CNBV / REGULATION) ─── */
.black-section {
  background: var(--black);
  padding: 128px 48px;
  position: relative;
  overflow: hidden;
}

.black-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,180,166,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.black-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.black-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.black-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--teal);
}

.black-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.black-title strong { font-weight: 700; }

.black-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
}

.reg-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s;
}

.reg-card:hover { border-color: rgba(0,180,166,0.3); }

.reg-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 6px;
  flex-shrink: 0;
}

.reg-card-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.reg-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Compliance badge */
.compliance-badge {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.compliance-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.compliance-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-mono);
}

.compliance-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--teal);
  font-family: var(--font-mono);
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.compliance-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,180,166,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compliance-check svg {
  width: 13px;
  height: 13px;
  stroke: var(--teal);
  stroke-width: 2.5;
  fill: none;
}

.compliance-item-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}

/* ─── CURRENCIES SECTION ─── */
.currencies-section {
  padding: 128px 48px;
  background: var(--white);
}

.currencies-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.currencies-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.currencies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.currencies-expansion-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 32px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .currencies-grid { grid-template-columns: repeat(2, 1fr); }
}

.currency-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
  background: var(--white);
}

.currency-card:hover {
  border-color: var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.currency-flag { font-size: 22px; }

.currency-info {}
.currency-code {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

.currency-name {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 1px;
}

.currency-card--soon {
  opacity: 0.45;
}

.currency-badge {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: auto;
  flex-shrink: 0;
}

.currency-badge--active {
  background: rgba(62,202,170,0.1);
  color: #3ECAAA;
}

.currency-badge--soon {
  background: rgba(0,0,0,0.05);
  color: #909499;
}

/* ─── HOW IT WORKS ─── */
.steps-section {
  background: var(--off-white);
  padding: 128px 48px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.steps-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-header {
  text-align: center;
  margin-bottom: 64px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.step-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
}

.step-number {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 128px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 96px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.faq-question {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--text-primary); }

.faq-toggle {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.faq-toggle svg {
  width: 11px;
  height: 11px;
  stroke: var(--text-secondary);
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s;
}

.faq-item.open .faq-toggle {
  background: var(--text-primary);
}

.faq-item.open .faq-toggle svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 12px;
}

.cta-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: #FAFAFA;
  padding: 128px 48px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.cta-title strong { font-weight: 700; }

.cta-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btn-teal {
  background: linear-gradient(90deg, #3ECAAA 0%, #00B4D8 100%);
  color: #FFFFFF;
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-teal:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,180,216,0.3);
}

.btn-ghost {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--text-primary); }

/* ─── FOOTER ─── */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-size: 12.5px;
  color: var(--text-muted);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-link {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text-secondary); }

/* ─── LANG TOGGLE ─── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--surface);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--text-muted);
  padding: 9px 14px;
  border-radius: 100px;
  transition: all 0.18s;
  letter-spacing: 0.04em;
  /* A11Y: tap target reasonable; el toggle padre es compacto */
  min-height: 32px;
  min-width: 44px;
}

.lang-btn--active {
  background: #0F1012;
  color: var(--white);
}

.lang-btn:not(.lang-btn--active):hover {
  color: var(--text-primary);
}

/* ─── TRANSMITTER LINE ─── */
.hero-transmitter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.hero-transmitter-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ─── FEATURE REGULATED CARD ─── */
.feature-card--regulated {
  background: linear-gradient(135deg, rgba(62,202,170,0.06) 0%, rgba(0,180,216,0.06) 100%);
  border-top: 2px solid var(--teal);
}

.feature-regulated-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,180,166,0.08);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  /* A11Y: tap target >=44px */
  min-width: 44px;
  min-height: 44px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HEADLINES: negro base, grad solo en word clave ─── */
.hero-title,
.section-title,
.cta-title {
  color: #0F1012;
  isolation: isolate;
}

.black-title {
  color: #FFFFFF;
  isolation: isolate;
}

/* Palabra(s) clave con gradiente de marca */
.grad {
  background: linear-gradient(90deg, #3ECAAA 0%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #3ECAAA 0%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.section-title em, .cta-title em {
  font-style: normal;
  background: linear-gradient(90deg, #3ECAAA 0%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #EDEEF0;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
  }

  .nav-links .nav-cta {
    margin: 8px 24px 0;
    display: block;
    text-align: center;
    border-radius: 100px;
  }

  .hero {
    padding: 110px 24px 72px;
    min-height: auto;
  }

  .features-grid { grid-template-columns: 1fr; }
  .black-inner { grid-template-columns: 1fr; gap: 48px; }
  .currencies-header { grid-template-columns: 1fr; gap: 32px; }
  .currencies-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }

  .section, .currencies-section, .steps-section, .faq-section { padding: 80px 24px; }
  .black-section, .cta-section { padding: 80px 24px; }

  footer { flex-direction: column; gap: 16px; padding: 24px; text-align: center; }
  .footer-right { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* ─── WIDGET: no translateY en móvil para evitar scroll del documento ─── */
@media (max-width: 768px) {
  @keyframes rowSlideUp {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  .pay-feed-list {
    contain: strict;
  }
}

/* ─── SPEED COMPARISON ─── */
.speed-section {
  padding: 128px 48px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

.speed-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.speed-header {
  margin-bottom: 72px;
}

.speed-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.speed-col {
  border-radius: var(--radius-lg);
  padding: 40px;
}

.speed-col--legacy {
  background: var(--off-white);
  border: 1px solid var(--border-light);
}

.speed-col--pontia {
  background: #060606;
  border: 1px solid rgba(62,202,170,0.2);
  position: relative;
  overflow: hidden;
}

.speed-col--pontia::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,180,166,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.speed-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 20px;
}

.speed-col--legacy .speed-col-header {
  border-bottom: 1px solid var(--border-light);
}

.speed-col--pontia .speed-col-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.speed-col-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.speed-col-label--legacy { color: var(--text-muted); }

.speed-col-label--pontia {
  background: linear-gradient(90deg, #3ECAAA 0%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.speed-col-time {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.speed-col-time--legacy {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.2);
}

.speed-col-time--pontia {
  background: linear-gradient(90deg, #3ECAAA 0%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.speed-steps {
  display: flex;
  flex-direction: column;
}

.speed-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.speed-step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.speed-step-num--legacy {
  background: rgba(0,0,0,0.05);
  color: var(--text-muted);
}

.speed-step-num--pontia {
  background: rgba(62,202,170,0.12);
  color: var(--teal-light);
}

.speed-step-content {
  flex: 1;
  padding-bottom: 4px;
}

.speed-step-title {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.4;
}

.speed-col--legacy .speed-step-title { color: var(--text-secondary); }

.speed-col--pontia .speed-step-title { color: rgba(255,255,255,0.85); }

.speed-step-time {
  font-family: var(--font-mono);
  font-size: 11px;
  margin-top: 4px;
  font-weight: 500;
}

.speed-step-time--legacy { color: var(--text-muted); }

.speed-step-time--pontia { color: var(--teal-light); }

.speed-connector {
  width: 1px;
  height: 28px;
  margin-left: 13px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.speed-connector--legacy { background: var(--border-light); }

.speed-connector--pontia { background: rgba(62,202,170,0.25); }

.speed-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 32px 0;
  gap: 12px;
}

.speed-divider-line {
  width: 1px;
  height: 60px;
  background: var(--border-light);
}

.speed-divider-vs {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  background: var(--white);
  padding: 8px 0;
}

.speed-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 40px;
  font-weight: 300;
}

@media (max-width: 900px) {
  .speed-section { padding: 80px 24px; }
  .speed-compare { grid-template-columns: 1fr; gap: 0; }
  .speed-divider {
    flex-direction: row;
    padding: 24px 0;
    gap: 16px;
  }
  .speed-divider-line {
    width: 60px;
    height: 1px;
  }
}

/* ─── SPEED COMPARISON: animación 1→4 en loop (controlado por JS) ─── */
.speed-compare .speed-step {
  opacity: 0.3;
  transition: opacity 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.speed-compare .speed-connector {
  opacity: 0.3;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 380ms cubic-bezier(0.4, 0, 0.6, 1),
              opacity 380ms cubic-bezier(0.4, 0, 0.6, 1);
}

/* Stagger 1→4 ONLY when entering the bright state */
.speed-compare.is-playing .speed-steps > *:nth-child(1) { transition-delay: 0ms; }
.speed-compare.is-playing .speed-steps > *:nth-child(2) { transition-delay: 280ms; }
.speed-compare.is-playing .speed-steps > *:nth-child(3) { transition-delay: 560ms; }
.speed-compare.is-playing .speed-steps > *:nth-child(4) { transition-delay: 840ms; }
.speed-compare.is-playing .speed-steps > *:nth-child(5) { transition-delay: 1120ms; }
.speed-compare.is-playing .speed-steps > *:nth-child(6) { transition-delay: 1400ms; }
.speed-compare.is-playing .speed-steps > *:nth-child(7) { transition-delay: 1680ms; }

/* Bright state */
.speed-compare.is-playing .speed-step,
.speed-compare.is-playing .speed-connector {
  opacity: 1;
}

.speed-compare.is-playing .speed-connector {
  transform: scaleY(1);
}

/* Reset (going back to dim): no stagger, instant fast reset */
.speed-compare:not(.is-playing) .speed-steps > * {
  transition-duration: 280ms;
  transition-delay: 0ms;
}

/* Pulse del número cuando el paso se activa */
@keyframes speedNumActivate {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(62,202,170,0); }
  45%  { transform: scale(1.18); box-shadow: 0 0 0 10px rgba(62,202,170,0.20); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(62,202,170,0); }
}

@keyframes speedNumActivateLegacy {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,0,0,0); }
  45%  { transform: scale(1.10); box-shadow: 0 0 0 8px rgba(0,0,0,0.06); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

.speed-compare.is-playing .speed-col--pontia .speed-steps > .speed-step:nth-child(1) .speed-step-num { animation: speedNumActivate 700ms ease-out 0ms both; }
.speed-compare.is-playing .speed-col--pontia .speed-steps > .speed-step:nth-child(3) .speed-step-num { animation: speedNumActivate 700ms ease-out 560ms both; }
.speed-compare.is-playing .speed-col--pontia .speed-steps > .speed-step:nth-child(5) .speed-step-num { animation: speedNumActivate 700ms ease-out 1120ms both; }
.speed-compare.is-playing .speed-col--pontia .speed-steps > .speed-step:nth-child(7) .speed-step-num { animation: speedNumActivate 700ms ease-out 1680ms both; }

.speed-compare.is-playing .speed-col--legacy .speed-steps > .speed-step:nth-child(1) .speed-step-num { animation: speedNumActivateLegacy 700ms ease-out 0ms both; }
.speed-compare.is-playing .speed-col--legacy .speed-steps > .speed-step:nth-child(3) .speed-step-num { animation: speedNumActivateLegacy 700ms ease-out 560ms both; }
.speed-compare.is-playing .speed-col--legacy .speed-steps > .speed-step:nth-child(5) .speed-step-num { animation: speedNumActivateLegacy 700ms ease-out 1120ms both; }
.speed-compare.is-playing .speed-col--legacy .speed-steps > .speed-step:nth-child(7) .speed-step-num { animation: speedNumActivateLegacy 700ms ease-out 1680ms both; }

/* Reduced motion: aparece todo de una sin animación */
@media (prefers-reduced-motion: reduce) {
  .speed-compare .speed-step,
  .speed-compare .speed-connector,
  .speed-compare.is-playing .speed-step,
  .speed-compare.is-playing .speed-connector {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .speed-compare.is-playing .speed-step-num { animation: none !important; }
}

/* ─── LEGAL PAGES (privacidad, terminos) ─── */
.legal-page {
  background: var(--white);
}

.legal-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 48px 96px;
}

.legal-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 32px;
  margin-bottom: 48px;
}

.legal-breadcrumb {
  display: inline-block;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.legal-breadcrumb:hover { color: var(--text-primary); }

.legal-breadcrumb:focus-visible {
  outline: 2px solid var(--teal-b);
  outline-offset: 2px;
  border-radius: 4px;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-top: 12px;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.legal-draft-banner {
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 48px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-draft-banner strong {
  color: var(--teal-b);
  font-weight: 600;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.legal-section p,
.legal-section li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-section ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-section li::marker {
  color: var(--teal-b);
}

@media (max-width: 720px) {
  .legal-main { padding: 96px 20px 72px; }
  .legal-header { padding-bottom: 24px; margin-bottom: 36px; }
  .legal-section h2 { font-size: 18px; }
  .legal-section p, .legal-section li { font-size: 14.5px; }
}
