/* ============================================
   EVOLIA · 2026 · v5
   Editorial-corporate-tech minimalism
   ============================================ */

:root {
  --paper: #f3f1ea;
  --paper-2: #ebe8de;
  --paper-3: #dfdcd0;
  --ink: #0a0a0c;
  --ink-2: #16161a;
  --electric: #1b17ff;
  --electric-2: #4a47ff;
  --electric-soft: #1b17ff14;
  --muted: rgba(10, 10, 12, 0.55);
  --muted-d: rgba(243, 241, 234, 0.58);
  --line: rgba(10, 10, 12, 0.12);
  --line-d: rgba(243, 241, 234, 0.14);

  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --pad-x: clamp(1.25rem, 4.5vw, 5rem);
  --pad-y: clamp(5rem, 12vw, 10rem);

  --ease: cubic-bezier(.7, 0, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
::selection { background: var(--electric); color: var(--paper); }

/* paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.10;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* ============================================
   Reusable
   ============================================ */
.mono {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--ink);
}
.eyebrow::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--electric);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
  box-shadow: 0 0 0 4px rgba(27, 23, 255, 0.1);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--pad-x);
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(243, 241, 234, 0.78);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
  padding: 1rem var(--pad-x);
}
.header-logo { display: block; color: var(--ink); }
.header-logo svg { height: 2.1rem; width: auto; display: block; transition: height 0.4s ease; }
.header.scrolled .header-logo svg { height: 1.75rem; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 0.875rem;
}
.header-nav a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 100%;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.header-nav a:hover { color: var(--electric); }
.header-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
}
.header-meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #1ace7c; box-shadow: 0 0 0 3px rgba(26, 206, 124, 0.15);
}

@media (max-width: 900px) {
  .header-nav { gap: 1.25rem; font-size: 0.8125rem; }
  .header-meta { display: none; }
}
@media (max-width: 600px) {
  .header-nav a:not(.nav-contact) { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 9rem var(--pad-x) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}

.hero-marks { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }

.ch-monolith {
  position: absolute;
  top: -8%;
  right: -14%;
  height: 118%;
  width: auto;
  fill: var(--electric);
  filter: drop-shadow(0 40px 80px rgba(27, 23, 255, 0.18));
  animation: monolith-drift 28s ease-in-out infinite;
  will-change: transform;
}
@keyframes monolith-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-14px, 18px, 0); }
}

.ch-accent {
  position: absolute;
  fill: var(--electric);
  display: block;
  will-change: transform;
}
.ch-accent.c1 {
  width: clamp(80px, 9vw, 140px);
  top: 26%;
  right: 38%;
  transform: rotate(180deg);
  opacity: 0.75;
  animation: drift 20s ease-in-out infinite reverse;
}
.ch-accent.c2 {
  width: clamp(50px, 6vw, 90px);
  bottom: 24%;
  right: 6%;
  opacity: 0.55;
  animation: drift 24s ease-in-out -6s infinite;
}
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-10px, 14px, 0); }
}
.ch-accent.c1 { animation-name: drift-rot; }
@keyframes drift-rot {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(180deg); }
  50% { transform: translate3d(8px, -10px, 0) rotate(176deg); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
  flex: 1;
  margin-top: clamp(3rem, 8vh, 6rem);
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .ch-monolith { right: -28%; height: 100%; opacity: 0.78; }
}
@media (max-width: 600px) {
  .ch-monolith { right: -42%; opacity: 0.68; }
  .ch-accent.c1 { right: 18%; }
}

.hero-content { max-width: 56rem; }
.hero-content .eyebrow { margin-bottom: 2.5rem; }

.display {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.75rem, 9.8vw, 10.5rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 2.5rem;
  max-width: 16ch;
}
.display em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--electric);
  letter-spacing: -0.02em;
  font-size: 1.06em;
}

.lede {
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  max-width: 38rem;
  line-height: 1.5;
  margin-bottom: 2.75rem;
  color: rgba(10, 10, 12, 0.78);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.625rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--ink);
}
.cta:hover {
  background: var(--electric);
  border-color: var(--electric);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(27, 23, 255, 0.25);
}
.cta .arrow { transition: transform 0.3s; display: inline-block; }
.cta:hover .arrow { transform: translateX(5px); }

.meta-mono {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
.hero-foot .scroll-cue { display: inline-flex; align-items: center; gap: 0.625rem; }
.hero-foot .scroll-cue::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--muted);
  display: inline-block;
}

@media (max-width: 600px) {
  .display { max-width: 11ch; }
  .hero-meta { gap: 1rem; }
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
}
.marquee-track {
  display: inline-flex;
  gap: 2.75rem;
  animation: scroll 50s linear infinite;
  align-items: center;
  padding-right: 2.75rem;
}
.marquee-track > * { flex-shrink: 0; }
.marquee-track .word {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4.75vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.marquee-track .ch-sep {
  width: clamp(28px, 3vw, 44px);
  height: clamp(28px, 3vw, 44px);
  background: var(--electric);
  display: inline-block;
  clip-path: polygon(55% 0, 0 0, 45% 100%, 100% 100%);
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Section base
   ============================================ */
.section {
  padding: var(--pad-y) var(--pad-x);
  position: relative;
}
.section.dark {
  background: var(--ink);
  color: var(--paper);
}
.section.tinted { background: var(--paper-2); }

.section-head {
  display: grid;
  grid-template-columns: minmax(12rem, 16rem) 1fr;
  gap: 3rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.section-marker {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.625rem;
}
.section-marker .ch-mark {
  width: 1.875rem;
  height: auto;
  fill: var(--electric);
}
.section-marker .mono {
  color: var(--muted);
}
.section.dark .section-marker .mono { color: var(--muted-d); }

.section-title {
  font-weight: 500;
  font-size: clamp(2rem, 5.5vw, 5rem);
  letter-spacing: -0.028em;
  line-height: 1.02;
  max-width: 22ch;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--electric);
  font-size: 1.05em;
}
.section.dark .section-title em { color: var(--electric-2); }

@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 1.25rem; }
  .section-marker { flex-direction: row; align-items: center; padding-top: 0; }
  .section-marker .ch-mark { width: 1.25rem; }
}

/* ============================================
   01 — Compañía
   ============================================ */
.manifesto-body {
  display: grid;
  grid-template-columns: minmax(12rem, 16rem) 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.manifesto-aside {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.manifesto-aside .aside-label {
  color: var(--muted);
  margin-top: 1.25rem;
}
.manifesto-aside .aside-label:first-child { margin-top: 0; }
.manifesto-aside .aside-value {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--ink);
}
.manifesto-prose p {
  font-size: clamp(1.125rem, 1.7vw, 1.625rem);
  margin-bottom: 1.875rem;
  line-height: 1.4;
  letter-spacing: -0.005em;
  max-width: 44rem;
  color: rgba(10, 10, 12, 0.85);
}
.manifesto-prose p:last-child { margin-bottom: 0; }
.manifesto-prose strong {
  font-weight: 500;
  color: var(--ink);
}
.manifesto-prose em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--electric);
}

@media (max-width: 900px) {
  .manifesto-body { grid-template-columns: 1fr; }
  .manifesto-aside { position: relative; top: 0; }
}

/* ============================================
   02 — Principios
   ============================================ */
.principle-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}
.principle {
  padding: 2.5rem 1.5rem 2.5rem 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  transition: background 0.4s var(--ease);
}
.principle:nth-child(2n) { border-right: 0; padding-right: 0; padding-left: 1.5rem; }
.principle:nth-last-child(-n+2) { border-bottom: 0; }
.principle::before {
  content: '';
  position: absolute;
  top: 2.5rem; right: 1.5rem;
  width: 0.875rem; height: 0.875rem;
  background: var(--electric);
  clip-path: polygon(55% 0, 0 0, 45% 100%, 100% 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.principle:nth-child(2n)::before { right: 0; }
.principle:hover::before { opacity: 1; transform: rotate(180deg); }
.principle:hover { background: var(--paper-2); }
.principle .num {
  color: var(--muted);
  margin-bottom: 0.875rem;
  display: inline-block;
}
.principle h3 {
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  max-width: 16ch;
}
.principle p {
  font-size: 1.0625rem;
  color: rgba(10, 10, 12, 0.65);
  line-height: 1.5;
  max-width: 38rem;
}

@media (max-width: 800px) {
  .principle-grid { grid-template-columns: 1fr; }
  .principle { padding: 2rem 0 !important; border-right: 0; }
  .principle:last-child { border-bottom: 0; }
  .principle:nth-last-child(-n+2):not(:last-child) { border-bottom: 1px solid var(--line); }
}

/* ============================================
   Manifesto block (electric blue full bleed)
   ============================================ */
.manifesto-block {
  background: var(--electric);
  color: var(--paper);
  padding: clamp(7rem, 16vw, 13rem) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.manifesto-block-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.mb-ch {
  position: absolute;
  fill: rgba(255, 255, 255, 0.08);
  display: block;
}
.mb-ch.mb-ch-1 {
  width: clamp(280px, 38vw, 600px);
  top: -10%;
  left: -8%;
  transform: rotate(180deg);
  animation: monolith-drift 30s ease-in-out infinite;
}
.mb-ch.mb-ch-2 {
  width: clamp(220px, 30vw, 480px);
  bottom: -12%;
  right: -6%;
  fill: rgba(0, 0, 0, 0.13);
  animation: monolith-drift 26s ease-in-out -8s infinite reverse;
}
.manifesto-block-inner {
  position: relative;
  z-index: 1;
  max-width: 88rem;
  margin: 0 auto;
}
.manifesto-eyebrow {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  display: inline-block;
}
.manifesto-line {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(3.25rem, 12vw, 13rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin-bottom: 2.5rem;
  max-width: 18ch;
}
.manifesto-line em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-size: 1.04em;
  letter-spacing: -0.025em;
}
.manifesto-sub {
  font-size: clamp(1.125rem, 1.5vw, 1.4375rem);
  line-height: 1.45;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.88);
}

/* ============================================
   03 — Tecnología / Capacidades
   ============================================ */
.tech-quote {
  font-weight: 400;
  font-size: clamp(1.625rem, 3.5vw, 2.875rem);
  line-height: 1.2;
  letter-spacing: -0.018em;
  max-width: 38ch;
  margin: 0 0 4.5rem;
  color: var(--paper);
}
.tech-quote em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--electric-2);
}

.capability-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-d);
}
.capability-grid li {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
  position: relative;
  transition: background 0.4s var(--ease);
}
.capability-grid li:nth-child(3n+1) { padding-left: 0; }
.capability-grid li:nth-child(3n) { border-right: 0; padding-right: 0; }
.capability-grid li:nth-last-child(-n+3) { border-bottom: 0; }
.capability-grid li:hover { background: rgba(255, 255, 255, 0.025); }
.capability-grid li::before {
  content: '';
  position: absolute;
  top: 2.5rem; right: 1.5rem;
  width: 0.8rem; height: 0.8rem;
  background: var(--electric-2);
  clip-path: polygon(55% 0, 0 0, 45% 100%, 100% 100%);
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.5s var(--ease);
}
.capability-grid li:nth-child(3n)::before { right: 0; }
.capability-grid li:hover::before { opacity: 1; transform: rotate(180deg); }
.capability-grid h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  margin-bottom: 0.625rem;
  max-width: 14ch;
}
.capability-grid p {
  color: var(--muted-d);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 26rem;
}

@media (max-width: 1000px) {
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .capability-grid li { padding: 2rem 1.25rem; }
  .capability-grid li:nth-child(3n+1),
  .capability-grid li:nth-child(3n) { padding-left: 1.25rem; padding-right: 1.25rem; border-right: 1px solid var(--line-d); }
  .capability-grid li:nth-child(2n+1) { padding-left: 0; }
  .capability-grid li:nth-child(2n) { border-right: 0; padding-right: 0; }
  .capability-grid li:nth-last-child(-n+3) { border-bottom: 1px solid var(--line-d); }
  .capability-grid li:nth-last-child(-n+2) { border-bottom: 0; }
  .capability-grid li:nth-child(2n+1)::before { right: 1.25rem; }
  .capability-grid li:nth-child(2n)::before { right: 0; }
}
@media (max-width: 600px) {
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid li { padding: 1.75rem 0 !important; border-right: 0 !important; border-bottom: 1px solid var(--line-d) !important; }
  .capability-grid li:last-child { border-bottom: 0 !important; }
  .capability-grid li::before { right: 0 !important; }
}

/* ============================================
   04 — Contacto
   ============================================ */
.contact {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.contact-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.contact-ch {
  position: absolute;
  bottom: -25%;
  right: -8%;
  width: clamp(360px, 50vw, 760px);
  fill: var(--electric);
  filter: drop-shadow(0 30px 80px rgba(27, 23, 255, 0.35));
  animation: monolith-drift 32s ease-in-out infinite;
}
.contact-inner { position: relative; z-index: 1; }
.contact .section-marker.contact-marker { margin-bottom: 3rem; }
.contact .section-marker .mono { color: var(--muted-d); }

.big-cta {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(5rem, 18vw, 18rem);
  line-height: 0.84;
  letter-spacing: -0.05em;
  margin: 0 0 3rem;
  color: var(--paper);
}
.big-cta .punct { color: var(--electric-2); }

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 0.5rem;
}
.email-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--paper);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.55s var(--ease), background 0.3s;
}
.email-link:hover { color: var(--electric-2); }
.email-link:hover::after { transform: scaleX(0); transform-origin: left; }
.email-link .arrow { transition: transform 0.4s; display: inline-block; }
.email-link:hover .arrow { transform: translate(5px, -5px); }

.contact-cards {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line-d);
  padding-top: 2.5rem;
}
.contact-cards > div .label { color: var(--muted-d); margin-bottom: 0.75rem; display: inline-block; }
.contact-cards > div .value { font-size: 1.0625rem; line-height: 1.5; }

@media (max-width: 800px) {
  .contact-cards { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4.5rem var(--pad-x) 2.5rem;
  border-top: 1px solid var(--line-d);
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line-d);
}
.footer-brand .footer-logo svg { height: 1.6rem; width: auto; margin-bottom: 1.75rem; color: var(--paper); }
.footer-brand p { color: var(--muted-d); font-size: 0.875rem; line-height: 1.6; max-width: 26rem; }
.footer-brand .legal { margin-top: 1.25rem; font-size: 0.75rem; }

.footer-col .label { color: var(--muted-d); margin-bottom: 1.25rem; display: inline-block; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.625rem; font-size: 0.9375rem; }
.footer-col ul li a { color: var(--paper); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--electric-2); }
.footer-col ul li .muted-link { color: var(--muted-d); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-d);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .ch-monolith, .ch-accent, .mb-ch, .contact-ch { animation: none; }
}
