/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --dark:        #1A1A1E;
  --dark-2:      #17181C;
  /* Light-theme tokens kept for palette fidelity with the approved brand
     system, even though the site is currently all-dark end to end. */
  --paper:       #F3F3F2;
  --paper-2:     #E4E4E2;
  --ink:         #17181C;
  --ink-soft:    #54565C;
  --ink-mute:    #9A9A98;
  --line-dark:   #3A3C42;
  --line-light:  rgba(23,24,28,0.12);
  --accent:      #FF5A36;
  --accent-2:    #D63E1D;
  --accent-3:    #D2503E;
  --tint-1:      #FEEAE4;
  --tint-2:      #FBE9E6;
  --white:       #FFFFFF;

  --sans:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --display: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-width: none;     /* Firefox */
  -ms-overflow-style: none;  /* legacy Edge/IE */
}
/* Native scrolling stays fully functional (wheel, trackpad, touch, keyboard) —
   only the visual scrollbar track is hidden; the scroll-dots nav is the
   position indicator instead. Pages without scroll-dots (long-form legal
   pages: too many sub-headings to map to a handful of dots) get the
   scrollbar back, restyled thin and on-brand instead of the plain default. */
html::-webkit-scrollbar { display: none; } /* Chrome/Safari/Edge Chromium */
html.legal-page {
  scrollbar-width: thin;                                   /* Firefox */
  scrollbar-color: rgba(255,90,54,0.45) rgba(255,255,255,0.05);
  -ms-overflow-style: auto;
}
html.legal-page::-webkit-scrollbar { display: block; width: 10px; }
html.legal-page::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); }
html.legal-page::-webkit-scrollbar-thumb {
  background-color: rgba(255,90,54,0.45);
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
html.legal-page::-webkit-scrollbar-thumb:hover { background-color: rgba(255,90,54,0.65); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  position: relative;
}
body::-webkit-scrollbar { display: none; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--accent); color: var(--white);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 960px) { .container { padding-inline: 2.5rem; } }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section { position: relative; z-index: 2; padding-block: 5.5rem; }
@media (min-width: 960px) { .section { padding-block: 8rem; } }

/* =============================================================
   3b. Global background — uniform dark canvas across the whole page
   Fixed layers behind everything: aurora glow, dot mesh, vignette,
   drifting particles and film grain. Sections stay transparent so
   this reads as ONE continuous background, not per-section pieces.
   ============================================================= */
.aurora { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora__blob { position: absolute; border-radius: 50%; pointer-events: none; will-change: transform; }
.aurora__blob--1 {
  width: 100vmax; height: 100vmax; left: -30vmax; top: -30vmax;
  background: radial-gradient(closest-side, rgba(255,90,54,0.16), transparent 70%);
  animation: auroraDrift1 26s ease-in-out infinite;
}
.aurora__blob--2 {
  width: 90vmax; height: 90vmax; right: -35vmax; top: -10vmax;
  background: radial-gradient(closest-side, rgba(214,62,29,0.13), transparent 70%);
  animation: auroraDrift2 32s ease-in-out infinite;
}
.aurora__blob--3 {
  width: 110vmax; height: 110vmax; left: 10%; bottom: -55vmax;
  background: radial-gradient(closest-side, rgba(255,90,54,0.1), transparent 70%);
  animation: auroraDrift3 38s ease-in-out infinite;
}
@keyframes auroraDrift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(3%, -2%) scale(1.05); } }
@keyframes auroraDrift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-3%, 3%) scale(1.04); } }
@keyframes auroraDrift3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(2%, -3%) scale(1.06); } }

.mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.85;
}
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 78% 65% at center, transparent 30%, var(--dark) 100%);
}
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
}
#particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

/* Mobile robustness: fixed layers + canvas repaint on every scroll frame
   are expensive on phones. Swap to a static gradient baked into body,
   and un-fix mesh/vignette so they don't repaint during scroll. */
@media (max-width: 980px) {
  .aurora { display: none !important; }
  .grain { display: none !important; }
  #particles { display: none !important; }
  .mesh { position: absolute; min-height: 100vh; }
  .vignette { position: absolute; min-height: 100vh; }
  body {
    background:
      radial-gradient(ellipse 90% 50% at 50% 0%, rgba(255,90,54,0.1), transparent 60%),
      radial-gradient(ellipse 80% 40% at 50% 100%, rgba(214,62,29,0.07), transparent 60%),
      var(--dark);
  }
}

.eyebrow-row { margin-bottom: 1.4rem; }

/* Reveal defensive pattern — visible by default; JS "arms" the fade-in.
   If JS never runs, content stays visible (no invisible-forever risk). */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.reveal-armed {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.reveal-armed.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1 !important; transform: none !important; }

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  max-width: 20ch;
  color: var(--white);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,0.72);
  max-width: 62ch;
  font-weight: 500;
}

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -0.01em;
  transition: transform .35s var(--ease-out), background .3s var(--ease-out), box-shadow .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(255,90,54,0.55);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(214,62,29,0.6);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--line-dark);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.pill {
  padding: .55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  font-size: .86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(26,26,30,0.62);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .35s var(--ease-out), border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(23,24,28,0.86);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.4);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.nav-logo-img { height: 30px; width: auto; display: block; }
.nav-wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2.2rem;
}
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding-block: .3rem;
  transition: color .25s var(--ease-out);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cta { display: none; padding: .7rem 1.35rem; font-size: .88rem; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }

.nav-burger {
  display: flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span {
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset-block-start: var(--nav-h);
  inset-inline: 0;
  bottom: 0;
  background: rgba(23,24,28,0.98);
  backdrop-filter: blur(20px);
  z-index: 480;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 2rem 1.5rem;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.nav-mobile.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.nav-mobile a {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  padding-block: .7rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile .btn { margin-top: 1rem; align-self: flex-start; }

/* =============================================================
   6b. Scroll dots — right-edge section progress indicator
   ============================================================= */
.scroll-dots {
  position: fixed;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 960px) { .scroll-dots { display: flex; } }
.scroll-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  transition: background .3s var(--ease-out), transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.scroll-dot::before {
  /* generous invisible hit area, doesn't affect visual size */
  content: "";
  position: absolute;
  inset: -11px;
}
.scroll-dot:hover { background: rgba(255,255,255,0.6); }
.scroll-dot.is-active {
  background: var(--white);
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.14);
}

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--white);
  display: flex;
  align-items: center;
  padding-block: calc(var(--nav-h) + 3rem) 4rem;
  overflow: clip;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 320px at var(--mx, 50%) var(--my, 32%),
      rgba(255,90,54,0.55) 0%, transparent 60%),
    radial-gradient(circle 600px at calc(var(--mx, 50%) + 14%) calc(var(--my, 32%) + 20%),
      rgba(214,62,29,0.35) 0%, transparent 65%);
  filter: blur(50px) saturate(130%);
  transition: background .4s var(--ease-out);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-title {
  font-size: clamp(2.6rem, 6.6vw, 5.6rem);
  font-weight: 800;
  max-width: 16ch;
  margin-block: 1.2rem 1.6rem;
  color: var(--white);
}
.hero-title .accent-text { color: var(--accent); }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,0.72);
  max-width: 58ch;
  font-weight: 500;
  margin-bottom: 2.2rem;
}
.hero-pills { margin-bottom: 2.6rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,0.5);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (min-width: 720px) { .hero-scroll-cue { display: flex; } }
.hero-scroll-cue-line {
  width: 1px; height: 34px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* =============================================================
   9. Services — alternating image + text feature list
   ============================================================= */
.services-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media (min-width: 960px) { .services-list { gap: 6rem; } }

.service-feature {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}
@media (min-width: 960px) {
  .service-feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4.5rem;
  }
  .service-feature:nth-child(even) .service-feature-media { order: 2; }
  .service-feature:nth-child(even) .service-feature-text { order: 1; }
}

.service-feature-media {
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 5 / 4;
  padding: 1.2rem;
  display: flex;
}
.service-feature-media svg { width: 100%; height: 100%; display: block; }

.service-feature-text .service-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: transparent;
      -webkit-text-stroke: 1px rgba(255, 90, 54, 1);
  display: block;
  margin-bottom: .6rem;
}
.service-feature-text .service-title {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--white);
}
.service-feature-text .service-hook {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: .9rem;
}
.service-feature-text .service-body {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 46ch;
}

/* Stats */
.stats-row {
  display: grid;
  gap: 2rem;
  margin-top: 4.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 720px) { .stats-row { grid-template-columns: repeat(3, 1fr); } }
.stat {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.stat-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: .92rem;
  color: rgba(255,255,255,0.68);
  font-weight: 600;
  max-width: 26ch;
}

/* =============================================================
   10. Why Laverix
   ============================================================= */
.why-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    align-items: start;
    gap: 4.5rem;
  }
}
.diff-list {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.2rem;
}
.diff-chip {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.2rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.diff-chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

/* =============================================================
   11. Contact / CTA final
   ============================================================= */
.contact-grid {
  display: grid;
  gap: 3.5rem;
}
@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 4.5rem;
  }
}
.contact-meta {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.6rem;
}
.contact-meta-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  font-size: .98rem;
  color: rgba(255,255,255,0.78);
}
.contact-meta-item strong {
  font-family: var(--display);
  font-weight: 700;
  display: block;
  margin-bottom: .15rem;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-meta-item a:hover { color: var(--accent); }

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}
.form-row { display: grid; gap: .45rem; }
.form-row label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: .02em;
}
.form-row input, .form-row textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-family: var(--sans);
  font-size: .96rem;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.32); }
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
  outline: none;
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: .3rem;
}
.form-note {
  font-size: .8rem;
  color: rgba(255,255,255,0.42);
  text-align: center;
}

/* =============================================================
   12. Footer
   ============================================================= */
.footer {
  position: relative;
  z-index: 2;
  background: var(--dark-2);
  color: rgba(255,255,255,0.7);
  padding-block: 4rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  gap: 2.75rem;
  padding-bottom: 3rem;
}
@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 2rem; }
}

.footer-brand-col { display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; }
.footer-brand { display: flex; align-items: center; }
.footer-logo { height: 26px; width: auto; }
.footer-tagline {
  font-size: .92rem;
  color: rgba(255,255,255,0.55);
  max-width: 30ch;
}
.footer-social { display: flex; gap: .7rem; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out), color .3s var(--ease-out), transform .3s var(--ease-out);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover,
.social-btn:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: .85rem; }
.footer-col-title {
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: .15rem;
}
.footer-col a { font-size: .9rem; font-weight: 600; color: rgba(255,255,255,0.72); transition: color .25s var(--ease-out); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: .8rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
}

/* =============================================================
   13. Count-up helper visibility
   ============================================================= */
[data-count-to] { font-variant-numeric: tabular-nums; }

/* =============================================================
   13b. Legal pages (terminos / cookies / privacidad)
   ============================================================= */
.legal-hero { padding-block: calc(var(--nav-h) + 4rem) 1rem; }
.legal-container { max-width: 780px; }
.legal-updated {
  color: rgba(255,255,255,0.45);
  font-size: .85rem;
  margin-top: 1rem;
}
.legal-body {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.legal-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 1.2rem;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-body ul { display: grid; gap: .5rem; padding-left: 1.2rem; list-style: disc; }
.legal-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--accent-2); }
.legal-body strong { color: var(--white); }

/* =============================================================
   14. Responsive tuning
   ============================================================= */
@media (min-width: 540px) {
  .hero-title { max-width: 18ch; }
}
@media (min-width: 1280px) {
  .section { padding-block: 9rem; }
}

/* =============================================================
   15. Reduced-motion — only genuinely intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue-line { animation: none; }
}
