
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.5; }
html, body { overflow-x: clip; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

:root {
  --black: #000000;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-gray: #f6f6f6;
  --bg-gray-2: #eeeeee;

  --ink: #000000;
  --ink-2: #333333;
  --ink-3: #545454;
  --ink-4: #757575;

  --w-2: rgba(255, 255, 255, 0.8);
  --w-3: rgba(255, 255, 255, 0.6);
  --w-4: rgba(255, 255, 255, 0.4);

  --secondary: rgb(138, 138, 142);

  --blue: #276ef1;
  --green: #05a357;
  --yellow: #ffc043;
  --red: #e11900;
  --brown: #99644c;
  --purple: #7356bf;

  --hairline: #e2e2e2;
  --hairline-dark: rgba(255, 255, 255, 0.2);

  --font: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;

  --fs-xxs: 0.75rem;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: clamp(1.75rem, 3vw, 2.25rem);
  --fs-4xl: clamp(2rem, 4vw, 3.25rem);
  --fs-hero: clamp(2.5rem, 5vw, 4.25rem);

  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem;
  --sp-section: clamp(4rem, 7vw, 6.5rem);

  --r-btn: 0;
  --r-tile: 0;
  --maxw: 1200px;
  --nav-h: 64px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 240ms;
  --dur-lg: 600ms;
  --dur-xl: 900ms;
}

body {
  font-family: var(--font);
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  padding-top: var(--nav-h);
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}
p { color: var(--ink-3); line-height: 1.55; }
strong, b { font-weight: 600; color: var(--ink); }
::selection { background: var(--blue); color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--r-btn);
  font-size: var(--fs-md);
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--black); color: #fff; }
.btn-primary:hover { background: #333; }
.btn-light { background: #fff; color: var(--black); }
.btn-light:hover { background: #e2e2e2; }
.btn-gray { background: var(--bg-gray); color: var(--black); }
.btn-gray:hover { background: var(--bg-gray-2); }
.btn--sm { padding: 0.55rem 1rem; font-size: var(--fs-sm); }

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--ink);
}
.link::after {
  content: "→";
  transition: transform var(--dur) var(--ease);
}
.link:hover::after { transform: translateX(5px); }
.link--light { color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-xl) var(--ease-out), transform var(--dur-xl) var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-lg) var(--ease-out), transform var(--dur-lg) var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

.word-reveal .word-reveal__w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.word-reveal.in .word-reveal__w { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > *, .word-reveal .word-reveal__w {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .marquee__group { animation: none !important; }
  .xform-canvas { display: none; }
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--nav-h);
  background: var(--black);
  color: #fff;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo { height: 24px; width: auto; }
.nav__menu { display: flex; gap: clamp(1rem, 2.2vw, 1.75rem); align-items: center; }
.nav__menu a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--w-2);
  padding: 8px 0;
  transition: color var(--dur) var(--ease);
}
.nav__menu a:hover { color: #fff; }
.nav__menu a[aria-current="page"] { color: #fff; }

.nav__actions { display: flex; align-items: center; gap: var(--sp-4); }
.nav__cta { background: #fff; color: var(--black); padding: 0.5rem 1rem; font-size: var(--fs-sm); border-radius: var(--r-btn); font-weight: 500; transition: background var(--dur) var(--ease); }
.nav__cta:hover { background: #e2e2e2; }

.lang-switch { display: inline-flex; font-size: var(--fs-xs); font-weight: 600; }
.lang-switch a { padding: 5px 9px; color: var(--w-3); transition: color var(--dur) var(--ease), background var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.lang-switch a.is-active { color: var(--black); background: #fff; }
.lang-switch a:not(.is-active):hover { color: #fff; }
.lang-switch.is-switching a { opacity: 0.35; }

.nav__burger { display: none; width: 40px; height: 40px; position: relative; }
.nav__burger span, .nav__burger::before, .nav__burger::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav__burger::before { top: 13px; }
.nav__burger span { top: 19px; }
.nav__burger::after { top: 25px; }
.nav.is-open .nav__burger::before { top: 19px; transform: rotate(45deg); }
.nav.is-open .nav__burger span { opacity: 0; }
.nav.is-open .nav__burger::after { top: 19px; transform: rotate(-45deg); }

.hero {
  background: var(--black);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__title {
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
  color: #fff;
  margin-bottom: var(--sp-5);
}
.hero__lead {
  font-size: var(--fs-lg);
  color: var(--w-2);
  max-width: 32rem;
  margin-bottom: var(--sp-6);
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-5); }

.hero__vis {
  position: relative;
  aspect-ratio: 10 / 8.4;
}
.cta-vis {
  position: relative;
  height: clamp(160px, 22vw, 240px);
  max-width: 760px;
  margin: 0 auto;
}
.xform-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.section { padding: var(--sp-section) 0; }
.section--gray { background: var(--bg-gray); }
.section--black { background: var(--black); color: #fff; }
.section--black h2, .section--black h3 { color: #fff; }
.section--black p { color: var(--w-2); }

.section__head { max-width: 52rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section__title {
  font-size: var(--fs-4xl);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}
.section__lead { font-size: var(--fs-lg); max-width: 40rem; }

.points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4.5rem);
}
.point__icon { width: 28px; height: 28px; margin-bottom: var(--sp-3); color: var(--ink); }
.point__icon svg { width: 100%; height: 100%; }
.section--black .point__icon { color: #fff; }
.point__title { font-size: var(--fs-lg); font-weight: 700; margin-bottom: var(--sp-2); }
.point__desc { font-size: var(--fs-md); }
.point .link { margin-top: var(--sp-3); font-size: var(--fs-sm); }

.icards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.icards--2 { grid-template-columns: repeat(2, 1fr); }
.icards--4 { grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.icard { display: flex; flex-direction: column; }
.icard__media {
  border-radius: var(--r-tile);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease);
}
.icard:hover .icard__media { transform: translateY(-4px); }
.icard__media svg { width: clamp(48px, 5vw, 72px); height: auto; color: #fff; }
.icard__media--blue { background: var(--blue); }
.icard__media--green { background: var(--green); }
.icard__media--yellow { background: var(--yellow); }
.icard__media--yellow svg { color: var(--black); }
.icard__media--black { background: var(--black); }
.icard__media--purple { background: var(--purple); }
.icard__media--red { background: var(--red); }
.icard__media--secondary { background: var(--secondary); }
.icard__media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 12% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.icard__title { font-size: var(--fs-xl); font-weight: 700; letter-spacing: -0.015em; margin-bottom: var(--sp-2); }
.icard__desc { font-size: var(--fs-md); flex: 1; margin-bottom: var(--sp-3); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split__media {
  border-radius: var(--r-tile);
  aspect-ratio: 4 / 3.4;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.split__media svg { width: clamp(64px, 7vw, 100px); height: auto; color: #fff; }
.split__media--green { background: var(--green); }
.split__media--blue { background: var(--blue); }
.split__media--black { background: var(--black); }
.split__media--gray { background: var(--secondary); }
.split__media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 12% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.rows { display: grid; }
.row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--hairline);
}
.row:last-child { border-bottom: 1px solid var(--hairline); }
.row__icon { width: 26px; height: 26px; color: var(--ink); margin-top: 2px; }
.row__icon svg { width: 100%; height: 100%; }
.row__title { font-size: var(--fs-lg); font-weight: 700; margin-bottom: 0.35rem; }
.row__desc { font-size: var(--fs-sm); }

.grow { padding: var(--sp-section) 0; background: var(--bg); }
.grow__panel {
  width: 100%;  margin: 0 auto;
  background: var(--black);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  will-change: width;
}
.grow__panel .statement { color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .grow__panel { width: 100% !important; }
}

.statement {
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  max-width: 46rem;
}
.statement--center { margin: 0 auto; text-align: center; }
.statement em { font-style: normal; color: var(--w-3); }
.statement-note { margin-top: var(--sp-4); font-size: var(--fs-sm); color: var(--w-3); }
.statement-cta { margin-top: var(--sp-6); }

.bigstat {
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-bottom: var(--sp-4);
}

.trust {
  padding: clamp(2.75rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust__label {
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  text-align: center;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
  padding-right: clamp(3rem, 6vw, 5.5rem);
  animation: marqueeScroll 42s linear infinite;
}
.marquee:hover .marquee__group { animation-play-state: paused; }
@keyframes marqueeScroll { to { transform: translateX(-100%); } }
.marquee__item { height: 34px; display: grid; place-items: center; opacity: 0.7; filter: grayscale(100%); transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease); }
.marquee__item img { height: 30px; width: auto; max-width: 160px; }
.marquee__item:hover { opacity: 1; filter: none; }

.plist { display: grid; }
.prow {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(1.75rem, 3.5vw, 3rem) 0;
  border-top: 1px solid #d9d9d9;
}
.prow:last-child { border-bottom: 1px solid #d9d9d9; }
.prow__desc {
  font-size: var(--fs-sm);
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 26ch;
  margin-bottom: var(--sp-4);
}
.prow__no {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--ink-4);
}
.prow__name {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.prow:hover .prow__name { transform: translateX(14px); }

@media (max-width: 900px) {
  .prow { grid-template-columns: 1fr; gap: var(--sp-4); }
  .prow__desc { margin-bottom: var(--sp-2); }
}

.gtiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.gtiles--2 { grid-template-columns: repeat(2, 1fr); }
.gtile {
  background: var(--bg-gray);
  border-radius: var(--r-tile);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: background var(--dur) var(--ease);
}
.gtile:hover { background: var(--bg-gray-2); }
.gtile__icon { width: 28px; height: 28px; color: var(--ink); margin-bottom: var(--sp-2); }
.gtile__icon svg { width: 100%; height: 100%; }
.gtile__label {
  font-size: var(--fs-xxs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.gtile__title { font-size: var(--fs-lg); font-weight: 700; }
.gtile__desc { font-size: var(--fs-sm); flex: 1; }
.gtile__value { font-size: var(--fs-lg); font-weight: 600; color: var(--ink); }
.gtile__value a { color: var(--ink); }
.gtile__value a:hover { text-decoration: underline; }
.gtile .link { font-size: var(--fs-sm); margin-top: var(--sp-2); }

.quote-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.quote-split__text {
  font-size: clamp(1.375rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: var(--sp-5);
}
.quote-split__source { font-size: var(--fs-sm); color: var(--ink-3); }
.quote-split__source strong { display: block; color: var(--ink); font-weight: 600; }

.stats-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.stat { border-top: 2px solid var(--black); padding-top: var(--sp-4); }
.section--black .stat { border-top-color: rgba(255, 255, 255, 0.35); }
.stat__value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.section--black .stat__value { color: #fff; }
.stat__label { font-size: var(--fs-sm); color: var(--ink-3); }
.section--black .stat__label { color: var(--w-3); }

.page-hero { padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem); }
.page-hero__kicker {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: var(--sp-4);
}
.page-hero__title {
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 20ch;
  margin-bottom: var(--sp-5);
}
.page-hero__lead { font-size: var(--fs-lg); max-width: 38rem; }

.svc {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--hairline);
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.svc:last-of-type { border-bottom: 1px solid var(--hairline); }
.svc__no {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-4);
  margin-bottom: 0.5rem;
}
.svc__title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.svc__desc { font-size: var(--fs-md); margin-bottom: var(--sp-4); }
.svc__note {
  background: var(--white);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--ink-3);
  border-left: 3px solid var(--black);
  max-width: 34rem;
}
.svc-closing {
  margin-top: var(--sp-7);
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  font-size: var(--fs-md);
  color: var(--ink-3);
  line-height: 1.6;
  border-left: 3px solid var(--black);
}
@media (max-width: 900px) {
  .svc { grid-template-columns: 1fr; gap: var(--sp-4); }
}

.prose { max-width: 780px; padding-bottom: var(--sp-8); }
.prose h2 { font-size: var(--fs-xl); margin: 2.5rem 0 0.75rem; }
.prose h3 { font-size: var(--fs-lg); margin: 1.75rem 0 0.5rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin: 0 0 1rem; }
.prose li { color: var(--ink-3); line-height: 1.6; margin-bottom: 0.35rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--ink); }
.prose__meta { font-size: var(--fs-sm); color: var(--ink-4); margin-bottom: 2rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.25rem; font-size: var(--fs-sm); }
.prose th, .prose td { text-align: left; padding: 0.6rem 0.75rem; border: 1px solid var(--hairline); color: var(--ink-3); vertical-align: top; }
.prose th { color: var(--ink); font-weight: 600; background: var(--bg-gray); }

.deflist { display: grid; gap: 0; max-width: 780px; margin-bottom: var(--sp-7); }
.deflist__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-4);
  padding: 0.9rem 0;
  border-top: 1px solid var(--hairline);
  font-size: var(--fs-md);
}
.deflist__row:last-child { border-bottom: 1px solid var(--hairline); }
.deflist__label { font-weight: 600; color: var(--ink); }
.deflist__value { color: var(--ink-3); }
.deflist__value a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
.logo-tile { border: 1px solid var(--hairline); }
.logo-tile__canvas {
  display: grid;
  place-items: center;
  padding: 2.5rem 1.5rem;
  min-height: 150px;
  background: #fff;
}
.logo-tile__canvas--dark { background: var(--black); }
.logo-tile__canvas img { max-height: 64px; width: auto; }
.logo-tile__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--hairline);
}
.logo-tile__name { font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.logo-tile__dl { display: flex; gap: var(--sp-4); }
.logo-tile__dl a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-3);
  transition: color var(--dur) var(--ease);
}
.logo-tile__dl a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 720px) {
  .deflist__row { grid-template-columns: 1fr; gap: 0.15rem; }
  .logo-grid { grid-template-columns: 1fr; }
}

.footer {
  background: var(--black);
  color: #fff;
  padding: clamp(3rem, 5vw, 3rem) 0 var(--sp-6);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-bottom: var(--sp-6);
}
.footer__logo-img { height: 26px; width: auto; }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: var(--sp-6) 0 var(--sp-7);
  border-top: 1px solid var(--hairline-dark);
}
.footer__col-title { font-size: var(--fs-md); font-weight: 600; color: #fff; margin-bottom: var(--sp-4); }
.footer__col-list { display: grid; gap: 0.7rem; }
.footer__col-list a, .footer__col-list li { font-size: var(--fs-sm); color: var(--w-3); transition: color var(--dur) var(--ease); }
.footer__col-list a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--hairline-dark);
  font-size: var(--fs-xs);
  color: var(--w-4);
}
.footer__legal { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.footer__legal a { color: var(--w-4); transition: color var(--dur) var(--ease); }
.footer__legal a:hover { color: #fff; }
.footer__social { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.footer__social a { color: var(--w-3); transition: color var(--dur) var(--ease); }
.footer__social a:hover { color: #fff; }

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__vis { max-width: 560px; }
  .icards, .icards--4 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__media { aspect-ratio: 16 / 9; }
  .quote-split { grid-template-columns: 1fr; }
  .gtiles { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --nav-h: 56px; }
  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-5);
    gap: 0;
    height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav.is-open .nav__menu { display: flex; }
  .nav__menu a {
    padding: var(--sp-4) 0;
    border-bottom: 1px solid var(--hairline-dark);
    font-size: var(--fs-xl);
    font-weight: 600;
    color: #fff;
  }
  .nav__menu a:last-child { border-bottom: 0; }
  .nav__burger { display: block; }
  .nav__cta { display: none; }

  .points { grid-template-columns: 1fr; }
  .icards, .icards--2, .icards--4 { grid-template-columns: 1fr; }
  .gtiles, .gtiles--2 { grid-template-columns: 1fr; }
  .stats-inline { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__actions { gap: var(--sp-4); }
}
