/* ============================================================
   BOLD — boldlife.io
   Design tokens derived from the BOLD Stylescape
   https://bold-stylescape-brief.vercel.app/
   ============================================================ */

:root {
  /* Colour */
  --black: #080808;
  --surface: #1c1c20;
  --glass: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --lime: #c8f135;
  --purple: #895af6;
  --white: #ffffff;
  --muted: #cccccc;
  --muted-dim: #8f8f8f;

  /* Typography */
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;
  --font-ui: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --font-logo: "Archivo Black", "Instrument Sans", system-ui, sans-serif;

  /* Scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 80px;

  /* Container */
  --container-max: 1120px;
  --container-gutter: 32px;

  /* Radius */
  --r-1: 4px;
  --r-2: 8px;
  --r-3: 12px;
  --r-4: 16px;
  --r-pill: 999px;
}

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
  position: relative;
}

/* ============================================================
   Typography
   ============================================================ */
.display-xl,
.display-l,
.display-m {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0 0 var(--s-6);
  color: var(--white);
}
.display-xl { font-size: clamp(44px, 7vw, 72px); }
.display-l  { font-size: clamp(36px, 5.2vw, 60px); }
.display-m  { font-size: clamp(28px, 3.2vw, 40px); }
.display-xl em,
.display-l em,
.display-m em { font-style: italic; color: var(--white); font-weight: 400; }
.display-xl .lime-em,
.display-l .lime-em,
.display-m .lime-em { color: var(--lime); }

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
  margin: 0 0 var(--s-5);
  opacity: 0.7;
}

.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 680px;
  margin: 0 0 var(--s-7);
}

.tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  margin-bottom: var(--s-4);
}
.tag-lime { color: var(--lime); border-color: rgba(200, 241, 53, 0.4); }
.lime { color: var(--lime); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

/* Primary CTA — chunky beveled lime button (matches Figma spec) */
.btn-primary {
  background: var(--lime);
  color: var(--black);
  border: 0;
  border-radius: 4px;
  padding: 6px 22px 13px 16px;
  letter-spacing: 0.15px;
  line-height: 22.5px;
  box-shadow:
    /* inset bevel: white highlight top-left, dark shadow bottom-right */
    inset 0 -1px 1px rgba(0, 0, 0, 0.15),
    inset 0.5px 1.5px 1px #fff,
    inset -2px -6px 1px rgba(0, 0, 0, 0.2),
    /* external drop shadow — layered */
    2px 2px 7px rgba(0, 0, 0, 0.1),
    9px 10px 13px rgba(0, 0, 0, 0.09),
    20px 22px 18px rgba(0, 0, 0, 0.05),
    35px 38px 21px rgba(0, 0, 0, 0.01);
}
.btn-primary:hover {
  background: #d4f862;
  box-shadow:
    inset 0 -1px 1px rgba(0, 0, 0, 0.15),
    inset 0.5px 1.5px 1px #fff,
    inset -2px -6px 1px rgba(0, 0, 0, 0.2),
    3px 3px 10px rgba(0, 0, 0, 0.12),
    12px 13px 16px rgba(0, 0, 0, 0.1),
    24px 26px 22px rgba(0, 0, 0, 0.06),
    40px 44px 25px rgba(0, 0, 0, 0.02);
}
.btn-primary:active {
  transform: translateY(1px);
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.2),
    inset -0.5px -1px 1px rgba(255, 255, 255, 0.5),
    inset 2px 4px 2px rgba(0, 0, 0, 0.18),
    1px 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--lime);
  border: 1px solid rgba(200, 241, 53, 0.35);
}
.btn-ghost:hover { border-color: var(--lime); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost-white:hover { border-color: var(--white); }

.btn-dark {
  background: #131313;
  color: var(--lime);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-dark:hover { background: #1a1a1a; border-color: rgba(200, 241, 53, 0.35); }

.btn-sm { padding: 10px 16px; font-size: 14px; }

.cta-row {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  max-width: 1440px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-svg {
  height: 20px;
  width: auto;
  display: block;
}
.nav-actions {
  display: flex;
  gap: var(--s-5);
  align-items: center;
}
.nav-link {
  font-size: 14px;
  color: var(--muted);
}
.nav-link:hover { color: var(--white); }

@media (max-width: 640px) {
  .nav-link { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 950px;
  aspect-ratio: 1440 / 950;
  padding: 140px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 85% 90%, rgba(137, 90, 246, 0.18), transparent 60%),
    radial-gradient(800px 500px at 10% 10%, rgba(137, 90, 246, 0.06), transparent 60%),
    var(--black);
}

/* Orb — absolutely positioned before content in DOM, sits behind text */
.hero-orb {
  position: absolute;
  left: 62.1%;
  top: 65.7%;
  width: 57%;
  aspect-ratio: 1 / 1;
  background: url('images/hero-orb.webp') center / cover no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* Photo card — hiking scene behind hero text */
.hero-photo {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: min(814px, calc(100% - 80px));
  height: 611px;
  background: url('images/hero-photo.webp') center / cover no-repeat;
  border-radius: 16px;
  pointer-events: none;
  z-index: 2;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 12, 17, 0.30);
  border-radius: 16px;
}
.hero-inner.container {
  position: relative;
  z-index: 3;
  max-width: 765px;         /* matches Figma div.container width */
  margin-inline: auto;      /* centres the text block within the 1440 hero */
}
.hero .display-xl { margin-bottom: var(--s-5); }

@media (max-width: 900px) {
  .hero {
    padding: 90px 0 80px;
    aspect-ratio: auto;
    min-height: auto;
    background:
      radial-gradient(900px 500px at 85% 95%, rgba(137, 90, 246, 0.2), transparent 60%),
      var(--black);
  }
  .hero-inner { padding-left: 0; }
  .hero-orb {
    left: auto;
    right: -15%;
    top: auto;
    bottom: -30%;
    width: 80%;
  }
  .hero-photo {
    top: 80px;
    height: 480px;
  }
}

@media (max-width: 640px) {
  .hero-orb {
    width: 110%;
    right: -25%;
    bottom: -40%;
  }
  .hero-photo {
    height: 380px;
  }
}

/* Stats row — dark card with vertical dividers */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: var(--s-9);
  max-width: 780px;
}
.stats-card {
  background: #0f0f10;
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  padding: var(--s-5) 0;
  overflow: hidden;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px var(--s-5);
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--lime);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 640px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats-card { padding: var(--s-4) 0; }
  .stat { padding: var(--s-3) var(--s-4); border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .stat-num { font-size: 32px; }
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who { padding: var(--s-10) 0; position: relative; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-7);
}
.who-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  padding: var(--s-6);
  transition: border-color .2s ease, transform .2s ease;
}
.who-card:hover { border-color: rgba(200, 241, 53, 0.25); transform: translateY(-2px); }
.who-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 var(--s-3);
  color: var(--white);
}
.who-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 960px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .who-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NOT FOR BAR
   ============================================================ */
.notfor-bar {
  background: rgba(200, 241, 53, 0.06);
  border-top: 1px solid rgba(200, 241, 53, 0.18);
  border-bottom: 1px solid rgba(200, 241, 53, 0.18);
  padding: 20px 0;
}
.notfor-bar p {
  margin: 0;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
}
.notfor-bar strong { color: var(--lime); font-weight: 600; letter-spacing: 0.02em; }

/* ============================================================
   PROBLEMS
   ============================================================ */
.problems { padding: var(--s-10) 0; position: relative; min-height: 100vh; }

.problems-photo {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1196px, calc(100% - 48px));
  aspect-ratio: 1196 / 796;
  background: url('images/problems-photo.webp') center / cover no-repeat;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}
.problems-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 12, 17, 0.30);
  border-radius: 16px;
}
.problems .container { position: relative; z-index: 1; }

.problems-grid {
  list-style: none;
  padding: 0;
  margin: var(--s-7) 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-3);
}
.problems-grid li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: var(--s-5);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  position: relative;
}
.problems-grid li::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: rgba(200, 241, 53, 0.45);
  border-radius: 3px 0 0 3px;
}
@media (max-width: 720px) { .problems-grid { grid-template-columns: 1fr; } }

/* ============================================================
   OLD WAYS (compare)
   ============================================================ */
.old-ways {
  padding: var(--s-10) 0;
  background:
    radial-gradient(700px 300px at 90% 10%, rgba(137, 90, 246, 0.1), transparent 60%),
    var(--black);
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.compare-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  padding: var(--s-6);
}
.compare-pros {
  border-color: rgba(200, 241, 53, 0.3);
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.04), var(--surface));
}
.col-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 var(--s-5);
  opacity: 0.85;
}
.compare-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-4); }
.compare-col li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--s-2);
}
.compare-col .x { color: rgba(255, 255, 255, 0.55); font-family: var(--font-ui); }
.compare-col .check { color: var(--lime); font-family: var(--font-ui); font-weight: 700; }
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }

/* ============================================================
   OUTCOMES
   ============================================================ */
.outcomes {
  padding: var(--s-10) 0;
  position: relative;
  background:
    radial-gradient(900px 500px at 110% 70%, rgba(200, 241, 53, 0.08), transparent 55%),
    radial-gradient(700px 400px at -10% 10%, rgba(137, 90, 246, 0.1), transparent 60%),
    var(--black);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-7);
  margin-top: var(--s-7);
}
.outcomes-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.outcomes-list li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: var(--s-2);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--border);
}
.outcomes-list .arr { color: var(--lime); font-family: var(--font-ui); font-weight: 700; }

.pullquote {
  background: url('images/outcomes-photo.webp') center / cover no-repeat;
  border-radius: var(--r-4);
  padding: var(--s-7);
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 12, 17, 0.40);
  border-radius: var(--r-4);
  z-index: 0;
}
.pullquote > * { position: relative; z-index: 1; }
.pullquote-mark {
  position: absolute;
  top: -10px;
  left: var(--s-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 180px;
  line-height: 1;
  color: #C8F135;
  opacity: 0.4;
  pointer-events: none;
}
.pullquote blockquote {
  margin: 48px 0 var(--s-5);
  padding: 0;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 20px;
  line-height: 1.45;
  color: var(--white);
}
.pullquote blockquote p { margin: 0 0 var(--s-4); }
.pullquote blockquote footer {
  font-family: var(--font-body);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
}
.pullquote-small blockquote,
.pullquote blockquote.pullquote-small {
  font-size: 20px;
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}
@media (max-width: 960px) { .outcomes-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROGRAMME
   ============================================================ */
.programme {
  padding: var(--s-10) 0;
  position: relative;
  background:
    linear-gradient(180deg, rgba(137, 90, 246, 0.12), transparent 35%),
    var(--black);
}
.programme-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-7);
  margin-top: var(--s-6);
}
.programme-copy p {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 var(--s-4);
}
.programme-includes {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  padding: var(--s-6);
}
.programme-includes h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 var(--s-4);
  color: var(--white);
}
.programme-includes ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.programme-includes li {
  font-size: 15px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.programme-includes li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: 700;
}
@media (max-width: 960px) { .programme-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOW IT WORKS — 7 week journey
   ============================================================ */
.how { padding: var(--s-10) 0; }
.weeks {
  list-style: none;
  padding: 0;
  margin: var(--s-7) 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.week {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 200px;
}
.week-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}
.week h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--white);
}
.week p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.week-highlight {
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.12), var(--surface));
  border-color: rgba(200, 241, 53, 0.35);
}
.week-cta {
  position: relative;
  background:
    linear-gradient(rgba(28,28,32,0.20), rgba(28,28,32,0.20)),
    url('images/week-cta-bg.webp') right center / cover no-repeat;
  border-color: transparent;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.week-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/week-cta-noise.webp') top left / 1024px 1024px repeat;
  opacity: 0.08;
  pointer-events: none;
  border-radius: var(--r-4);
}
.week-cta h3 { color: var(--white); }
.week-cta .btn-primary {
  background: var(--black);
  color: var(--lime);
  border: 0;
  border-radius: 4px;
  padding: 6px 22px 13px 16px;
  font-size: 14px;
  letter-spacing: 0.15px;
  line-height: 22.5px;
  box-shadow:
    inset 0 -1px 1px rgba(0, 0, 0, 0.15),
    inset 0.5px 1.5px 1px rgba(255, 255, 255, 0.12),
    inset -2px -6px 1px rgba(0, 0, 0, 0.3),
    2px 2px 7px rgba(0, 0, 0, 0.2),
    9px 10px 13px rgba(0, 0, 0, 0.18),
    20px 22px 18px rgba(0, 0, 0, 0.1),
    35px 38px 21px rgba(0, 0, 0, 0.02);
}
.week-cta .btn-primary:hover {
  background: #111;
  box-shadow:
    inset 0 -1px 1px rgba(0, 0, 0, 0.15),
    inset 0.5px 1.5px 1px rgba(255, 255, 255, 0.12),
    inset -2px -6px 1px rgba(0, 0, 0, 0.3),
    3px 3px 10px rgba(0, 0, 0, 0.22),
    12px 13px 16px rgba(0, 0, 0, 0.2),
    24px 26px 22px rgba(0, 0, 0, 0.12),
    40px 44px 25px rgba(0, 0, 0, 0.04);
}
@media (max-width: 960px) { .weeks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .weeks { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--s-10) 0;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(137, 90, 246, 0.08), transparent 60%),
    var(--black);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-4);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.testimonial .stars {
  font-family: var(--font-ui);
  color: var(--lime);
  letter-spacing: 0.1em;
  font-size: 14px;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--white);
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}
.t-role, .t-tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.t-tag { color: var(--muted); }

.testimonials-grid .testimonial:nth-child(2),
.testimonials-grid .testimonial:nth-child(3),
.testimonials-grid .testimonial:nth-child(5),
.testimonials-grid .testimonial:nth-child(6) {
  background-image: url('images/testimonial-photo.webp');
  background-size: 696px 870px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}
.testimonials-grid .testimonial:nth-child(2)::before,
.testimonials-grid .testimonial:nth-child(3)::before,
.testimonials-grid .testimonial:nth-child(5)::before,
.testimonials-grid .testimonial:nth-child(6)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 12, 17, 0.40);
  border-radius: var(--r-4);
  z-index: 0;
}
.testimonials-grid .testimonial:nth-child(2) > *,
.testimonials-grid .testimonial:nth-child(3) > *,
.testimonials-grid .testimonial:nth-child(5) > *,
.testimonials-grid .testimonial:nth-child(6) > * { position: relative; z-index: 1; }
.testimonials-grid .testimonial:nth-child(2) { background-position: 0 0; }
.testimonials-grid .testimonial:nth-child(3) { background-position: -360px 0; }
.testimonials-grid .testimonial:nth-child(5) { background-position: 0 -473px; }
.testimonials-grid .testimonial:nth-child(6) { background-position: -360px -473px; }

@media (max-width: 960px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   OBJECTIONS (accordion)
   ============================================================ */
.objections { padding: var(--s-10) 0; }
.objections-list {
  list-style: none;
  padding: 0;
  margin: var(--s-7) 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-width: 920px;
}
.objections-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: 0;
  transition: border-color .2s ease;
}
.objections-list details[open] { border-color: rgba(200, 241, 53, 0.35); }
.objections-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  cursor: pointer;
  list-style: none;
}
.objections-list summary::-webkit-details-marker { display: none; }
.obj-q {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.4;
}
.objections-list details[open] .obj-q { color: var(--white); }
.obj-toggle {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--lime);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.objections-list details[open] .obj-toggle { transform: rotate(45deg); }
.objections-list details > p {
  padding: 0 var(--s-6) var(--s-6);
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 780px;
}

/* ============================================================
   CTA mega
   ============================================================ */
.cta-section {
  position: relative;
  padding: var(--s-10) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(137, 90, 246, 0.14), transparent 50%),
    var(--black);
}
.cta-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(600px, 85%, 1300px);
  pointer-events: none;
  z-index: 0;
  line-height: 0;
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner .lead,
.cta-inner .display-l { margin-left: auto; margin-right: auto; }
.cta-inner .cta-row { justify-content: center; margin-top: var(--s-5); }
.cta-fine {
  font-size: 12px;
  color: var(--muted);
  margin-top: var(--s-5);
  opacity: 0.7;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--s-10) 0;
  border-top: 1px solid var(--border);
}
.about-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: var(--s-8);
  align-items: start;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-4);
  display: block;
  filter: saturate(0.95) contrast(1.02);
}
.about-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 var(--s-4);
}
@media (max-width: 820px) { .about-layout { grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: var(--s-8) 0 var(--s-7);
  border-top: 1px solid var(--border);
  background: #050505;
}
.footer-inner { display: flex; flex-direction: column; gap: var(--s-3); align-items: flex-start; }
.foot-logo {
  height: 16px;
  width: auto;
  display: block;
  margin: 0 0 var(--s-3);
}
.foot-desc { font-size: 14px; color: var(--muted); margin: 0; max-width: 520px; }
.foot-contact { font-size: 14px; color: var(--muted); margin: var(--s-3) 0 var(--s-5); }
.foot-contact a { color: var(--lime); }
.foot-contact a:hover { text-decoration: underline; }
.foot-meta {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
  margin: 0;
}

/* ============================================================
   Page-load fade in
   ============================================================ */
@keyframes fadein-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
html.js-loaded body { animation: fadein-up .6s ease both; }

/* ============================================================
   Reduce motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Scroll to top
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease, border-color .2s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover {
  background: rgba(200, 241, 53, 0.12);
  border-color: rgba(200, 241, 53, 0.35);
  color: var(--lime);
}
@media (max-width: 640px) {
  .scroll-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ============================================================
   Staff login — discreet trigger + modal
   ============================================================ */
.staff-trigger {
  background: none;
  border: none;
  padding: 0 0 0 6px;
  margin: 0;
  color: var(--muted-dim);
  font-size: 11px;
  cursor: pointer;
  user-select: none;
  opacity: 0.28;
  transition: opacity .2s ease, color .2s ease;
  line-height: 1;
}
.staff-trigger:hover { opacity: 1; color: var(--lime); }

/* Modal backdrop */
.staff-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.staff-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Modal card */
.staff-modal {
  background: #0f0f11;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 40px 36px;
  width: min(400px, calc(100vw - 48px));
  position: relative;
  transform: translateY(12px);
  transition: transform .25s ease;
}
.staff-modal-backdrop.is-open .staff-modal {
  transform: translateY(0);
}
.staff-modal-logo {
  height: 14px;
  width: auto;
  display: block;
  margin-bottom: 28px;
  opacity: 0.7;
}
.staff-modal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 6px;
}
.staff-modal p {
  font-size: 13px;
  color: var(--muted-dim);
  margin: 0 0 28px;
}
.staff-modal label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 8px;
}
.staff-modal input[type="password"] {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color .18s ease;
  box-sizing: border-box;
}
.staff-modal input[type="password"]:focus {
  border-color: rgba(200,241,53,0.4);
}
.staff-modal-error {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 8px;
  min-height: 16px;
  display: block;
}
.staff-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 24px;
}
.staff-modal-cancel {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-size: 13px;
  color: var(--muted-dim);
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.staff-modal-cancel:hover { border-color: rgba(255,255,255,0.25); color: var(--white); }
.staff-modal-submit {
  background: var(--lime);
  border: none;
  border-radius: 4px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: background .15s ease;
}
.staff-modal-submit:hover { background: #d4f862; }
.staff-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted-dim);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  border-radius: 4px;
}
.staff-modal-close:hover { color: var(--white); }
