/*
 * Caddium marketing pages — selected four-page direction.
 *
 * This stylesheet intentionally stands on its own. All four pages use the
 * same tokens and components, while live pricing remains owned by prijzen.js.
 */

@font-face {
  font-family: "Sora";
  src: url("/static/fonts/sora-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/static/fonts/inter-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --ref-green: #073f2f;
  --ref-green-2: #005238;
  --ref-ink: #171b18;
  --ref-muted: #5f655f;
  --ref-paper: #fffefa;
  --ref-bg: #faf9f6;
  --ref-sage: #e9f1e4;
  --ref-sage-2: #f1f5ed;
  --ref-gold: #d99a08;
  --ref-gold-text: #9c6e06;   /* 4,52:1 op wit */
  --ref-green-text: #5a804f;  /* 4,53:1 op wit */
  --ref-line: #e6e1d7;
  --ref-radius: 14px;
  --ref-radius-lg: 20px;
  --ref-shadow: 0 12px 36px rgba(25, 50, 39, 0.06);
  --ref-max: 1180px;
  --ref-gutter: clamp(18px, 4vw, 48px);
  --ref-section: clamp(48px, 6vw, 76px);
}

body.reference-site {
  margin: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: var(--ref-bg);
  color: var(--ref-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.reference-site * { box-sizing: border-box; }
.reference-site h1,
.reference-site h2,
.reference-site h3 { margin-top: 0; color: var(--ref-green); font-family: "Sora", system-ui, sans-serif; letter-spacing: -.035em; }
.reference-site a { color: inherit; }
.reference-site :focus-visible { outline: 3px solid var(--gold-text, #80672E); outline-offset: 3px; }

.ref-container { width: min(calc(100% - (2 * var(--ref-gutter))), var(--ref-max)); margin-inline: auto; }
.ref-container--narrow { max-width: 900px; }
.ref-section { padding-block: var(--ref-section); }
.ref-section--small { padding-block: clamp(32px,4.5vw,52px); }
.ref-card { border: 1px solid var(--ref-line); border-radius: var(--ref-radius-lg); background: rgba(255,255,255,.84); box-shadow: var(--ref-shadow); }
.ref-eyebrow { margin: 0 0 14px; color: var(--ref-green); font-family: "Sora",sans-serif; font-size: .76rem; font-weight: 750; letter-spacing: .18em; line-height: 1.2; text-transform: uppercase; }
.ref-section-title { margin-bottom: 38px; text-align: center; }
.ref-section-title h2 { margin-bottom: 10px; font-size: clamp(2rem,4vw,3rem); font-weight: 610; }
.ref-section-title p { max-width: 620px; margin: 0 auto; color: var(--ref-muted); line-height: 1.65; }
.ref-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.ref-actions--center { justify-content: center; }

.reference-site .ref-btn,
.reference-site .btn {
  min-height: 44px;
  padding: .68rem 1rem;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.reference-site .ref-btn--primary,
.reference-site .btn-primary { border: 1px solid var(--ref-green); background: var(--ref-green); color: #fff; box-shadow: 0 8px 20px rgba(7,63,47,.13); }
.reference-site .ref-btn--outline,
.reference-site .btn-secondary,
.reference-site .btn-ghost { border: 1px solid rgba(7,63,47,.55); background: #fff; color: var(--ref-green); }

/* Shared public chrome -------------------------------------------------- */

.reference-site .site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: auto;
  border-bottom: 1px solid rgba(7,63,47,.09);
  background: rgba(255,255,252,.97);
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.reference-site .site-nav .nav-bar {
  min-height: 74px;
  gap: clamp(10px,1.8vw,24px);
  padding-block: 8px;
}
.reference-site .site-nav .nav-brand { width: 204px; min-width: 204px; }
.brand-lockup--official { display: inline-flex; align-items: center; }
.reference-site .site-nav .brand-emblem--official { width: 44px; height: 44px; border-radius: 11px; box-shadow: 0 2px 8px rgba(7,63,47,.1); }
.brand-wordmark--official { display: block; width: 150px; line-height: 0; }
.brand-wordmark--official img { display: block; width: 100%; height: auto; }

.reference-site .site-nav .nav-links { margin-inline: auto; }
.reference-site .site-nav .nav-items { gap: clamp(4px,1.15vw,18px); }
.reference-site .site-nav .nav-item { display: flex; align-items: center; }
.reference-site .site-nav .nav-link {
  position: relative;
  padding: 12px 3px 14px;
  border-radius: 0;
  background: transparent;
  color: var(--ref-ink);
  font-size: .84rem;
  font-weight: 520;
}
.reference-site .site-nav .nav-link:hover,
.reference-site .site-nav .nav-link.active,
.reference-site .site-nav .nav-link[aria-current="page"] { background: transparent; color: var(--ref-green); }
.reference-site .site-nav .nav-link.active::after,
.reference-site .site-nav .nav-link[aria-current="page"]::after {
  position: absolute;
  right: 3px;
  bottom: 5px;
  left: 3px;
  height: 2px;
  border-radius: 99px;
  background: var(--ref-green);
  content: "";
}
.reference-site .site-nav .nav-sub-toggle { display: none; }
.reference-site .site-nav .nav-sub { border-color: var(--ref-line); border-radius: 12px; box-shadow: var(--ref-shadow); }
.reference-site .site-nav .nav-mobile-actions { display: none !important; }
.reference-site .site-nav .nav-actions { gap: 12px; }
.reference-site .site-nav .lang-picker { display: none !important; }
.reference-site .site-nav .nav-login-link { padding: .5rem .65rem; color: var(--ref-ink); font-size: .84rem; font-weight: 520; }
.reference-site .site-nav .nav-cta-btn { min-height: 42px; padding: .6rem 1rem; border-radius: 10px; font-size: .82rem; }

.reference-site .site-footer {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ref-line);
  background: var(--ref-paper);
  color: var(--ref-muted);
}
.reference-site .site-footer > .footer-grid,
.reference-site .site-footer > .footer-bottom { display: none; }
.reference-site .reference-footer-simple {
  display: grid;
  min-height: 88px;
  grid-template-columns: 130px 1fr auto;
  gap: 28px;
  align-items: center;
}
.reference-site .reference-footer-simple .footer-logo { width: 122px; margin: 0; }
.reference-site .reference-footer-simple nav { display: flex; justify-content: center; gap: clamp(20px,4vw,52px); }
.reference-site .reference-footer-simple a { color: var(--ref-muted); font-size: .78rem; text-decoration: none; }
.reference-site .reference-footer-simple a:hover { color: var(--ref-green); }
.reference-site .reference-footer-simple p { margin: 0; color: var(--ref-muted); font-size: .78rem; white-space: nowrap; }

/* Try page -------------------------------------------------------------- */
.reference-site.probeer-page { background: var(--ref-paper); }
.reference-site.probeer-page .page-hero {
  padding: clamp(42px, 7vw, 82px) var(--ref-gutter) clamp(34px, 5vw, 58px);
  border-bottom: 1px solid var(--ref-line);
  background: var(--ref-sage-2);
  text-align: center;
}
body.reference-site > main { flex: 1 0 auto; width: 100%; }
.reference-site.probeer-page .page-hero-inner { max-width: 820px; margin: 0 auto; padding: 0; }
.reference-site.probeer-page .page-hero h1 {
  max-width: 15ch;
  margin: 0 auto 18px;
  color: var(--ref-green);
  font-family: var(--font-head);
  font-size: clamp(2.55rem, 5.4vw, 4.2rem);
  font-weight: 620;
  letter-spacing: -.045em;
  line-height: 1.04;
}
.reference-site.probeer-page .page-hero-lead {
  max-width: 590px;
  margin: 0 auto;
  color: var(--ref-muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.6;
}
.reference-site.probeer-page .probeer-main {
  max-width: 760px;
  padding: clamp(30px, 5vw, 54px) var(--ref-gutter) 72px;
}
.reference-site.probeer-page .probeer-main > .card {
  border: 1px solid var(--ref-line);
  border-radius: 20px;
  background: var(--ref-card);
  box-shadow: var(--ref-shadow);
}
.reference-site.probeer-page .probeer-upload-card { padding: clamp(24px, 4vw, 40px); }
.reference-site.probeer-page .probeer-step-heading {
  gap: 16px;
  margin-bottom: 30px;
}
.reference-site.probeer-page .step-number {
  display: grid;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  border-radius: 13px;
  background: var(--ref-sage-2);
  color: var(--ref-green);
  font-family: var(--font-body);
  font-size: .76rem;
  letter-spacing: .08em;
}
.reference-site.probeer-page .probeer-step-heading h2 { margin: 0 0 6px; color: var(--ref-green); font-size: clamp(1.35rem, 3vw, 1.75rem); }
.reference-site.probeer-page .probeer-step-heading p { margin: 0; color: var(--ref-muted); }
.reference-site.probeer-page .trial-viewpoint { margin-bottom: 28px; }
.reference-site.probeer-page .trial-viewpoint legend { color: var(--ref-green); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.reference-site.probeer-page .trial-viewpoint-options { gap: 12px; margin-top: 12px; }
.reference-site.probeer-page .flight-option { border-color: var(--ref-line); background: var(--ref-paper); }
.reference-site.probeer-page .flight-option:hover,
.reference-site.probeer-page .flight-option:has(input:checked) { border-color: var(--ref-green); background: var(--ref-sage-2); }
.reference-site.probeer-page .field-hint { color: var(--ref-muted); font-size: .84rem; line-height: 1.55; }
.reference-site.probeer-page .dropzone {
  min-height: 245px;
  border: 1.5px dashed rgba(7,63,47,.32);
  border-radius: 16px;
  background: linear-gradient(145deg, var(--ref-sage-2), var(--ref-card));
}
.reference-site.probeer-page .dropzone:hover,
.reference-site.probeer-page .dropzone:focus-visible,
.reference-site.probeer-page .dropzone.active { border-color: var(--ref-green); background: #edf5ed; }
.reference-site.probeer-page .upload-icon { width: 44px; height: 44px; color: var(--ref-green); }
.reference-site.probeer-page .dropzone-title { color: var(--ref-green); font-size: 1rem; }
.reference-site.probeer-page .dropzone-hint { color: var(--ref-muted); }

@media (max-width: 640px) {
  .reference-site.probeer-page .page-hero { padding-top: 34px; padding-bottom: 30px; }
  .reference-site.probeer-page .page-hero h1 { font-size: clamp(2.2rem, 11vw, 3.1rem); }
  .reference-site.probeer-page .probeer-main { padding-inline: 16px; }
  .reference-site.probeer-page .probeer-upload-card { padding: 22px 18px; }
}

/* Home ------------------------------------------------------------------ */

.ref-home-hero { position: relative; overflow: hidden; padding: clamp(22px,3vw,34px) 0 22px; background: var(--ref-paper); text-align: center; }
.ref-home-hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 50% 62%, transparent 0 28%, rgba(7,63,47,.045) 29% 29.2%, transparent 29.4% 39%, rgba(7,63,47,.04) 39.2% 39.4%, transparent 39.6%), linear-gradient(rgba(7,63,47,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(7,63,47,.035) 1px,transparent 1px); background-size: auto,72px 72px,72px 72px; content: ""; }
.ref-home-hero .ref-container { position: relative; }
.ref-announcement { display: inline-flex; gap: 10px; align-items: center; margin-bottom: 24px; padding: 7px 16px; border: 1px solid rgba(7,63,47,.22); border-radius: 999px; background: rgba(255,255,255,.78); color: var(--ref-green); font-size: .8rem; text-decoration: none; }
.ref-home-hero h1 { max-width: 14ch; margin: 0 auto 14px; font-size: clamp(2.75rem,6vw,4rem); font-weight: 620; line-height: 1.03; }
.ref-home-hero__lead { max-width: 610px; margin: 0 auto 21px; color: var(--ref-muted); font-size: clamp(1rem,1.6vw,1.14rem); line-height: 1.55; }
.ref-home-hero__note { margin: 13px 0 0; color: var(--ref-muted); font-size: .82rem; }

/* One-screen home: keep the existing brand, with two clear hero actions. */
body.home-page--focused { display: flex; flex-direction: column; min-height: 100vh; min-height: 100svh; overflow-y: scroll; scrollbar-gutter: stable; }
.home-page--focused .site-footer { display: none; }
.home-page--focused #main { display: flex; flex: 1; width: 100%; max-width: none; margin: 0; padding: 0; }
.home-page--focused .ref-home-hero { display: grid; align-items: center; width: 100%; padding-block: clamp(48px, 9vh, 112px); }
.home-page--focused .home-brand-lockup { display: inline-flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: clamp(30px, 5vh, 54px); }
.home-page--focused .home-brand-lockup__icon { width: clamp(64px, 9vw, 104px); height: auto; border-radius: 22%; box-shadow: 0 8px 24px rgba(7,63,47,.12); }
.home-page--focused .home-brand-lockup__wordmark { width: clamp(210px, 31vw, 370px); height: auto; }
.home-page--focused .ref-home-hero h1 { max-width: 19ch; margin-bottom: 26px; font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.08; text-wrap: balance; }
.home-page--focused .ref-eyebrow { margin-bottom: 24px; }
.home-page--focused .ref-home-hero__lead { max-width: 540px; margin-bottom: 32px; text-wrap: pretty; }
.home-page--focused .ref-actions { max-width: 580px; margin-inline: auto; }
.home-page--focused .ref-actions .ref-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 22px; font-size: .9rem; }
.home-page--focused .ref-home-hero__note { margin-top: 20px; }
.home-page--focused .nav-cta-btn { display: none; }

.ref-home-hero + .ref-section--small { padding: 18px 0 8px; }
.ref-home-hero ~ .ref-section { padding: 30px 0 26px; }
.ref-home-hero ~ .ref-section .ref-section-title { margin-bottom: 20px; }

.ref-home-analysis { padding: 18px; }
.ref-analysis-top { display: grid; grid-template-columns: minmax(0,1.75fr) minmax(280px,.85fr); gap: 18px; }
.ref-home-analysis .ref-analysis-top { height: 350px; }
.ref-media { position: relative; overflow: hidden; min-height: 350px; border-radius: var(--ref-radius); background: #dfe9e1; }
.ref-media img { display: block; width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.ref-play { position: absolute; inset: 50% auto auto 50%; display: grid; width: 68px; height: 68px; place-items: center; border: 2px solid #fff; border-radius: 50%; background: rgba(7,63,47,.92); color: #fff; transform: translate(-50%,-50%); }
.ref-play::before { width: 0; height: 0; margin-left: 5px; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 16px solid currentColor; content: ""; }
.ref-feedback-stack { display: grid; gap: 16px; }
.ref-feedback { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 12px; align-content: center; min-height: 0; padding: 17px; border: 1px solid var(--ref-line); border-radius: var(--ref-radius); background: #fff; }
.ref-round-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #79a66b; color: #fff; font-size: 1.2rem; font-weight: 800; }
.ref-round-icon--gold { background: var(--ref-gold); }
.ref-feedback small { display: block; margin-bottom: 8px; color: var(--ref-green-text); font-weight: 700; }
.ref-feedback--focus small { color: var(--ref-gold-text); }
.ref-feedback h3 { margin: 0 0 7px; font-size: 1.2rem; line-height: 1.25; }
.ref-feedback p { margin: 0; color: var(--ref-muted); line-height: 1.55; }

.ref-benefits { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin: 18px 0 0; padding: 16px 14px; list-style: none; }
.ref-benefits li { padding: 0 22px; border-right: 1px solid var(--ref-line); text-align: center; }
.ref-benefits li:last-child { border-right: 0; }
.ref-benefit-icon { display: grid; width: 32px; height: 32px; margin: 0 auto 7px; place-items: center; color: var(--ref-green); font-size: 1.3rem; }
.ref-benefit-icon svg { width: 27px; height: 27px; }
.ref-benefits strong { display: block; margin-bottom: 5px; color: var(--ref-green); }
.ref-benefits span { color: var(--ref-muted); font-size: .88rem; line-height: 1.45; }

.ref-discovery { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.ref-discovery a { display: flex; min-height: 220px; flex-direction: column; padding: 18px; border: 1px solid var(--ref-line); border-radius: var(--ref-radius); background: #fff; text-decoration: none; }
.ref-discovery .ref-round-icon { width: 36px; height: 36px; margin-bottom: 8px; background: var(--ref-sage); color: var(--ref-green); }
.ref-discovery small { color: #548359; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.ref-discovery h3 { margin: 9px 0 6px; font-size: 1.18rem; }
.ref-discovery p { margin: 0 0 10px; color: var(--ref-muted); line-height: 1.45; }
.ref-discovery b { margin-top: auto; color: var(--ref-green); }

.ref-closing { position: relative; overflow: hidden; padding: 20px var(--ref-gutter); background: linear-gradient(rgba(0,65,45,.94),rgba(0,65,45,.94)),url('/static/images/hero-course.jpg') center 68%/cover; color: #fff; text-align: center; }
.ref-closing h2 { margin-bottom: 8px; color: #fff; font-size: clamp(1.75rem,3.2vw,2.35rem); }
.ref-closing p { margin: 0 0 18px; color: rgba(255,255,255,.8); }
.ref-closing .ref-btn { min-width: 220px; background: #fff; color: var(--ref-green); }

/* How it works ---------------------------------------------------------- */

.ref-how-page main .ref-container { width: min(calc(100% - (2 * var(--ref-gutter))),1040px); }
.ref-how-hero { padding: clamp(30px,4vw,48px) 0 24px; background: var(--ref-paper); }
.ref-how-hero__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,408px); gap: clamp(34px,5vw,58px); align-items: center; }
.ref-how-hero h1,.ref-how-hero h2 { max-width: 14ch; margin-bottom: 14px; font-size: clamp(2.45rem,4.3vw,3.2rem); font-weight: 620; line-height: 1.04; }
.ref-how-hero__lead { max-width: 52ch; margin: 0 0 22px; color: var(--ref-muted); font-size: 1rem; line-height: 1.58; }
.ref-how-hero__image { width: min(100%,408px); justify-self: end; }
.ref-how-hero__image img { display: block; width: 100%; height: auto; aspect-ratio: 408 / 310; object-fit: contain; }
.ref-how-hero .ref-actions { gap: 9px; }
.ref-how-hero .ref-btn { min-height: 40px; padding: .58rem .7rem; font-size: .7rem; }

.ref-model-story { padding: clamp(18px,2.8vw,34px) 0 clamp(30px,4vw,48px); border-block: 1px solid rgba(7,63,47,.08); background: linear-gradient(180deg,#edf4e9 0%,#f4f7f0 100%); }
.ref-model-story__intro { display: grid; grid-template-columns: minmax(0,.92fr) minmax(300px,.72fr); gap: clamp(24px,5vw,62px); align-items: center; margin-bottom: 14px; }
.ref-model-story__intro h1,.ref-model-story__intro h2 { max-width: 22ch; margin: 0; font-size: clamp(1.8rem,2.8vw,2.35rem); font-weight: 620; line-height: 1.08; }
.ref-model-story__lead { max-width: 54ch; }
.ref-model-story__lead p { margin: 0; color: var(--ref-muted); font-size: .86rem; line-height: 1.5; }
.ref-model-story__lead p + p { margin-top: 6px; }
.ref-model-story__lead strong { color: var(--ref-green); }
.ref-model-shell { overflow: hidden; border: 1px solid rgba(7,63,47,.15); border-radius: var(--ref-radius-lg); background: var(--ref-paper); box-shadow: 0 24px 60px rgba(25,50,39,.11); }
.ref-model-shell__bar { display: flex; min-height: 68px; gap: 24px; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid var(--ref-line); background: rgba(255,254,250,.96); }
.ref-model-shell__bar > div { display: flex; gap: 13px; align-items: center; }
.ref-model-shell__bar strong { color: var(--ref-green); font-family: "Sora",sans-serif; font-size: .82rem; font-weight: 650; }
.ref-model-shell__bar > a { flex: 0 0 auto; color: var(--ref-green); font-size: .78rem; font-weight: 750; text-decoration: none; }
.ref-model-shell__bar > a:hover { color: var(--ref-gold-text); }
.ref-model-badge { display: inline-flex; gap: 7px; align-items: center; padding: 6px 10px; border-radius: 999px; background: var(--ref-sage); color: var(--ref-green); font-size: .65rem; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.ref-model-badge i { width: 7px; height: 7px; border-radius: 50%; background: #5c9568; box-shadow: 0 0 0 4px rgba(92,149,104,.14); }
.ref-model-shell iframe { display: block; width: 100%; height: min(72vh,680px); min-height: 590px; border: 0; background: #edf2ea; }
.ref-model-lenses { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; }
.ref-model-lenses li { min-width: 0; overflow: hidden; border: 1px solid rgba(7,63,47,.1); border-radius: var(--ref-radius); background: rgba(255,254,250,.82); transition: border-color .18s ease,background .18s ease,box-shadow .18s ease,transform .18s ease; }
.ref-model-lenses li:hover { border-color: rgba(7,63,47,.28); background: #fffefa; transform: translateY(-2px); }
.ref-model-lenses li.is-active { border-color: rgba(217,154,8,.72); background: #fffefa; box-shadow: 0 10px 28px rgba(25,50,39,.08); }
.ref-model-lenses button { display: grid; width: 100%; min-height: 100%; grid-template-columns: 36px minmax(0,1fr); gap: 12px; align-items: start; padding: 16px; border: 0; background: transparent; color: inherit; font: inherit; text-align: left; cursor: pointer; }
.ref-model-lenses button:focus-visible { outline: 3px solid rgba(217,154,8,.5); outline-offset: -3px; }
.ref-model-lenses button > span { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; background: var(--ref-green); color: #fff; font-family: "Sora",sans-serif; font-size: .74rem; font-weight: 700; transition: background .18s ease,color .18s ease; }
.ref-model-lenses li.is-active button > span { background: var(--ref-gold); color: var(--ref-green); }
.ref-model-lenses strong { display: block; margin: 1px 0 4px; color: var(--ref-green); font-family: "Sora",sans-serif; font-size: .88rem; }
.ref-model-lenses p { margin: 0; color: var(--ref-muted); font-size: .74rem; line-height: 1.5; }
.ref-model-conclusion { display: grid; grid-template-columns: minmax(260px,.8fr) minmax(0,1.2fr); gap: clamp(28px,6vw,72px); align-items: center; margin-top: 18px; padding: clamp(22px,3vw,30px); border-radius: var(--ref-radius); background: var(--ref-green); color: #fff; }
.ref-model-conclusion .ref-eyebrow { margin-bottom: 7px; color: rgba(255,255,255,.66); }
.ref-model-conclusion h3 { margin: 0; color: #fff; font-size: clamp(1.35rem,2.3vw,1.8rem); line-height: 1.18; }
.ref-model-conclusion > p { max-width: 58ch; margin: 0; color: rgba(255,255,255,.82); font-size: .9rem; line-height: 1.65; }

.ref-steps { display: grid; gap: 18px; }
.ref-step { display: grid; grid-template-columns: minmax(260px,.82fr) minmax(0,1.18fr); gap: clamp(24px,4vw,44px); align-items: center; min-height: 230px; padding: clamp(22px,3vw,30px); overflow: hidden; }
.ref-step__copy { min-width: 0; }
.ref-step__label { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.ref-step__number { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 12px; background: var(--ref-sage); color: var(--ref-green); font-family: "Sora",sans-serif; font-size: 1rem; font-weight: 700; line-height: 1; }
.ref-step__role { color: var(--ref-green); font-family: "Sora",sans-serif; font-size: .72rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.ref-step h2 { max-width: 18ch; margin-bottom: 9px; font-size: clamp(1.45rem,2.2vw,1.7rem); line-height: 1.18; }
.ref-step p { max-width: 42ch; margin: 0 0 14px; color: var(--ref-muted); font-size: .9rem; line-height: 1.58; }
.ref-step__link { color: var(--ref-green); font-weight: 750; text-decoration: none; }
.ref-checks { display: grid; gap: 6px; margin: 11px 0; padding: 0; list-style: none; }
.ref-checks li { padding: 6px 9px; border: 1px solid var(--ref-line); border-radius: 9px; background: #fff; color: var(--ref-green); font-size: .78rem; }
.ref-checks li::before { display: inline-grid; width: 19px; height: 19px; margin-right: 9px; place-items: center; border-radius: 50%; background: #7ea874; color: #fff; font-size: .7rem; content: "✓"; }
.ref-step__visual { display: grid; width: 100%; margin: 0; padding: clamp(10px,1.5vw,16px); place-items: center; justify-self: end; border-radius: 16px; background: var(--ref-sage-2); }
.ref-step__visual--phone { max-width: 440px; }
.ref-step__visual--phases { max-width: 494px; }
.ref-step__visual img { display: block; width: 100%; height: auto; max-height: none; border-radius: 12px; object-fit: contain; }
.ref-step__visual--phone img { max-width: 408px; aspect-ratio: 408 / 226; }
.ref-step__visual--phases img { max-width: 462px; aspect-ratio: 462 / 154; }
.ref-focus-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.ref-focus-card { min-height: 150px; padding: 12px; border: 1px solid var(--ref-line); border-radius: 12px; background: #fff; }
.ref-focus-card .ref-round-icon { width: 30px; height: 30px; margin-bottom: 8px; font-size: .9rem; }
.ref-focus-card small { color: var(--ref-green); font-size: .62rem; font-weight: 700; line-height: 1.35; }
.ref-focus-card h3 { margin: 8px 0 5px; font-size: .9rem; line-height: 1.3; }
.ref-focus-card p { margin: 0; font-size: .72rem; line-height: 1.45; }

.ref-recording { display: grid; grid-template-columns: minmax(250px,.8fr) minmax(0,1.2fr); gap: 28px; align-items: center; padding: 22px 24px; background: var(--ref-sage); }
.ref-recording h2 { margin-bottom: 6px; font-size: 1.3rem; }
.ref-recording p { max-width: 38ch; margin: 0; color: var(--ref-muted); line-height: 1.6; }
.ref-recording__examples { display: grid; grid-template-columns: 201px 224px; gap: 16px; justify-content: end; align-items: start; }
.ref-recording figure { margin: 0; }
.ref-recording figure img { display: block; width: 100%; height: auto; max-width: 100%; border-radius: 10px; object-fit: contain; }
.ref-recording figcaption { margin-top: 7px; color: var(--ref-muted); font-size: .8rem; text-align: center; }

.ref-how-hero ~ .ref-section--small { padding: 20px 0; }

.ref-faq { max-width: 860px; margin-inline: auto; }
.ref-faq h2 { margin-bottom: 18px; text-align: center; font-size: clamp(1.75rem,2.8vw,2.25rem); }
.ref-faq details { border: 1px solid var(--ref-line); border-bottom: 0; background: #fff; }
.ref-faq details:first-of-type { border-radius: 12px 12px 0 0; }
.ref-faq details:last-of-type { border-bottom: 1px solid var(--ref-line); border-radius: 0 0 12px 12px; }
.ref-faq summary { display: flex; justify-content: space-between; gap: 20px; padding: 12px 16px; font-size: .86rem; font-weight: 650; cursor: pointer; list-style: none; }
.ref-faq summary::after { color: var(--ref-green); content: "⌄"; }
.ref-faq details[open] summary::after { content: "⌃"; }
.ref-faq details p { margin: 0 16px 13px; color: var(--ref-muted); font-size: .84rem; line-height: 1.55; }

/* Public example -------------------------------------------------------- */

.ref-page-intro { padding: 18px 0 8px; background: var(--ref-paper); text-align: center; }
.ref-page-intro h1 { max-width: 16ch; margin: 0 auto 14px; font-size: clamp(2.75rem,5vw,3.8rem); font-weight: 620; line-height: 1.04; }
.ref-page-intro__lead { max-width: 610px; margin: 0 auto 22px; color: var(--ref-muted); font-size: 1rem; line-height: 1.58; }
.ref-demo-note { margin: 18px 0 0; color: var(--ref-muted); font-size: .86rem; }
.ref-page-intro + .ref-section--small { padding-top: 18px; }
.ref-report { padding: 26px; }
.ref-report > h2 { margin-bottom: 24px; font-size: 1.45rem; }
.ref-report-overview { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(280px,.9fr); gap: 18px; }
.ref-report-overview { height: 292px; }
.ref-report-media img { display: block; width: 100%; height: 100%; min-height: 290px; border-radius: 12px; object-fit: cover; }
.ref-report .ref-feedback { min-height: 138px; padding: 16px; }
.ref-report-section { margin-top: 24px; }
.ref-report-section h2 { margin-bottom: 18px; font-size: 1.7rem; }
.ref-evidence { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ref-evidence img { display: block; width: 100%; border-radius: 12px; }
.ref-insights { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 12px; }
.ref-insight { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 9px; padding: 12px; border: 1px solid var(--ref-line); border-radius: 12px; background: #fff; }
.ref-insight .ref-round-icon { width: 34px; height: 34px; font-size: .85rem; }
.ref-insight strong { display: block; margin-bottom: 6px; color: var(--ref-green); }
.ref-insight p { margin: 0; color: var(--ref-muted); font-size: .76rem; line-height: 1.45; }
.ref-drill { display: grid; grid-template-columns: 46px minmax(0,1fr) auto; gap: 13px; align-items: center; margin-top: 12px; padding: 13px; border: 1px solid var(--ref-line); border-radius: 12px; background: #fff; }
.ref-drill h3 { margin: 0 0 5px; font-size: 1.18rem; }
.ref-drill p { margin: 0; color: var(--ref-muted); line-height: 1.5; }
.ref-explain { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(34px,6vw,80px); align-items: center; }
.ref-explain h2 { font-size: 1.7rem; }
.ref-explain p { color: var(--ref-muted); font-size: .84rem; line-height: 1.6; }
.ref-reasons { padding: 6px 22px; }
.ref-reason { position: relative; padding: 13px 0 13px 34px; border-bottom: 1px solid var(--ref-line); }
.ref-reason:last-child { border-bottom: 0; }
.ref-reason::before { position: absolute; top: 14px; left: 0; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: #75a268; color: #fff; font-size: .68rem; content: "✓"; }
.ref-reason strong { display: block; margin-bottom: 4px; }
.ref-reason p { margin: 0; font-size: .75rem; line-height: 1.4; }
.ref-page-intro + .ref-report-shell { padding-top: 0; padding-bottom: 20px; }
.ref-explain-section { padding-block: 12px; }
.ref-limits-section { padding-block: 12px; }
.ref-limits { display: grid; grid-template-columns: .78fr 1.22fr; gap: 20px; align-items: center; padding: 14px 20px; background: #f1eee6; }
.ref-limits h2 { margin-bottom: 8px; font-size: 1.9rem; }
.ref-limits h2 { font-size: 1.45rem; }
.ref-limits p { margin: 0; color: var(--ref-muted); font-size: .75rem; line-height: 1.45; }
.ref-limit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ref-limit-card { padding: 10px; border: 1px solid var(--ref-line); border-radius: 10px; background: rgba(255,255,255,.8); }
.ref-limit-card strong { display: block; margin-bottom: 5px; color: var(--ref-green); }
.ref-limit-card span { color: var(--ref-muted); font-size: .86rem; line-height: 1.45; }

/* Example analysis — selected mobile flow ------------------------------ */

.ref-analysis-demo-shell { padding: 20px 0 34px; background: var(--ref-paper); }
.ref-analysis-demo { max-width: 920px; }
.ref-analysis-demo__header { display: grid; min-height: 62px; grid-template-columns: 110px 1fr 110px; align-items: center; margin-bottom: 8px; }
.ref-analysis-demo__header > div { text-align: center; }
.ref-analysis-demo__header h1 { margin: 0; color: var(--ref-ink); font-size: 1.65rem; font-weight: 650; letter-spacing: -.035em; }
.ref-analysis-demo__header p { margin: 3px 0 0; color: var(--ref-muted); font-size: .84rem; }
.ref-analysis-back { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--ref-line); border-radius: 50%; color: var(--ref-ink); font-size: 1.4rem; line-height: 1; text-decoration: none; }
.ref-analysis-back:hover { border-color: var(--ref-green); color: var(--ref-green); }
.ref-analysis-example-badge { justify-self: end; padding: 6px 10px; border-radius: 999px; background: var(--ref-sage); color: var(--ref-green); font-size: .7rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }

.ref-analysis-step { padding: 22px 0 26px; border-top: 1px solid var(--ref-line); }
.ref-analysis-step:first-of-type { border-top: 0; }
.ref-analysis-step__label { display: flex; gap: 13px; align-items: center; margin-bottom: 14px; }
.ref-analysis-step__label > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: #dce8d6; color: var(--ref-green); font-family: "Sora",sans-serif; font-size: 1.25rem; font-weight: 650; }
.ref-analysis-step__label p { margin: 0; color: var(--ref-green); font-family: "Sora",sans-serif; font-size: .78rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.ref-analysis-step > h2 { margin-bottom: 17px; font-size: clamp(1.8rem,3.6vw,2.35rem); font-weight: 620; line-height: 1.14; }

.ref-analysis-video { position: relative; overflow: hidden; margin-bottom: 18px; border-radius: 18px; background: var(--ref-sage); box-shadow: var(--ref-shadow); }
.ref-analysis-video img { display: block; width: 100%; height: auto; }
.ref-analysis-phase { position: absolute; top: 16px; right: 16px; padding: 5px 13px; border-radius: 999px; background: rgba(7,63,47,.94); color: #fff; font-size: .74rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.ref-analysis-time { position: absolute; bottom: 14px; left: 16px; padding: 6px 12px; border-radius: 999px; background: rgba(18,22,19,.76); color: #fff; font-size: .75rem; font-variant-numeric: tabular-nums; }
.ref-analysis-summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ref-analysis-summary-grid .ref-feedback { min-height: 170px; padding: 22px; }
.ref-analysis-summary-grid .ref-feedback a { display: inline-block; margin-top: 10px; color: var(--ref-gold); font-size: .78rem; font-weight: 700; text-underline-offset: 3px; }
.ref-analysis-compact-overview { display: grid; grid-template-columns: minmax(0,1.62fr) minmax(300px,.9fr); gap: 14px; align-items: stretch; padding: 14px; }
.ref-analysis-compact-overview .ref-analysis-video { min-height: 340px; margin: 0; border-radius: 14px; box-shadow: none; }
.ref-analysis-compact-overview .ref-analysis-video img { height: 100%; min-height: 340px; object-fit: cover; }
.ref-analysis-compact-feedback { display: flex; min-width: 0; flex-direction: column; }
.ref-analysis-compact-feedback > h2 { margin: 0 0 10px; font-size: clamp(1.25rem,1.8vw,1.45rem); font-weight: 620; line-height: 1.16; }
.ref-analysis-compact-overview .ref-analysis-summary-grid { flex: 1; grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; gap: 10px; }
.ref-analysis-compact-overview .ref-analysis-summary-grid .ref-feedback { min-height: 0; grid-template-columns: 36px minmax(0,1fr); gap: 10px; padding: 12px; }
.ref-analysis-compact-overview .ref-round-icon { width: 36px; height: 36px; font-size: 1rem; }
.ref-analysis-compact-overview .ref-feedback h3 { margin-bottom: 4px; font-size: .92rem; }
.ref-analysis-compact-overview .ref-feedback small { margin-bottom: 4px; font-size: .7rem; line-height: 1.35; }
.ref-analysis-compact-overview .ref-feedback p { font-size: .76rem; line-height: 1.42; }
.ref-analysis-compact-overview .ref-analysis-summary-grid .ref-feedback a { margin-top: 5px; font-size: .7rem; }

.ref-analysis-evidence { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ref-analysis-evidence figure { position: relative; overflow: hidden; margin: 0; border-radius: 15px; background: var(--ref-sage); }
.ref-analysis-evidence figure > span { position: absolute; z-index: 1; top: 10px; left: 10px; padding: 5px 10px; border-radius: 999px; background: rgba(7,63,47,.94); color: #fff; font-size: .68rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.ref-analysis-evidence img { display: block; width: 100%; height: auto; }
.ref-analysis-insights { display: grid; gap: 9px; margin-top: 14px; }
.ref-analysis-insights article { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 13px; align-items: center; padding: 12px 15px; border: 1px solid var(--ref-line); border-radius: 13px; background: #fff; }
.ref-analysis-insight-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--ref-green); color: #fff; }
.ref-analysis-insight-icon svg { width: 23px; height: 23px; }
.ref-analysis-insights h3 { margin: 0 0 3px; font-size: .94rem; letter-spacing: -.015em; }
.ref-analysis-insights p { margin: 0; color: var(--ref-ink); font-size: .84rem; line-height: 1.45; }
.ref-analysis-explain-link { display: flex; width: fit-content; gap: 10px; align-items: center; margin: 18px auto 0; color: var(--ref-ink); font-size: .82rem; text-underline-offset: 4px; }
.ref-analysis-explain-link:hover { color: var(--ref-green); }

.ref-analysis-drill { display: grid; grid-template-columns: 82px minmax(0,1fr); gap: 18px; align-items: center; padding: 20px; border: 1px solid var(--ref-line); border-radius: 16px; background: #fff; box-shadow: var(--ref-shadow); }
.ref-analysis-chair { display: grid; width: 78px; height: 78px; place-items: center; border-radius: 50%; background: #fff7e7; color: var(--ref-gold); }
.ref-analysis-chair svg { width: 47px; height: 47px; }
.ref-analysis-drill h3 { margin: 0 0 7px; color: var(--ref-ink); font-size: 1.2rem; }
.ref-analysis-drill p { margin: 0; color: var(--ref-ink); font-size: .86rem; line-height: 1.58; }
.reference-site .ref-btn--drill { grid-column: 1 / -1; width: 100%; min-height: 46px; border: 1px solid var(--ref-gold); background: #fff; color: var(--ref-gold-text); text-align: center; }
.reference-site .ref-btn--drill:hover { background: #fffaf0; color: #b77b00; }
.ref-analysis-record { display: flex; min-height: 52px; gap: 11px; align-items: center; justify-content: center; margin-top: 14px; border-radius: 11px; background: var(--ref-green); color: #fff !important; font-size: .94rem; font-weight: 720; text-decoration: none; box-shadow: 0 8px 20px rgba(7,63,47,.14); }
.ref-analysis-record:hover { background: var(--ref-green-2); }
.ref-analysis-record svg { width: 22px; height: 22px; }
.ref-analysis-demo-note { margin: 11px 0 0; color: var(--ref-muted); font-size: .72rem; text-align: center; }

/* About ---------------------------------------------------------------- */

.ref-about-hero { padding: clamp(38px,5.5vw,70px) 0 34px; background: var(--ref-paper); }
.ref-about-hero__grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(410px,1.08fr); gap: clamp(34px,5vw,72px); align-items: center; }
.ref-about-hero__copy h1 { max-width: 13ch; margin-bottom: 16px; font-size: clamp(2.65rem,4.8vw,3.65rem); font-weight: 620; line-height: 1.04; }
.ref-about-hero__lead { max-width: 55ch; margin: 0 0 24px; color: var(--ref-muted); font-size: 1rem; line-height: 1.62; }
.ref-about-hero__visual { position: relative; overflow: hidden; min-height: 340px; margin: 0; border-radius: var(--ref-radius-lg); background: var(--ref-sage); box-shadow: var(--ref-shadow); }
.ref-about-hero__visual > img { display: block; width: 100%; height: 340px; object-fit: cover; }
.ref-about-hero__visual::after { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(2,39,28,.24)); content: ""; pointer-events: none; }
.ref-about-hero__visual figcaption { position: absolute; z-index: 1; right: 18px; bottom: 18px; display: flex; min-width: 185px; gap: 12px; align-items: center; padding: 12px 14px; border: 1px solid rgba(255,255,255,.72); border-radius: 12px; background: rgba(255,255,252,.94); box-shadow: var(--ref-shadow); }
.ref-about-hero__visual figcaption span:last-child { display: grid; }
.ref-about-hero__visual figcaption strong { color: var(--ref-green); font-family: "Sora",sans-serif; font-size: .86rem; }
.ref-about-hero__visual figcaption small { color: var(--ref-muted); font-size: .72rem; }

.ref-about-heading { display: grid; grid-template-columns: minmax(0,.75fr) minmax(320px,1fr); gap: clamp(30px,6vw,80px); align-items: end; margin-bottom: 22px; }
.ref-about-heading h2 { margin-bottom: 0; font-size: clamp(1.9rem,3vw,2.45rem); }
.ref-about-heading > p { max-width: 60ch; margin: 0; color: var(--ref-muted); line-height: 1.65; }
.ref-about-heading--center { display: block; text-align: center; }

.ref-about-values { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.ref-about-value { position: relative; overflow: hidden; min-height: 250px; padding: 22px; }
.ref-about-value__number { position: absolute; top: 16px; right: 20px; color: var(--ref-sage); font-family: "Sora",sans-serif; font-size: 2.55rem; font-weight: 650; line-height: 1; }
.ref-about-value .ref-round-icon { margin-bottom: 28px; }
.ref-about-value h3 { margin-bottom: 9px; font-size: 1.15rem; }
.ref-about-value p { margin: 0; color: var(--ref-muted); font-size: .82rem; line-height: 1.62; }

.ref-about-story { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.88fr); gap: clamp(30px,5vw,64px); padding: clamp(26px,4vw,46px); background: var(--ref-sage); }
.ref-about-story__copy h2 { margin-bottom: 11px; font-size: clamp(1.9rem,3vw,2.4rem); }
.ref-about-story__copy > p { max-width: 58ch; margin: 0 0 20px; color: var(--ref-muted); line-height: 1.65; }
.ref-about-story__statement { padding: 22px; border: 1px solid rgba(7,63,47,.12); border-radius: var(--ref-radius); background: rgba(255,255,255,.76); }
.ref-about-story__statement .ref-round-icon { margin-bottom: 16px; }
.ref-about-story__statement .ref-eyebrow { margin-bottom: 8px; }
.ref-about-story__statement blockquote { margin: 0 0 12px; color: var(--ref-green); font-family: "Sora",sans-serif; font-size: clamp(1.25rem,2vw,1.55rem); font-weight: 600; letter-spacing: -.025em; line-height: 1.35; }
.ref-about-story__statement > p:last-child { margin: 0; color: var(--ref-muted); font-size: .8rem; line-height: 1.6; }

.ref-about-promises { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.ref-about-promises article { display: grid; grid-template-columns: 36px minmax(0,1fr); gap: 12px; align-items: start; padding: 18px; border: 1px solid var(--ref-line); border-radius: var(--ref-radius); background: #fff; }
.ref-about-promises .ref-round-icon { width: 36px; height: 36px; }
.ref-about-promises .ref-round-icon--neutral { background: #ebe8e1; color: var(--ref-muted); }
.ref-about-promises p { margin: 0; color: var(--ref-muted); font-size: .8rem; line-height: 1.58; }
.ref-about-promises strong { display: block; margin-bottom: 4px; color: var(--ref-green); }

.ref-about-contact .ref-eyebrow { margin-bottom: 10px; color: rgba(255,255,255,.72); }
.ref-about-contact > p:not(.ref-eyebrow) { max-width: 620px; margin-inline: auto; }

/* Footer-linked support pages ----------------------------------------- */

.reference-site.ref-support-page .ref-support-hero {
  padding: clamp(38px,5vw,62px) 0 clamp(30px,4vw,46px);
  border-bottom: 1px solid rgba(7,63,47,.07);
  background: var(--ref-paper);
  text-align: center;
}
.reference-site.ref-support-page .ref-support-hero .section-eyebrow {
  display: block;
  margin-bottom: 13px;
  color: var(--ref-green);
  font-family: "Sora",sans-serif;
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.reference-site.ref-support-page .ref-support-hero h1 {
  max-width: 18ch;
  margin: 0 auto 14px;
  font-size: clamp(2.35rem,4.5vw,3.5rem);
  font-weight: 620;
  line-height: 1.06;
}
.reference-site.ref-support-page .ref-support-hero .page-hero-lead {
  max-width: 650px;
  margin: 0 auto;
  color: var(--ref-muted);
  font-size: 1rem;
  line-height: 1.65;
}
.ref-support-main { padding-block: clamp(34px,5vw,62px); }
.ref-support-closing { padding-block: 30px; }
.ref-support-closing .ref-eyebrow { margin-bottom: 8px; color: rgba(255,255,255,.7); }
.ref-support-closing h2 { font-size: clamp(1.7rem,3vw,2.25rem); }

.reference-site .ref-support-faq { padding: 0; }
.reference-site .ref-support-faq .faq-container {
  overflow: hidden;
  max-width: 900px;
  border: 1px solid var(--ref-line);
  border-radius: var(--ref-radius-lg);
  background: #fff;
  box-shadow: var(--ref-shadow);
}
.reference-site .ref-support-faq .faq-item { border-bottom: 1px solid var(--ref-line); }
.reference-site .ref-support-faq .faq-item:first-of-type { border-top: 0; }
.reference-site .ref-support-faq .faq-item:last-child { border-bottom: 0; }
.reference-site .ref-support-faq .faq-question {
  min-height: 66px;
  padding: 17px clamp(18px,3vw,28px);
  color: var(--ref-ink);
  font-family: "Sora",sans-serif;
  font-size: .92rem;
  font-weight: 610;
  line-height: 1.45;
}
.reference-site .ref-support-faq .faq-question:hover,
.reference-site .ref-support-faq .faq-question[aria-expanded="true"] { color: var(--ref-green); background: var(--ref-sage-2); }
.reference-site .ref-support-faq .faq-icon::before,
.reference-site .ref-support-faq .faq-icon::after { background: var(--ref-green); }
.reference-site .ref-support-faq .faq-answer {
  max-width: none;
  padding: 0 clamp(18px,3vw,28px) 20px;
  background: var(--ref-sage-2);
  color: var(--ref-muted);
}
.reference-site .ref-support-faq .faq-answer p { max-width: 70ch; margin: 0; line-height: 1.7; }
.reference-site .ref-support-faq .faq-char { opacity: 1; filter: none; transition: none; }

.ref-contact-layout {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
  gap: 18px;
  align-items: start;
}
.ref-contact-aside,
.ref-contact-form-card { padding: clamp(24px,3.5vw,36px); }
.ref-contact-aside { background: var(--ref-sage); box-shadow: none; }
.ref-contact-aside .ref-round-icon { margin-bottom: 28px; }
.ref-contact-aside .ref-eyebrow { margin-bottom: 9px; }
.ref-contact-aside h2 { margin-bottom: 11px; font-size: clamp(1.55rem,2.4vw,2rem); line-height: 1.18; }
.ref-contact-aside > p:not(.ref-eyebrow) { margin: 0; color: var(--ref-muted); line-height: 1.65; }
.ref-contact-aside ul { display: grid; gap: 10px; margin: 24px 0; padding: 18px 0; border-block: 1px solid rgba(7,63,47,.12); list-style: none; }
.ref-contact-aside li { position: relative; padding-left: 24px; color: var(--ref-green); font-size: .82rem; font-weight: 620; }
.ref-contact-aside li::before { position: absolute; left: 0; content: "✓"; }
.ref-contact-aside .ref-btn { width: 100%; }
.ref-contact-form-card { background: #fff; }
.ref-contact-form-card .auth-panel-heading { margin-bottom: 22px; }
.ref-contact-form-card .auth-panel-heading .section-eyebrow { color: var(--ref-green); font-size: .72rem; letter-spacing: .13em; }
.ref-contact-form-card .auth-panel-heading h2 { margin-bottom: 8px; font-size: clamp(1.7rem,2.7vw,2.15rem); }
.ref-contact-form-card .auth-panel-heading p { margin: 0; color: var(--ref-muted); }
.ref-contact-form-card .form-page-grid { gap: 9px; }
.ref-contact-form-card .form-page-grid label { margin-top: 8px; color: var(--ref-ink); }
.ref-contact-form-card input,
.ref-contact-form-card textarea { border-color: var(--ref-line); border-radius: 10px; background: var(--ref-paper); }
.ref-contact-form-card textarea { min-height: 150px; }
.ref-contact-form-card .auth-submit { min-height: 48px; margin-top: 15px; }

/* Accountschermen gebruiken dezelfde lichte navigatie en hetzelfde contrast
   als de gekozen marketingpagina's. De donkere verhaalhelft houdt bewust
   witte typografie, ook wanneer de referentietokens later in het bestand de
   generieke h1-kleur aanscherpen. */
.reference-site.auth-page .auth-story h1 { color: #fff; }
.reference-site.auth-page .auth-story p { color: rgba(255,255,255,.88); }
.reference-site.auth-page .auth-story .auth-benefits { color: #fff; }
.reference-site.auth-page .auth-story .auth-credit-note { color: rgba(255,255,255,.88); }
.ref-contact-form-card .alert { border-radius: 10px; }

.reference-site .ref-legal-main {
  width: min(calc(100% - (2 * var(--ref-gutter))),940px);
  padding-block: clamp(32px,5vw,58px);
}
.reference-site .ref-legal-main > .card {
  padding: clamp(24px,4vw,42px);
  border-color: var(--ref-line);
  border-radius: var(--ref-radius-lg);
  background: #fff;
  box-shadow: var(--ref-shadow);
}
.reference-site .ref-legal-main > .card:first-child { background: var(--ref-sage-2); box-shadow: none; }
.reference-site .ref-legal-main > .card + .card { margin-top: 18px; }
.reference-site .ref-legal-main h2 {
  margin: 34px 0 12px;
  color: var(--ref-green);
  font-size: clamp(1.55rem,2.5vw,2rem);
  line-height: 1.25;
}
.reference-site .ref-legal-main h2:first-child { margin-top: 0; }
.reference-site .ref-legal-main h3 {
  margin: 28px 0 8px;
  padding-top: 24px;
  border-top: 1px solid var(--ref-line);
  color: var(--ref-green);
  font-size: 1.05rem;
  letter-spacing: -.015em;
}
.reference-site .ref-legal-main p,
.reference-site .ref-legal-main li { max-width: none; color: var(--ref-muted); line-height: 1.72; }
.reference-site .ref-legal-main p { margin-block: 0 14px; }
.reference-site .ref-legal-main ul:not(.limits) { display: grid; gap: 9px; padding-left: 21px; }
.reference-site .ref-legal-main .limits { gap: 11px; font-size: .9rem; }
.reference-site .ref-legal-main .limits li { padding-left: 25px; }
.reference-site .ref-legal-main .limits li::before { color: var(--ref-green); content: "●"; font-size: .56rem; top: .5rem; }
.reference-site .ref-legal-main a { color: var(--ref-green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.reference-site .ref-legal-main code { padding: 2px 5px; border-radius: 5px; background: rgba(7,63,47,.07); color: var(--ref-green); }
.reference-site .ref-legal-main .badge { margin-left: 6px; border: 1px solid var(--ref-line); background: var(--ref-paper); color: var(--ref-muted); vertical-align: middle; }

/* Pricing --------------------------------------------------------------- */

.reference-site.pricing-page .page-hero { padding: 20px var(--ref-gutter) 12px; background: var(--ref-paper); text-align: center; }
.reference-site.pricing-page .page-hero-inner { max-width: 780px; margin: 0 auto; padding: 0; }
.reference-site.pricing-page .page-hero h1 { max-width: 16ch; margin: 0 auto 14px; font-size: clamp(2.65rem,5vw,3.75rem); font-weight: 620; line-height: 1.04; }
.reference-site.pricing-page .page-hero-lead { max-width: 580px; margin: 0 auto 22px; color: var(--ref-muted); font-size: 1rem; line-height: 1.58; }
.reference-site.pricing-page .page-hero-actions { display: none; }
/* De prijzenkop is één rij: klein label en h1 links, de betaaltermijn ernaast.
   Eerst was het een gecentreerde stapel van label, h1, lead en schakelaar; die
   duwde de eerste abonnementskaart ver onder de vouw. De lead-regel is weg (de
   drie kaarten zeggen hetzelfde) en de schakelaar staat nu naast de tekst in
   plaats van eronder. `.page-hero.page-hero--compact` heeft één klasse meer dan
   de h1-regel in de media query onderaan dit bestand, die de kop op smalle
   schermen anders weer groot maakt. */
.reference-site.pricing-page .page-hero.page-hero--compact { padding-block: 24px; text-align: left; }
.reference-site.pricing-page .page-hero.page-hero--compact .page-hero-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.reference-site.pricing-page .page-hero.page-hero--compact .page-hero-text { min-width: 0; flex: 1 1 20rem; }
.reference-site.pricing-page .page-hero.page-hero--compact .section-eyebrow { margin-bottom: 4px; }
.reference-site.pricing-page .page-hero.page-hero--compact h1 {
  max-width: none; margin: 0; font-weight: 620; line-height: 1.12;
  font-size: clamp(22px, 2.6vw, 30px);
}
.reference-site.pricing-page .page-hero.page-hero--compact .term-toggle { margin: 0; width: min(100%, 340px); }
/* Ankerdoel zonder inhoud. `#analysetypes` hoorde bij de sectie "Wat is het
   verschil?" die hier weg is; de navigatie en twee tests wijzen er nog heen.
   Het toont niets, maar het moet wel een doel zijn waar de browser naartoe kan
   springen zonder onder de header te vallen -- hetzelfde patroon als
   `.anchor-alias` in caddium-paper.css. */
.pricing-anchor { display: block; height: 0; scroll-margin-top: 5rem; }
.reference-site.pricing-page .pricing-main { width: min(calc(100% - 90px),var(--ref-max)); max-width: none; margin: 0 auto; padding: 0; }
.reference-site.pricing-page .pricing-main > section + section { margin-top: 0; }
.reference-site.pricing-page .pricing-plans,
.reference-site.pricing-page .pricing-products { padding-block: 30px; }
.reference-site.pricing-page .pricing-section-heading { max-width: 720px; margin: 0 auto 22px; text-align: center; }
.reference-site.pricing-page .pricing-section-heading h2 { margin-bottom: 10px; font-size: clamp(2rem,4vw,2.9rem); }
.reference-site.pricing-page .pricing-section-heading p { color: var(--ref-muted); line-height: 1.65; }
.reference-site.pricing-page .pricing-plans .pricing-section-heading { display: none; }
.reference-site.pricing-page .package-pricing { padding-top: 36px; }
.reference-site.pricing-page .package-pricing .pricing-section-heading { display: block; }
.reference-site.pricing-page .package-hero-lead { max-width: 28ch; margin: 0; color: var(--ref-muted); font-size: .9rem; line-height: 1.5; text-align: right; }
.reference-site.pricing-page .package-note { display: flex; width: fit-content; gap: 8px; align-items: center; margin: 0 auto 26px; padding: 8px 12px; border: 1px solid var(--ref-line); border-radius: 999px; background: var(--ref-sage); color: var(--ref-green); font-size: .76rem; font-weight: 720; }
.reference-site.pricing-page .package-note::before { width: 8px; height: 8px; border-radius: 50%; background: var(--ref-gold); content: ""; }
.reference-site.pricing-page .package-card { min-height: 430px; }
.reference-site.pricing-page .package-card .price-card-blurb { min-height: 48px; margin: 0 0 10px; font-size: .86rem; }
.reference-site.pricing-page .price-card-validity { margin: 0; color: var(--ref-green); font-size: .76rem; font-weight: 720; }
.reference-site.pricing-page .package-footnote { max-width: 680px; margin: 26px auto 0; color: var(--ref-muted); font-size: .82rem; line-height: 1.6; text-align: center; }
.pricing-model-proof { display: grid; grid-template-columns: 1fr; gap: 24px; padding: clamp(28px,5vw,52px); border-block: 1px solid var(--ref-line); background: var(--ref-sage); }
.pricing-model-proof__copy { max-width: 660px; }
.pricing-model-proof__copy h2 { margin: 8px 0 14px; color: var(--ref-green); font-size: clamp(1.8rem,3.4vw,2.7rem); line-height: 1.08; }
.pricing-model-proof__copy p { margin: 0 0 20px; color: var(--ref-muted); line-height: 1.65; }
.pricing-model-proof__viewer { overflow: hidden; border: 1px solid rgba(7,63,47,.16); border-radius: var(--ref-radius-lg); background: #edf2ea; box-shadow: 0 18px 46px rgba(7,63,47,.1); }
.pricing-model-proof__viewer iframe { display: block; width: 100%; height: 520px; border: 0; background: #edf2ea; }
.package-route { margin: 0 auto; padding: clamp(30px,5vw,52px) 0; }
.package-route__heading { max-width: 620px; margin: 0 auto 26px; text-align: center; }
.package-route__heading h2 { margin: 8px 0; font-size: clamp(1.7rem,3vw,2.35rem); }
.package-route__heading p { color: var(--ref-muted); line-height: 1.6; }
.package-route__steps { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.package-route__steps li { min-height: 106px; padding: 15px; border: 1px solid var(--ref-line); border-radius: 12px; background: #fff; }
.package-route__steps span { display: grid; width: 26px; height: 26px; place-items: center; margin-bottom: 14px; border-radius: 50%; background: var(--ref-sage); color: var(--ref-green); font-size: .7rem; font-weight: 800; }
.package-route__steps strong { color: var(--ref-green); font-size: .84rem; line-height: 1.3; }
.reference-site.pricing-page .term-toggle { display: grid; width: min(100%,470px); grid-template-columns: 1fr 1fr; margin: 0 auto; padding: 3px; border: 1px solid var(--ref-line); border-radius: 12px; background: #fff; }
.reference-site.pricing-page .term-toggle-pill { display: none; }
.reference-site.pricing-page .term-toggle button { min-height: 46px; border: 0; border-radius: 9px; background: transparent; color: var(--ref-ink); }
.reference-site.pricing-page .term-toggle button[aria-pressed="true"] { background: var(--ref-green); color: #fff; }
.reference-site.pricing-page .term-save { color: inherit; opacity: .82; }
.reference-site.pricing-page .pricing-grid-three { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.reference-site.pricing-page .marketing-price-card { display: flex; min-width: 0; min-height: 400px; flex-direction: column; padding: clamp(22px,2.5vw,28px); border: 1px solid var(--ref-line); border-radius: var(--ref-radius); background: #fff; box-shadow: none; }
.reference-site.pricing-page .marketing-price-card { gap: 0; }
.reference-site.pricing-page .marketing-price-card.highlight { border-top: 4px solid var(--ref-gold); background: linear-gradient(180deg,#fffdf7,#fff); }
.reference-site.pricing-page .price-card-topline { min-height: 22px; }
.reference-site.pricing-page .price-card-choice,
.reference-site.pricing-page .price-card-eyebrow { color: var(--ref-green); font-size: .75rem; font-weight: 750; letter-spacing: .05em; }
.reference-site.pricing-page .marketing-price-card h3 { margin: 8px 0 12px; font-size: 1.45rem; }
.reference-site.pricing-page .price-card-cost { display: flex; gap: 7px; align-items: end; min-height: 58px; }
.reference-site.pricing-page .price-card-cost strong { color: var(--ref-green); font-family: "Sora",sans-serif; font-size: clamp(2.35rem,4vw,3.2rem); font-weight: 560; line-height: 1; }
.reference-site.pricing-page .price-card-term { padding-bottom: 7px; color: var(--ref-muted); font-size: .82rem; }
.reference-site.pricing-page .price-card-total,
.reference-site.pricing-page .price-card-unit,
.reference-site.pricing-page .price-card-blurb { color: var(--ref-muted); line-height: 1.55; }
.reference-site.pricing-page .price-card-model { display: flex; gap: 10px; align-items: center; margin-top: 13px; padding: 11px 12px; border: 1px solid var(--ref-line); border-radius: 11px; background: var(--ref-sage); }
.reference-site.pricing-page .price-card-model.is-premium { border-color: rgba(217,154,8,.3); background: rgba(217,154,8,.08); }
.reference-site.pricing-page .price-card-model-mark { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border-radius: 50%; background: #fff; color: var(--ref-gold); font-size: .86rem; }
.reference-site.pricing-page .price-card-model-copy { min-width: 0; }
.reference-site.pricing-page .price-card-model-copy small { display: block; margin-bottom: 1px; color: var(--ref-muted); font-size: .65rem; font-weight: 680; line-height: 1.25; }
.reference-site.pricing-page .price-card-model-copy strong { display: block; overflow: hidden; color: var(--ref-green); font-family: "Sora",sans-serif; font-size: .88rem; font-weight: 620; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.reference-site.pricing-page .price-card-features { display: grid; gap: 8px; margin: 14px 0 18px; padding: 14px 0 0; border-top: 1px solid var(--ref-line); font-size: .78rem; line-height: 1.4; list-style: none; }
.reference-site.pricing-page .price-card-features li { position: relative; padding-left: 23px; line-height: 1.45; }
.reference-site.pricing-page .price-card-features li::before { position: absolute; left: 0; color: var(--ref-green); font-weight: 800; content: "✓"; }
.reference-site.pricing-page .marketing-price-card .btn { width: 100%; margin-top: auto; }
.reference-site.pricing-page .plan-coming-soon { min-height: 42px; margin-top: auto; padding: 10px; border-radius: 10px; background: var(--ref-sage); color: var(--ref-green); text-align: center; }
.reference-site.pricing-page .plan-coming-soon p { display: none; }
.reference-site.pricing-page .plan-coming-soon-badge { display: block; overflow: hidden; font-size: .75rem; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.reference-site.pricing-page .how-credits-work,
.reference-site.pricing-page .welcome-credit-band,
.reference-site.pricing-page .pricing-operations { display: none; }
.reference-site.pricing-page .pricing-products .pricing-grid-three { grid-template-columns: 1fr 1fr; }
.reference-site.pricing-page .pricing-products { padding-block: clamp(42px,6vw,72px); }
.reference-site.pricing-page .pricing-products .pricing-section-heading { max-width: 680px; margin-bottom: 30px; }
.reference-site.pricing-page .pricing-products .pricing-section-heading .section-eyebrow { display: inline-block; }
.reference-site.pricing-page .pricing-products .pricing-section-heading h2 { margin-top: 8px; }
.reference-site.pricing-page .pricing-products .pricing-section-heading p { max-width: 620px; margin-inline: auto; }
.plan-difference-card { position: relative; overflow: hidden; padding: clamp(22px,3vw,30px); border: 1px solid var(--ref-line); border-radius: var(--ref-radius-lg); background: #fff; }
.plan-difference-card.is-starter { background: linear-gradient(145deg,#fff 0%,#fbfcf8 100%); }
.plan-difference-card.is-pro { border-color: rgba(7,63,47,.28); background: var(--ref-green); color: #fff; box-shadow: 0 18px 46px rgba(7,63,47,.16); }
.plan-difference-card.is-pro::after { position: absolute; top: -110px; right: -100px; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.035),0 0 0 84px rgba(255,255,255,.025); content: ""; pointer-events: none; }
.plan-difference-header { position: relative; z-index: 1; display: flex; min-height: 58px; gap: 16px; align-items: flex-start; justify-content: space-between; }
.plan-difference-eyebrow { color: var(--ref-muted); font-size: .72rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.plan-difference-card.is-pro .plan-difference-eyebrow { color: rgba(255,255,255,.68); }
.plan-difference-header h3 { margin: 5px 0 0; color: var(--ref-green); font-size: clamp(1.6rem,3vw,2rem); }
.plan-difference-card.is-pro .plan-difference-header h3 { color: #fff; }
.plan-difference-recommended { flex: 0 0 auto; padding: 7px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.1); color: #fff; font-size: .67rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.plan-model-panel { position: relative; z-index: 1; display: flex; min-height: 92px; gap: 14px; align-items: center; margin: 22px 0; padding: 16px; border: 1px solid var(--ref-line); border-radius: 14px; background: var(--ref-sage); }
.plan-difference-card.is-pro .plan-model-panel { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.1); }
.plan-model-mark { display: grid; width: 46px; height: 46px; flex: 0 0 46px; place-items: center; border-radius: 50%; background: #fff; color: var(--ref-gold); font-size: 1.28rem; }
.plan-difference-card.is-pro .plan-model-mark { background: var(--ref-gold); color: var(--ref-green); }
.plan-model-panel span:not(.plan-model-mark) { display: block; margin-bottom: 3px; color: var(--ref-muted); font-size: .72rem; font-weight: 650; }
.plan-difference-card.is-pro .plan-model-panel span:not(.plan-model-mark) { color: rgba(255,255,255,.68); }
.plan-model-panel strong { display: block; color: var(--ref-green); font-family: "Sora",sans-serif; font-size: clamp(1.05rem,2vw,1.25rem); font-weight: 620; }
.plan-difference-card.is-pro .plan-model-panel strong { color: #fff; }
.plan-difference-list { position: relative; z-index: 1; display: grid; margin: 0; }
.plan-difference-list > div { display: grid; min-height: 64px; grid-template-columns: 112px minmax(0,1fr); gap: 14px; align-items: center; padding: 12px 0; border-top: 1px solid var(--ref-line); }
.plan-difference-card.is-pro .plan-difference-list > div { border-color: rgba(255,255,255,.14); }
.plan-difference-list dt { color: var(--ref-muted); font-size: .74rem; font-weight: 700; }
.plan-difference-card.is-pro .plan-difference-list dt { color: rgba(255,255,255,.66); }
.plan-difference-list dd { margin: 0; color: var(--ref-ink); font-size: .84rem; font-weight: 620; line-height: 1.45; }
.plan-difference-card.is-pro .plan-difference-list dd { color: #fff; }
.plan-difference-list .plan-difference-special dd::before { display: inline-grid; width: 22px; height: 22px; place-items: center; margin-right: 8px; border-radius: 50%; background: var(--ref-gold); color: var(--ref-green); content: "✓"; font-size: .72rem; font-weight: 900; vertical-align: -2px; }
.plan-difference-card footer { position: relative; z-index: 1; display: flex; gap: 12px; justify-content: space-between; margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--ref-line); color: var(--ref-muted); font-size: .7rem; }
.plan-difference-card.is-pro footer { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.7); }
.reference-site.pricing-page .ref-faq { padding-block: 8px; }
.reference-site.pricing-page .ref-faq h2 { margin-bottom: 12px; }
.reference-site.pricing-page .ref-faq summary { padding-block: 9px; }
.reference-site.pricing-page .ref-closing { padding-block: 30px; }

/* Golf clubs ------------------------------------------------------------ */

.ref-clubs-page main { overflow: hidden; }
.ref-clubs-hero { padding: clamp(42px,6vw,72px) var(--ref-gutter) clamp(48px,7vw,82px); background: radial-gradient(circle at 83% 18%,rgba(178,213,228,.3),transparent 26%),var(--ref-paper); }
.ref-clubs-hero__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(380px,.88fr); gap: clamp(42px,7vw,92px); align-items: center; }
.ref-clubs-hero__copy h1 { max-width: 12ch; margin: 10px 0 18px; font-size: clamp(2.65rem,5vw,4.35rem); line-height: 1.04; }
.ref-clubs-hero__lead { max-width: 620px; margin: 0; color: var(--ref-muted); font-size: 1rem; line-height: 1.65; }
.ref-club-portal-preview { overflow: hidden; border: 1px solid rgba(7,63,47,.16); border-radius: var(--ref-radius-lg); background: #fff; box-shadow: 0 20px 54px rgba(7,63,47,.1); }
.ref-club-portal-preview__top { display: flex; min-height: 62px; gap: 16px; align-items: center; justify-content: space-between; padding: 0 20px; background: var(--ref-green); color: #fff; }
.ref-club-portal-preview__top > div { display: flex; gap: 9px; align-items: center; }
.ref-club-portal-preview__top > span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.8); font-size: .67rem; font-weight: 700; }
.ref-club-preview-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ref-gold); }
.ref-club-preview-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 18px 18px 10px; }
.ref-club-preview-stats > div { min-height: 92px; padding: 16px; border-radius: 12px; background: var(--ref-sage); }
.ref-club-preview-stats span,.ref-club-preview-stats strong { display: block; }
.ref-club-preview-stats span { margin-bottom: 8px; color: var(--ref-muted); font-size: .68rem; font-weight: 650; }
.ref-club-preview-stats strong { color: var(--ref-green); font-size: .9rem; line-height: 1.35; }
.ref-club-preview-members { margin: 0 18px 18px; padding: 15px; border: 1px solid var(--ref-line); border-radius: 12px; }
.ref-club-preview-members__heading { display: flex; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ref-club-preview-members__heading span { color: var(--ref-muted); font-size: .66rem; }
.ref-club-preview-member { display: grid; grid-template-columns: 34px minmax(0,1fr) 22px; gap: 10px; align-items: center; padding: 10px 0; border-top: 1px solid var(--ref-line); }
.ref-club-preview-avatar { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--ref-sage); color: var(--ref-green); font-size: .7rem; font-weight: 800; }
.ref-club-preview-member strong,.ref-club-preview-member small { display: block; }
.ref-club-preview-member strong { font-size: .75rem; }
.ref-club-preview-member small { margin-top: 2px; color: var(--ref-muted); font-size: .62rem; }
.ref-club-preview-member i { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: var(--ref-sage); color: var(--ref-green); font-size: .64rem; font-style: normal; }
.ref-clubs-heading { max-width: 720px; margin-bottom: 26px; }
.ref-clubs-heading--center { margin-inline: auto; text-align: center; }
.ref-clubs-heading h2,.ref-clubs-admin-copy h2,.ref-clubs-offer h2 { margin: 8px 0 10px; font-size: clamp(2rem,3.5vw,2.8rem); }
.ref-clubs-heading > p:last-child,.ref-clubs-admin-copy > p:last-child,.ref-clubs-offer > div > p:last-child { color: var(--ref-muted); line-height: 1.65; }
.ref-clubs-value-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.ref-clubs-value-grid .ref-card { min-height: 260px; padding: 24px; }
.ref-clubs-value-grid h3 { margin: 30px 0 8px; font-size: 1.18rem; }
.ref-clubs-value-grid p { color: var(--ref-muted); font-size: .84rem; line-height: 1.6; }
.ref-clubs-admin-layout { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); gap: clamp(36px,7vw,90px); align-items: start; padding: clamp(30px,5vw,58px); border-radius: var(--ref-radius-lg); background: var(--ref-green); color: #fff; }
.ref-clubs-admin-copy { position: sticky; top: 100px; }
.ref-clubs-admin-copy h2 { color: #fff; }
.ref-clubs-admin-copy .ref-eyebrow { color: rgba(255,255,255,.66); }
.ref-clubs-admin-copy > p:last-child { color: rgba(255,255,255,.72); }
.ref-clubs-admin-list { display: grid; gap: 12px; }
.ref-clubs-admin-list article { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 15px; padding: 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.08); }
.ref-clubs-admin-list article.is-private { border-color: rgba(217,154,8,.42); }
.ref-clubs-admin-list .ref-round-icon { width: 42px; height: 42px; }
.ref-clubs-admin-list h3 { margin: 1px 0 5px; color: #fff; font-size: 1rem; }
.ref-clubs-admin-list p { margin: 0; color: rgba(255,255,255,.72); font-size: .79rem; line-height: 1.55; }
.ref-clubs-process { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; }
.ref-clubs-process li { display: grid; min-height: 210px; grid-template-rows: auto 1fr; padding: 22px; border: 1px solid var(--ref-line); border-radius: var(--ref-radius); background: #fff; }
.ref-clubs-process li > span { color: rgba(7,63,47,.14); font-family: "Sora",sans-serif; font-size: 3rem; font-weight: 650; }
.ref-clubs-process h3 { margin: 18px 0 7px; font-size: 1.08rem; }
.ref-clubs-process p { margin: 0; color: var(--ref-muted); font-size: .8rem; line-height: 1.55; }
.ref-clubs-offer { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: clamp(28px,6vw,72px); align-items: center; padding: clamp(28px,5vw,54px); border-radius: var(--ref-radius-lg); background: var(--ref-sage); }
.ref-clubs-price-card { padding: 24px; border: 1px solid var(--ref-line); border-radius: var(--ref-radius); background: #fff; }
.ref-clubs-price-card > span { display: block; margin-bottom: 7px; color: var(--ref-muted); font-size: .69rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.ref-clubs-price-card > strong { display: block; color: var(--ref-green); font-family: "Sora",sans-serif; font-size: clamp(1.55rem,2.8vw,2.05rem); font-weight: 620; }
.ref-clubs-price-card p { margin: 9px 0 18px; color: var(--ref-muted); font-size: .77rem; line-height: 1.55; }
.ref-clubs-price-card .ref-btn { width: 100%; }
.ref-clubs-page .ref-closing { margin-top: 10px; }

/* Responsive ------------------------------------------------------------ */

@media (max-width: 960px) {
  .reference-site .site-nav .nav-bar { gap: 8px; padding-inline: 28px; }
  .reference-site .site-nav .nav-brand { width: 174px; min-width: 174px; }
  .reference-site .site-nav .brand-emblem--official { width: 38px; height: 38px; }
  .reference-site .site-nav .brand-wordmark--official { width: 126px; }
  .reference-site .site-nav .nav-items { gap: 3px; }
  .reference-site .site-nav .nav-link { padding-inline: 2px; font-size: .75rem; }
  .reference-site .site-nav .nav-actions { gap: 5px; }
  .reference-site .site-nav .nav-login-link { padding-inline: .45rem; font-size: .75rem; }
  .reference-site .site-nav .nav-cta-btn { min-height: 38px; padding: .52rem .78rem; font-size: .74rem; }
  .reference-site .reference-footer-simple { grid-template-columns: 110px 1fr auto; gap: 18px; padding-inline: 20px; }
  .reference-site .reference-footer-simple nav { gap: clamp(14px,3vw,30px); }
}

@media (max-width: 760px) {
  .ref-analysis-top,
  .ref-report-overview { grid-template-columns: 1fr; }
  .ref-home-analysis .ref-analysis-top,
  .ref-report-overview { height: auto; }
  .ref-report-media img { height: auto; min-height: 0; object-fit: contain; }
  .ref-feedback-stack { grid-template-columns: 1fr 1fr; }
  .ref-feedback { min-height: 0; }
  .ref-how-hero__grid,
  .ref-model-story__intro,
  .ref-model-conclusion,
  .ref-about-hero__grid,
  .ref-contact-layout,
  .ref-analysis-compact-overview,
  .ref-step,
  .ref-step:first-child,
  .ref-recording,
  .pricing-model-proof { grid-template-columns: 1fr; }
  .reference-site.pricing-page .package-hero-lead { max-width: none; text-align: left; }
  .pricing-model-proof__viewer iframe { height: 780px; }
  .package-route__steps { grid-template-columns: 1fr; }
  .package-route__steps li { min-height: 0; }
  .ref-explain,
  .ref-limits,
  .ref-about-heading,
  .ref-about-story { grid-template-columns: 1fr; }
  .ref-model-lenses { grid-template-columns: 1fr 1fr; }
  .ref-about-hero__copy h1 { max-width: 15ch; }
  .ref-how-hero__image,
  .ref-step__visual { justify-self: center; }
  .ref-step__copy { padding: 0; }
  .ref-benefits,
  .ref-discovery,
  .ref-insights,
  .ref-about-values,
  .ref-about-promises,
  .reference-site.pricing-page .pricing-grid-three { grid-template-columns: 1fr 1fr; }
  .reference-site.pricing-page .pricing-main { width: min(calc(100% - (2 * var(--ref-gutter))),var(--ref-max)); }
  .ref-clubs-hero__grid { grid-template-columns: minmax(0,1fr) minmax(330px,.78fr); gap: 34px; }
  .ref-contact-layout { max-width: 680px; }
  .ref-analysis-compact-overview { gap: 14px; padding: 10px; }
  .ref-analysis-compact-overview .ref-analysis-video { min-height: 0; }
  .ref-analysis-compact-overview .ref-analysis-video img { height: auto; min-height: 0; object-fit: contain; }
  .ref-analysis-compact-overview .ref-analysis-summary-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
}

@media (max-width: 779px) {
  .reference-site .site-nav { backdrop-filter: none; }
  .reference-site .site-nav .nav-mobile-actions { display: grid !important; }
  .reference-site .site-nav .nav-desktop-only { display: none !important; }
  .reference-site .site-nav .nav-toggle-btn { display: flex; }
  .reference-site .site-nav .nav-brand { width: 160px; min-width: 160px; }
  .reference-site .site-nav .brand-emblem--official { width: 34px; height: 34px; }
  .reference-site .site-nav .brand-wordmark--official { width: 116px; }
  .reference-site .reference-footer-simple { grid-template-columns: 1fr auto; padding-block: 24px; }
  .reference-site .reference-footer-simple nav { grid-column: 1 / -1; grid-row: 2; flex-wrap: wrap; justify-content: flex-start; }
}

@media (max-width: 620px) {
  :root { --ref-gutter: 16px; }
  .reference-site .site-nav .nav-brand { width: 160px; min-width: 160px; }
  .reference-site .site-nav .brand-wordmark--official { width: 116px; }
  .ref-actions { display: grid; width: 100%; }
  .ref-actions .ref-btn { width: 100%; }
  .ref-home-hero h1,
  .ref-how-hero h1,
  .ref-how-hero h2,
  .ref-model-story__intro h1,
  .ref-about-hero__copy h1,
  .ref-page-intro h1,
  .reference-site.pricing-page .page-hero h1 { font-size: clamp(2.35rem,11vw,3.25rem); }
  .ref-home-analysis { padding: 10px; }
  .ref-model-shell__bar { align-items: flex-start; flex-direction: column; gap: 8px; }
  .ref-model-shell__bar > div { align-items: flex-start; flex-direction: column; gap: 8px; }
  .ref-model-shell iframe { height: 790px; min-height: 790px; }
  .ref-model-lenses { grid-template-columns: 1fr; }
  .ref-model-conclusion { padding: 22px 18px; }
  .ref-analysis-demo-shell { padding-top: 8px; }
  .ref-analysis-demo__header { grid-template-columns: 42px 1fr 42px; }
  .ref-analysis-demo__header h1 { font-size: 1.35rem; }
  .ref-analysis-example-badge { display: none; }
  .ref-analysis-step { padding-block: 20px; }
  .ref-analysis-step__label { margin-bottom: 12px; }
  .ref-analysis-step__label > span { width: 34px; height: 34px; font-size: 1.1rem; }
  .ref-analysis-step > h2 { font-size: 1.72rem; }
  .ref-analysis-compact-feedback > h2 { font-size: 1.72rem; }
  .ref-analysis-video { border-radius: 14px; }
  .ref-analysis-phase { top: 10px; right: 10px; padding: 4px 9px; font-size: .62rem; }
  .ref-analysis-time { bottom: 9px; left: 10px; padding: 4px 8px; font-size: .62rem; }
  .ref-analysis-summary-grid { gap: 9px; }
  .ref-analysis-summary-grid .ref-feedback { min-height: 178px; grid-template-columns: 34px minmax(0,1fr); gap: 9px; padding: 13px 11px; }
  .ref-analysis-summary-grid .ref-round-icon { width: 34px; height: 34px; font-size: 1rem; }
  .ref-analysis-summary-grid .ref-feedback small { margin-bottom: 6px; font-size: .68rem; line-height: 1.35; }
  .ref-analysis-summary-grid .ref-feedback h3 { font-size: .92rem; }
  .ref-analysis-summary-grid .ref-feedback p { font-size: .72rem; line-height: 1.45; }
  .ref-analysis-summary-grid .ref-feedback a { font-size: .7rem; }
  .ref-analysis-evidence { gap: 9px; }
  .ref-analysis-evidence figure { border-radius: 11px; }
  .ref-analysis-evidence figure > span { top: 7px; left: 7px; padding: 4px 7px; font-size: .56rem; }
  .ref-analysis-insights article { grid-template-columns: 38px minmax(0,1fr); gap: 10px; padding: 10px 12px; }
  .ref-analysis-insight-icon { width: 38px; height: 38px; }
  .ref-analysis-insight-icon svg { width: 21px; height: 21px; }
  .ref-analysis-insights h3 { font-size: .86rem; }
  .ref-analysis-insights p { font-size: .76rem; }
  .ref-analysis-drill { grid-template-columns: 64px minmax(0,1fr); gap: 13px; padding: 15px; }
  .ref-analysis-chair { width: 62px; height: 62px; }
  .ref-analysis-chair svg { width: 39px; height: 39px; }
  .ref-analysis-drill h3 { font-size: 1.05rem; }
  .ref-analysis-drill p { font-size: .76rem; }
  .ref-media { min-height: 285px; }
  .ref-report-media img { height: auto; min-height: 0; object-fit: contain; }
  .ref-feedback-stack,
  .ref-benefits,
  .ref-discovery,
  .ref-focus-cards,
  .ref-recording__examples,
  .ref-evidence,
  .ref-insights,
  .ref-limit-cards,
  .ref-about-values,
  .ref-about-promises,
  .ref-clubs-hero__grid,
  .ref-clubs-value-grid,
  .ref-clubs-admin-layout,
  .ref-clubs-process,
  .ref-clubs-offer,
  .reference-site.pricing-page .pricing-grid-three,
  .reference-site.pricing-page .pricing-products .pricing-grid-three { grid-template-columns: 1fr; }
  .ref-clubs-hero { padding-top: 30px; }
  .ref-clubs-hero__copy h1 { max-width: 13ch; font-size: clamp(2.35rem,11vw,3.25rem); }
  .ref-clubs-admin-copy { position: static; }
  .ref-clubs-value-grid .ref-card,.ref-clubs-process li { min-height: 0; }
  .ref-how-page .ref-focus-card { display: grid; min-height: 0; grid-template-columns: 36px minmax(0,1fr); grid-template-areas: "icon label" "icon title" "icon copy"; column-gap: 11px; padding: 12px; }
  .ref-how-page .ref-focus-card .ref-round-icon { grid-area: icon; width: 36px; height: 36px; margin: 0; }
  .ref-how-page .ref-focus-card small { grid-area: label; margin: 0 0 3px; }
  .ref-how-page .ref-focus-card h3 { grid-area: title; margin: 0 0 3px; }
  .ref-how-page .ref-focus-card p { grid-area: copy; }
  .ref-benefits li { padding: 18px 8px; border-right: 0; border-bottom: 1px solid var(--ref-line); }
  .ref-benefits li:last-child { border-bottom: 0; }
  .ref-step { padding: 22px 18px; }
  .ref-step__copy { padding-top: 0; }
  .ref-recording__examples { justify-items: center; }
  .ref-about-hero { padding-top: 28px; }
  .ref-about-hero__visual,
  .ref-about-hero__visual > img { height: 250px; min-height: 250px; }
  .ref-about-hero__visual figcaption { right: 12px; bottom: 12px; left: 12px; }
  .ref-about-value { min-height: 0; }
  .ref-about-story { padding: 22px; }
  .reference-site.ref-support-page .ref-support-hero { padding-block: 30px 26px; }
  .reference-site.ref-support-page .ref-support-hero h1 { font-size: clamp(2.15rem,10vw,2.9rem); }
  .reference-site.ref-support-page .ref-support-hero .page-hero-lead { font-size: .92rem; }
  .reference-site .ref-support-faq .faq-question { min-height: 58px; padding: 14px 16px; font-size: .84rem; }
  .reference-site .ref-support-faq .faq-answer { padding: 0 16px 16px; font-size: .82rem; }
  .ref-contact-aside,
  .ref-contact-form-card { padding: 22px; }
  .ref-contact-aside .ref-round-icon { margin-bottom: 20px; }
  .reference-site .ref-legal-main > .card { padding: 22px 18px; }
  .reference-site .ref-legal-main h2 { font-size: 1.42rem; }
  .reference-site .ref-legal-main h3 { margin-top: 24px; padding-top: 20px; }
  .reference-site .ref-legal-main .badge { display: flex; width: fit-content; margin: 8px 0 0; }
  .ref-drill { grid-template-columns: 46px 1fr; }
  .ref-drill .ref-btn { grid-column: 1 / -1; width: 100%; }
  .plan-difference-header { min-height: 0; }
  .plan-difference-list > div { grid-template-columns: 96px minmax(0,1fr); }
  .plan-difference-card footer { align-items: flex-start; flex-direction: column; }
  .reference-site.pricing-page .marketing-price-card { min-height: 0; }
}

@media (max-width: 360px) {
  .ref-analysis-summary-grid { grid-template-columns: 1fr; }
  .ref-analysis-compact-overview .ref-analysis-summary-grid { grid-template-columns: 1fr; }
  .ref-analysis-summary-grid .ref-feedback { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reference-site * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
