/* ════════════════════════════════════════════════════════════════
   THE HAYES PARTNERS · stylesheet
   Aesthetic: editorial-luxe Miami investment office
   Canvas: deep black · Type: Commissioner (single family, full range)
   Accent: diffused royal silver, never flat, never chrome
   Corners: 0 · Fonts: Commissioner 300/400/500/600/700/800
   ════════════════════════════════════════════════════════════════ */

/* ─── 1. Tokens ─────────────────────────────────────────────────── */
:root {
  /* Canvas */
  --bg:           #000000;
  --bg-1:         #060709;
  --bg-2:         #0c0e12;
  --bg-3:         #14171c;
  --surface:      #1a1d23;

  /* Lines */
  --line:         rgba(255,255,255,0.08);
  --line-2:       rgba(255,255,255,0.16);
  --line-silver:  rgba(200,204,220,0.28);

  /* Type */
  --white:        #ffffff;
  --ink:          #f6f7f9;
  --ink-on:       #0a0a0c;
  --muted:        rgba(246,247,249,0.66);
  --muted-2:      rgba(246,247,249,0.42);

  /* Danielal silver palette */
  --silver:       #c8ccd4;
  --silver-light: #ebedf1;
  --silver-mid:   #aab0bc;
  --silver-deep:  #7a7e88;
  --silver-press: #98a0aa;
  --silver-soft:  rgba(200,204,220,0.10);
  --silver-glow:  rgba(200,204,220,0.22);

  /* Diffused metallic gradients — never flat */
  --grad-silver:        linear-gradient(135deg,#ebedf1 0%, #c0c4cc 30%, #d8dae0 55%, #aab0bc 78%, #d4d6dc 100%);
  --grad-silver-press:  linear-gradient(135deg,#c0c4cc 0%, #98a0aa 50%, #b8bcc4 100%);
  --grad-silver-text:   linear-gradient(110deg,#d8dae0 0%, #ffffff 18%, #aab0bc 38%, #ebedf1 60%, #c0c4cc 80%, #ffffff 100%);
  --grad-vignette:      radial-gradient(ellipse at 50% 0%, rgba(200,204,220,0.06) 0%, transparent 55%);

  /* Live status (intentionally green — universal "online" signal) */
  --live:         #44d17a;

  /* Layout */
  --maxw:         1280px;
  --pad:          clamp(20px, 4vw, 64px);
  --section-y:    clamp(80px, 10vw, 156px);
  --r:            0;

  /* Motion */
  --ease:         cubic-bezier(.2,.7,.2,1);
}

/* ─── 2. Reset + base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Commissioner', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--silver); color: var(--ink-on); }

/* Subtle film grain backdrop — gives "diffused" canvas depth */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0;
  background:
    var(--grad-vignette),
    radial-gradient(ellipse at 80% 90%, rgba(200,204,220,0.04) 0%, transparent 50%);
  pointer-events: none;
}
body > * { position: relative; z-index: 1; }

/* ─── 3. Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Commissioner', sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
  color: var(--white);
}
h1 { font-size: clamp(44px, 7.4vw, 96px); font-weight: 800; letter-spacing: -0.038em; line-height: 1.02; }
h2 { font-size: clamp(32px, 4.8vw, 60px); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 700; }
h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
p  { margin: 0 0 1em; color: var(--muted); }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: rgba(246,247,249,0.78); line-height: 1.55; }

/* Pearl text-clip — for accent words / numbers */
.silver,
.silver-text {
  background: var(--grad-silver-text);
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  font-weight: 600;
  animation: pearlDrift 11s ease-in-out infinite;
}
@keyframes pearlDrift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver) 30%, var(--silver-light) 50%, var(--silver) 70%, transparent);
}

/* ─── 4. Layout ────────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
section { padding: var(--section-y) 0; position: relative; }
.section-head { max-width: 820px; margin: 0 0 64px; }
.section-head.center { margin: 0 auto 64px; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.grid { display: grid; gap: 0; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-row.center { justify-content: center; }

/* ─── 5. Buttons — diffused metallic plates ────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font: inherit;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--grad-silver);
  color: var(--ink-on);
  border: 1px solid var(--silver-mid);
  border-radius: 0;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(0,0,0,0.10),
    0 8px 22px -10px rgba(200,204,220,0.40);
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-silver-press);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.btn::after {
  content: "→"; font-size: 15px; line-height: 1;
  transition: transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); border-color: var(--silver-press); box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.14), 0 14px 30px -12px var(--silver-glow); }
.btn:hover::before { opacity: 1; }
.btn:hover::after { transform: translateX(4px); }

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255,255,255,0.45);
  box-shadow: none;
}
.btn.ghost::before { display: none; }
.btn.ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--silver); color: var(--white); }

.btn.dark {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}
.btn.dark::before { display: none; }
.btn.dark:hover { background: var(--bg-2); }

.btn.sm  { padding: 10px 18px; font-size: 11.5px; }
.btn.lg  { padding: 19px 34px; font-size: 14px; }

@media (max-width: 480px) {
  .btn  { white-space: normal; text-align: center; padding: 14px 22px; font-size: 12.5px; }
  .btn.sm { padding: 10px 14px; font-size: 11px; }
  .cta-row { width: 100%; }
  .cta-row .btn { flex: 1 1 auto; min-width: 0; }
}

/* ─── 6. Nav + mobile drawer ───────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(0,0,0,0.85);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  padding: 10px var(--pad);
  border-bottom-color: var(--line);
}
.nav .brand { display: flex; align-items: center; gap: 14px; }
.nav .brand img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(246,247,249,0.85);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--silver);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.20);
  cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: var(--silver); }
.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--silver-light); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--silver-light); }

@media (max-width: 960px) {
  .nav-links, .desktop-only { display: none !important; }
  .nav-toggle { display: flex; }
}

.mobile-menu { position: fixed; inset: 0; z-index: 80; pointer-events: none; visibility: hidden; transition: visibility 0s linear 0.45s; }
.mobile-menu.open { pointer-events: auto; visibility: visible; transition-delay: 0s; }
.mm-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  -webkit-backdrop-filter: blur(0); backdrop-filter: blur(0);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.mobile-menu.open .mm-backdrop { background: rgba(0,0,0,0.7); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.mm-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw);
  background: var(--bg);
  border-left: 1px solid var(--line-silver);
  padding: 84px 32px 32px;
  padding-top: max(84px, env(safe-area-inset-top, 0));
  padding-bottom: max(32px, env(safe-area-inset-bottom, 0));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex; flex-direction: column; gap: 24px;
}
.mobile-menu.open .mm-panel { transform: none; }
.mm-close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}
.mm-close:hover { background: var(--silver); color: var(--ink-on); border-color: var(--silver); transform: rotate(90deg); }
.mm-brand img { height: 56px; width: auto; }
.mm-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--silver);
  border-bottom: 1px solid var(--line); padding-bottom: 18px;
}
.mm-links { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.mm-links a {
  display: flex; align-items: center;
  padding: 18px 0;
  font-size: 18px; font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
  transition: color 0.2s, padding-left 0.25s;
}
.mm-links a::after { content: "→"; margin-left: auto; color: var(--silver); transition: transform 0.25s; }
.mm-links a:hover { color: var(--silver); padding-left: 6px; }
.mm-links a:hover::after { transform: translateX(4px); }
.mm-cta-stack { display: flex; flex-direction: column; gap: 10px; }
.mm-cta-stack .btn { width: 100%; justify-content: center; padding: 16px 18px; }
.mm-foot {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px;
}
.mm-foot a { color: rgba(246,247,249,0.75); transition: color 0.2s; }
.mm-foot a:hover { color: var(--silver); }
body.menu-open { overflow: hidden; }

/* ─── 7. Hero — full-bleed cinematic video ─────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 132px var(--pad) 96px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}
.hero-video, .hero-video-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video-poster { z-index: -3; }
.hero-video {
  z-index: -2;
  opacity: 0;
  transform-origin: 50% 60%;
  will-change: transform, opacity;
  transition: opacity 1s ease;
}
.hero-video.loaded { opacity: 1; }

/* Atmosphere — left-weighted darkening + bottom vignette so silver text always reads */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.40) 28%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.94) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.30) 50%, rgba(0,0,0,0.05) 100%),
    radial-gradient(ellipse at 78% 22%, rgba(200,204,220,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--line-silver) 50%, transparent);
}

.hero-content {
  max-width: var(--maxw); width: 100%; margin: 0 auto;
}
.hero-lead { max-width: 880px; }

/* Live status eyebrow — small, tracked, with a pulsing dot */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--silver-light);
  padding: 8px 14px;
  border: 1px solid rgba(200,204,220,0.32);
  background: rgba(8,9,11,0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--silver-light);
  box-shadow: 0 0 0 0 rgba(235,237,241,0.55);
  animation: heroPulse 2.2s ease-out infinite;
}
@keyframes heroPulse {
  0%   { box-shadow: 0 0 0 0 rgba(235,237,241,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(235,237,241,0); }
  100% { box-shadow: 0 0 0 0 rgba(235,237,241,0); }
}
@media (prefers-reduced-motion: reduce) { .hero-eyebrow-dot { animation: none; } }

/* Headline — fits without awkward wraps; italic verb has guaranteed contrast */
.hero h1 {
  margin: 0 0 22px;
  max-width: 22ch;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
}
.hero h1 .silver-italic {
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}

.hero .sub {
  font-size: clamp(16.5px, 1.4vw, 20px);
  line-height: 1.6;
  color: rgba(246,247,249,0.88);
  margin: 0 0 30px;
  max-width: 620px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}

/* UVP stat row — 3 inline tiles separated by hairlines */
.hero-stats {
  list-style: none; padding: 0;
  margin: 0 0 36px;
  display: flex; flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  border-top: 1px solid rgba(200,204,220,0.20);
  border-bottom: 1px solid rgba(200,204,220,0.20);
  padding: 18px 0;
  max-width: 720px;
}
.hero-stats li {
  flex: 1 1 0;
  padding: 0 24px;
  border-right: 1px solid rgba(200,204,220,0.14);
  display: flex; flex-direction: column; gap: 6px;
  min-width: 0;
}
.hero-stats li:first-child { padding-left: 0; }
.hero-stats li:last-child  { padding-right: 0; border-right: 0; }
.hs-num {
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.005em;
  line-height: 1.15;
  white-space: nowrap;
}
.hs-num .hs-dash { margin: 0 2px; color: var(--silver); font-weight: 400; }
.hs-num .hs-plus { color: var(--silver-light); }
.hs-num .hs-suffix {
  font-size: 0.65em;
  font-weight: 500;
  color: var(--silver);
  margin-left: 2px;
  letter-spacing: 0.02em;
}
.hs-label {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(246,247,249,0.62);
}
@media (max-width: 720px) {
  .hero-stats { flex-direction: column; padding: 0; gap: 0; }
  .hero-stats li {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(200,204,220,0.14);
    flex: 1 1 auto;
  }
  .hero-stats li:last-child { border-bottom: 0; }
  .hs-num { white-space: normal; }
}

/* Scroll cue — bottom-center, subtle elongating line + label */
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(246,247,249,0.55);
  text-decoration: none;
  z-index: 2;
  transition: color 0.25s var(--ease);
}
.hero-scroll .hs-line {
  display: block;
  width: 1px; height: 42px;
  background: linear-gradient(180deg, transparent, rgba(200,204,220,0.55));
  position: relative;
  overflow: hidden;
}
.hero-scroll .hs-line::after {
  content: ""; position: absolute; left: 0; top: -42px;
  width: 1px; height: 42px;
  background: linear-gradient(180deg, transparent, var(--silver-light));
  animation: heroScrollDrop 1.8s ease-in infinite;
}
@keyframes heroScrollDrop {
  0%   { transform: translateY(0);   opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(84px); opacity: 0; }
}
.hero-scroll:hover { color: var(--white); }
@media (prefers-reduced-motion: reduce) { .hero-scroll .hs-line::after { animation: none; } }

@media (max-width: 600px) {
  .hero { padding-top: 120px; padding-bottom: 110px; min-height: 90vh; }
  .hero h1 { max-width: 100%; }
  .hero-scroll { bottom: 14px; }
  .hero-scroll .hs-line { height: 30px; }
  .hero-scroll .hs-line::after { height: 30px; top: -30px; }
}

/* ─── 8. Positioning ──────────────────────────────────────────── */
.positioning {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.positioning .wrap { max-width: 920px; }
.positioning h2 { margin-bottom: 28px; }
.positioning p {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
  color: rgba(246,247,249,0.86);
}
.positioning p + p { margin-top: 1.1em; }

/* ─── 9. Method (the spine) — dark slab ────────────────────────── */
.method {
  background: var(--bg-3);
  border: 1px solid var(--line);
  position: relative;
}
.method::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 1px; background: var(--grad-silver);
  opacity: 0.6;
}
.method .inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.method .step { padding: 48px 36px; border-right: 1px solid var(--line); }
.method .step:last-child { border-right: none; }
.method .step .n {
  font-weight: 800; font-size: 12px; letter-spacing: 0.24em;
  color: var(--silver-light);
  margin-bottom: 28px;
}
.method .step h3 { color: var(--white); font-size: 22px; margin-bottom: 10px; }
.method .step p  { color: var(--muted); font-size: 14.5px; margin: 0; }
@media (max-width: 1024px) {
  .method .inner { grid-template-columns: repeat(2,1fr); }
  .method .step:nth-child(1), .method .step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .method .step:nth-child(2) { border-right: none; }
}
@media (max-width: 640px) {
  .method .inner { grid-template-columns: 1fr; }
  .method .step { border-right: none; border-bottom: 1px solid var(--line); }
  .method .step:last-child { border-bottom: none; }
}

/* ─── 10. Why (4-cell border grid) ─────────────────────────────── */
.why-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-card {
  background: var(--bg);
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 280px;
  position: relative;
  transition: background 0.35s ease;
}
.why-card:hover { background: var(--bg-2); }
.why-card .num {
  font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 28px;
}
.why-card h3 { margin-bottom: 14px; font-size: 22px; color: var(--white); }
.why-card p  { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ─── 11. McLaren centerpiece ──────────────────────────────────── */
.mclaren { background: var(--bg); text-align: center; }
.mclaren .head { max-width: 720px; margin: 0 auto 36px; padding: 0 var(--pad); }
.mclaren h2 { margin-bottom: 18px; }
.mclaren .head p { font-size: 17px; color: var(--muted); }
.mclaren-img { max-width: 1180px; margin: 32px auto 48px; padding: 0 var(--pad); }
.mclaren-img .frame {
  background: linear-gradient(180deg, #f8f9fa 0%, #eaecf0 100%);
  padding: 36px 24px;
  border: 1px solid var(--line-silver);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.mclaren-img img { width: 100%; height: auto; }
.mclaren .cta-row { justify-content: center; }

/* ─── 12. Marquee — diffused silver bar ────────────────────────── */
.marquee {
  background: var(--grad-silver);
  border-top: 1px solid var(--silver-mid);
  border-bottom: 1px solid var(--silver-mid);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.06);
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, #d4d6dc, transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, #d4d6dc, transparent); }
.marquee-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 18px;
  font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-on);
}
.marquee-item .dot { width: 5px; height: 5px; background: var(--ink-on); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── 13. Journey (numbered ledger rows) ───────────────────────── */
.journey-list {
  display: grid; gap: 0;
  border-top: 1px solid var(--line-2);
}
.journey-list .step {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.35s var(--ease), background 0.35s ease;
}
.journey-list .step:hover { padding-left: 16px; background: var(--bg-2); }
.journey-list .step .n {
  font-weight: 800; font-size: 56px; line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-silver-text);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.journey-list .step h3 { margin: 0 0 6px; font-size: 24px; color: var(--white); }
.journey-list .step p  { margin: 0; color: var(--muted); font-size: 15.5px; }
.journey-list .step .arr {
  width: 38px; height: 38px;
  border: 1px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: var(--white);
  transition: background 0.25s, color 0.25s, transform 0.3s, border-color 0.25s;
}
.journey-list .step:hover .arr {
  background: var(--silver-light); color: var(--ink-on); border-color: var(--silver-light);
  transform: rotate(-12deg);
}
@media (max-width: 720px) {
  .journey-list .step { grid-template-columns: 64px 1fr; gap: 18px; padding: 26px 0; }
  .journey-list .step .n { font-size: 38px; }
  .journey-list .step .arr { display: none; }
}

/* ─── 14. Projects (curated investment opportunities) ──────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1024px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: background 0.35s ease;
}
.project-card:hover { background: var(--bg-2); }
.project-card .img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.project-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.project-card:hover .img img { transform: scale(1.05); }
.project-card .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(235,237,241,0.30) 50%, transparent 60%);
  transform: translateX(-110%);
  transition: transform 0.95s var(--ease);
  pointer-events: none;
}
.project-card:hover .img::after { transform: translateX(110%); }

.project-card .body { padding: 28px 30px 30px; flex: 1; display: flex; flex-direction: column; }
.project-card .loc {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 10px;
}
.project-card .loc::before {
  content: ""; width: 6px; height: 6px; background: var(--silver);
}
.project-card h3 {
  font-size: 26px; line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 4px;
}
.project-card .type {
  font-size: 13.5px; color: var(--muted);
  margin-bottom: 16px;
}
.project-card .thesis {
  font-size: 14px; line-height: 1.55;
  color: rgba(246,247,249,0.78);
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 2px solid var(--silver);
  font-style: italic;
}
.project-card .specs {
  display: flex; gap: 22px;
  font-size: 13px; color: rgba(246,247,249,0.86);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.project-card .specs strong { font-weight: 700; color: var(--white); }
.project-card .price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.project-card .price {
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--silver-light);
}
.project-card .price small {
  display: block;
  font-weight: 500; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 2px;
}
.project-card .req {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--silver);
  border-bottom: 1px solid var(--silver);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.project-card .req:hover { color: var(--white); border-bottom-color: var(--white); }

/* ─── 15. Investor types ───────────────────────────────────────── */
.types-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.type-card {
  background: var(--bg);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  transition: background 0.35s ease;
}
.type-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--grad-silver);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.type-card:hover { background: var(--bg-2); }
.type-card:hover::before { transform: scaleY(1); }
.type-card .ic {
  width: 44px; height: 44px;
  border: 1px solid var(--silver);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  color: var(--silver);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.type-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--white); }
.type-card p  { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ─── 16. Reviews ──────────────────────────────────────────────── */
.reviews-stat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
  padding: 28px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 2px solid;
  border-image: var(--grad-silver) 1;
  margin-bottom: 32px;
}
.rs-rating { display: flex; align-items: baseline; gap: 14px; }
.rs-num {
  font-weight: 800; font-size: 56px; line-height: 1; letter-spacing: -0.04em;
  background: var(--grad-silver-text);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.rs-stars { color: var(--silver); font-size: 22px; letter-spacing: 0.10em; text-shadow: 0 0 12px var(--silver-glow); }
.rs-meta { display: flex; flex-direction: column; gap: 6px; }
.rs-count { font-size: 15px; color: rgba(246,247,249,0.86); }
.rs-count strong { color: var(--white); font-weight: 700; }
.rs-source {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; color: var(--muted);
  letter-spacing: 0.10em; text-transform: uppercase;
}
.rs-cta {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--silver); padding: 12px 18px;
  border: 1px solid var(--silver); white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.rs-cta:hover { background: var(--silver); color: var(--ink-on); }
@media (max-width: 720px) {
  .reviews-stat { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .rs-cta { justify-self: start; }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .reviews-grid { grid-template-columns: 1fr; } }

.rev {
  background: var(--bg-1);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background 0.35s ease;
}
.rev:hover { background: var(--bg-2); }
.rev-head { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.rev-avatar {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  letter-spacing: 0.04em;
}
.rev-name { font-weight: 700; font-size: 15.5px; color: var(--white); }
.rev-stars {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--silver);
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px var(--silver-glow);
}
.rev-source-tag {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line-2);
  padding: 2px 6px;
}
.rev-body {
  margin: 0;
  font-size: 14.5px; line-height: 1.6;
  color: rgba(246,247,249,0.82); flex: 1;
}
.rev-foot {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--silver);
  border-top: 1px solid var(--line); padding-top: 14px;
}

/* ─── 17. About — partners ─────────────────────────────────────── */
.about {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about .wrap { max-width: 1180px; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.about-grid .copy h2 { margin-bottom: 22px; }
.about-grid .copy p {
  font-size: 17px; line-height: 1.7;
  color: rgba(246,247,249,0.85);
}
.partners-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.partner {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
}
.partner img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.partner:hover img { transform: scale(1.05); }
.partner .label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, transparent 100%);
  color: var(--white);
}
.partner .label .role {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}
.partner .label .name { font-weight: 700; font-size: 18px; }
.partner-bio {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 22px 24px; margin-top: 14px;
}
.partner-bio + .partner-bio { margin-top: 12px; }
.partner-bio strong {
  display: block; font-weight: 800;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--silver-light); margin-bottom: 4px;
}
.partner-bio span { color: rgba(246,247,249,0.78); font-size: 14.5px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ─── 18. Final CTA ────────────────────────────────────────────── */
.final-cta {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(200,204,220,0.08) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 22px; }
.final-cta p  { color: rgba(246,247,249,0.78); font-size: 18px; margin-bottom: 36px; }
.gold-line, .silver-line {
  display: inline-block; height: 2px; width: 64px;
  background: var(--grad-silver);
  margin-bottom: 30px;
  box-shadow: 0 0 18px var(--silver-glow);
}

/* ─── 19. Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  color: rgba(246,247,249,0.66);
  padding: 80px var(--pad) 32px;
  border-top: 1px solid var(--line);
}
.footer .top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  max-width: var(--maxw); margin: 0 auto 56px;
}
.footer .brand-block { display: flex; flex-direction: column; gap: 18px; }
.footer .brand-block .logo-row { display: flex; align-items: center; gap: 14px; }
.footer .brand-block img { height: 50px; width: auto; }
.footer .tag {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--silver);
}
.footer .contact a {
  display: block;
  color: rgba(246,247,249,0.82);
  font-size: 15px; margin-bottom: 4px;
  transition: color 0.2s;
}
.footer .contact a:hover { color: var(--silver); }
.footer h4 {
  color: var(--white);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(246,247,249,0.7); font-size: 14.5px; transition: color 0.2s; }
.footer ul a:hover { color: var(--silver); }
.footer .bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--muted-2);
}
.footer .bottom a { color: rgba(246,247,249,0.7); }
.footer .bottom a:hover { color: var(--silver); }
@media (max-width: 800px) { .footer .top { grid-template-columns: 1fr; gap: 36px; } }

/* ─── 20. Scarcity popup ───────────────────────────────────────── */
.scarcity-pop {
  position: fixed;
  left: 24px; bottom: 24px;
  width: min(380px, calc(100vw - 48px));
  background: var(--bg-1);
  border: 1px solid var(--line-silver);
  border-top: 2px solid;
  border-image: var(--grad-silver) 1;
  padding: 24px 26px 22px;
  z-index: 90;
  color: var(--white);
  box-shadow:
    0 32px 80px -10px rgba(0,0,0,0.7),
    0 0 0 1px rgba(200,204,220,0.18),
    0 0 60px -12px var(--silver-glow);
  transform: translateY(120%) translateX(-12px);
  opacity: 0; pointer-events: none; visibility: hidden;
  transition:
    transform 0.6s var(--ease),
    opacity 0.5s ease,
    visibility 0s linear 0.6s;
}
.scarcity-pop.in {
  transform: none; opacity: 1; pointer-events: auto; visibility: visible;
  transition:
    transform 0.7s var(--ease),
    opacity 0.6s ease,
    visibility 0s linear 0s;
}
.scarcity-pop.out { transform: translateY(60%) translateX(-12px); opacity: 0; pointer-events: none; }
.scarcity-pop.in::before {
  content: ""; position: absolute; inset: -1px;
  border: 1px solid var(--silver);
  pointer-events: none;
  animation: scarcityPulse 2.4s ease-out 0.4s 1 both;
}
@keyframes scarcityPulse {
  0%   { transform: scale(1);    opacity: 0.9; }
  100% { transform: scale(1.06); opacity: 0; }
}
.scarcity-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 14px;
}
.scarcity-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--live);
  position: relative;
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(68,209,122,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(68,209,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(68,209,122,0); }
}
.scarcity-pop h3 {
  font-size: 24px; font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.scarcity-pop p {
  font-size: 13.5px; line-height: 1.55;
  color: rgba(246,247,249,0.78);
  margin: 0 0 18px;
}
.scarcity-cta { width: 100%; justify-content: center; font-size: 11.5px; padding: 14px 18px; }
.scarcity-foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(246,247,249,0.72);
  letter-spacing: 0.04em;
}
.scarcity-foot strong { color: var(--silver-light); font-weight: 800; letter-spacing: 0.06em; }
.scarcity-meter { display: inline-flex; gap: 4px; }
.scarcity-meter span { display: block; width: 18px; height: 4px; }
.scarcity-meter span:nth-child(1) { background: var(--silver-light); }
.scarcity-meter span:nth-child(2) { background: rgba(200,204,220,0.5); }
.scarcity-meter span:nth-child(3) { background: rgba(200,204,220,0.18); }
.scarcity-close {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px;
  background: transparent;
  color: rgba(246,247,249,0.6);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}
.scarcity-close:hover {
  background: var(--silver-light); color: var(--ink-on); border-color: var(--silver-light);
  transform: rotate(90deg);
}
@media (max-width: 540px) {
  .scarcity-pop { left: 12px; right: 12px; bottom: 88px; width: auto; padding: 20px 22px 18px; }
  .scarcity-pop h3 { font-size: 20px; }
}

/* ─── 21. Floating WhatsApp ────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 120; /* above cookie strip (110) */
  box-shadow: 0 12px 24px rgba(37,211,102,0.35), 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.25s var(--ease), bottom 0.45s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* When the cookie strip is open, lift the WhatsApp button above it */
.cc.open ~ .wa-float { bottom: 96px; }
@media (max-width: 760px) {
  .cc.open ~ .wa-float { bottom: 132px; }
}

/* ─── 22. Motion primitives ────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

[data-reveal].in .why-card,
[data-reveal].in .type-card,
[data-reveal].in .project-card,
[data-reveal].in .rev,
[data-reveal].in .step {
  animation: cardIn 0.95s var(--ease) both;
  animation-delay: var(--stagger, 0s);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}

[data-split] { display: block; }
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  padding-right: 0.02em;
}
.word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s var(--ease), opacity 1s ease;
  transition-delay: calc(var(--word-i, 0) * 0.05s + 0.05s);
}
[data-split].in .word { transform: none; opacity: 1; }

[data-mask] {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(.7,0,.2,1), -webkit-clip-path 1.1s cubic-bezier(.7,0,.2,1);
}
[data-mask].in {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-silver);
  transform: scaleX(0); transform-origin: 0 50%;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 0 8px var(--silver-glow);
  transition: transform 0.08s linear;
}

/* Cursor follower */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--silver);
  border-radius: 50%;
  pointer-events: none;
  z-index: 200;
  mix-blend-mode: difference;
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  opacity: 0.6;
  transform: translate3d(-100px,-100px,0);
  box-shadow: 0 0 12px var(--silver-glow);
}
.cursor-dot.hover { width: 56px; height: 56px; opacity: 1; }
@media (max-width: 900px) { .cursor-dot { display: none; } }

/* ─── 22b. Channel — newsletter-style brand strip ──────────────
   Brand-pure: black + royal silver. No green.
   ──────────────────────────────────────────────────────────── */

/* Soft link below McLaren CTAs (kept — used by McLaren section) */
.soft-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 8px 12px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(246,247,249,0.62);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s, gap 0.25s var(--ease);
}
.soft-link .soft-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--silver);
  box-shadow: 0 0 8px rgba(200,204,220,0.4);
}
.soft-link .soft-arr { transition: transform 0.25s var(--ease); }
.soft-link:hover {
  color: var(--white);
  border-bottom-color: rgba(200,204,220,0.5);
  gap: 14px;
}
.soft-link:hover .soft-arr { transform: translateX(3px); }

/* Silver-italic verb (used by hero h1 and any future emphasis spans) */
.silver-italic {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  background: var(--grad-silver-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: silverDrift 11s ease-in-out infinite alternate;
  padding-right: 0.04em;
}
.silver-italic .word {
  background: var(--grad-silver-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: silverDrift 11s ease-in-out infinite alternate;
}
@keyframes silverDrift {
  0%   { background-position:   0% 0%; }
  100% { background-position: 100% 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .silver-italic, .silver-italic .word { animation: none; }
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .silver-italic, .silver-italic .word {
    background: none;
    color: var(--silver-light);
  }
}

/* The strip itself — slim newsletter-style band, brand silver only */
.channel-strip {
  position: relative;
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 5vw, 64px) var(--pad);
  isolation: isolate;
}
.channel-strip::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200,204,220,0.10) 15%,
    rgba(235,237,241,0.55) 50%,
    rgba(200,204,220,0.10) 85%,
    transparent 100%);
  pointer-events: none;
}
.channel-strip-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cs-copy { flex: 1 1 540px; min-width: 0; min-height: 0; }

.cs-eye {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}
.cs-h {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--white);
}
.cs-sub {
  margin: 0;
  font-size: 14.5px; line-height: 1.6;
  color: rgba(246,247,249,0.72);
  max-width: 640px;
}

.channel-strip-cta { flex-shrink: 0; white-space: nowrap; }

@media (max-width: 720px) {
  .channel-strip-wrap { flex-direction: column; align-items: stretch; gap: 22px; }
  /* In column direction, flex-basis becomes height — kill flex-grow so the copy
     doesn't stretch to fill and push the button down with empty space. */
  .cs-copy { flex: 0 0 auto; }
  .channel-strip-cta { width: 100%; justify-content: center; }
}

/* Scarcity popup secondary opt-out */
.scarcity-secondary {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 8px 4px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(246,247,249,0.55);
  border-bottom: 1px dashed transparent;
  transition: color 0.2s, border-color 0.2s;
}
.scarcity-secondary:hover {
  color: var(--live);
  border-bottom-color: rgba(68,209,122,0.5);
}

/* ─── 22c. Consent (GDPR / CCPA / U.S. state privacy law (CCPA)) ────────────────────
   Two views:
   • cc-strip  — slim, full-bleed informational bar pinned to the bottom.
   • cc-panel  — centered floating card with full preferences UI. */

.cc {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 110;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.55s var(--ease);
}
.cc.open { pointer-events: auto; transform: none; }

.cc-view { animation: ccFadeIn 0.45s var(--ease) both; }
@keyframes ccFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* === STRIP — editorial hairline, single line, glass + animated shimmer ==== */
.cc-strip {
  position: relative;
  background:
    radial-gradient(1200px 100% at 30% 0%, rgba(200,204,220,0.05) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8,9,11,0.84) 0%, rgba(5,6,8,0.96) 100%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  backdrop-filter: blur(28px) saturate(140%);
  box-shadow: 0 -28px 80px -20px rgba(0,0,0,0.7);
  padding-bottom: env(safe-area-inset-bottom, 0);
  overflow: hidden;
}

/* Animated metallic top hairline — slow, expensive */
.cc-strip::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background-image: linear-gradient(90deg,
    rgba(200,204,220,0.04) 0%,
    rgba(200,204,220,0.18) 30%,
    rgba(255,255,255,0.85) 50%,
    rgba(200,204,220,0.18) 70%,
    rgba(200,204,220,0.04) 100%);
  background-size: 220% 100%;
  background-position: 0% 0%;
  animation: ccShimmer 14s linear infinite;
  pointer-events: none;
}
@keyframes ccShimmer {
  0%   { background-position: -110% 0%; }
  100% { background-position:  110% 0%; }
}
@media (prefers-reduced-motion: reduce) {
  .cc-strip::before { animation: none; background-position: 50% 0%; }
}

/* Subtle grain — warms the glass, hides banding on mobile Safari */
.cc-strip-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.cc-strip-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px clamp(22px, 3vw, 44px);
  display: flex; align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
}

/* Eyebrow — replaces icon; reads like a Bloomberg-ticker label */
.cc-strip-eye {
  display: inline-flex; align-items: center; gap: 12px;
  flex-shrink: 0;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--silver);
}
.cc-strip-tick {
  display: inline-block;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver) 60%, var(--silver-light));
}

/* Message — variable-weight contrast (Commissioner 300 body / 600 keyword) */
.cc-strip-msg {
  margin: 0;
  font-size: 13px; line-height: 1.55;
  font-weight: 300;
  color: rgba(246,247,249,0.72);
  flex: 1 1 auto;
  letter-spacing: 0.005em;
}
.cc-strip-msg strong {
  display: inline-block;
  color: var(--white);
  font-weight: 600;
  margin-right: 6px;
  letter-spacing: 0.005em;
}
.cc-strip-msg a {
  color: var(--silver-light);
  border-bottom: 1px solid rgba(200,204,220,0.32);
  white-space: nowrap;
  margin-left: 2px;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.cc-strip-msg a:hover { color: var(--white); border-bottom-color: var(--silver); }

.cc-strip-actions {
  display: flex; align-items: center;
  gap: clamp(14px, 2vw, 22px);
  flex-shrink: 0;
}

/* Ghost link — underline grows from left on hover */
.cc-link {
  background: transparent; border: 0;
  font-family: inherit;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(246,247,249,0.74);
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.22s var(--ease);
}
.cc-link span { position: relative; display: inline-block; }
.cc-link span::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: var(--silver);
  transition: right 0.32s var(--ease);
}
.cc-link:hover { color: var(--white); }
.cc-link:hover span::after { right: 0; }

/* Silver CTA with arrow — sharp, hairline, brand-true */
.cc-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: inherit;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 12px 22px;
  background: var(--grad-silver);
  color: var(--ink-on);
  border: 1px solid var(--silver-mid);
  cursor: pointer;
  border-radius: 0;
  position: relative;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 10px 24px -12px var(--silver-glow);
  transition:
    transform 0.25s var(--ease),
    background 0.22s var(--ease),
    border-color 0.22s var(--ease),
    box-shadow 0.32s var(--ease);
}
.cc-cta-arrow {
  display: inline-block;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}
.cc-cta:hover {
  background: var(--grad-silver-press);
  border-color: var(--silver-press);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 16px 32px -10px var(--silver-glow);
}
.cc-cta:hover .cc-cta-arrow { transform: translateX(4px); }

/* Mobile — stack tidily, lose eyebrow tick */
@media (max-width: 760px) {
  .cc-strip-inner {
    flex-wrap: wrap;
    gap: 12px 14px;
    padding: 14px 18px;
    padding-bottom: max(14px, env(safe-area-inset-bottom, 0));
  }
  .cc-strip-eye { display: none; }
  .cc-strip-msg { flex-basis: 100%; font-size: 12.5px; line-height: 1.5; }
  .cc-strip-actions {
    flex-basis: 100%;
    justify-content: space-between;
    gap: 16px;
  }
  .cc-cta { padding: 11px 20px; }
}

/* === PANEL (preferences) ================================ */
.cc-panel {
  padding: 0 clamp(12px, 3vw, 28px) clamp(16px, 3vw, 28px);
  padding-bottom: max(clamp(16px, 3vw, 28px), env(safe-area-inset-bottom, 0));
}
.cc-panel-inner {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--bg-1);
  border: 1px solid var(--line-silver);
  box-shadow:
    0 -30px 80px -10px rgba(0,0,0,0.7),
    0 0 0 1px rgba(200,204,220,0.16),
    0 -2px 0 0 var(--silver) inset;
  padding: 28px clamp(20px, 3.5vw, 40px) 26px;
  position: relative;
  color: var(--ink);
}

@media (max-width: 720px) {
  .cc-panel { padding: 0; padding-bottom: env(safe-area-inset-bottom, 0); }
  .cc-panel-inner {
    margin: 0;
    border-left: none; border-right: none; border-bottom: none;
    padding: 24px 20px;
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0));
  }
}

.cc-eye {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}

.cc-panel-inner h3 {
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--white);
}
.cc-panel-inner p { margin: 0 0 14px; font-size: 14px; line-height: 1.55; color: rgba(246,247,249,0.78); max-width: 880px; }
.cc-panel-inner p a, .cc-fineprint a { color: var(--silver-light); border-bottom: 1px solid rgba(200,204,220,0.4); }
.cc-panel-inner p a:hover, .cc-fineprint a:hover { color: var(--white); border-bottom-color: var(--silver); }

.cc-fineprint {
  margin-top: 10px;
  font-size: 12px; line-height: 1.5;
  color: var(--muted-2);
}
.cc-fineprint strong { color: var(--silver); font-weight: 700; letter-spacing: 0.04em; }

.cc-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 16px;
  align-items: center;
}
.cc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  font-family: inherit;
  font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.10em; text-transform: uppercase;
  border: 1px solid;
  cursor: pointer;
  background: transparent;
  border-radius: 0;
  transition: all 0.22s var(--ease);
}
.cc-btn-ghost {
  color: rgba(246,247,249,0.85);
  border-color: rgba(255,255,255,0.30);
}
.cc-btn-ghost:hover { color: var(--white); border-color: var(--silver); background: rgba(200,204,220,0.06); }

.cc-btn-primary {
  background: var(--grad-silver);
  color: var(--ink-on);
  border-color: var(--silver-mid);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(0,0,0,0.10),
    0 6px 18px -8px var(--silver-glow);
}
.cc-btn-primary:hover {
  background: var(--grad-silver-press);
  border-color: var(--silver-press);
  transform: translateY(-1px);
}

.cc-back {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent; color: var(--silver);
  border: 1px solid var(--line-2);
  padding: 8px 12px;
  font: inherit;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s var(--ease);
}
.cc-back:hover { border-color: var(--silver); color: var(--white); }

.cc-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }

.cc-cats {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 720px) { .cc-cats { grid-template-columns: 1fr; } }

.cc-cat {
  background: var(--bg-2);
  padding: 18px 20px;
}
.cc-cat-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 6px;
}
.cc-cat strong { color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: 0.02em; }
.cc-cat p { font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.5; max-width: none; }

.cc-locked {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--silver);
  padding: 4px 9px;
  background: rgba(200,204,220,0.06);
}

/* Toggle switch */
.cc-switch {
  position: relative;
  display: inline-block;
  width: 40px; height: 22px;
  flex-shrink: 0;
  cursor: pointer;
}
.cc-switch input {
  position: absolute; opacity: 0;
  width: 100%; height: 100%; margin: 0;
  cursor: pointer; z-index: 2;
}
.cc-knob {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--line-2);
  transition: background 0.25s, border-color 0.25s;
}
.cc-knob::after {
  content: "";
  position: absolute; left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: rgba(255,255,255,0.65);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.cc-switch input:checked ~ .cc-knob {
  background: rgba(200,204,220,0.18);
  border-color: var(--silver);
}
.cc-switch input:checked ~ .cc-knob::after {
  transform: translateX(18px);
  background: var(--silver-light);
}
.cc-switch input:focus-visible ~ .cc-knob {
  box-shadow: 0 0 0 2px rgba(200,204,220,0.5);
}

/* ─── 23. Legal pages (privacy / terms) ───────────────────────── */
.legal-body { background: var(--bg); }
.legal {
  max-width: 880px;
  margin: 0 auto;
  padding: 140px var(--pad) 120px;
  position: relative;
}
.legal-wrap { width: 100%; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 36px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--silver);
  transition: padding-left 0.25s var(--ease);
}
.legal-back:hover { padding-left: 8px; color: var(--silver-light); }

.legal h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 8px 0 16px;
}
.legal-meta {
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin: 0 0 36px;
}
.legal-lede {
  font-size: clamp(17px, 1.4vw, 19.5px);
  line-height: 1.65;
  color: rgba(246,247,249,0.88);
  margin-bottom: 48px;
  padding-left: 20px;
  border-left: 2px solid var(--silver);
}
.legal h2 {
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--silver-light);
  margin: 56px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.legal p {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(246,247,249,0.84);
  margin: 0 0 1.2em;
}
.legal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4em;
}
.legal ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(246,247,249,0.82);
}
.legal ul li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 14px; height: 1px;
  background: var(--silver);
}
.legal a {
  color: var(--silver-light);
  border-bottom: 1px solid rgba(200,204,220,0.4);
  transition: border-color 0.2s, color 0.2s;
}
.legal a:hover { color: var(--white); border-bottom-color: var(--silver); }
.legal strong { color: var(--white); font-weight: 700; }
.legal em { color: rgba(246,247,249,0.92); }
.legal code {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--bg-2);
  padding: 2px 6px;
  border: 1px solid var(--line);
}
.legal-disclaimer {
  margin-top: 56px;
  padding: 18px 22px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--bg-2);
  border-left: 2px solid var(--silver-deep);
  font-style: italic;
}

/* 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;
    scroll-behavior: auto !important;
  }
}
