

@import url('https://fonts.cdnfonts.com/css/texpi-sans');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=K2D:wght@400;500;600;700&display=swap');

:root {
  --bg: #000;
  --surface-default: #0A0806;
  --surface-subtle: #141010;
  --surface-sunken: #000;

  /* brand ramp, warm — nudged ~15% in saturation from the base palette */
  --crimson-300: #E36450;
  --crimson-400: #CF3D28;
  --crimson-500: #B42F1F;
  --plum-300: #BC71A4;
  --plum-500: #75375F;
  --amber-300: #E1A05C;

  --primary: var(--crimson-300);
  --primary-hover: #EC7660;
  --primary-soft: rgba(198, 74, 54, 0.15);
  --secondary: var(--plum-300);
  --secondary-soft: rgba(143, 85, 128, 0.16);

  --text-strong: #F7EEE2;
  --text-body: #E4D6C6;
  --text-muted: #B3A392;
  --text-subtle: #8A7A6B;
  --text-link: var(--amber-300);

  --border-subtle: #2E241C;
  --border-default: #3C2F25;
  --border-strong: #574538;

  --font-display: 'Texpi Sans', 'K2D', 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1220px;
  --gutter: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--text-strong); }

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

/* ---- layout helpers ---- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
}

.section { padding-block: clamp(80px, 12vh, 150px); }
.tr { text-align: right; }
.muted { color: var(--text-muted); }

/* ---- shared type ---- */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--secondary);
}
.headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin-top: 18px;
}
.headline--xl { font-size: clamp(2.2rem, 5vw, 4.25rem); line-height: 1.03; letter-spacing: -0.02em; }
.subhead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  color: var(--text-strong);
}
.lead { font-size: 1.125rem; line-height: 1.7; color: var(--text-body); margin-top: 24px; }
.prose { display: flex; flex-direction: column; gap: 20px; margin-top: 22px; }
.prose p { font-size: 1.0625rem; line-height: 1.75; color: var(--text-body); }

/* ---- scroll reveal (progressive: only hides when JS is on) ---- */
.js [data-reveal] {
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js [data-reveal="up"] { transform: translateY(30px); }
.js [data-reveal="left"] { transform: translateX(-48px); }
.js [data-reveal="right"] { transform: translateX(52px); }
.js [data-reveal="zoom"] { transform: scale(0.94); }
.js [data-reveal="swing"] { transform: translateX(46vw) rotate(3deg); transform-origin: top right; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---- the sun (fixed, morphs on scroll via JS) ---- */
.page { position: relative; }
.page__content { position: relative; z-index: 1; }
.sun {
  position: fixed;
  z-index: 0;
  top: 50%;
  right: clamp(-240px, -13vw, -120px);
  width: min(56vw, 660px);
  height: min(56vw, 660px);
  transform: translateY(-50%);
  background: radial-gradient(circle at 40% 36%, rgba(255,222,168,0.55) 0%, rgba(230,120,40,0.38) 38%, rgba(180,47,31,0.22) 66%, rgba(117,55,95,0.12) 100%);
  backdrop-filter: blur(11px) saturate(1.25);
  -webkit-backdrop-filter: blur(11px) saturate(1.25);
  border: 1px solid rgba(255,235,205,0.2);
  box-shadow: 0 0 150px 30px rgba(230,120,40,0.22), inset 0 2px 70px rgba(255,225,180,0.22);
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  pointer-events: none;
  opacity: 0.92;
}
.sun__rays {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(255,224,176,0.16) 0deg 5deg, transparent 5deg 13deg);
  opacity: 0.55;
  mix-blend-mode: screen;
}

/* ---- sun-ray backdrop shared by people / vision / partners ---- */
.beams::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: repeating-conic-gradient(from 188deg at 92% -6%, rgba(180,47,31,0.12) 0deg 2.4deg, transparent 2.4deg 8deg, rgba(117,55,95,0.12) 8deg 10.4deg, transparent 10.4deg 16deg);
  -webkit-mask-image: radial-gradient(130% 130% at 92% -6%, #000 0%, rgba(0,0,0,0.55) 34%, transparent 72%);
  mask-image: radial-gradient(130% 130% at 92% -6%, #000 0%, rgba(0,0,0,0.55) 34%, transparent 72%);
}
.beams--top::before {
  -webkit-mask-image: radial-gradient(120% 60% at 92% 0%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 78%);
  mask-image: radial-gradient(120% 60% at 92% 0%, #000 0%, rgba(0,0,0,0.5) 40%, transparent 78%);
}

/* ---- brand lockup ---- */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { border-radius: 7px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
}

/* ---- hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(600px, 94vh, 940px);
  display: flex;
  flex-direction: column;
}
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 46% 38%; }
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 26%, rgba(0,0,0,0.72) 78%, var(--bg) 100%);
}
.hero__top { position: relative; padding-top: clamp(28px, 5vh, 52px); }
.hero__top .brand__name { text-shadow: 0 2px 18px rgba(0,0,0,0.6); }
.hero__topbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.site-nav a:hover { color: var(--text-strong); }
@media (max-width: 860px) {
  .site-nav { display: none; }
}
.hero__foot { position: relative; margin-top: auto; padding-bottom: clamp(52px, 9vh, 104px); }

.hero__card {
  position: relative;
  max-width: 660px;
  border-radius: 18px;
  padding: 2px;
  overflow: hidden;
  background: rgba(180,47,31,0.38);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.hero__glow {
  position: absolute;
  inset: -60%;
  z-index: 0;
  background: conic-gradient(from 0deg, rgba(207,61,40,0) 0deg, rgba(207,61,40,0) 232deg, #E36450 292deg, #FF7A5C 312deg, rgba(207,61,40,0) 360deg);
  animation: spin 4.5s linear infinite;
}
.hero__panel {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  border-radius: 16px;
  padding: clamp(26px, 3.4vw, 44px);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--crimson-500);
  max-width: 16ch;
}
.hero__lead { font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.6; color: #2A211B; margin-top: 22px; }

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

/* ---- about ---- */
#about { padding-block: clamp(64px, 10vh, 120px); border-top: 1px solid var(--border-subtle); }
.about { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 5vw, 88px); align-items: start; }
.lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin-top: 18px;
}
.about__body { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.about__body p { font-size: 1.125rem; line-height: 1.7; color: var(--text-body); }
.about__body p + p { font-size: 1rem; color: var(--text-muted); }

/* ---- people ---- */
#people {
  position: relative;
  overflow: hidden;
  padding-block: clamp(96px, 13vh, 160px);
  background: var(--surface-default);
  clip-path: polygon(0 38px, 100% 0, 100% 100%, 0 calc(100% - 38px));
}
.people__media { position: absolute; inset: 0; z-index: 0; }
.people__media img {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: min(46%, 560px);
  object-fit: cover;
  opacity: 0.55;
  filter: sepia(0.3) saturate(1.2);
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 42%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 42%, transparent 100%);
}
.people__list, #people .eyebrow { max-width: min(640px, 58%); margin-left: auto; }
#people .eyebrow { margin-bottom: clamp(36px, 5vh, 56px); }
.people__list { list-style: disc; padding-left: 1.15em; display: flex; flex-direction: column; gap: clamp(12px, 1.9vh, 22px); }
.people__list li {
  color: #F7EEE2;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.02rem, 1.9vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
}

/* ---- values carousel ---- */
#values { position: relative; overflow: hidden; }
.values__intro { max-width: 52ch; }
.carousel-wrap { position: relative; margin: clamp(40px, 6vh, 64px) auto 0; max-width: 820px; }
.carousel { overflow: hidden; border-radius: 22px; }
.carousel__track { display: flex; will-change: transform; transition: transform 640ms var(--ease); }
.value {
  flex: 0 0 100%;
  min-height: clamp(300px, 42vw, 360px);
  padding: clamp(26px, 3.2vw, 40px);
  display: grid;
  grid-template-columns: clamp(150px, 30%, 220px) 1fr;
  gap: clamp(22px, 3vw, 40px);
  align-items: center;
}
.value--crimson { background: color-mix(in srgb, var(--primary) 70%, transparent); }
.value--plum { background: color-mix(in srgb, var(--plum-500) 70%, transparent); }
.value__media img { width: 100%; height: clamp(210px, 26vw, 300px); object-fit: cover; border-radius: 14px; filter: sepia(0.3) saturate(1.25) hue-rotate(-8deg); }
.value__body { display: flex; flex-direction: column; gap: 16px; }
.value__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.1; color: #fff; }
.value__text { font-size: 1.0625rem; line-height: 1.65; color: rgba(255,247,242,0.94); }
.value--plum .value__text { color: rgba(251,244,249,0.94); }
.chip { width: 52px; height: 52px; border-radius: 999px; display: grid; place-items: center; background: rgba(255,255,255,0.18); color: #fff; }
.chip svg { width: 24px; height: 24px; }

.carousel__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 26px; }
.arrow {
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid var(--border-default);
  background: var(--surface-subtle);
  color: var(--text-strong);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.arrow:hover { background: var(--surface-sunken); border-color: var(--border-strong); }
.arrow svg { width: 20px; height: 20px; }
.dots { display: flex; align-items: center; gap: 9px; }
.dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; background: var(--primary); opacity: 0.32; cursor: pointer; transition: width 0.26s ease, opacity 0.26s ease; }
.dot.is-active { width: 26px; opacity: 1; }
.closing { font-size: 1.0625rem; line-height: 1.7; color: var(--text-body); max-width: 60ch; margin: 44px 0 0 auto; text-align: right; }
.closing--center { margin-inline: auto; text-align: center; }

/* ---- vision ---- */
#vision { position: relative; overflow: hidden; padding-block: clamp(88px, 13vh, 160px); background: var(--surface-default); border-block: 1px solid var(--border-subtle); }
.vision { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(36px, 5vw, 80px); align-items: stretch; }
.vision__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  max-width: 20ch;
  margin-top: 24px;
}
.vision .subhead { margin-top: clamp(36px, 5vh, 56px); }
.vision__media { display: flex; overflow: hidden; border-radius: 16px; border: 1px solid var(--border-subtle); }
.vision__media img { width: 100%; height: 100%; min-height: clamp(340px, 50vh, 560px); object-fit: cover; transition: transform 720ms var(--ease); }
.vision__media:hover img { transform: scale(1.06); }

/* ---- capital + marquee ---- */
.capital__intro { max-width: 56ch; }
.subhead-sm { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 1.8vw, 1.5rem); color: var(--secondary); margin: 48px 0 22px; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee__row {
  display: flex;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.5;
  color: var(--text-strong);
  animation: marquee-left 24s linear infinite;
  animation-play-state: paused;
}
.marquee__row--rev { animation-name: marquee-right; margin-top: clamp(4px, 1vw, 12px); }
.marquee:hover .marquee__row,
.marquee:focus-within .marquee__row { animation-play-state: running; }
.marquee__group { display: flex; align-items: center; gap: clamp(22px, 3vw, 52px); padding-right: clamp(22px, 3vw, 52px); }
.pip { width: 11px; height: 11px; border-radius: 999px; flex: 0 0 auto; background: var(--primary); }
.marquee__row--rev .pip { background: var(--secondary); }
@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.capital__foot { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 4vw, 64px); margin-top: 52px; }
.capital__foot p { font-size: 1.0625rem; line-height: 1.7; color: var(--text-body); }

/* ---- partners map ---- */
#partners { position: relative; padding-top: clamp(72px, 11vh, 140px); background: var(--surface-default); border-top: 1px solid var(--border-subtle); }
.map-outer { position: relative; z-index: 1; height: 300vh; }
.map-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.map-track { position: relative; display: flex; align-items: center; gap: clamp(30px, 4vw, 66px); width: max-content; padding: 0 clamp(24px, 10vw, 220px); will-change: transform; }
.map-line { position: absolute; left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-1px); background: repeating-linear-gradient(90deg, var(--border-strong) 0 12px, transparent 12px 26px); }

.node { position: relative; flex: 0 0 clamp(300px, 42vw, 352px); }
.node--up { transform: translateY(-84px); }
.node--down { transform: translateY(84px); }
.node__img {
  position: absolute;
  width: clamp(168px, 19.5vw, 210px);
  height: clamp(168px, 19.5vw, 210px);
  border-radius: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0.55;
  z-index: 1;
  border: 2px solid var(--border-strong);
  filter: sepia(0.3) saturate(1.2);
}
.node__card { position: relative; z-index: 2; padding: 2rem; background: var(--surface-subtle); border: 1px solid var(--border-default); }
.node__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.node__chip { width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center; flex-shrink: 0; }
.node__chip svg { width: 20px; height: 20px; }
.node__chip--primary { background: var(--primary-soft); color: var(--primary); }
.node__chip--secondary { background: var(--secondary-soft); color: var(--secondary); }
.node__title { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--text-strong); }
.node__text { color: var(--text-muted); line-height: 1.65; font-size: 0.98rem; }
.node__stem { position: absolute; left: 50%; width: 2px; height: 84px; background: var(--border-strong); transform: translateX(-50%); z-index: 1; }
.node--up .node__stem { top: 50%; }
.node--down .node__stem { top: calc(50% - 84px); }

/* card shapes + image jitter, one node at a time */
.node--1 .node__card { border-radius: 28px 28px 28px 5px; }
.node--1 .node__img { left: 47%; top: -34px; }
.node--2 .node__card { border-radius: 5px 28px 28px 28px; }
.node--2 .node__img { left: 54%; top: calc(100% + 30px); }
.node--3 .node__card { border-radius: 40px; }
.node--3 .node__img { left: 51%; top: calc(100% + 24px); }
.node--4 .node__card { border-radius: 28px; clip-path: polygon(26px 0, 100% 0, 100% 100%, 0 100%, 0 26px); }
.node--4 .node__img { left: 46%; top: -40px; }
.node--5 .node__card { border-radius: 28px 5px 28px 5px; }
.node--5 .node__img { left: 56%; top: -28px; }
.node--6 .node__card { border-radius: 5px 28px 5px 28px; }
.node--6 .node__img { left: 45%; top: calc(100% + 34px); }

/* ---- contact ---- */
#contact { position: relative; overflow: hidden; padding-block: clamp(88px, 13vh, 160px); }
.contact__head { max-width: 60ch; }
.contact__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--border-subtle); }
.contact__id { display: flex; flex-direction: column; gap: 6px; }
.contact__name { font-family: var(--font-display); font-weight: 600; font-size: 1.375rem; letter-spacing: 0.02em; color: var(--text-strong); }
.contact__foot .btn { margin-left: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.0625rem;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.btn--primary { background: var(--primary); color: #1B1512; }
.btn--primary:hover { background: var(--primary-hover); color: #1B1512; box-shadow: 0 0 0 4px rgba(227,100,80,0.18); }
.btn:active { transform: translateY(1px); }
.btn--sm { height: 40px; padding: 0 20px; font-size: 0.9375rem; }
.btn-ghost {
  height: 40px;
  padding: 0 18px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-ghost:hover { color: var(--text-strong); border-color: var(--border-strong); }

/* ---- cookie banner ---- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  max-width: 620px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  padding: 20px 24px;
  background: rgba(10,8,6,0.92);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
/* display:flex above beats the hidden attribute's UA display:none — restore it */
.cookie-banner[hidden] { display: none; }
.cookie-banner__text { font-size: 0.9375rem; line-height: 1.6; color: var(--text-body); flex: 1 1 260px; }
.cookie-banner__text a { color: var(--text-link); }
.cookie-banner__actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }

/* ---- footer ---- */
.site-footer { border-top: 1px solid var(--border-subtle); background: var(--bg); padding-block: 56px; }
.site-footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.site-footer .brand { gap: 12px; }
.site-footer .brand img { border-radius: 6px; }
.site-footer .brand__name { font-size: 20px; letter-spacing: 0.07em; }
.site-footer__meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; font-size: 11px; letter-spacing: 0.1em; }
.site-footer__meta a { color: var(--text-muted); }
.site-footer__meta a:hover { color: var(--text-strong); }
.site-footer__meta span { color: var(--text-subtle); }

/* ---- legal page ---- */
.legal { max-width: 820px; padding-block: clamp(32px, 6vh, 64px) clamp(64px, 10vh, 120px); }
.legal__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.1rem, 4.5vw, 3.4rem); line-height: 1.05; letter-spacing: -0.015em; color: var(--text-strong); margin-top: clamp(40px, 7vh, 72px); }
.legal__date { font-size: 12px; letter-spacing: 0.06em; color: var(--text-muted); margin-top: 16px; }
.legal__intro { font-size: 1.0625rem; line-height: 1.7; color: var(--text-body); margin-top: 24px; }
.legal section { margin-top: 36px; }
.legal h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--text-strong); }
.legal p { font-size: 1rem; line-height: 1.7; color: var(--text-muted); margin-top: 12px; }
.legal ul { margin-top: 12px; padding-left: 1.2em; display: flex; flex-direction: column; gap: 8px; color: var(--text-muted); font-size: 1rem; line-height: 1.6; }
.legal__back { display: inline-block; margin-top: clamp(48px, 8vh, 80px); padding-top: 28px; border-top: 1px solid var(--border-subtle); font-size: 12px; letter-spacing: 0.08em; color: var(--text-link); }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__glow, .marquee__row { animation: none !important; }
  .vision__media img { transition: none; }
}
