:root {
  /* Logo palette: cyan → blue → violet on black */
  --bg: #000000;
  --bg-elev: #0a0c12;
  --ink: #e8fbff;
  --muted: #9aa6c3;
  --line: rgba(94, 231, 255, 0.18);
  --cyan: #5ee7ff;
  --blue: #4b7bff;
  --violet: #b24dff;
  --logo-grad: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 48%, var(--violet) 100%);
  --logo-grad-soft: linear-gradient(
    135deg,
    rgba(94, 231, 255, 0.45) 0%,
    rgba(75, 123, 255, 0.35) 48%,
    rgba(178, 77, 255, 0.45) 100%
  );
  --font-display: "Instrument Sans", system-ui, sans-serif;
  --font-display-accent: "Syne", "Instrument Sans", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --max: 68rem;
  /* Syne/Instrument: keep descenders (g, y, p) fully visible */
  --lh-body: 1.7;
  --lh-display: 1.55;
  --text-descender-pad: 0.28em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(75, 123, 255, 0.22), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(94, 231, 255, 0.12), transparent 50%),
    radial-gradient(800px 500px at 90% 80%, rgba(178, 77, 255, 0.14), transparent 55%),
    var(--bg);
  line-height: var(--lh-body);
  overflow: visible;
  max-width: 100%;
}

/* Paragraph / list defaults — room for descenders site-wide */
p,
li,
dd,
figcaption,
blockquote,
td,
th,
label,
.video-note,
.section-lede,
.lede,
.explain-copy p,
.wealth-compare,
.wealth-headline,
.product-list span,
.product-figure figcaption > span,
.focus-list span,
.partner-list span {
  line-height: var(--lh-body);
  overflow: visible;
}

/* Display face (Syne) reports tight vertical metrics; pad the line box */
h1,
h2,
h3,
h4,
.section h2,
.page-hero h1,
.domain h3,
.legal h1,
.legal h2,
.team-grid h3,
.contact-line,
.brand-word,
.tagline,
.product-list strong,
.product-figure strong,
.focus-list strong,
.partner-list strong,
.steps strong,
.cookie-banner-inner strong,
.cookie-row strong {
  line-height: var(--lh-display);
  padding-block: 0.06em var(--text-descender-pad);
  overflow: visible;
}

/* Shared left accent rail — avoid border-image (clips glyph overflow in WebKit) */
.accent-rail,
.product-list li,
.focus-list li,
.partner-list li,
.product-figure figcaption {
  position: relative;
  padding-left: 0.95rem;
  border: 0;
  overflow: visible;
}

.accent-rail::before,
.product-list li::before,
.focus-list li::before,
.partner-list li::before,
.product-figure figcaption::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 2px;
  border-radius: 1px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  overflow: visible;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0 0.95rem;
  overflow: visible;
  /* No transform animation here — it clips the brand-word descender in WebKit */
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  overflow: visible;
  color: inherit;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  overflow: visible;
}

.brand-row {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.8rem;
  overflow: visible;
}

.brand-mark {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 50%;
  background: #000;
  flex-shrink: 0;
  margin-bottom: 0.1rem;
}

.brand-word {
  display: inline-flex;
  align-items: center;
  overflow: visible;
  line-height: 0;
}

.brand-word-img {
  display: block;
  height: 3.65rem;
  width: auto;
  padding-bottom: 0.22rem;
}

.brand-tagline {
  margin: 0;
  margin-left: calc(3.15rem + 0.8rem);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--muted);
  white-space: nowrap;
}

/* Body/copy trademark — avoid vertical-align:super (clips sibling descenders) */
.tm {
  font-size: 0.55em;
  font-weight: 600;
  margin-left: 0.1em;
  letter-spacing: 0;
  position: relative;
  top: -0.55em;
  vertical-align: baseline;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 5rem);
  display: grid;
  place-items: center;
  padding: 2rem 0 4rem;
  isolation: isolate;
}

.hero-field {
  position: absolute;
  inset: 8% 5% 12%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16), transparent 18%),
    radial-gradient(circle at 50% 45%, rgba(94, 231, 255, 0.18), transparent 42%),
    radial-gradient(circle at 58% 48%, rgba(178, 77, 255, 0.16), transparent 48%);
  filter: blur(18px);
  animation: pulse 7s ease-in-out infinite;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
  max-width: 38rem;
  overflow: visible;
  animation: rise 1s 0.12s ease both;
}

.hero-logo {
  width: min(22rem, 78vw);
  height: auto;
  border-radius: 1rem;
  background: #000;
  filter: drop-shadow(0 0 28px rgba(75, 123, 255, 0.35));
}

.tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  padding-bottom: 0.2em;
  overflow: visible;
  background: linear-gradient(90deg, #e8fbff 0%, #6ba0ff 45%, #c44dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Extra paint box so Syne descenders aren't clipped by background-clip */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
}

.cta.primary {
  color: #05060a;
  background: linear-gradient(105deg, var(--cyan), var(--blue) 55%, var(--violet));
}

.cta.ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(11, 14, 22, 0.55);
}

.cta.ghost:hover,
.cta.ghost:focus-visible {
  border-color: rgba(94, 231, 255, 0.45);
}

.section {
  padding: 4.5rem 0 1rem;
  border-top: 1px solid var(--line);
  overflow: visible;
  animation: rise 0.9s ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-display-accent);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  line-height: var(--lh-body);
  overflow: visible;
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.3;
  padding-bottom: 0.22em;
  overflow: visible;
}

.section-lede {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: var(--lh-body);
  overflow: visible;
}

.focus-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
}

.focus-list li {
  display: grid;
  gap: 0.45rem;
}

.focus-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.focus-list span {
  display: block;
  color: var(--muted);
}

.contact-line {
  margin: 1.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.contact-line a {
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--blue);
}

.foot {
  margin-top: 4rem;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0.75rem 0 0;
  align-items: center;
}

.foot-legal a,
.foot-legal .linkish {
  color: var(--muted);
  text-decoration: none;
}

.foot-legal a:hover,
.foot-legal a:focus-visible,
.foot-legal .linkish:hover,
.foot-legal .linkish:focus-visible {
  color: var(--cyan);
  text-decoration: underline;
}

.foot-legal a[aria-current="page"] {
  color: var(--ink);
}

button.linkish {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.foot-mail {
  margin: 0.35rem 0 0;
}

.foot-mail a {
  color: var(--ink);
  text-decoration: none;
}

.foot-mail a:hover,
.foot-mail a:focus-visible {
  color: var(--cyan);
  text-decoration: underline;
}

.foot-contact-note {
  margin: 0.45rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: var(--lh-body);
}

.contact-policy {
  margin: 0.85rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: var(--lh-body);
}

.nav a.is-active {
  color: var(--ink);
}

.nav-cta {
  color: var(--ink) !important;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(94, 231, 255, 0.45);
}

.page-hero {
  padding: 3rem 0 1.5rem;
  overflow: visible;
  animation: rise 0.8s ease both;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  max-width: 22ch;
  line-height: 1.28;
  padding-bottom: 0.2em;
  overflow: visible;
}

.lede.wide {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-lede.follow {
  margin-top: 1rem;
}

.section-lede a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 231, 255, 0.35);
}

.section-lede a:hover,
.section-lede a:focus-visible {
  border-bottom-color: var(--cyan);
}

.inline-links {
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  color: var(--muted);
}

.inline-links a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 231, 255, 0.35);
}

.inline-links a:hover,
.inline-links a:focus-visible {
  border-bottom-color: var(--cyan);
}

.book-refs {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  max-width: 42rem;
}

.book-refs li {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(8, 10, 16, 0.55);
}

.book-refs-primary {
  border-color: rgba(94, 231, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(75, 123, 255, 0.08);
  padding: 0.75rem 0.9rem;
}

.book-refs .book-title {
  margin: 0;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.book-refs .book-title a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 231, 255, 0.35);
}

.book-refs .book-title a:hover,
.book-refs .book-title a:focus-visible {
  border-bottom-color: var(--cyan);
}

.book-refs .book-note {
  font-weight: 500;
  color: var(--muted);
}

.book-refs .book-title + p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.book-refs a {
  color: var(--ink);
}

.team-grid a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 231, 255, 0.35);
}

.team-grid a:hover,
.team-grid a:focus-visible {
  border-bottom-color: var(--cyan);
}

.home-strip {
  margin-bottom: 2rem;
}

.explain-window {
  margin-top: 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(#05060a, #05060a) padding-box,
    var(--logo-grad) border-box;
  box-shadow:
    0 0 0 1px rgba(94, 231, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(75, 123, 255, 0.14);
}

.explain-window-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, rgba(94, 231, 255, 0.55), rgba(75, 123, 255, 0.45), rgba(178, 77, 255, 0.55)) 1;
  background: linear-gradient(
    90deg,
    rgba(94, 231, 255, 0.1) 0%,
    rgba(75, 123, 255, 0.07) 50%,
    rgba(178, 77, 255, 0.12) 100%
  );
}

.explain-window-bar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #3a4158;
}

/* Traffic lights → logo triad */
.explain-window-bar span:nth-child(1) {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(94, 231, 255, 0.55);
}

.explain-window-bar span:nth-child(2) {
  background: var(--blue);
  box-shadow: 0 0 8px rgba(75, 123, 255, 0.55);
}

.explain-window-bar span:nth-child(3) {
  background: var(--violet);
  box-shadow: 0 0 8px rgba(178, 77, 255, 0.55);
}

.explain-window-bar em {
  margin-left: 0.6rem;
  font-style: normal;
  font-size: 0.8rem;
  background: var(--logo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.explain-window-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  padding: 1.35rem 1.35rem 1.5rem;
  background:
    radial-gradient(700px 220px at 0% 0%, rgba(94, 231, 255, 0.07), transparent 55%),
    radial-gradient(600px 220px at 100% 100%, rgba(178, 77, 255, 0.08), transparent 55%),
    #05060a;
}

.explain-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.explain-copy p strong {
  color: var(--ink);
  font-weight: 600;
}

.plain-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
}

.plain-list li {
  margin: 0.35rem 0;
}

.explain-media {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    var(--logo-grad) border-box;
  box-shadow: 0 0 24px rgba(75, 123, 255, 0.2);
}

.video-frame:fullscreen,
.video-frame:-webkit-full-screen {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  border: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame:fullscreen video,
.video-frame:-webkit-full-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}

.video-clickable {
  cursor: pointer;
}

.video-return-btn {
  position: absolute;
  left: 50%;
  bottom: 12%;
  z-index: 5;
  transform: translateX(-50%);
  min-height: 2.85rem;
  padding: 0.75rem 1.4rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #05060a;
  background: linear-gradient(105deg, var(--cyan), var(--blue) 55%, var(--violet));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 24px rgba(94, 231, 255, 0.25);
}

.video-return-btn:hover,
.video-return-btn:focus-visible {
  outline: none;
  filter: brightness(1.06);
  transform: translateX(-50%) translateY(-1px);
}

.video-return-btn[hidden] {
  display: none !important;
}

.video-frame:fullscreen .video-return-btn,
.video-frame:-webkit-full-screen .video-return-btn {
  bottom: max(12%, 3.5rem);
  font-size: 1.1rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.7rem;
}

.domain-media .video-frame {
  box-shadow: 0 0 28px rgba(178, 77, 255, 0.15);
}

.video-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.domain {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.domain h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.domain > p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 42rem;
}

.domain-media {
  margin: 1rem 0 1.25rem;
  max-width: 36rem;
}

.domain-media.domain-media-stack {
  max-width: 42rem;
  display: grid;
  gap: 1.25rem;
}

.domain-media .media-block {
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.enlarge-trigger {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
  color: inherit;
  font: inherit;
}

.enlarge-trigger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 12px;
}

.diagram-frame {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    var(--logo-grad) border-box;
  box-shadow: 0 0 24px rgba(75, 123, 255, 0.18);
}

.enlarge-hint {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(5, 7, 14, 0.82);
  border: 1px solid var(--line);
  pointer-events: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-card {
  position: relative;
  width: min(100%, 68rem);
  max-height: min(92vh, 56rem);
  overflow: auto;
  padding: 0.65rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background:
    linear-gradient(#05070e, #05070e) padding-box,
    var(--logo-grad) border-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.lightbox-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: rgba(5, 7, 14, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

.domain-media.markets-story {
  max-width: 42rem;
  display: grid;
  gap: 1.1rem;
}

.wealth-figure {
  margin: 0;
  padding: 1px;
  border-radius: 12px;
  background: var(--logo-grad);
  box-shadow: 0 0 28px rgba(75, 123, 255, 0.18);
}

.wealth-figure img {
  width: 100%;
  height: auto;
  border-radius: 11px;
  display: block;
  background: #05060a;
}

.wealth-figure figcaption {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.wealth-callout {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background:
    linear-gradient(#05060a, #05060a) padding-box,
    var(--logo-grad) border-box;
}

.wealth-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.wealth-headline {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: var(--lh-body);
}

.wealth-headline strong,
.wealth-compare strong,
.wealth-stats strong,
.wealth-exact {
  font-family: var(--font-body);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.wealth-headline strong {
  white-space: nowrap;
  font-weight: 700;
  background: var(--logo-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wealth-compare strong {
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink);
}

.wealth-exact {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.wealth-compare {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.wealth-stats {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

.wealth-stats li {
  display: grid;
  gap: 0.15rem;
}

.wealth-stats span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.wealth-stats strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.product-list li {
  display: grid;
  gap: 0.55rem;
}

.product-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.product-list span {
  display: block;
  color: var(--muted);
}

.product-media-grid {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 1.35rem;
}

.product-figure {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.product-figure img {
  width: 100%;
  max-height: 14rem;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #05060a;
}

.product-figure figcaption {
  display: grid;
  gap: 0.4rem;
}

.product-figure strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.product-figure figcaption > span {
  color: var(--muted);
  font-size: 0.95rem;
}

.product-figure .img-credit {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: color-mix(in srgb, var(--muted) 85%, transparent);
}

.product-figure .img-credit a {
  color: var(--cyan);
  text-decoration: none;
}

.product-figure .img-credit a:hover {
  text-decoration: underline;
}

@media (min-width: 720px) {
  .product-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .product-figure img {
    max-height: 11.5rem;
  }
}

.team-grid {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1.75rem;
}

.team-grid li {
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.team-photo {
  width: min(100%, 11.5rem);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #05060a;
  margin-bottom: 0.45rem;
  box-shadow: 0 0 24px rgba(75, 123, 255, 0.18);
}

.team-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.team-grid .role {
  margin: 0.15rem 0 0.35rem;
  color: var(--cyan);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.team-grid p:last-child {
  margin: 0;
  color: var(--muted);
}

.partner-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.partner-list li {
  display: grid;
  gap: 0.4rem;
}

.partner-list strong {
  display: block;
  font-family: var(--font-display);
}

.partner-list span {
  display: block;
  color: var(--muted);
}

.steps {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.15rem;
  counter-reset: step;
}

.steps li {
  display: grid;
  gap: 0.25rem;
  padding-left: 2.6rem;
  position: relative;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #05060a;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.steps strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.steps span {
  color: var(--muted);
}

@media (max-width: 860px) {
  .explain-window-body {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    /* transform:none — a lingering transform makes WebKit clip descenders (g, y, p) */
    transform: none;
  }
}

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

@media (max-width: 640px) {
  .page {
    width: min(100% - 1.5rem, var(--max));
  }

  .brand-mark {
    width: 2.7rem;
    height: 2.7rem;
  }

  .brand-word-img {
    height: 2.85rem;
  }

  .brand-tagline {
    margin-left: calc(2.7rem + 0.8rem);
    font-size: 0.7rem;
  }

  .nav {
    gap: 0.85rem;
    font-size: 0.88rem;
  }

  .hero {
    min-height: calc(100vh - 4.5rem);
    padding-top: 1rem;
  }

  .cta-row {
    width: 100%;
  }

  .cta {
    flex: 1 1 10rem;
  }

  .page-hero h1 {
    max-width: none;
  }
}

@supports not (animation-timeline: view()) {
  .section {
    animation: none;
    opacity: 1;
  }
}

/* —— Legal / GDPR —— */
.legal {
  padding: 2.5rem 0 1rem;
  max-width: 44rem;
}

.legal h1 {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  letter-spacing: -0.03em;
}

.legal-meta {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.legal h3 {
  margin: 1.25rem 0 0.4rem;
  font-size: 1.02rem;
}

.legal p,
.legal li {
  color: color-mix(in srgb, var(--ink) 88%, var(--muted));
}

.legal ul {
  padding-left: 1.2rem;
}

.legal a {
  color: var(--cyan);
}

.legal code {
  font-size: 0.88em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(94, 231, 255, 0.08);
  border: 1px solid var(--line);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
}

.legal-table th {
  background: rgba(94, 231, 255, 0.06);
  color: var(--ink);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
  pointer-events: none;
}

.cookie-banner-inner {
  pointer-events: auto;
  width: min(100%, 42rem);
  margin-inline: auto;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid transparent;
  background:
    linear-gradient(#070a12, #070a12) padding-box,
    var(--logo-grad) border-box;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner-inner p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner-inner strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.cookie-banner-inner a {
  color: var(--cyan);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .cta {
  font-size: 0.88rem;
  padding: 0.45rem 0.85rem;
}

.cookie-prefs {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.65);
}

.cookie-prefs[hidden] {
  display: none !important;
}

.cookie-prefs-card {
  width: min(100%, 28rem);
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #070a12;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.cookie-prefs-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.cookie-prefs-card > p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-fieldset {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  display: grid;
  gap: 0.75rem;
}

.cookie-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.cookie-row strong {
  display: block;
  font-size: 0.95rem;
}

.cookie-row small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: var(--lh-body);
}

.cookie-row input {
  margin-top: 0.2rem;
  accent-color: var(--cyan);
}

.cookie-more {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.cookie-more a {
  color: var(--cyan);
}

@media (max-width: 640px) {
  .cookie-actions .cta {
    flex: 1 1 100%;
    text-align: center;
    justify-content: center;
  }
}

