/* ===========================================================
   Vanhux
   Modern dark, self-contained. Motion + gradient system.
   =========================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(210,218,230,.22); color: #fff; }
:focus-visible { outline: 2px solid var(--g2); outline-offset: 3px; border-radius: 4px; }

/* ---------- Tokens ---------- */
:root {
  --bg:       #000;
  --bg-2:     #000;
  --surface:  rgba(255,255,255,.032);
  --surface-2:rgba(255,255,255,.07);
  --text:     #d8dde6;
  --muted:    rgba(216,221,230,.68);
  --muted-2:  rgba(216,221,230,.46);
  --line:     rgba(255,255,255,.09);
  --line-2:   rgba(255,255,255,.14);

  /* monochrome platinum signature — elegant, restrained */
  --g1: #e1e5ec;   /* soft grey */
  --g2: #b8bec9;   /* light steel */
  --g3: #8d95a3;   /* muted steel */
  --grad: linear-gradient(120deg, var(--g1), var(--g2) 55%, var(--g3));

  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: var(--sans);
  --display: var(--sans);

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --sec-pad: clamp(56px, 6vw, 88px);
  --radius: 20px;
  --nav-h: 74px;
  --ease: cubic-bezier(.22,.61,.24,1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .04;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}
.container.narrow { max-width: 800px; }

section[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

.grad-text {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  color: inherit;
}
.serif { font-family: var(--sans); font-style: normal; font-weight: inherit; }

/* ---------- Cursor ambient glow ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  margin: -240px 0 0 -240px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(205,214,230,.07), transparent 62%);
  transform: translate3d(-100px,-100px,0);
  transition: opacity .4s ease;
  opacity: 0;
  will-change: transform;
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].in {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
  .word__i { transform: none !important; }
  .orb { animation: none !important; }
  .hero-stage *, .hero-stage::before, .hero-stage::after { animation: none !important; }
}

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.nav.is-scrolled {
  background: rgba(8,9,12,.62);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
}
.wordmark__icon { height: 25px; width: auto; display: block; }
.wordmark__logo { height: 14px; width: auto; display: block; transform: translateY(1px); }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color .25s ease;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--text); }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta {
  padding: 9px 18px;
  border-radius: 40px;
  color: var(--text) !important;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}
.nav__cta:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 12px 28px -20px rgba(255,255,255,.45);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  position: relative;
  background: var(--surface-2);
}
.nav__toggle span {
  position: absolute; left: 12px; right: 12px; height: 1.6px;
  background: var(--text);
  transition: transform .3s ease, opacity .2s ease;
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { bottom: 16px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ===========================================================
   AMBIENT LIGHT
   =========================================================== */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  will-change: transform;
}
.orb--1 { width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; top: -12%; left: -8%;
  background: radial-gradient(circle, rgba(150,168,196,.22), transparent 66%); animation: drift1 22s ease-in-out infinite; }
.orb--2 { width: 44vw; height: 44vw; max-width: 600px; max-height: 600px; top: -6%; right: -10%;
  background: radial-gradient(circle, rgba(170,182,205,.20), transparent 66%); animation: drift2 26s ease-in-out infinite; }
.orb--3 { width: 40vw; height: 40vw; max-width: 520px; max-height: 520px; top: 34%; left: 34%;
  background: radial-gradient(circle, rgba(190,196,208,.12), transparent 66%); animation: drift3 30s ease-in-out infinite; }

@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(6%,8%) scale(1.08)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-7%,6%) scale(1.1)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(4%,-9%) scale(1.06)} }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  padding-top: clamp(116px, 14vw, 164px);
  padding-bottom: var(--sec-pad);
  overflow: hidden;
  isolation: isolate;
}
.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, var(--hero-shift, 0px), 0);
}
/* ---------- Luminous wave-ribbon field ----------
   Full-width flowing ribbons of light, rendered on canvas with additive
   blending so overlapping strands glow at the folds. Built + animated in JS. */
.wave-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  /* Ease the field in on its first real paint. On pull-to-refresh the canvas
     loop is throttled for ~1s then pops in at full brightness while the body
     text is still mid-reveal — the fade prevents that harsh flash. */
  opacity: 0;
  transition: opacity .9s ease;
}
.wave-field.is-live { opacity: 1; }
/* Soft legibility scrim over the left text column (painted above the canvas,
   below the hero text which sits at z-index 2). */
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(78% 66% at 20% 44%,
    rgba(0,0,0,.6) 0%, rgba(0,0,0,.26) 40%, transparent 66%);
}

.hero__inner { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--line-2);
  border-radius: 40px;
  background: var(--surface);
  margin-bottom: 24px;
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #cfd6e0;
  box-shadow: 0 0 0 0 rgba(207,214,224,.5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(207,214,224,.45)} 70%{box-shadow:0 0 0 9px rgba(207,214,224,0)} 100%{box-shadow:0 0 0 0 rgba(207,214,224,0)} }

.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: #b4b2ae;
}
.hero__title .line { display: block; }
/* Bottom padding gives descenders (g, y, p …) room inside the overflow:hidden
   reveal box; the negative margin keeps the line spacing unchanged. */
.hero__title .word { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .12em .2em 0; margin-bottom: -.14em; }
.hero__title .word__i {
  display: inline-block;
  transform: translateY(112%);
  transition: transform .9s var(--ease);
  transition-delay: calc(var(--i) * 62ms + 120ms);
}
.hero__title .serif { letter-spacing: -.01em; padding-right: .04em; }
body.loaded .hero__title .word__i { transform: translateY(0); }

.hero__lead {
  margin-top: 24px;
  max-width: 60ch;
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
  color: var(--muted);
}
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 27px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
  will-change: transform;
}
.btn--primary { color: #07080b; background: #b4b2ae; }
.btn--primary::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: var(--grad);
  opacity: 0;
  z-index: -1;
  filter: blur(14px);
  transition: opacity .35s ease;
}
.btn--primary:hover { box-shadow: 0 16px 40px -14px rgba(210,218,230,.4); }
.btn--primary:hover::before { opacity: .9; }
.btn__arrow { transition: transform .3s var(--ease); }
.btn--primary:hover .btn__arrow { transform: translateX(4px); }
.btn--ghost { color: var(--text); border: 1px solid var(--line-2); background: var(--surface); }
.btn--ghost:hover { border-color: rgba(255,255,255,.3); background: var(--surface-2); }

/* ===========================================================
   SECTION SCAFFOLD
   =========================================================== */
.section { padding-block: var(--sec-pad); position: relative; }

.sec-head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.sec-head--center { justify-content: center; }
.sec-num { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--muted); }
.sec-label { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.sec-head::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-2), transparent); }
.sec-head--center::after { display: none; }

.section__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #b4b2ae;
}
.section__sub { margin-top: 16px; max-width: 54ch; color: var(--muted); font-size: 1.06rem; }

/* ---------- Card base (glass + spotlight) ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  /* Tilt lives on `transform` (updated by JS on mouse-move); the hover lift/scale
     live on the independent `scale`/`translate` props so a tilt update never
     restarts the scale transition — that decoupling is what removes the hitch. */
  transform: perspective(900px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg));
  scale: 1;
  translate: 0 0;
  transform-style: preserve-3d;
  will-change: transform, scale, translate;
  transition: transform .18s ease-out, scale .34s var(--ease), translate .34s var(--ease),
              border-color .25s ease, background .25s ease, box-shadow .34s ease;
}
.card[data-spotlight]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(360px circle at var(--mx,50%) var(--my,0%), rgba(255,255,255,.08), transparent 60%);
  pointer-events: none;
}
.card[data-spotlight]:hover::before { opacity: 1; }
.card:hover {
  z-index: 3;
  border-color: var(--line-2);
  background: var(--surface-2);
  scale: 1.055;
  translate: 0 -4px;
  box-shadow: 0 28px 90px -42px rgba(216,221,230,.55), 0 34px 80px -42px rgba(0,0,0,.95);
}

/* ---------- Statement ---------- */
.section--statement { border-top: 1px solid var(--line); }
.statement__lead {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.7vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  max-width: 21ch;
  color: #b4b2ae;
}
.statement__cols { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.statement-card { padding: 30px 28px 32px; display: flex; flex-direction: column; gap: 13px; }
.statement-card h3 { font-family: var(--display); font-size: 1.22rem; font-weight: 500; letter-spacing: -.01em; }
.statement-card p { color: var(--muted); font-size: 1rem; line-height: 1.65; }

/* ---------- Principles ---------- */
.section--principles { border-top: 1px solid var(--line); }
.principles { margin-top: 42px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.principle { padding: 32px 28px 38px; display: flex; flex-direction: column; gap: 13px; }
.principle__idx { font-family: var(--display); font-size: 22px; color: var(--muted); }
.principle h3 { font-family: var(--display); font-size: 1.22rem; font-weight: 500; letter-spacing: -.01em; }
.principle p { color: var(--muted); font-size: .97rem; line-height: 1.6; }

/* ---------- Products ---------- */
.section--products { border-top: 1px solid var(--line); }
.products__intro { margin-bottom: 44px; }
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product { display: flex; flex-direction: column; gap: 16px; padding: 30px 28px 32px; }
.product::after {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: .35;
  transition: opacity .4s ease;
}
.product:hover { border-color: color-mix(in srgb, var(--brand) 30%, var(--line-2)); }
.product:hover::after { opacity: .8; }
.product:hover { box-shadow: 0 28px 90px -42px rgba(216,221,230,.5), 0 34px 80px -42px rgba(0,0,0,.95); }
.product__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product__logo { display: grid; place-items: center; width: 54px; height: 54px; }
.product__logo img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.product__tag {
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 40px;
  background: var(--surface);
}
.product__name { font-family: var(--display); font-weight: 500; font-size: 1.75rem; letter-spacing: -.02em; }
.product__desc { color: var(--muted); font-size: .97rem; line-height: 1.6; flex: 1; }
.product__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--text); }
.product__link-arrow { transition: transform .3s var(--ease); display: inline-block; }
.product:hover .product__link-arrow { transform: translateX(5px); }

/* ---------- Approach ---------- */
/* ---------- Direction ---------- */
.section--direction { border-top: 1px solid var(--line); }
.direction { margin-top: 40px; max-width: 60ch; display: flex; flex-direction: column; gap: 22px; }
.direction p { color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.75; }
.direction__closing {
  position: relative;
  margin-top: 6px;
  padding-left: 22px;
  color: var(--text) !important;
  font-weight: 500;
}
.direction__closing::before {
  content: ""; position: absolute; left: 0; top: .22em; bottom: .22em; width: 2px;
  background: var(--grad); border-radius: 2px;
}

.approach__platforms { margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.approach__platforms-label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-right: 6px; }
.pill {
  padding: 8px 18px; border: 1px solid var(--line-2); border-radius: 40px; font-size: 14px; font-weight: 500;
  color: var(--text); background: var(--surface);
  transition: border-color .3s ease, background .3s ease, transform .2s ease;
}
.pill:hover { border-color: rgba(255,255,255,.3); background: var(--surface-2); transform: translateY(-2px); }

/* ---------- Contact ---------- */
.section--contact { border-top: 1px solid var(--line); overflow: hidden; isolation: isolate; }
.aurora--contact .orb { opacity: .32; }
.orb--c1 { width: 40vw; height: 40vw; max-width: 480px; max-height: 480px; top: 6%; left: 8%;
  background: radial-gradient(circle, rgba(165,178,202,.18), transparent 66%); animation: drift2 24s ease-in-out infinite; }
.orb--c2 { width: 34vw; height: 34vw; max-width: 420px; max-height: 420px; bottom: 0; right: 10%;
  background: radial-gradient(circle, rgba(190,196,208,.12), transparent 66%); animation: drift3 28s ease-in-out infinite; }
.contact__title { font-family: var(--display); font-weight: 500; font-size: clamp(2.1rem, 5.4vw, 3.6rem); line-height: 1.1; letter-spacing: -.02em; color: #b4b2ae; }
.contact__sub { margin-top: 18px; max-width: 54ch; color: var(--muted); font-size: 1.08rem; }
.contact__email {
  display: inline-block; margin-top: 30px;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.4rem, 3.6vw, 2.1rem);
  letter-spacing: -.01em;
  padding: 4px 2px;
  color: var(--text);
  position: relative;
  will-change: transform;
}
.contact__email::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.contact__email:hover::after { transform: scaleX(1); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: clamp(60px, 8vw, 92px); padding-bottom: 40px; position: relative; z-index: 2; }
.footer__inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.footer__tag { margin-top: 18px; max-width: 34ch; color: var(--muted); font-size: .96rem; line-height: 1.6; }
.footer__col h4 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; margin-bottom: 16px; }
.footer__col a { display: block; padding: 7px 0; color: var(--muted); font-size: .98rem; transition: color .25s ease, padding-left .25s ease; }
.footer__col a:hover { color: var(--text); padding-left: 5px; }
.footer__bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: var(--muted-2); }

/* ===========================================================
   LEGAL PAGES
   =========================================================== */
.legal { padding-top: clamp(130px, 17vw, 180px); padding-bottom: var(--sec-pad); position: relative; }
.legal__head { margin-bottom: 48px; }
.legal__head h1 { font-family: var(--display); font-weight: 500; font-size: clamp(2rem, 5vw, 3rem); line-height: 1.08; letter-spacing: -.02em; max-width: 22ch; }
.legal__meta { margin-top: 18px; font-size: 14px; color: var(--muted-2); }
.legal__body { max-width: 760px; }
.legal__body h2 { font-family: var(--display); font-weight: 500; font-size: 1.5rem; letter-spacing: -.01em; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line); }
.legal__body h3 { font-size: 1.12rem; font-weight: 600; margin-top: 30px; color: var(--text); }
.legal__body h4 { font-size: 1rem; font-weight: 600; color: var(--text); margin-top: 24px; }
.legal__body p { margin-top: 14px; color: var(--muted); }
.legal__body ul { margin-top: 14px; padding-left: 22px; color: var(--muted); }
.legal__body li { margin-top: 7px; }
.legal__body a { color: var(--g2); text-decoration: underline; text-underline-offset: 3px; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; font-weight: 600; font-size: 14.5px; color: var(--muted); transition: color .25s ease, gap .25s ease; }
.legal__back:hover { color: var(--text); gap: 12px; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1000px) {
  .principles { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: 1fr; max-width: 540px; }
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(8,9,12,.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 26px;
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__cta { text-align: center; margin-top: 14px; }
  .nav__toggle { display: block; }

  .statement__cols { grid-template-columns: 1fr; gap: 22px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .cursor-glow { display: none; }
}

@media (max-width: 480px) {
  .principles { grid-template-columns: 1fr; }
  .products { max-width: none; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
