/* ==========================================================================
   Fokkus — Landing Comercial
   Dark mode · Glassmorphism · Tipografía Inter · Animaciones suaves
   ========================================================================== */

:root {
  --bg: #090c14;
  --bg-elev: #0e1420;
  --surface: rgba(22, 29, 46, 0.55);
  --surface-solid: #161d2e;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --accent: #16c79a;
  --accent-2: #37ecba;
  --accent-soft: rgba(22, 199, 154, 0.14);
  --text: #f5f7fa;
  --text-dim: rgba(245, 247, 250, 0.68);
  --text-dimmer: rgba(245, 247, 250, 0.46);
  --danger: #ff6b81;
  --danger-soft: rgba(255, 107, 129, 0.12);
  --success: #16c79a;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 0 1px var(--border), 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --max-width: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Fondo decorativo con blobs radiales (glassmorphism ambiental) */
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

body::before {
  top: -220px;
  left: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(22, 199, 154, 0.28), transparent 70%);
}

body::after {
  bottom: -260px;
  right: -200px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(55, 236, 186, 0.16), transparent 70%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: var(--accent-soft);
  border: 1px solid rgba(22, 199, 154, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
}

.section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-head p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231c;
  box-shadow: 0 8px 24px -8px rgba(22, 199, 154, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(22, 199, 154, 0.7);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 12, 20, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px -6px rgba(22, 199, 154, 0.7);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

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

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dim);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 60px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 5.2vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 20px 0 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-dimmer);
  font-weight: 600;
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Mockup visual (CSS-only, sin capturas reales) */
.hero-visual {
  position: relative;
}

.mock-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--shadow-glow);
  padding: 26px;
}

.mock-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.mock-card-header .dots {
  display: flex;
  gap: 6px;
}

.mock-card-header .dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.mock-balance {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.mock-sub {
  font-size: 13px;
  color: var(--text-dimmer);
  margin-bottom: 22px;
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 96px;
  margin-bottom: 22px;
}

.mock-bars span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  opacity: 0.85;
  animation: bar-grow 1.4s ease forwards;
  transform-origin: bottom;
}

@keyframes bar-grow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
}

.mock-row .tag {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-weight: 600;
}

.mock-row .tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.mock-row .amount {
  font-weight: 700;
}

.mock-row .amount.neg {
  color: var(--danger);
}

.mock-row .amount.pos {
  color: var(--accent);
}

.floating-badge {
  position: absolute;
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.7);
  animation: float 5s ease-in-out infinite;
}

.floating-badge svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.floating-badge.badge-1 {
  top: -18px;
  right: -16px;
  animation-delay: 0.4s;
}

.floating-badge.badge-2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 1s;
}

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

/* ---------- Logos / social proof strip ---------- */
.strip {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
}

.strip-item {
  font-size: 13px;
  color: var(--text-dimmer);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.strip-item strong {
  color: var(--text);
  font-size: 15px;
}

/* ---------- Módulos ---------- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  backdrop-filter: blur(20px) saturate(140%);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 199, 154, 0.4);
  box-shadow: 0 24px 50px -24px rgba(22, 199, 154, 0.35);
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.module-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.module-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.module-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ---------- Seguridad ---------- */
.security {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.security-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.security-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.security-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-item .icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.security-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.security-item p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

.security-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px) saturate(140%);
}

.security-panel .law-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 199, 154, 0.12);
  border: 1px solid rgba(22, 199, 154, 0.3);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.security-panel h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.security-panel p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 14px;
}

.security-panel ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.security-panel li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dim);
  align-items: flex-start;
}

.security-panel li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
}

.faq-question .chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item.open .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-dim);
}

/* ---------- CTA final ---------- */
.cta-final {
  text-align: center;
}

.cta-panel {
  background: linear-gradient(135deg, rgba(22, 199, 154, 0.14), rgba(55, 236, 186, 0.06));
  border: 1px solid rgba(22, 199, 154, 0.28);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-panel h2 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 560px;
}

.cta-panel p {
  color: var(--text-dim);
  font-size: 15.5px;
  max-width: 480px;
}

.cta-panel .hero-ctas {
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--text-dimmer);
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--accent-2);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dimmer);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ==========================================================================
   Páginas de autenticación (register / recover-password)
   ========================================================================== */

.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  position: relative;
  z-index: 1;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow: var(--shadow-glow);
  padding: 40px 36px;
}

.auth-card.wide {
  max-width: 560px;
}

.auth-head {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.auth-head .brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.auth-head .brand-mark svg {
  width: 28px;
  height: 28px;
}

.auth-head h1 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.auth-head p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.5;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
}

.field .input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.field .input-wrap svg.icon-left {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: var(--text-dimmer);
  pointer-events: none;
}

.field input,
.field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 14.5px;
  padding: 13px 14px 13px 42px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.field.no-icon input {
  padding-left: 14px;
}

.field input::placeholder {
  color: var(--text-dimmer);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(22, 199, 154, 0.06);
}

.field input.invalid {
  border-color: var(--danger);
  background: var(--danger-soft);
}

.field .prefix-fixed {
  position: absolute;
  left: 42px;
  font-size: 14.5px;
  color: var(--text-dim);
  font-weight: 600;
  pointer-events: none;
}

.field .prefix-fixed ~ input {
  padding-left: 78px;
}

.toggle-visibility {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-dimmer);
  cursor: pointer;
  padding: 6px;
  display: flex;
}

.toggle-visibility svg {
  width: 18px;
  height: 18px;
}

.field-error {
  font-size: 12.5px;
  color: var(--danger);
  min-height: 15px;
}

.field-hint {
  font-size: 12px;
  color: var(--text-dimmer);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-row label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.checkbox-row a {
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: underline;
}

.form-alert {
  display: none;
  align-items: flex-start;
  gap: 10px;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.5;
}

.form-alert.show {
  display: flex;
}

.form-alert.error {
  background: var(--danger-soft);
  border: 1px solid rgba(255, 107, 129, 0.35);
  color: #ffb3c0;
}

.form-alert.success {
  background: var(--accent-soft);
  border: 1px solid rgba(22, 199, 154, 0.35);
  color: var(--accent-2);
}

.form-alert svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.auth-footer-link {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-dim);
  margin-top: 22px;
}

.auth-footer-link a {
  color: var(--accent-2);
  font-weight: 700;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 22px;
}

.back-home svg {
  width: 16px;
  height: 16px;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(6, 35, 28, 0.35);
  border-top-color: #06231c;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.btn.loading .spinner {
  display: inline-block;
}

.btn.loading .btn-label {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   Páginas legales (terms / privacy)
   ========================================================================== */

.legal-page {
  padding: 140px 0 100px;
  position: relative;
  z-index: 1;
}

.legal-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.legal-header h1 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.legal-meta {
  font-size: 13px;
  color: var(--text-dimmer);
  font-weight: 600;
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(20px) saturate(140%);
}

.legal-body section {
  margin-bottom: 34px;
}

.legal-body section:last-child {
  margin-bottom: 0;
}

.legal-body h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.legal-body p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.legal-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  padding-left: 4px;
}

.legal-body li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}

.legal-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.legal-body strong {
  color: var(--text);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 440px;
    margin: 0 auto;
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    gap: 18px;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .legal-body {
    padding: 30px 22px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 64px 0 40px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 30px 22px;
  }
}
