/* ================================================================
   CIPHER BANK — Premium Landing Page Styles
   Dark OLED + Motion-Driven + Glassmorphism
================================================================ */

/* ──────────────────────────────────────────────────────────────
   DESIGN TOKENS
────────────────────────────────────────────────────────────── */
:root {
  /* Background */
  --bg-base:        #000000;
  --bg-surface:     #0A0A0A;
  --bg-card:        #111111;
  --bg-card-el:     #1A1A1A;

  /* Accent */
  --accent:         #E94E1B;
  --accent-hover:   #FF5E28;
  --accent-dim:     rgba(233, 78, 27, 0.15);
  --success:        #22C55E;

  /* Text */
  --text-primary:   #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted:     #8A8A8A;
  --text-subtle:    #444444;

  /* Borders */
  --border:         rgba(255, 255, 255, 0.08);
  --border-light:   rgba(255, 255, 255, 0.14);

  /* Fonts */
  --font-sans:   'Inter Tight', system-ui, sans-serif;
  --font-serif:  'Instrument Serif', Georgia, serif;
  --font-mono:   'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --section-pad:    clamp(80px, 10vw, 160px);
  --container-max:  1440px;
  --container-pad:  clamp(20px, 5vw, 80px);

  /* Easing */
  --ease-out-expo:  cubic-bezier(0.19, 1, 0.22, 1);
  --ease-reveal:    cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index scale */
  --z-base:    10;
  --z-overlay: 20;
  --z-nav:     30;
  --z-modal:   50;
  --z-cursor:  100;
  --z-curtain: 200;
}

/* ──────────────────────────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles scrolling */
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* Custom cursor replaces on desktop */
}

@media (pointer: coarse) {
  body { cursor: auto; }
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

ul { list-style: none; }

/* ──────────────────────────────────────────────────────────────
   TYPOGRAPHY UTILITIES
────────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
}

.text-center { text-align: center; }

.sup-accent {
  color: var(--accent);
  font-size: 0.5em;
  vertical-align: super;
  font-family: var(--font-mono);
}

/* ──────────────────────────────────────────────────────────────
   LAYOUT
────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ──────────────────────────────────────────────────────────────
   CUSTOM CURSOR
────────────────────────────────────────────────────────────── */
#cursor-dot,
#cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: var(--z-cursor);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  top: 0;
  left: 0;
}

#cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              background 0.3s,
              border-color 0.3s;
}

#cursor-ring.is-hovering {
  width: 64px;
  height: 64px;
  background: rgba(233, 78, 27, 0.12);
  border-color: var(--accent);
}

#cursor-ring.is-image {
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

.cursor-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}

#cursor-ring.is-image .cursor-label { opacity: 1; }

@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
}

/* ──────────────────────────────────────────────────────────────
   PAGE LOAD CURTAIN
────────────────────────────────────────────────────────────── */
#page-curtain {
  position: fixed;
  inset: 0;
  z-index: var(--z-curtain);
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.curtain-brand {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(10px);
}

.curtain-name { color: var(--text-primary); }
.curtain-bank { color: var(--accent); }

/* ──────────────────────────────────────────────────────────────
   MOBILE NAV OVERLAY
────────────────────────────────────────────────────────────── */
#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) + 5);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(16px, 3vw, 40px) clamp(28px, 4vh, 52px);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
}

#mobile-nav.is-open {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

/* Top bar */
.mnav__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(16px, 3vw, 40px);
}

.mnav__top-logo {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}

.mnav__top-logo--accent { color: var(--accent); }

.mnav__close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s, color 0.2s;
}

.mnav__close:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Cards grid — 3 columns */
.mnav__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.mnav__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: clamp(20px, 2vw, 28px) clamp(18px, 2vw, 24px);
}

.mnav__category {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 18px;
}

.mnav__card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mnav__link {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.18s;
  line-height: 1.2;
  display: block;
}

.mnav__link:hover { color: #fff; }

/* Orange portal CTA */
.mnav__portal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: var(--accent);
  border-radius: 12px;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  transition: opacity 0.2s;
}

.mnav__portal:hover { opacity: 0.88; }

@media (max-width: 768px) {
  #mobile-nav {
    justify-content: flex-start;
    padding-top: 88px;
    overflow-y: auto;
  }
  .mnav__cards { grid-template-columns: 1fr; }
  .mnav__card { padding: 18px 20px; }
  .mnav__card ul { gap: 10px; }
  .mnav__link { font-size: 17px; }
}

/* ──────────────────────────────────────────────────────────────
   FLOATING NAV
────────────────────────────────────────────────────────────── */
#nav-floating {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 0 clamp(16px, 3vw, 40px);
  pointer-events: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-pill {
  pointer-events: all;
  display: flex;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(143, 142, 142, 0.7);
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
}

.nav-pill--ticker {
  padding: 10px 18px;
  gap: 10px;
}

.nav-pill--logo {
  padding: 12px 24px;
  flex-direction: column;
  gap: 2px;
  pointer-events: all;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.4s, border-color 0.4s;
}

#nav-floating.scrolled .nav-pill--logo {
  opacity: 0;
  transform: translateY(-6px) scale(0.95);
  pointer-events: none;
}

.nav-pill--cta {
  padding: 8px 8px 8px 18px;
  gap: 12px;
}

/* Nav scrolled state */
#nav-floating.scrolled .nav-pill {
  background: rgba(5, 5, 5, 0.92);
  border-color: var(--border);
}


/* Logo pill */
.nav-logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-logo-name { color: var(--text-primary); }
.nav-logo-bank { color: var(--accent); }

.nav-est {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
}

/* CTA pill */
.btn-join {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}

.btn-join:hover { background: var(--accent-hover); }
.btn-join:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-active span:first-child { transform: translateY(3.25px) rotate(45deg); }
.hamburger.is-active span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* ──────────────────────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.btn--sm {
  padding: 11px 22px;
  font-size: 13px;
}

.btn__arrow {
  transition: transform 0.3s var(--ease-out-expo);
  flex-shrink: 0;
}

.btn:hover .btn__arrow { transform: translateX(4px); }

/* ──────────────────────────────────────────────────────────────
   LINK ARROW
────────────────────────────────────────────────────────────── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.link-arrow:hover {
  color: var(--text-primary);
  border-bottom-color: var(--border-light);
}

.link-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.link-arrow__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out-expo);
  flex-shrink: 0;
}

.link-arrow:hover .link-arrow__circle {
  background: var(--accent-dim);
  border-color: var(--accent);
  transform: rotate(45deg);
}

/* ──────────────────────────────────────────────────────────────
   §1  HERO
────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.1) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--container-pad) clamp(80px, 10vh, 140px);
  max-width: 900px;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  opacity: 0;
}

.hero__headline {
  font-size: clamp(26px, 4vw, 64px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.hero__headline .char {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
}

.hero__actions {
  opacity: 0;
}


/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: clamp(28px, 4vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero__scroll-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

@media (max-width: 768px) {
  .hero__scroll { display: none; }
}

/* ──────────────────────────────────────────────────────────────
   §2  MISSION
────────────────────────────────────────────────────────────── */
.mission {
  padding: var(--section-pad) 0;
  background: var(--bg-base);
}

.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.mission__headline {
  font-size: clamp(36px, 4.33vw, 72px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.mission__headline em {
  font-style: normal;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
}

.mission__headline .line {
  display: block;
  overflow: hidden;
}

.mission__body {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.portrait-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: grayscale(30%) contrast(1.05);
  transition: filter 0.6s;
}

.portrait-wrap:hover .portrait-img {
  filter: grayscale(0%) contrast(1);
}

.portrait-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 12px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.portrait-label__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.portrait-label__title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────────────────────────
   §3  ACCOLADES MARQUEE
────────────────────────────────────────────────────────────── */
.accolades {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-outer {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeSlide 30s linear infinite;
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0 clamp(24px, 4vw, 56px);
  white-space: nowrap;
  color: var(--text-muted);
  filter: grayscale(1) opacity(0.5);
  cursor: default;
  transition: filter 0.3s, color 0.3s;
}

.marquee-item:hover {
  filter: grayscale(0) opacity(1);
  color: var(--text-primary);
}

.marquee-div {
  color: var(--text-subtle);
  font-size: 18px;
  flex-shrink: 0;
}

@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────────────────────
   §4  FEATURE CARDS
────────────────────────────────────────────────────────────── */
.features {
  padding: var(--section-pad) 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding: clamp(48px, 7vw, 100px) 0;
  border-top: 1px solid var(--border);
}

.feature-row:last-of-type {
  border-bottom: 1px solid var(--border);
}

.feature-row--img-left .feature-row__text { order: 2; }
.feature-row--img-left .feature-row__media { order: 1; }

.feature-row__headline {
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.feature-row__desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.feature-row__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.feature-row__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--text-muted);
  line-height: 1.5;
}

.feature-row__bullets li svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
}

.feature-row__hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 32px;
}

.feature-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  transition: gap 0.3s var(--ease-out-expo), text-decoration-color 0.2s;
  cursor: pointer;
}

.feature-row__cta:hover {
  gap: 18px;
  text-decoration-color: var(--accent);
}

.feature-row__cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.feature-row__cta-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.feature-row__cta:hover .feature-row__cta-badge {
  background: var(--accent);
  border-color: var(--accent);
}

.feature-row__media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  clip-path: inset(0 100% 0 0);
}

.feature-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.feature-row__media:hover .feature-row__img {
  transform: scale(1.04);
}

.features__footnotes {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.features__footnotes p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-subtle);
}

/* ──────────────────────────────────────────────────────────────
   §5  BENEFITS — HORIZONTAL SCROLL
────────────────────────────────────────────────────────────── */
.benefits {
  padding-top: var(--section-pad);
}

.benefits__intro {
  margin-bottom: 60px;
}

.benefits__title {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 8px;
}

.benefits__title .line {
  display: block;
  overflow: hidden;
}

.benefits__pinned {
  position: relative;
  overflow: hidden;
  padding-top: clamp(80px, 10vh, 130px);
  padding-bottom: var(--section-pad);
}

.benefits__track {
  display: flex;
  gap: 20px;
  padding: 0 var(--container-pad) 0 var(--container-pad);
  will-change: transform;
}

.benefit-card {
  flex: 0 0 360px;
  min-height: 420px;
  border-radius: 6px;
  background: #34312f;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: default;
}

.benefit-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: #1c1916;
}

.benefit-card__num { display: none; }

.benefit-card__title {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 16px;
}

.benefit-card__body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 28px;
}

/* Underline + circle-arrow CTA */
.benefit-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  margin-top: auto;
  transition: gap 0.3s var(--ease-out-expo), text-decoration-color 0.2s;
}

.benefit-card__cta:hover {
  gap: 14px;
  text-decoration-color: rgba(255, 255, 255, 0.65);
}

.benefit-card__cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.benefit-card__cta-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.benefit-card__cta:hover .benefit-card__cta-circle {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

/* Brand icons row (Card 2) */
.benefit-card__brand-icons {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.benefit-card__brand-icons svg {
  color: rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
}

/* Brand chips */
.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.brand-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 13px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.02);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.brand-chip:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}
.brand-chip--btc {
  color: var(--accent);
  border-color: rgba(233, 78, 27, 0.35);
  background: rgba(233, 78, 27, 0.06);
}

/* Stacked notification card wrapper */
.notif-stack {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.notif-stack::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  top: 8px;
  bottom: 0;
  background: #2d2b28;
  border-radius: 10px;
  z-index: 2;
}

.notif-stack::before {
  content: '';
  position: absolute;
  left: 9%;
  right: 9%;
  top: 16px;
  bottom: 0;
  background: #232120;
  border-radius: 10px;
  z-index: 1;
}

.notif-stack .notif-card {
  position: relative;
  z-index: 3;
  margin-bottom: 0;
}

/* Notification card — Xapo-style */
.notif-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  background: #3a3730;
  margin-bottom: 28px;
}

.notif-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-card__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.notif-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.notif-card__name {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.notif-card__time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.notif-card__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Benefits arrow nav pill */
.benefits__nav {
  position: absolute;
  bottom: clamp(28px, 4vh, 52px);
  right: var(--container-pad);
  display: flex;
  align-items: center;
  background: rgba(18, 16, 13, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10;
}

.benefits__nav-btn {
  width: 54px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 50px;
}

.benefits__nav-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.benefits__nav-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.benefits__nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .benefits__nav { display: none; }
}

/* ──────────────────────────────────────────────────────────────
   §5b  CALCULATOR
────────────────────────────────────────────────────────────── */
.calc-section {
  padding: var(--section-pad) 0;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.calc-section__hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0 0 clamp(48px, 6vw, 80px);
}

.calc-section__headline {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  max-width: 560px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

/* Period tabs */
.calc-tabs {
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
}

.calc-tab {
  flex: 1;
  background: none;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 18px 12px;
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  text-align: center;
}

.calc-tab:last-child { border-right: none; }
.calc-tab:hover { color: rgba(255,255,255,0.7); }
.calc-tab.is-active { color: var(--accent); background: rgba(233,78,27,0.06); }

/* Input rows */
.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.calc-input-group {
  background: #050505;
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-input-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.calc-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  width: 100%;
  min-width: 0;
}

.calc-input::placeholder { color: rgba(255,255,255,0.2); }

.calc-input-currency {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 12px;
}

.calc-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

/* Results panel */
.calc-results {
  background: #111;
  border-radius: 12px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-results__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
}

.calc-results__label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.calc-results__period {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 16px;
}

.calc-row:last-child { border-bottom: none; }

.calc-row__key {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 1.1vw, 14px);
  color: rgba(255,255,255,0.5);
}

.calc-row__info {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  cursor: help;
}

.calc-row__val {
  font-size: clamp(13px, 1.1vw, 14px);
  font-weight: 500;
  color: var(--text-primary);
  text-align: right;
}

.calc-row__val--accent { color: var(--accent); }

.calc-ltv-btns {
  display: flex;
  gap: 4px;
}

.calc-ltv-btn {
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-sans);
}

.calc-ltv-btn.is-active {
  background: var(--accent);
  color: #fff;
}

.calc-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  padding-top: 16px;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 8px;
}

@media (max-width: 860px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-inputs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .calc-inputs { grid-template-columns: 1fr; }
  .calc-tabs { flex-wrap: wrap; }
}

/* ──────────────────────────────────────────────────────────────
   §6  SUPPORT
────────────────────────────────────────────────────────────── */
/* ──────────────────────────────────────────────────────────────
   §6  SUPPORT — white editorial
────────────────────────────────────────────────────────────── */
.support {
  padding: var(--section-pad) 0;
  background: #ffffff;
}

.support__rule {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 0 0 clamp(48px, 6vw, 80px);
}

.support__rule--bottom {
  margin: 0;
}

.support__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}

.support__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

.support__headline {
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.0;
  color: #000000;
  margin: 0;
}

.support__intro-body {
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.75;
  align-self: end;
}

/* Support items */
.support__items {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.support__item-rule {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0 0 28px;
}

.support__item-inner {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  padding-bottom: 40px;
}

.support__item-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(0, 0, 0, 0.25);
  letter-spacing: 0.12em;
  padding-top: 5px;
}

.support__item-title {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.2;
}

.support__item-body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.48);
  line-height: 1.75;
  max-width: 520px;
}

.support__item-stat {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: #000000;
  line-height: 1;
  white-space: nowrap;
}

/* Footer row */
.support__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(28px, 3vw, 44px);
  gap: 24px;
  flex-wrap: wrap;
}

.support__cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(0, 0, 0, 0.3);
  transition: text-decoration-color 0.2s;
}

.support__cta:hover {
  text-decoration-color: #000000;
}

.support__footer-note {
  font-size: 12px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.35);
  max-width: 380px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .support__header { grid-template-columns: 1fr; }
  .support__item-inner { grid-template-columns: 36px 1fr; }
  .support__item-stat { display: none; }
  .support__footer { flex-direction: column; align-items: flex-start; }
}

/* ──────────────────────────────────────────────────────────────
   §7  TESTIMONIALS
────────────────────────────────────────────────────────────── */
/* ──────────────────────────────────────────────────────────────
   §7  TESTIMONIALS + STATS — "The Ledger"
────────────────────────────────────────────────────────────── */
.testimonials {
  padding: var(--section-pad) 0;
  background: #000000;
}

/* Header meta row */
.testi-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.testi-meta__tag,
.testi-meta__year {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

/* Shared HR */
.testi-rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 clamp(36px, 4.5vw, 60px);
}

/* Zone label */
.testi-zone__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: clamp(32px, 4vw, 52px);
}

/* ── Crunching The Numbers (mn- namespace) ── */
.mn-wrapper {
  --mn-bar-bg:     #1a1a1f;
  --mn-bar-dashed: rgba(255, 107, 26, 0.12);
  --mn-border:     #26262b;
  --mn-text:       #f5f5f7;
  --mn-text-dim:   #8a8a92;
  --mn-text-faint: #4a4a52;
  --mn-accent:     #ff6b1a;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.mn-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.mn-title {
  font-size: 64px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--mn-text);
}

.mn-description {
  align-self: end;
  color: var(--mn-text-dim);
  font-size: 16px;
  line-height: 1.6;
  max-width: 460px;
  justify-self: end;
}

.mn-metrics {
  display: flex;
  align-items: flex-start;
  margin-bottom: 64px;
}

.mn-metric { flex: 1; }

.mn-metric__divider {
  width: 1px;
  align-self: stretch;
  background: var(--mn-border);
  margin: 0 clamp(24px, 3vw, 48px);
  flex-shrink: 0;
}

.mn-metric__num {
  display: block;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--mn-text);
  line-height: 1;
  margin-bottom: 12px;
}

.mn-metric:first-child .mn-metric__num { color: var(--mn-accent); }

.mn-metric__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mn-text-faint);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mn-metrics { flex-wrap: wrap; gap: 32px; }
  .mn-metric { flex: 0 0 calc(50% - 16px); }
  .mn-metric__divider { display: none; }
}

.mn-tabs {
  display: flex;
  gap: 48px;
  border-bottom: 1px solid var(--mn-border);
  margin-bottom: 80px;
  overflow-x: auto;
  scrollbar-width: none;
}
.mn-tabs::-webkit-scrollbar { display: none; }

.mn-tab {
  background: none;
  border: none;
  color: var(--mn-text-faint);
  font-size: 15px;
  font-family: var(--font-sans);
  padding: 0 0 18px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.mn-tab:hover { color: var(--mn-text-dim); }
.mn-tab.mn-active { color: var(--mn-text); }
.mn-tab.mn-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--mn-accent);
}

.mn-chart {
  position: relative;
  padding: 40px 0 20px;
}

.mn-gridlines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.mn-gridline {
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--mn-border) 0,
    var(--mn-border) 3px,
    transparent 3px,
    transparent 7px
  );
  opacity: 0.4;
}

.mn-row {
  display: flex;
  align-items: center;
  height: 64px;
  position: relative;
  margin-bottom: 4px;
}

.mn-row.mn-benchmark .mn-bar {
  border: 1px dashed var(--mn-accent);
  background: var(--mn-bar-dashed);
  opacity: 0;
  transform: translateX(-10px);
  animation: mnFadeSlide 0.7s ease forwards;
}
.mn-row.mn-benchmark .mn-label {
  position: absolute;
  color: var(--mn-text);
  font-size: 13px;
  line-height: 1.4;
  padding-left: 16px;
  opacity: 0;
  animation: mnFadeIn 0.6s ease forwards;
  animation-delay: 0.4s;
}
.mn-sub {
  color: var(--mn-text-dim);
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

.mn-spacer { height: 60px; }

.mn-row.mn-competitor .mn-bar,
.mn-row.mn-featured .mn-bar {
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  width: 0;
  opacity: 0;
  transition: none;
}
.mn-row.mn-competitor .mn-bar {
  background: var(--mn-bar-bg);
  animation: mnGrowBar 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mn-row.mn-featured .mn-bar {
  background: var(--mn-accent);
  color: #fff;
  animation: mnGrowBar 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  font-weight: 500;
}

.mn-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.mn-brand-wordmark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
}

.mn-bar-label { font-size: 14px; white-space: nowrap; }
.mn-bar-value { margin-left: 14px; font-variant-numeric: tabular-nums; font-size: 14px; }
.mn-row.mn-competitor .mn-bar-value { color: var(--mn-text); }
.mn-row.mn-featured .mn-bar-value  { color: #fff; font-weight: 600; }

.mn-row.mn-competitor .mn-tick {
  width: 2px;
  height: 48px;
  background: var(--mn-accent);
  margin-left: -2px;
}

.mn-quote-block {
  margin-top: 120px;
  padding-top: 60px;
  border-top: 1px solid var(--mn-border);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}
.mn-quote-mark {
  font-size: 80px;
  line-height: 0.8;
  color: var(--mn-accent);
  font-weight: 300;
}
.mn-quote-text {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: -0.01em;
  max-width: 820px;
  color: var(--mn-text);
}
.mn-quote-attribution {
  margin-top: 28px;
  font-size: 13px;
  color: var(--mn-text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mn-name { color: var(--mn-text); margin-right: 14px; }

@keyframes mnGrowBar {
  0%   { width: 0; opacity: 0; }
  10%  { opacity: 1; }
  100% { opacity: 1; }
}
@keyframes mnFadeSlide { to { opacity: 1; transform: translateX(0); } }
@keyframes mnFadeIn    { to { opacity: 1; } }

@media (max-width: 900px) {
  .mn-header { grid-template-columns: 1fr; gap: 24px; }
  .mn-title { font-size: 40px; }
  .mn-description { justify-self: start; }
  .mn-tabs { gap: 24px; }
  .mn-quote-text { font-size: 20px; }
  .mn-quote-block { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Quotes ── */
.testi-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vw, 64px);
  margin-bottom: clamp(48px, 6vw, 80px);
}

.testi-quote__text {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 32px;
}

.testi-quote__rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 20px;
}

.testi-quote__name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}

.testi-quote__role {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.28);
}

/* ── Bottom row ── */
.testi-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(28px, 3vw, 44px);
  gap: 24px;
  flex-wrap: wrap;
}

.testi-bottom__note {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
}

.testi-bottom__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  transition: text-decoration-color 0.2s;
}

.testi-bottom__cta:hover { text-decoration-color: #ffffff; }

@media (max-width: 1024px) {
  .testi-quotes { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .testi-quotes { grid-template-columns: 1fr; }
  .testi-bottom { flex-direction: column; align-items: flex-start; }
}

/* ──────────────────────────────────────────────────────────────
   §8  CTA SECTION
────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-section__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.55);
  z-index: 0;
}


.cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-section__headline {
  font-size: clamp(48px, 7.5vw, 108px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
}

.cta-section__body {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 560px;
}

.btn--cta {
  padding: 18px 40px;
  font-size: 16px;
  margin-top: 8px;
}

/* ──────────────────────────────────────────────────────────────
   §9  FAQ — 2-column accordion (Xapo-inspired)
────────────────────────────────────────────────────────────── */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg-base);
}

.faq__header {
  margin-bottom: clamp(40px, 5vw, 72px);
}

.faq__title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
}

.faq__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(40px, 6vw, 100px);
}

.faq__col { display: flex; flex-direction: column; }

.faq__item { display: flex; flex-direction: column; }

.faq__rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0;
  transition: border-color 0.3s;
}

.faq__item--open .faq__rule { border-color: rgba(255,255,255,0.25); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq__q:hover { color: rgba(255,255,255,0.7); }

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s;
}

.faq__item--open .faq__icon {
  transform: rotate(180deg);
  color: rgba(255,255,255,0.8);
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__a:not([hidden]) { max-height: 300px; }

.faq__a[hidden] { display: block !important; }

.faq__a p {
  padding-bottom: 24px;
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .faq__cols { grid-template-columns: 1fr; }
  .faq__title { font-size: 36px; }
}

/* ──────────────────────────────────────────────────────────────
   SERVICE CARDS — white bg, image left + text right
────────────────────────────────────────────────────────────── */
.svc-cards {
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 16px);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 60px);
}

.svc-card {
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 280px;
}

.svc-card__img-wrap {
  flex: 0 0 44%;
  padding: clamp(20px, 3vw, 36px);
  align-self: stretch;
  display: flex;
  align-items: center;
}

.svc-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 5s ease;
}

.svc-card:hover .svc-card__img { transform: scale(1.04); }

.svc-card__text {
  flex: 1;
  padding: clamp(28px, 3.5vw, 48px) clamp(28px, 3.5vw, 48px) clamp(28px, 3.5vw, 48px) clamp(16px, 2vw, 28px);
}

.svc-card__title {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: clamp(14px, 1.5vw, 20px);
}

.svc-card__body {
  font-size: clamp(13px, 1.1vw, 15px);
  color: #555;
  line-height: 1.8;
  max-width: 520px;
}

@media (max-width: 768px) {
  .svc-cards {
    padding: 20px 16px;
    gap: 12px;
  }
  .svc-card {
    flex-direction: column;
    align-items: stretch;
    border-radius: 0;
    overflow: hidden;
    min-height: unset;
  }
  .svc-card__img-wrap {
    flex: unset;
    width: 100%;
    padding: 24px 28px 0;
    align-self: auto;
  }
  .svc-card__img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    border-radius: 0;
  }
  .svc-card__text {
    padding: 20px 20px 28px;
  }
  .svc-card__title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  .svc-card__body {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* ──────────────────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────────────────── */
.footer {
  padding: clamp(64px, 8vw, 120px) 0 clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--border);
  background: var(--bg-base);
}

/* Top: brand + subscribe */
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-bottom: 0;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__brand-name {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-primary);
}

.footer__brand-bank {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}

.footer__est {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-subtle);
  margin-top: 14px;
  display: block;
  text-transform: uppercase;
}

/* Subscribe form */
.footer__subscribe { display: flex; flex-direction: column; gap: 14px; }

.footer__subscribe-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer__subscribe-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.footer__subscribe-row:focus-within {
  border-color: rgba(255, 255, 255, 0.3);
}

.footer__subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-primary);
  min-width: 0;
}

.footer__subscribe-input::placeholder { color: var(--text-subtle); }

.footer__subscribe-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border-radius: 0 100px 100px 0;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer__subscribe-btn:hover { background: var(--accent-hover); }

.footer__subscribe-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--text-subtle);
}

.footer__subscribe-note a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer__subscribe-note a:hover { color: var(--text-primary); }

/* Divider */
.footer__rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: clamp(40px, 5vw, 64px) 0;
}

/* Nav */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 0;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
  line-height: 1.4;
}

.footer__col a:hover { color: var(--text-primary); }

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-subtle);
  line-height: 1.8;
  max-width: 680px;
}

.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-subtle);
  white-space: nowrap;
}

.footer__back-top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
}

.footer__back-top:hover { color: var(--text-primary); border-color: var(--border-light); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer__subscribe-btn span { display: none; }
}

/* ──────────────────────────────────────────────────────────────
   GENERIC REVEAL STATES (for JS-driven animations)
────────────────────────────────────────────────────────────── */
[data-reveal="fade"] {
  opacity: 0;
  transform: translateY(16px);
}

[data-reveal="slide-left"] {
  opacity: 0;
  transform: translateX(24px);
}

[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.96);
}

/* ──────────────────────────────────────────────────────────────
   FOCUS RINGS (Accessibility)
────────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ──────────────────────────────────────────────────────────────
   PREFERS-REDUCED-MOTION
────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__bg-img { animation: none; }
  .marquee-track { animation: none; }
}

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE — 1280px
────────────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE — 1024px
────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mission__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .portrait-wrap {
    aspect-ratio: 3 / 4;
  }

  .support__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .chat-card {
    right: 0;
    bottom: -16px;
  }

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

  /* Disable horizontal scroll — vertical stacking */
  .benefits__track {
    flex-wrap: wrap;
  }

  .benefit-card {
    flex: 0 0 calc(50% - 10px);
  }
}

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE — 768px
────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__headline {
    font-size: clamp(42px, 11vw, 58px);
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-row--img-left .feature-row__text { order: 1; }
  .feature-row--img-left .feature-row__media { order: 2; }
  .feature-row--img-right .feature-row__media { order: 2; }

  .feature-row__media {
    clip-path: none !important;
    aspect-ratio: 16 / 10;
  }

  .benefit-card {
    flex: 0 0 100%;
    height: auto;
    min-height: 360px;
  }

  .hero__partner {
    bottom: auto;
    top: 100px;
    right: 16px;
  }

  .insider-card--sm {
    grid-template-columns: 1fr;
  }

  .insider-card--sm .insider-card__img-wrap {
    aspect-ratio: 16 / 9;
  }
}

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE — 640px
────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-pill--ticker {
    display: none;
  }

  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-card {
    position: static;
    margin-top: 20px;
    width: 100%;
  }
}

/* ──────────────────────────────────────────────────────────────
   INNER PAGE HERO (shared across all sub-pages)
────────────────────────────────────────────────────────────── */
.page-hero {
  padding: clamp(140px, 18vw, 220px) 0 clamp(64px, 8vw, 120px);
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.page-hero__title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.page-hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-muted);
  max-width: 480px;
}

/* ──────────────────────────────────────────────────────────────
   ABOUT PAGE  (abt- prefix)
────────────────────────────────────────────────────────────── */

/* §1 Hero */
.abt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.abt-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.abt-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.45);
}

.abt-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.85) 100%
  );
}

.abt-hero__body {
  position: relative;
  z-index: 2;
  padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 8vw, 100px);
}

.abt-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.abt-hero__headline {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #fff;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.abt-hero__headline em,
.abt-hero__headline strong {
  font-style: normal;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
}

.abt-hero__sub {
  font-size: clamp(15px, 1.4vw, 19px);
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* Stats strip at hero bottom */
.abt-hero__stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(24px, 3vw, 40px) 0;
}

.abt-hero__stats-inner {
  display: flex;
  align-items: center;
}

.abt-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abt-stat__num {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.abt-stat:first-child .abt-stat__num { color: var(--accent); }

.abt-stat__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.abt-stat__div {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  margin: 0 clamp(20px, 3vw, 48px);
  flex-shrink: 0;
}

/* §2 Story */
.abt-story {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #000;
}

.abt-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}

.abt-story__headline {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: clamp(16px, 2vw, 24px) 0 clamp(24px, 3vw, 40px);
}

.abt-story__body {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.abt-story__visual {
  position: relative;
}

.abt-story__img-wrap {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
}

.abt-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transform: scale(1.05);
  transition: transform 6s ease;
}

.abt-story__img-wrap:hover .abt-story__img { transform: scale(1); }

.abt-story__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.abt-story__badge-year {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.abt-story__badge-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
}

/* §3 Manifesto */
.abt-manifesto {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.abt-manifesto__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.abt-manifesto__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(32px, 4vw, 56px);
}

.abt-manifesto__quote {
  font-style: normal;
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 clamp(32px, 4vw, 48px);
}

.abt-manifesto__body {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* §4 Services */
.abt-services {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #000;
}

.abt-services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.abt-services__title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.abt-svc-list {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.abt-svc-row {
  display: grid;
  grid-template-columns: 72px 1fr 1fr 52px;
  align-items: center;
  gap: 0 clamp(24px, 3vw, 48px);
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: default;
  transition: background 0.3s;
  position: relative;
}

.abt-svc-row::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(255,255,255,0.02);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.abt-svc-row:hover::before { opacity: 1; }

.abt-svc-row__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 3px;
}

.abt-svc-row__title {
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
  transition: color 0.25s;
}

.abt-svc-row:hover .abt-svc-row__title { color: rgba(255,255,255,0.6); }

.abt-svc-row__text {
  font-size: clamp(13px, 1vw, 14px);
  color: var(--text-muted);
  line-height: 1.75;
}

.abt-svc-row__link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  margin-left: auto;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}

.abt-svc-row:hover .abt-svc-row__link {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

/* §5 Principles */
.abt-principles {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #050505;
}

.abt-principles__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.abt-principles__title {
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: right;
}

.abt-principle__rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}

.abt-principle__inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: clamp(28px, 3vw, 44px) 0;
}

.abt-principle__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  padding-top: 4px;
}

.abt-principle__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abt-principle__title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.abt-principle__body {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
}

/* §6 Leadership */
.abt-leadership {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #000;
}

.abt-leadership__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.abt-leadership__headline {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: clamp(16px, 2vw, 24px) 0 clamp(24px, 3vw, 40px);
}

.abt-leadership__body {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.abt-leadership__profiles {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-profile {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.abt-profile__img-wrap {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  flex-shrink: 0;
}

.abt-profile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.abt-profile__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-profile__name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.abt-profile__role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.abt-profile__bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* §7 CTA */
.abt-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.abt-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.4);
  z-index: 0;
}

.abt-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.abt-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 clamp(24px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.abt-cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.abt-cta__headline {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
}

.abt-cta__headline em,
.abt-cta__headline strong {
  font-style: normal;
  font-weight: 800;
}

.abt-cta__body {
  font-size: clamp(14px, 1.3vw, 17px);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.abt-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.abt-cta__secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.abt-cta__secondary:hover { color: rgba(255,255,255,0.8); }

/* ──────────────────────────────────────────────────────────────
   REVAULT INSIDER — editorial news section
────────────────────────────────────────────────────────────── */
.insider {
  background: var(--bg-base);
  padding: clamp(64px, 8vw, 100px) 0;
}

.insider__wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 60px);
}

.insider__heading {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.insider__card {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1px 340px;
  min-height: 420px;
}

/* Featured article */
.insider__featured {
  display: grid;
  grid-template-columns: 45% 1fr;
}

.insider__feat-img-wrap {
  overflow: hidden;
}

.insider__feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 5s ease;
}

.insider__featured:hover .insider__feat-img { transform: scale(1.04); }

.insider__feat-body {
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.insider__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 500;
}

.insider__feat-title {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0a0a0a;
}

.insider__feat-rule {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0;
}

.insider__feat-desc {
  font-size: clamp(13px, 1vw, 14px);
  color: #666;
  line-height: 1.75;
}

/* Divider */
.insider__divider {
  background: #e8e8e8;
  width: 1px;
}

/* Sidebar */
.insider__sidebar {
  padding: clamp(24px, 2.5vw, 36px);
  background: #f7f7f5;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insider__sidebar-title {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #0a0a0a;
}

.insider__article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: start;
  text-decoration: none;
  transition: opacity 0.2s;
}

.insider__article:hover { opacity: 0.75; }

.insider__article-img-wrap {
  width: 72px;
  height: 52px;
  overflow: hidden;
  flex-shrink: 0;
}

.insider__article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insider__article-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.insider__article-title {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.45;
  font-weight: 400;
}

.insider__explore {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #fff;
  border-radius: 40px;
  font-size: 14px;
  color: #0a0a0a;
  text-decoration: none;
  transition: background 0.2s;
}

.insider__explore:hover { background: #f0f0f0; }

.insider__explore-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
}

@media (max-width: 1024px) {
  .insider__card { grid-template-columns: 1fr; }
  .insider__divider { display: none; }
  .insider__sidebar { border-top: 1px solid #e8e8e8; }
}

@media (max-width: 640px) {
  .insider__featured { grid-template-columns: 1fr; }
  .insider__feat-img-wrap { aspect-ratio: 16 / 9; height: auto; }
}

/* About page responsive */
@media (max-width: 900px) {
  .abt-services__header { flex-direction: column; align-items: flex-start; }
  .abt-svc-row { grid-template-columns: 52px 1fr 44px; }
  .abt-svc-row__text { display: none; }
  .abt-principles__header { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .abt-svc-row { grid-template-columns: 44px 1fr 40px; gap: 0 16px; }
  .abt-svc-row__link { width: 36px; height: 36px; }
  .abt-principle__inner { grid-template-columns: 48px 1fr; }
}

/* ── Hero full-height override ───────────────────────────────── */
.abt-hero--full {
  min-height: 100vh;
  justify-content: center;
}

.abt-hero--full .abt-hero__body {
  padding: clamp(120px, 16vw, 200px) 0 clamp(80px, 10vw, 140px);
}

.abt-hero--full .abt-hero__headline {
  font-size: clamp(32px, 3.8vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.01;
}

/* ── Timeline (§2) ───────────────────────────────────────────── */
.abt-tl {
  background: #000;
  position: relative;
}

.abt-tl__entry {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 640px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.abt-tl__left {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0 clamp(48px, 6vw, 80px) clamp(24px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* vertical dotted line through all left panels */
.abt-tl__left::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(24px, 4vw, 60px);
  width: 1px;
  border-left: 1px dashed rgba(255,255,255,0.18);
}

.abt-tl__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding-left: 20px;
}

.abt-tl__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-left: -4px; /* centres over the dotted line */
  margin-top: 4px;
}

.abt-tl__year {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  padding-left: 20px;
  margin-top: 8px;
}

.abt-tl__right {
  position: relative;
  overflow: hidden;
}

.abt-tl__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) grayscale(15%);
  display: block;
  transition: transform 6s ease;
}

.abt-tl__entry:hover .abt-tl__img { transform: scale(1.03); }

.abt-tl__card {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(24px, 4vw, 48px);
  width: min(600px, 75%);
  background: rgba(18,18,18,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(24px, 3vw, 40px);
}

.abt-tl__card-title {
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.abt-tl__card-body {
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .abt-tl__entry {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .abt-tl__left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 32px clamp(16px, 4vw, 40px);
  }
  .abt-tl__left::before { display: none; }
  .abt-tl__dot { margin: 0; }
  .abt-tl__year { font-size: 28px; padding-left: 0; margin-top: 0; }
  .abt-tl__right { min-height: 360px; }
  .abt-tl__card { width: calc(100% - 48px); }
}

/* ── Core Goals (§6) ─────────────────────────────────────────── */
.abt-goals {
  background: #000;
  padding: clamp(80px, 10vw, 140px) 0;
}

.abt-goals__title-wrap {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding: 0 clamp(16px, 4vw, 60px);
}

.abt-goals__title {
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
}

.abt-goals__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 20px);
  padding: 0 clamp(16px, 4vw, 60px);
  max-width: 1400px;
  margin: 0 auto;
}

.abt-goal-card {
  display: grid;
  grid-template-columns: 45% 1fr;
  align-items: center;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: border-color 0.3s;
}

.abt-goal-card:hover { border-color: rgba(255,255,255,0.15); }

.abt-goal-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.abt-goal-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) brightness(0.85);
  transition: transform 5s ease;
}

.abt-goal-card:hover .abt-goal-card__img { transform: scale(1.04); }

.abt-goal-card__text {
  padding: clamp(32px, 4vw, 56px);
}

.abt-goal-card__title {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.abt-goal-card__body {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 540px;
}

@media (max-width: 768px) {
  .abt-goal-card { grid-template-columns: 1fr; }
  .abt-goal-card__img-wrap { aspect-ratio: 16 / 9; }
}

/* ── Meet the Team (§7) ──────────────────────────────────────── */
.abt-team {
  background: #000;
  padding-bottom: 0;
}

.abt-team__header {
  padding: clamp(64px, 8vw, 120px) 0 clamp(40px, 5vw, 64px);
}

.abt-team__title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: clamp(12px, 1.5vw, 20px);
}

.abt-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  align-items: start;
  padding: 0 clamp(16px, 4vw, 60px) clamp(48px, 6vw, 80px);
}

/* ── Card shell ─────────────────────────────────────────────── */
.abt-team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #000;
}

/* ── Open-state header (name + minus — hidden by default) ─── */
.abt-team-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 20px 16px;
  background: #080808;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1),
              padding 0.45s cubic-bezier(0.22,1,0.36,1);
  padding-top: 0;
  padding-bottom: 0;
}

.abt-team-card.is-open .abt-team-card__head {
  max-height: 140px;
  padding-top: 22px;
  padding-bottom: 16px;
}

/* ── Photo wrapper ───────────────────────────────────────────── */
.abt-team-card__photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  transition: aspect-ratio 0.45s cubic-bezier(0.22,1,0.36,1);
}

.abt-team-card.is-open .abt-team-card__photo-wrap {
  aspect-ratio: 4 / 3;
}

.abt-team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) brightness(0.75);
  transition: filter 0.5s, transform 6s ease;
}

.abt-team-card:hover .abt-team-card__img {
  filter: grayscale(0%) brightness(0.85);
  transform: scale(1.04);
}

.abt-team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0) 100%
  );
  transition: opacity 0.35s;
}

.abt-team-card.is-open .abt-team-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.1) 100%
  );
}

/* ── Closed-state info bar (over photo bottom) ───────────────── */
.abt-team-card__base {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  transition: opacity 0.3s, transform 0.3s;
}

.abt-team-card.is-open .abt-team-card__base {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

/* ── Shared name/role ────────────────────────────────────────── */
.abt-team-card__name {
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.abt-team-card__role {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin-top: 5px;
}

/* ── Toggle button (plus / minus) ───────────────────────────── */
.abt-team-card__toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.abt-team-card__toggle:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Bio panel (below photo, slides open) ────────────────────── */
.abt-team-card__bio-wrap {
  max-height: 0;
  overflow: hidden;
  background: #080808;
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1),
              padding 0.5s cubic-bezier(0.22,1,0.36,1);
  padding: 0 20px;
}

.abt-team-card.is-open .abt-team-card__bio-wrap {
  max-height: 320px;
  padding: 18px 20px 24px;
}

.abt-team-card__bio {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .abt-team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .abt-team__grid { grid-template-columns: 1fr; }
  .abt-team-card.is-open .abt-team-card__photo-wrap { aspect-ratio: 16 / 9; }
}
