/* =============================================================
   Daniel Jouan — hoja de estilos única
   Dirección visual: "Editorial bicolor" — portada en azul profundo,
   cuerpo del sitio en gris claro, serif de alto contraste.

   1. Tokens · 2. Reset · 3. Utilidades · 4. Nav · 5. Hero
   6. Franja · 7. Secciones · 8. Tarjetas · 9. Frase · 10. Contacto
   11. Footer · 12. Splash y WhatsApp · 13. Responsive · 14. Reduced-motion
   ============================================================= */

/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  /* Azules profundos — portada, frase, footer */
  --navy:      #141E2C;
  --navy-2:    #1B2838;
  --navy-3:    #22334A;

  /* Grises claros — cuerpo del sitio */
  --bg:        #EDEFF3;
  --surface:   #FFFFFF;
  --surface-2: #E3E7ED;

  /* Tinta */
  --ink:       #141E2C;
  --ink-2:     #4A5768;
  --ink-3:     #8390A0;

  /* Sobre fondo azul */
  --on-navy:   #F2F5F9;
  --on-navy-2: #A9B7C8;
  --on-navy-3: #6E7F94;

  /* Acentos */
  --accent:      #2C4A6E;   /* azul petróleo, para fondo claro */
  --accent-2:    #1A2E45;
  --accent-lite: #8FB4DC;   /* azul acero, para fondo oscuro */

  --line:      rgba(20, 30, 44, 0.12);
  --line-2:    rgba(20, 30, 44, 0.22);
  --line-navy: rgba(242, 245, 249, 0.14);

  /* Tipografías */
  --serif: "Instrument Serif", "Georgia", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  /* Easings */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Métrica */
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --nav-h: 72px;

  --shadow-sm: 0 2px 10px -6px rgba(20, 30, 44, 0.35);
  --shadow:    0 26px 60px -34px rgba(20, 30, 44, 0.45);
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
[hidden] { display: none !important; }
ul { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--accent); color: #fff; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: var(--on-navy);
  padding: 10px 16px; border-radius: 8px; font-size: 14px;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* =============================================================
   3. UTILIDADES Y TIPOGRAFÍA
   ============================================================= */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 400;
}

h1, h2, h3, blockquote p {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--ink);
}

em { font-style: italic; color: var(--accent); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.9rem; font-weight: 500;
  padding: 14px 28px; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              background .3s, color .3s, border-color .3s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -14px var(--accent); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -16px rgba(0,0,0,.55); }
.btn-ghost { border-color: var(--line-navy); color: var(--on-navy); }
.btn-ghost:hover { border-color: var(--on-navy); background: rgba(242,245,249,.06); }

/* =============================================================
   4. NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  height: var(--nav-h);
  background: transparent;
  transition: background .45s var(--ease-soft), box-shadow .45s var(--ease-soft),
              border-color .45s, height .35s var(--ease-soft);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; height: 100%;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; color: var(--on-navy); transition: color .45s; }
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 15px; letter-spacing: 0.02em;
  background: #fff; color: var(--navy);
  transition: background .45s, color .45s;
}
.nav-logo-name { font-size: 0.92rem; font-weight: 500; letter-spacing: -0.01em; }

.nav-links { display: flex; gap: 28px; font-size: 0.87rem; }
.nav-links a { position: relative; padding: 4px 0; color: var(--on-navy-2); transition: color .3s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width .4s var(--ease-out);
}
.nav-links a:hover { color: var(--on-navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.83rem; font-weight: 500; padding: 10px 20px; border-radius: 999px;
  background: #fff; color: var(--navy);
  transition: transform .3s var(--ease-out), box-shadow .3s, background .45s, color .45s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(0,0,0,.5); }

/* estado sólido: cuando ya pasamos la portada */
.nav.is-solid {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav.is-solid .nav-logo { color: var(--ink); }
.nav.is-solid .nav-logo-mark { background: var(--navy); color: #fff; }
.nav.is-solid .nav-links a { color: var(--ink-2); }
.nav.is-solid .nav-links a:hover { color: var(--accent); }
.nav.is-solid .nav-cta { background: var(--accent); color: #fff; }

/* se esconde al bajar, vuelve al subir */
.nav.is-hidden { transform: translateY(-100%); }
.nav { transition-property: background, box-shadow, border-color, transform; }

.nav-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; }
.nav-progress i {
  display: block; height: 100%; width: 0;
  background: var(--accent-lite); transition: width .12s linear;
}
.nav.is-solid .nav-progress i { background: var(--accent); }

/* hamburguesa */
.nav-burger { display: none; width: 42px; height: 42px; position: relative; }
.nav-burger span {
  position: absolute; left: 11px; width: 20px; height: 1.5px; background: var(--on-navy);
  transition: transform .35s var(--ease-out), background .45s, opacity .2s;
}
.nav-burger span:first-child { top: 18px; }
.nav-burger span:last-child { top: 24px; }
.nav.is-solid .nav-burger span { background: var(--ink); }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 89;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: menuIn .35s var(--ease-out);
}
@keyframes menuIn { from { opacity: 0; transform: translateY(-10px); } }
.menu nav { display: flex; flex-direction: column; padding: 8px var(--gutter) 22px; }
.menu a {
  padding: 16px 0; border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 1.35rem; color: var(--ink);
}
.menu .menu-cta {
  margin-top: 18px; border: 0; border-radius: 999px; text-align: center;
  background: var(--accent); color: #fff;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 500; padding: 15px 20px;
}

/* =============================================================
   5. HERO
   ============================================================= */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--on-navy-2);
  padding: calc(var(--nav-h) + clamp(48px, 8vw, 96px)) 0 clamp(56px, 8vw, 104px);
  overflow: hidden;
  isolation: isolate;
}
.hero h1, .hero h2 { color: var(--on-navy); }
.hero em { color: var(--accent-lite); }

.hero-glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.hero-glow::before, .hero-glow::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px);
  animation: drift 22s ease-in-out infinite alternate;
}
.hero-glow::before {
  width: 52vw; height: 52vw; left: -14vw; top: -18vw;
  background: rgba(44, 74, 110, 0.55);
}
.hero-glow::after {
  width: 40vw; height: 40vw; right: -10vw; bottom: -20vw;
  background: rgba(143, 180, 220, 0.16); animation-delay: -8s;
}
@keyframes drift { to { transform: translate3d(5vw, 3vw, 0) scale(1.15); } }

.hero-grid {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line-navy) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-navy) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 78%);
}

.hero-inner {
  position: relative;
  max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}

.kicker { display: flex; align-items: center; gap: 10px; color: var(--on-navy-2); margin-bottom: 24px; }
.kicker-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-lite);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(.7); } }

.hero-title { font-size: clamp(2.6rem, 6.6vw, 4.6rem); margin-bottom: 26px; }
.hero-lead { font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 54ch; color: var(--on-navy-2); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }

.hero-figure { position: relative; }
.hero-figure-frame {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 4px;
  background: linear-gradient(150deg, var(--navy-3), var(--navy));
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .85);
}
.hero-figure-frame img {
  width: 100%; height: 108%; object-fit: cover; object-position: center 20%;
  will-change: transform;
}
.hero-figure-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,30,44,0) 45%, rgba(20,30,44,.55) 100%);
}
.hero-figure-rule {
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px; z-index: 3;
  background: var(--accent-lite);
}
.hero-figure-cap {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 16px; font-size: 0.78rem; color: var(--on-navy-3);
}

.hero-scroll {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--on-navy-3); font-size: .7rem;
}
.hero-scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--on-navy-3), transparent); }
.hero-scroll:hover { color: var(--on-navy); }

/* =============================================================
   6. FRANJA DE RUBROS
   ============================================================= */
.strip {
  background: var(--navy-2);
  border-top: 1px solid var(--line-navy);
  overflow: hidden;
  padding: 18px 0;
}
.strip-track { display: flex; width: max-content; animation: slide 42s linear infinite; }
.strip-track:hover { animation-play-state: paused; }
.strip-set {
  display: flex; align-items: center; gap: 22px; padding-right: 22px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--on-navy-2); white-space: nowrap;
}
.strip-set li[aria-hidden] { color: var(--accent-lite); }
@keyframes slide { to { transform: translateX(-50%); } }

/* =============================================================
   7. SECCIONES
   ============================================================= */
.section { padding: clamp(64px, 9vw, 118px) 0; position: relative; }
.proyectos { padding-top: 0; }

.section-head { margin-bottom: clamp(34px, 5vw, 60px); max-width: 780px; }
.section-head .kicker { color: var(--accent); }
.section-head .kicker span { color: var(--ink-3); }
.section-title { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
.section-sub, .section-aside {
  margin-top: 18px; font-size: 1rem; color: var(--ink-2); max-width: 52ch;
}

.section-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: clamp(20px, 4vw, 56px); max-width: none;
}
.section-head-row .section-aside { margin: 0 0 6px; max-width: 34ch; font-size: .95rem; }

.perfil-body {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.perfil-lead { font-size: clamp(1.05rem, 1.7vw, 1.24rem); color: var(--ink); line-height: 1.65; }
.perfil-note { font-size: .97rem; color: var(--ink-2); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 26px); }
.pillar {
  padding: 32px 28px 30px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--line);
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.pillar-num { display: block; color: var(--accent); margin-bottom: 18px; }
.pillar h3 { font-size: 1.35rem; margin-bottom: 12px; }
.pillar p { font-size: .93rem; }

/* =============================================================
   8. TARJETAS DE PROYECTOS
   ============================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }

.card {
  position: relative; overflow: hidden;
  padding: 30px 26px 26px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
  will-change: transform;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0;
  background: var(--accent); transition: width .55s var(--ease-out);
}
.card:hover::before { width: 100%; }
.card:hover { box-shadow: var(--shadow); border-color: var(--line-2); }

.card-lead {
  grid-column: span 2;
  background: linear-gradient(140deg, var(--surface) 40%, var(--surface-2));
}
.card-lead .card-title { font-size: 1.85rem; }

.card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.card-num { color: var(--ink-3); }
.card-tag {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(44, 74, 110, .10); color: var(--accent);
}
.card-title { font-size: 1.45rem; margin-bottom: 12px; }
.card-text { font-size: .93rem; margin-bottom: 22px; }
.card-links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.card-go {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 500; color: var(--accent);
}
.card-arrow { transition: transform .35s var(--ease-out); }
.card:hover .card-arrow { transform: translate(3px, -3px); }
.card-chip {
  font-size: .78rem; padding: 6px 13px; border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--ink-2);
  transition: border-color .3s, color .3s;
}
.card-chip:hover { border-color: var(--accent); color: var(--accent); }

.card-cta {
  grid-column: span 1;
  display: flex; flex-direction: column; justify-content: space-between; gap: 22px;
  padding: 30px 26px; border-radius: 16px;
  background: var(--navy); color: var(--on-navy-2);
}
.card-cta-kicker { color: var(--accent-lite); margin-bottom: 10px; }
.card-cta-text { font-size: .93rem; }

/* =============================================================
   9. FRASE
   ============================================================= */
.quote {
  background: var(--navy); color: var(--on-navy);
  padding: clamp(64px, 9vw, 116px) 0; text-align: center;
  position: relative; overflow: hidden;
}
.quote::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(143,180,220,.14), transparent 70%);
}
.quote blockquote { position: relative; }
.quote p { font-size: clamp(1.8rem, 4.4vw, 3rem); color: var(--on-navy); line-height: 1.22; }
.quote em { color: var(--accent-lite); }
.quote cite { display: block; margin-top: 26px; color: var(--on-navy-3); font-style: normal; }

/* =============================================================
   10. CONTACTO
   ============================================================= */
.contact-list { border-top: 1px solid var(--line); }
.contact-row {
  display: flex; align-items: center; gap: clamp(14px, 3vw, 32px);
  padding: 24px 6px; border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--ease-out), color .3s, background .3s;
}
.contact-row:hover { padding-left: 18px; background: rgba(255,255,255,.6); }
.contact-label { color: var(--ink-3); min-width: 112px; }
.contact-value {
  font-family: var(--serif); font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--ink); transition: color .3s;
}
.contact-row:hover .contact-value { color: var(--accent); }
.contact-arrow { margin-left: auto; color: var(--ink-3); transition: transform .35s var(--ease-out), color .3s; }
.contact-row:hover .contact-arrow { transform: translate(4px, -4px); color: var(--accent); }

/* =============================================================
   11. FOOTER
   ============================================================= */
.footer { background: var(--navy); color: var(--on-navy-2); padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand p { font-size: .92rem; color: var(--on-navy); line-height: 1.5; }
.footer-brand .mono { color: var(--on-navy-3); font-size: .66rem; }
.footer-legal { color: var(--on-navy-3); font-size: .66rem; }

/* =============================================================
   12. SPLASH · WHATSAPP · REVEALS
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy);
  display: grid; place-content: center; gap: 22px; justify-items: center;
  transition: opacity .7s var(--ease-out), visibility .7s;
}
.splash.is-out { opacity: 0; visibility: hidden; }
.splash-mark {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-size: 2.4rem; color: var(--on-navy); letter-spacing: .02em;
}
.splash-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-lite); }
.splash-bar { width: 130px; height: 2px; background: var(--line-navy); overflow: hidden; }
.splash-bar i { display: block; height: 100%; width: 0; background: var(--accent-lite); animation: load 1.1s var(--ease-out) forwards; }
@keyframes load { to { width: 100%; } }
html:not(.js) .splash { display: none; }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 14px 32px -12px rgba(37, 211, 102, .75);
  opacity: 0; transform: translateY(14px) scale(.9);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), box-shadow .3s;
}
.wa-float.is-in { opacity: 1; transform: none; }
.wa-float:hover { transform: scale(1.08); }

.reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal { transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
html:not(.js) .reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

.split-word { display: inline-block; overflow: hidden; vertical-align: top; }
.split-word i { display: inline-block; font-style: inherit; transform: translateY(105%); }
html.js .split-word i { transition: transform .9s var(--ease-out); }
.reveal.is-visible .split-word i { transform: none; }

/* =============================================================
   13. RESPONSIVE
   ============================================================= */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card-lead { grid-column: span 2; }
  .card-cta { grid-column: span 2; flex-direction: row; align-items: center; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { max-width: 380px; }
  .hero-scroll { display: none; }
  .perfil-body { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .section-head-row .section-aside { margin: 0; }
}

@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .hero { padding-top: calc(var(--nav-h) + 44px); }
  .kicker { align-items: flex-start; font-size: .62rem; letter-spacing: .1em; }
  .kicker-dot { flex: 0 0 auto; margin-top: .5em; }
  .hero-figure { max-width: none; }
  .cards { grid-template-columns: 1fr; }
  .card-lead, .card-cta { grid-column: span 1; }
  .card-cta { flex-direction: column; align-items: stretch; }
  .card-cta .btn { width: 100%; }
  .contact-row { flex-wrap: wrap; gap: 4px 16px; padding: 20px 4px; }
  .contact-label { min-width: 0; width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* =============================================================
   14. REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .split-word i { opacity: 1 !important; transform: none !important; transition: none !important; }
  .strip-track, .hero-glow::before, .hero-glow::after, .kicker-dot, .splash-bar i {
    animation: none !important;
  }
  .splash { display: none; }
  * { transition-duration: .01ms !important; }
}
