/* ============================================================
   LEGALIZE — Design System
   by C2C Consulting LLC
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --graphite:   #101010;
  --graphite-2: #161616;
  --graphite-3: #1e1e1e;
  --panel:      rgba(255,255,255,0.04);
  --panel-brd:  rgba(0,184,107,0.18);
  --emerald:    #00B86B;
  --lime:       #7FFF00;
  --lime-dim:   rgba(127,255,0,0.12);
  --white:      #ffffff;
  --muted:      #8a8a8a;
  --muted-2:    #bfbfbf;
  --danger:     #ff4d4d;

  --nav-h:      88px;
  --announce-h: 40px;
  --chrome-h:   calc(var(--nav-h) + var(--announce-h));
  --radius:     10px;
  --radius-lg:  18px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);

  --fs-xs:   clamp(0.75rem,  1.2vw,  0.875rem);
  --fs-sm:   clamp(0.875rem, 1.4vw,  1rem);
  --fs-base: clamp(1rem,     1.6vw,  1.125rem);
  --fs-lg:   clamp(1.125rem, 1.8vw,  1.375rem);
  --fs-xl:   clamp(1.375rem, 2.4vw,  1.75rem);
  --fs-2xl:  clamp(1.75rem,  3.5vw,  2.5rem);
  --fs-3xl:  clamp(2.25rem,  5vw,    3.75rem);
  --fs-4xl:  clamp(2.75rem,  7vw,    5rem);

  --section-pad: clamp(80px, 10vw, 140px);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--graphite);
  color: var(--white);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── Grid texture overlay ────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,184,107,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,184,107,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── Ambient cursor glow ─────────────────────────────────── */
#cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,107,0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s;
}
@media (prefers-reduced-motion: reduce) { #cursor-glow { display: none; } }
@media (hover: none) { #cursor-glow { display: none; } }

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  position: relative;
  z-index: 2;
}
.section { padding: var(--section-pad) 0; position: relative; z-index: 2; }
.section--alt { background: var(--graphite-2); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 56px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.5vw, 32px); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ── Typography ──────────────────────────────────────────── */
.display { font-size: var(--fs-4xl); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.headline { font-size: var(--fs-3xl); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.subhead  { font-size: var(--fs-xl);  font-weight: 600; line-height: 1.3; }
.label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
}
.muted { color: var(--muted-2); }
.accent { color: var(--emerald); }
.lime   { color: var(--lime); }

/* ── Gradient text ───────────────────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navigation ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  background: rgba(16,16,16,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--panel-brd);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { height: 72px; width: auto; }
.nav-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.nav-logo-sub  { font-size: 0.65rem; color: var(--muted); margin-top: -2px; letter-spacing: 0.05em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-2);
  transition: color var(--transition);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--emerald); }
.nav-cta { margin-left: 8px; }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.announce-bar {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 890;
  min-height: var(--announce-h);
  background: linear-gradient(90deg, rgba(0,184,107,0.14) 0%, rgba(16,16,16,0.96) 40%, rgba(0,184,107,0.12) 100%);
  border-bottom: 1px solid rgba(0,184,107,0.45);
  box-shadow: 0 4px 18px rgba(0,184,107,0.12);
  overflow: hidden;
}
.announce-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(127,255,0,0.08) 50%, transparent 60%);
  background-size: 220% 100%;
  animation: announce-shimmer 8s ease-in-out infinite;
  pointer-events: none;
}
.announce-bar-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px clamp(16px, 4vw, 48px);
  text-align: center;
}
.announce-bar p {
  font-size: clamp(0.68rem, 1.3vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--muted-2);
  margin: 0;
}
.announce-bar a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
  white-space: nowrap;
}
.announce-bar a:hover { color: var(--emerald); }
.announce-bar a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}
@keyframes announce-shimmer {
  0% { background-position: 120% 0; }
  100% { background-position: -20% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .announce-bar::after { animation: none; }
}

.nav-drawer {
  display: none;
  position: fixed;
  top: var(--chrome-h); left: 0; right: 0;
  background: rgba(16,16,16,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--panel-brd);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 891;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 4px 8px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted-2);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.nav-drawer a:hover { background: var(--panel); color: var(--white); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--emerald);
  color: #000;
}
.btn-primary:hover {
  background: var(--lime);
  box-shadow: 0 0 32px rgba(127,255,0,0.25);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 1.5px solid var(--emerald);
}
.btn-outline:hover {
  background: rgba(0,184,107,0.08);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--muted-2);
  border: 1.5px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  border-color: var(--emerald);
  color: var(--white);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; min-height: 56px; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; min-height: 40px; }
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* ── Glass card ──────────────────────────────────────────── */
.glass {
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.glass:hover {
  border-color: rgba(0,184,107,0.38);
  box-shadow: 0 0 40px rgba(0,184,107,0.08);
  transform: translateY(-3px);
}
@media (prefers-reduced-motion: reduce) { .glass:hover { transform: none; } }
.card-pad { padding: clamp(24px, 3vw, 40px); }

/* ── Badges / Tags ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-emerald { background: rgba(0,184,107,0.12); color: var(--emerald); border: 1px solid rgba(0,184,107,0.25); }
.badge-lime    { background: rgba(127,255,0,0.10);  color: var(--lime);    border: 1px solid rgba(127,255,0,0.2); }
.badge-muted   { background: rgba(255,255,255,0.06); color: var(--muted-2); border: 1px solid rgba(255,255,255,0.1); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--chrome-h);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: 10%; right: -10%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,107,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; padding: clamp(60px, 10vw, 120px) 0; }
.hero-eyebrow { margin-bottom: 20px; }
.hero-title { margin-bottom: 24px; }
.hero-desc {
  font-size: var(--fs-lg);
  color: var(--muted-2);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-disclaimer {
  margin-top: 32px;
  font-size: var(--fs-xs);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.5;
}

/* ── Section header ──────────────────────────────────────── */
.section-header { margin-bottom: clamp(40px, 6vw, 72px); }
.section-header .label { margin-bottom: 12px; }

/* ── Service story grid ──────────────────────────────────── */
.story-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.story-item--rev { direction: rtl; }
.story-item--rev > * { direction: ltr; }
.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--panel-brd);
}
.story-img img { width: 100%; height: 320px; object-fit: cover; }
.story-num {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: rgba(0,184,107,0.12);
  line-height: 1;
  margin-bottom: 8px;
}
.story-text h3 { font-size: var(--fs-xl); font-weight: 700; margin-bottom: 12px; }
.story-text p  { color: var(--muted-2); line-height: 1.7; }
.story-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.price-card { padding: clamp(24px, 3vw, 36px); }
.price-card-header { margin-bottom: 20px; }
.price-card-title { font-size: var(--fs-lg); font-weight: 700; margin-bottom: 6px; }
.price-card-desc  { font-size: var(--fs-xs); color: var(--muted-2); line-height: 1.5; }
.price-standard {
  font-size: var(--fs-xs);
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.price-offer {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--emerald);
  line-height: 1.1;
}
.price-suffix { font-size: var(--fs-sm); font-weight: 500; color: var(--muted-2); margin-left: 4px; }
.price-excl {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}
.price-anchor {
  background: linear-gradient(135deg, rgba(0,184,107,0.08) 0%, rgba(127,255,0,0.05) 100%);
  border: 1.5px solid rgba(0,184,107,0.3);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.price-anchor-tag { margin-bottom: 16px; }
.price-anchor-amount {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 8px;
}
.price-anchor-desc { color: var(--muted-2); max-width: 560px; margin: 0 auto 28px; }

/* Offer rules box */
.offer-box {
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-brd);
  overflow: hidden;
}
.offer-box-header {
  background: rgba(0,184,107,0.08);
  padding: 20px 28px;
  border-bottom: 1px solid var(--panel-brd);
}
.offer-box-header h3 { font-size: var(--fs-lg); font-weight: 700; }
.offer-box-header .label { margin-bottom: 4px; }
.offer-box-body { padding: 24px 28px; }
.offer-rules { display: flex; flex-direction: column; gap: 10px; }
.offer-rule {
  display: flex;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--muted-2);
  line-height: 1.5;
}
.offer-rule::before {
  content: '—';
  color: var(--emerald);
  flex-shrink: 0;
}

/* ── Process steps ───────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: clamp(32px, 5vw, 56px); }
.process-step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--emerald);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  color: var(--emerald);
  flex-shrink: 0;
}
.step-body h3  { font-size: var(--fs-lg); font-weight: 700; margin-bottom: 8px; }
.step-body p   { color: var(--muted-2); line-height: 1.7; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--white);
  background: var(--graphite-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
  min-height: 64px;
  cursor: pointer;
}
.faq-q:hover { background: rgba(0,184,107,0.06); border-color: var(--panel-brd); color: var(--white); }
.faq-q[aria-expanded="true"] {
  background: rgba(0,184,107,0.06);
  border-color: var(--emerald);
  border-radius: var(--radius) var(--radius) 0 0;
  color: var(--white);
}
.faq-q:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--emerald);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 22px; height: 2px; top: 10px; left: 0; }
.faq-icon::after  { width: 2px; height: 22px; left: 10px; top: 0; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  display: none;
  padding: 16px 24px 20px;
  color: var(--muted-2);
  line-height: 1.75;
  font-size: var(--fs-sm);
  background: rgba(0,184,107,0.04);
  border: 1px solid var(--emerald);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.faq-a a { color: var(--emerald); text-decoration: underline; }
.faq-a.open { display: block; }

/* ── Contact form ────────────────────────────────────────── */
#contact-form,
#service-selector { scroll-margin-top: calc(var(--chrome-h) + 16px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-info h2 { font-size: var(--fs-2xl); font-weight: 700; margin-bottom: 16px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--panel-brd);
  color: var(--muted-2);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  font-size: var(--fs-sm);
}
.contact-link:hover { border-color: var(--emerald); color: var(--white); background: rgba(0,184,107,0.06); }
.contact-link-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(0,184,107,0.10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.form-wrap { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: var(--fs-xs); font-weight: 600; color: var(--muted-2); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--graphite-3);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: var(--fs-sm);
  transition: border-color var(--transition);
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(0,184,107,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--graphite-3); }
.form-notice {
  padding: 14px 18px;
  background: rgba(255,77,77,0.06);
  border: 1px solid rgba(255,77,77,0.2);
  border-radius: var(--radius);
  font-size: var(--fs-xs);
  color: var(--muted-2);
  line-height: 1.6;
}
.form-notice strong { color: var(--danger); }

/* ── Selector ────────────────────────────────────────────── */
.selector-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.selector-inputs { display: flex; flex-direction: column; gap: 20px; }
.selector-field { display: flex; flex-direction: column; gap: 6px; }
.selector-field label { font-size: var(--fs-xs); font-weight: 600; color: var(--muted-2); letter-spacing: 0.04em; }
.selector-field select,
.selector-field input[type="text"] {
  background: var(--graphite-3);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: var(--fs-sm);
  min-height: 48px;
  transition: border-color var(--transition);
}
.selector-field select:focus,
.selector-field input:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(0,184,107,0.12);
}
.selector-field select option { background: var(--graphite-3); }

/* Result panel — always a visible column, never collapses */
.selector-result {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 360px;     /* reserves column space before JS renders */
  visibility: visible;
  opacity: 1;
  overflow: visible;
}

.selector-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  color: var(--muted-2);
  font-size: var(--fs-sm);
  text-align: center;
  gap: 12px;
  padding: clamp(24px, 3vw, 40px);
}
.result-family   { font-size: var(--fs-xl); font-weight: 700; margin-bottom: 8px; }
.result-range    { font-size: var(--fs-2xl); font-weight: 800; color: var(--emerald); margin-bottom: 4px; }
.result-founding { font-size: var(--fs-sm); color: var(--lime); margin-bottom: 16px; }
.result-excl     { font-size: var(--fs-xs); color: var(--muted); line-height: 1.6; }
.result-disclaimer {
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.73rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Stats row ───────────────────────────────────────────── */
.stats-row { display: flex; flex-wrap: wrap; gap: 2px; }
.stat-item {
  flex: 1;
  min-width: 140px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  text-align: center;
}
.stat-item:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.stat-item:last-child  { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.stat-val { font-size: var(--fs-3xl); font-weight: 900; color: var(--emerald); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: var(--fs-xs); color: var(--muted-2); }

/* ── Region strip ────────────────────────────────────────── */
.region-strip { display: flex; gap: 16px; flex-wrap: wrap; }
.region-card {
  flex: 1; min-width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  border: 1px solid var(--panel-brd);
}
.region-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.region-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(16,16,16,0.92) 0%, transparent 100%);
  font-weight: 700;
  font-size: var(--fs-lg);
}

/* ── Regulatory page ─────────────────────────────────────── */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: var(--fs-xl); font-weight: 700; margin: 40px 0 12px; color: var(--emerald); }
.legal-content h3 { font-size: var(--fs-lg); font-weight: 600; margin: 28px 0 8px; }
.legal-content p  { color: var(--muted-2); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; padding-left: 20px; }
.legal-content ul li { color: var(--muted-2); list-style: disc; line-height: 1.65; }
.legal-content a { color: var(--emerald); text-decoration: underline; }

/* ── WhatsApp float button ───────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.wa-float svg { width: 28px; height: 28px; fill: #fff; flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .wa-float:hover { transform: none; } }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--graphite-2);
  border-top: 1px solid var(--panel-brd);
  padding: clamp(18px, 2.8vw, 28px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  padding-bottom: clamp(14px, 2vw, 20px);
  align-items: start;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-logo img { height: 42px; width: auto; }
.footer-brand-name { font-size: 1.05rem; font-weight: 800; }
.footer-brand-sub  { font-size: 0.7rem; color: var(--muted); margin-top: 2px; margin-bottom: 8px; }
.footer-brand-desc { font-size: 0.76rem; color: var(--muted); line-height: 1.5; max-width: 220px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { font-size: 0.83rem; color: var(--muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--emerald); }
.footer-bottom {
  border-top: 1px solid var(--panel-brd);
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-copy { font-size: 0.72rem; color: var(--muted); }
.footer-disclaimer {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 680px;
}

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Utility ─────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.divider { border: none; border-top: 1px solid var(--panel-brd); margin: clamp(40px,6vw,72px) 0; }

/* ── Inner-page hero (compact) ───────────────────────────── */
.page-hero {
  padding-top: calc(var(--chrome-h) + clamp(40px,6vw,80px));
  padding-bottom: clamp(40px,6vw,80px);
  position: relative;
  z-index: 2;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  align-items: center;
}
.page-hero-grid.legal-hero { grid-template-columns: 2fr 1fr; }
.page-hero-text { position: relative; z-index: 2; }
.page-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--panel-brd);
  position: relative;
}
.page-hero-img img { width: 100%; height: 260px; object-fit: cover; opacity: 0.85; }
.legal-hero .page-hero-img img { height: 200px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --announce-h: 52px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: minmax(160px, 1fr) repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .selector-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --announce-h: 72px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .story-item { grid-template-columns: 1fr; }
  .story-item--rev { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { flex-direction: column; gap: 2px; }
  .stat-item:first-child,
  .stat-item:last-child { border-radius: var(--radius); }
  .page-hero-grid,
  .page-hero-grid.legal-hero { grid-template-columns: 1fr; }
  .page-hero-img { order: 2; margin-top: 24px; }
  .page-hero-img img { height: 200px; }
  .wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .wa-float svg { width: 24px; height: 24px; }
  .nav-logo img { height: 56px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 390px) {
  :root { --announce-h: 92px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; }
}
