/* =========================================================
   Daniel Rochlitz — eToro Pro Investor
   Kelly-green identity from danielrochlitz.com, bold geometric
   display type, offset-block portrait motif, pill CTAs.
========================================================= */

:root {
  --green-500: #2f8f57;
  --green-600: #237245;
  --green-700: #17532f;
  --green-900: #0d3620;
  --mint-100: #eaf5ee;
  --mint-200: #d8ecdf;
  --ink: #10130f;
  --ink-soft: #4b544c;
  --ink-faint: #838d84;
  --paper: #faf9f5;
  --paper-alt: #f2f1ea;
  --white: #ffffff;
  --line: #e4e2d8;
  --pos: #1c9d4d;
  --neg: #d64545;

  --font-display: 'Clash Display', 'Satoshi', system-ui, sans-serif;
  --font-body: 'Satoshi', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

img, svg { display: block; max-width: 100%; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 18px;
}
.eyebrow.center { text-align: center; }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--ink);
}
.h2.light { color: var(--white); }
.h2.center { text-align: center; margin-left: auto; margin-right: auto; }

.body-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 20px;
}
.body-text strong { color: var(--ink); font-weight: 700; }
.body-text.center { text-align: center; margin: 0 auto 20px; }
.body-text.light { color: rgba(255,255,255,0.82); }
.body-text.light strong { color: var(--white); }

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 0 32px;
}
.lede strong { color: var(--ink); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(47,143,87,0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -10px rgba(47,143,87,0.6); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
  padding: 12px 24px;
  font-size: 14px;
}
.btn-dark:hover { background: var(--green-700); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-lg { padding: 19px 38px; font-size: 16px; }

/* =========================================================
   NAV
========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,245,0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: block;
  object-fit: contain;
}
.brand-mark.small { width: 34px; height: 34px; border-radius: 9px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.brand-name.small { font-size: 15px; }
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--green-500);
  transition: right .3s var(--ease);
}
.nav-links a:hover::after { right: 0; }
.nav-cta { flex-shrink: 0; padding: 12px 22px; font-size: 14px; }
.nav-menu-cta { display: none; }

.lang-switch {
  display: inline-flex;
  flex-shrink: 0;
  background: var(--paper-alt);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-switch button {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 11px;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.active { background: var(--green-500); color: #fff; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* =========================================================
   HERO — portrait motif
========================================================= */
.hero {
  position: relative;
  padding: 64px 0 77px;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  top: -220px; right: -220px;
  width: 640px; height: 640px;
  background: radial-gradient(circle at 30% 30%, var(--mint-200), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.hero-visual { position: relative; }
.visual-block {
  position: absolute;
  top: 24px; left: -22px;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-700) 100%);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.portrait {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--mint-100);
  box-shadow: 0 30px 60px -24px rgba(13,54,32,0.28);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait-fallback {
  position: absolute; inset: 0;
  display: none;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 92px;
  color: var(--green-500);
  background:
    radial-gradient(circle at 30% 25%, rgba(47,143,87,0.18), transparent 60%),
    var(--mint-100);
  letter-spacing: -0.02em;
}
.portrait--empty .portrait-fallback { display: grid; }

.hero-role {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--green-600);
  margin: 0 0 26px;
  letter-spacing: -0.01em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-disclaimer { font-size: 13px; color: var(--ink-faint); margin: 0; }

.press-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.press-row-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.press-logo {
  font-weight: 700;
  color: var(--ink-soft);
  opacity: 0.75;
  transition: opacity .2s ease;
  letter-spacing: -0.01em;
}
.press-logo:hover { opacity: 1; }
.press-logo--forbes {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.press-logo--aktuality {
  font-family: var(--font-body);
  font-size: 15px;
}
.press-logo-dot { color: var(--green-500); }

.float-chip {
  position: absolute;
  z-index: 2;
  background: var(--green-500);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 30px -12px rgba(0,0,0,0.4);
  animation: float 5s ease-in-out infinite;
}
.chip-b { bottom: 26px; right: -18px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =========================================================
   STATS BAND
========================================================= */
.stats-band {
  background: var(--green-900);
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.05), transparent 45%);
  padding: 45px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 8px; padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.12); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3vw, 42px);
  color: var(--white);
  letter-spacing: -0.01em;
}
.stat:first-child .stat-num { color: #6fe3a1; }
.stat-unit { font-size: 0.5em; color: rgba(255,255,255,0.6); font-weight: 500; }
.stat-lab {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* =========================================================
   ABOUT / CREDENTIALS
========================================================= */
.about { padding: 96px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
}
.credential-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 30px 60px -30px rgba(13,54,32,0.25);
}
.credential-card img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}
.credential-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 10px 8px;
  text-align: center;
}
.credential-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.credential-sub { font-size: 13.5px; font-weight: 600; color: var(--green-600); }

/* =========================================================
   RESULTS COUNTERS
========================================================= */
.results { padding: 20px 0 64px; }
.quote-band { padding: 96px 0; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 56px;
}
.result {
  text-align: center;
  padding: 40px 24px;
  background: var(--paper-alt);
  border-radius: var(--radius-md);
}
.result-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 5.5vw, 68px);
  color: var(--green-600);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.result-lab { font-size: 15px; font-weight: 600; color: var(--ink-soft); }

.results-quote {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.results-quote .quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--green-500);
  opacity: 0.3;
  display: block;
  line-height: 1;
  margin-bottom: -18px;
}
.results-quote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.results-quote cite { font-style: normal; font-size: 15px; font-weight: 600; color: var(--ink-soft); }

/* =========================================================
   PHILOSOPHY
========================================================= */
.philosophy { padding: 88px 0; background: var(--mint-100); }
.phil-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}
.link-arrow {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  color: var(--green-600);
  border-bottom: 2px solid var(--mint-200);
  padding-bottom: 3px;
  transition: border-color .25s ease;
}
.link-arrow:hover { border-color: var(--green-500); }

.principles { list-style: none; margin: 0; padding: 0; }
.principles li {
  display: flex;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(23,83,47,0.14);
}
.principles li:first-child { padding-top: 4px; }
.roman {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--green-500);
  min-width: 38px;
}
.principles h3 { margin: 0 0 8px; font-size: 20px; font-weight: 700; color: var(--ink); }
.principles p { margin: 0; font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; max-width: 46ch; }

/* =========================================================
   PERFORMANCE CHART
========================================================= */
.performance { padding: 96px 0; }
.perf-card {
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  box-shadow: 0 30px 60px -34px rgba(13,54,32,0.25);
}
.perf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.perf-note {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green-600);
  background: var(--mint-100);
  padding: 6px 12px;
  border-radius: 999px;
}
.perf-modes {
  display: inline-flex;
  background: var(--paper-alt);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.perf-mode {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.perf-mode:hover { color: var(--ink); }
.perf-mode.active { background: var(--green-500); color: #fff; box-shadow: 0 6px 14px -6px rgba(47,143,87,0.55); }

.perf-legend { display: flex; gap: 22px; margin-bottom: 14px; flex-wrap: wrap; }
.perf-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.swatch { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.swatch--daniel { background: rgba(28,157,77,0.85); }
.swatch--spy { width: 18px; height: 3px; border-radius: 2px; background: #b8860b; }
.perf-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.perf-tab {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
}
.perf-tab:hover { border-color: var(--green-500); color: var(--green-600); }
.perf-tab.active { background: var(--green-500); border-color: var(--green-500); color: var(--white); }
.perf-canvas-wrap { position: relative; height: 300px; margin-bottom: 8px; }
.perf-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.perf-totals { display: flex; gap: 26px; flex-wrap: wrap; }
.perf-total { display: flex; flex-direction: column; gap: 2px; }
.perf-total-label { font-size: 12px; font-weight: 600; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.04em; }
.perf-total-value { font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.perf-total-value.pos { color: var(--pos); }
.perf-total-value.neg { color: var(--neg); }
.perf-total-value.bench { color: #b8860b; }
.perf-empty {
  display: grid;
  place-items: center;
  height: 100%;
  text-align: center;
  color: var(--ink-faint);
  font-size: 15px;
  font-weight: 600;
  padding: 0 24px;
}

/* =========================================================
   EXPERTISE GRID
========================================================= */
.expertise { padding: 96px 0; background: var(--paper-alt); }
.expertise-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.expertise-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(13,54,32,0.18);
  border-color: transparent;
}
.expertise-card--wide { grid-column: span 3; }
.expertise-index {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--green-500);
  background: var(--mint-100);
  padding: 6px 11px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.expertise-card h3 { font-size: 19px; margin: 0 0 10px; font-weight: 700; }
.expertise-card p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; max-width: 62ch; }

/* =========================================================
   MEDIA APPEARANCES
========================================================= */
.media { padding: 96px 0; }
.media-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.media-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(13,54,32,0.18);
  border-color: transparent;
}
.media-card-outlet {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--mint-100);
  color: var(--green-600);
  margin-bottom: 20px;
}
.media-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.media-card-read {
  margin-top: auto;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--green-600);
}

/* =========================================================
   FINAL CTA
========================================================= */
.final-cta {
  position: relative;
  background: var(--green-700);
  background-image: linear-gradient(160deg, var(--green-600), var(--green-900));
  padding: 96px 0;
  overflow: hidden;
  text-align: center;
}
.cta-blob {
  position: absolute;
  bottom: -260px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-inner .body-text { margin-left: auto; margin-right: auto; text-align: center; }
.final-cta .btn-primary { background: var(--white); color: var(--green-700); box-shadow: 0 16px 32px -12px rgba(0,0,0,0.35); }
.final-cta .btn-primary:hover { background: var(--mint-100); }
.cta-disclaimer { margin: 20px 0 0; font-size: 13px; color: rgba(255,255,255,0.55); }

/* =========================================================
   R&R INVESTMENT CLUB
========================================================= */
.club { padding: 96px 0; }
.club-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  background: var(--mint-100);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
}
.club-perks { list-style: none; margin: 0 0 30px; padding: 0; }
.club-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 9px 0;
}
.club-perks .check {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.club-disclaimer { font-size: 13px; color: var(--ink-faint); margin: 14px 0 0; }
.club-badge {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--green-500), var(--green-900));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--white);
  box-shadow: 0 30px 60px -30px rgba(13,54,32,0.5);
}
.club-badge-mark { font-family: var(--font-display); font-weight: 700; font-size: 64px; letter-spacing: -0.02em; }
.club-badge-sub { font-size: 14px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }

/* =========================================================
   FAQ
========================================================= */
.faq { padding: 20px 0 104px; }
.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 26px 0;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}
.faq-icon {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--green-500);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s ease;
}
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.16, .84, .44, 1);
}
/* Fallback so answers never clip; JS sets an exact inline max-height for a tight animation. */
.faq-item.open .faq-a { max-height: 1500px; }
.faq-a p {
  margin: 0;
  padding: 0 0 26px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 68ch;
}

/* =========================================================
   FOOTER
========================================================= */
.footer { background: var(--ink); padding: 58px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand-name { color: var(--white); }
.footer-bio { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.55); margin: 0; max-width: 46ch; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin: 0 0 4px; }
.footer-col a { font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.7); transition: color .2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-follow-text { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); margin: 0 0 6px; }
.footer-follow .btn { align-self: flex-start; margin-top: 6px; }
.footer-legal {
  margin: 28px 0 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.6;
}

/* =========================================================
   INLINE PHOTO ACCENTS (woven into text sections)
========================================================= */
.photo-frame {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--mint-100);
  box-shadow: 0 24px 48px -30px rgba(13,54,32,0.4);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%; /* bias toward the top so faces are never cropped out */
  display: block;
  transition: transform .6s var(--ease);
}
.photo-frame:hover img { transform: scale(1.04); }

/* Philosophy: portrait accent tucked under the intro column */
.phil-photo { margin-top: 34px; aspect-ratio: 5 / 4; }

/* Results: photo paired with the pull-quote */
.results-quote {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  max-width: 900px;
}
.results-quote .photo-frame { aspect-ratio: 4 / 5; }
.results-quote .quote-body { }
.results-quote .quote-mark { margin-bottom: -10px; }
.results-quote p { text-align: left; }
.results-quote cite { text-align: left; }

/* CTA: portrait beside the copy */
.cta-inner.has-photo {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
  text-align: left;
  max-width: 1040px;
}
.cta-inner.has-photo .body-text { margin-left: 0; text-align: left; }
.cta-inner.has-photo .h2 { text-align: left; }
.cta-photo { aspect-ratio: 4 / 5; box-shadow: 0 30px 60px -28px rgba(0,0,0,0.5); }

/* =========================================================
   SECTION DISCLAIMERS
========================================================= */
.section-disclaimer {
  text-align: center;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-faint);
  max-width: 62ch;
  margin: 34px auto 0;
}

/* =========================================================
   R&R CLUB SIGNUP MODAL
========================================================= */
.nl-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.nl-modal.open { opacity: 1; pointer-events: all; }
.nl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,54,32,0.55);
  backdrop-filter: blur(4px);
}
.nl-modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
  transform: translateY(24px) scale(0.97);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.nl-modal.open .nl-modal-box { transform: translateY(0) scale(1); }
.nl-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease;
}
.nl-modal-close:hover { background: rgba(255,255,255,0.28); }
.nl-modal-header {
  background: linear-gradient(160deg, var(--green-600), var(--green-900));
  padding: 36px 32px 32px;
  text-align: left;
}
.nl-modal-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8e8c0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 4px 11px;
  margin-bottom: 14px;
}
.nl-modal-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(23px, 4vw, 28px);
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}
.nl-modal-perks {
  padding: 24px 32px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nl-modal-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.nl-modal-perk-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-100);
  color: var(--green-600);
  border-radius: 50%;
}
.nl-modal-cta {
  display: block;
  margin: 20px 32px 0;
  text-align: center;
  justify-content: center;
  font-size: 15px;
  padding: 14px 24px;
}
.nl-modal-disclaimer {
  margin: 12px 32px 24px;
  font-size: 12px;
  color: var(--ink-faint);
  text-align: center;
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1.in-view { transition-delay: .1s; }
.delay-2.in-view { transition-delay: .2s; }
.delay-3.in-view { transition-delay: .3s; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 420px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .phil-grid { grid-template-columns: 1fr; gap: 48px; }
  .club-inner { grid-template-columns: 1fr; gap: 40px; padding: 44px 36px; }
  .club-badge { max-width: 280px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-card--wide { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .stat:nth-child(2) { border-right: none; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Collapse the nav to a hamburger early enough that tablets never overflow */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    padding: 24px 32px 32px;
    border-bottom: 1px solid var(--line);
    gap: 20px;
    box-shadow: 0 20px 30px -20px rgba(13,54,32,0.25);
  }
  .nav.open .nav-menu-cta {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    background: var(--green-500);
    color: #fff;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 999px;
  }
  .nav-links .nav-menu-cta::after { content: none; }
}

@media (max-width: 720px) {
  .display { font-size: 56px; }
  .hero { padding: 38px 0 51px; }
  .about, .results, .philosophy, .performance, .quote-band, .expertise, .media, .club, .final-cta, .faq { padding-top: 58px; padding-bottom: 58px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card--wide { grid-column: span 1; }
  .results-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .press-row { padding-top: 18px; margin-top: 22px; }

  /* Stack the woven-in photos */
  .results-quote { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .results-quote p, .results-quote cite { text-align: center; }
  .results-quote .quote-mark { margin-bottom: -10px; }
  .results-quote .photo-frame { max-width: 300px; margin: 0 auto; width: 100%; }
  .cta-inner.has-photo { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .cta-inner.has-photo .h2, .cta-inner.has-photo .body-text { text-align: center; }
  .cta-inner.has-photo .body-text { margin-left: auto; margin-right: auto; }
  .cta-photo { max-width: 320px; margin: 0 auto; width: 100%; order: -1; }
  .phil-photo { max-width: 380px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .container { padding: 0 22px; }
  .club-inner { padding: 36px 26px; }
  .principles li { gap: 16px; }

  /* Performance card → stack controls, full-width CTA */
  .perf-card { padding: 20px 16px; }
  .perf-head { flex-direction: column; align-items: stretch; gap: 14px; margin-bottom: 16px; }
  .perf-modes { width: 100%; }
  .perf-mode { flex: 1; text-align: center; padding: 9px 8px; font-size: 12px; }
  .perf-canvas-wrap { height: 260px; }
  .perf-foot { flex-direction: column; align-items: stretch; gap: 18px; }
  .perf-cta { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .footer-follow .btn { align-self: stretch; justify-content: center; }
}

@media (max-width: 460px) {
  .display { font-size: 46px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; padding-right: 0; }
  .h2 { font-size: 28px; }
  .btn { padding: 15px 24px; }
}
