/* MindsetOS — original structure, elevated.
   Glassmorphic cards over the nature photography, sticky glass nav,
   scroll progress, mono eyebrows, italic heading accents, arrow-chip buttons.
   Brand: Urbanist + Poppins, near-white neutrals, black actions. */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=Poppins:wght@300;400;500;600&family=JetBrains+Mono:wght@500&display=swap');

:root {
  --bg: #fafafa;
  --bg-alt: #f4f4f2;
  --ink: #0c0c0c;
  --ink-soft: #4a4a4a;
  --line: rgba(12, 12, 12, 0.08);
  --glass-light: rgba(255, 255, 255, 0.62);
  --glass-dark: rgba(14, 20, 18, 0.45);
  --glass-border: rgba(255, 255, 255, 0.55);
  --heading: 'Urbanist', sans-serif;
  --body: 'Poppins', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --flowing: #63c3ec;
  --inspiring: #5fc6b8;
  --thriving: #7ecb8f;
  --exploring: #f6c454;
  --driving: #f5a25f;
  --striving: #f2917e;
  --surviving: #f3aec5;
  --pad-x: clamp(20px, 6vw, 110px);
  --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--body);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
p + p { margin-top: 1em; }

h1, h2 { font-family: var(--heading); font-weight: 500; line-height: 1.08; letter-spacing: -0.015em; }
h1 { font-size: clamp(44px, 4.8vw, 86px); }
h2 { font-size: clamp(30px, 3.1vw, 56px); }
h3 { font-family: var(--heading); font-weight: 600; font-size: clamp(20px, 1.6vw, 27px); }
h4 { font-family: var(--body); font-weight: 600; font-size: clamp(16px, 1.2vw, 21px); line-height: 1.4; }

h1 em, h2 em, h4 em {
  font-family: var(--heading);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--mono);
  font-size: clamp(11px, 0.75vw, 13px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.2em;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.85); }

/* ---------- Scroll progress ---------- */

.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 60;
  background: transparent;
  pointer-events: none;
}
.scroll-progress i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--surviving), var(--striving), var(--driving), var(--exploring), var(--thriving), var(--inspiring), var(--flowing));
}

/* ---------- Header (transparent -> glass on scroll) ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-x);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-header img { height: clamp(30px, 2.3vw, 40px); width: auto; }
.site-header .logo-light { display: none; }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 38px); }

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(14px, 0.95vw, 17px);
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.site-nav a:not(.nav-cta):hover { opacity: 0.7; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ink) !important;
  padding: 0.6em 1.4em;
  border-radius: 300px;
}

/* Scrolled state: light glass bar */
.site-header.scrolled {
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(12, 12, 12, 0.07);
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-header.scrolled .site-nav a { color: var(--ink); }
.site-header.scrolled .nav-cta { background: var(--ink); color: #fff !important; }
.site-header.scrolled .logo-dark { display: none; }
.site-header.scrolled .logo-light { display: block; }
.site-header.scrolled .nav-toggle { color: var(--ink); }

/* ---------- Buttons with arrow chips ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(15px, 1vw, 18px);
  text-decoration: none;
  padding: 0.9em 2.1em;
  border-radius: 300px;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.chip {
  width: 2.1em;
  height: 2.1em;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.18s ease;
}
.btn:hover .chip { transform: translate(2px, -2px); }

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary .chip { background: rgba(255, 255, 255, 0.16); }

.btn-light { background: #fff; color: var(--ink); }
.chip-dark { background: var(--ink); color: #fff; }

.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.chip-outline { background: var(--ink); color: #fff; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.chip-ghost { background: rgba(255, 255, 255, 0.22); color: #fff; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: clamp(600px, 96vh, 980px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: clamp(120px, 15vh, 180px) var(--pad-x) clamp(90px, 12vh, 140px);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.10) 45%, rgba(0,0,0,0.28) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 850px;
}

.hero h1 { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3); }

.hero-sub {
  margin-top: 1.1em;
  font-size: clamp(17px, 1.35vw, 23px);
  max-width: 46ch;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.hero-ctas {
  margin-top: clamp(28px, 3.2vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}
.scroll-hint span { display: block; animation: hint 1.8s ease-in-out infinite; }
@keyframes hint { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Client marquee ---------- */

.client-strip {
  padding: clamp(26px, 2.8vw, 40px) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.client-strip-label {
  font-family: var(--mono);
  text-align: center;
  font-size: clamp(10px, 0.7vw, 12px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}

.marquee {
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  list-style: none;
  display: flex;
  gap: clamp(48px, 6vw, 110px);
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track li {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(16px, 1.2vw, 22px);
  opacity: 0.72;
  white-space: nowrap;
}

@keyframes marquee { to { transform: translateX(calc(-100% / 3)); } }

/* ---------- Sections (original bones) ---------- */

.section { padding: clamp(70px, 8vw, 140px) var(--pad-x); }
.section-alt { background: var(--bg-alt); }
.center { text-align: center; }
.cta-row { margin-top: clamp(30px, 3vw, 52px); display: flex; flex-wrap: wrap; gap: 14px; }
.cta-row.center { justify-content: center; }
.rounded { border-radius: var(--radius); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 120px);
  align-items: start;
}
.two-col.align-center { align-items: center; }

.title-with-ring { display: flex; align-items: flex-start; gap: 16px; }
.title-with-ring .ring { width: clamp(70px, 6vw, 110px); height: auto; flex-shrink: 0; margin-top: -0.25em; }
.title-block .title-with-ring ~ * { margin-left: calc(clamp(70px, 6vw, 110px) + 16px); }
.title-block .subhead { margin-top: 1.1em; font-weight: 400; }

.section-title-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.section-title-center .ring { width: clamp(54px, 4.6vw, 88px); margin-right: 14px; margin-top: -0.2em; }

/* ---------- Glass bands (three-box over photography) ---------- */

.glass-band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: clamp(80px, 9vw, 150px) var(--pad-x);
}
@supports (-webkit-touch-callout: none) {
  .glass-band { background-attachment: scroll; }
}

.glass-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 16, 0.32);
}

.glass-band-head {
  position: relative;
  color: #fff;
  max-width: 720px;
  margin-bottom: clamp(36px, 4vw, 64px);
}
.glass-band-head h2 { text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3); }

.glass-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 36px);
}

.glass-card {
  background: var(--glass-light);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: clamp(24px, 2.4vw, 42px);
  box-shadow: 0 20px 60px rgba(6, 16, 20, 0.22);
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(6, 16, 20, 0.3);
  background: rgba(255, 255, 255, 0.74);
}

.glass-card h4 { margin-bottom: 0.55em; }
.glass-card p { color: var(--ink-soft); font-size: clamp(14px, 0.98vw, 16.5px); }

.glass-num {
  display: block;
  font-family: var(--heading);
  font-weight: 500;
  font-size: clamp(44px, 3.6vw, 68px);
  line-height: 1;
  margin-bottom: 0.35em;
}
.glass-num small { font-size: 0.45em; font-weight: 400; color: var(--ink-soft); }

.glass-card .ring { width: clamp(52px, 4vw, 72px); margin-bottom: 18px; }

.glass-band .cta-row { position: relative; }

/* ---------- Statement band ---------- */

.statement-band {
  position: relative;
  min-height: clamp(380px, 44vw, 720px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(70px, 8vw, 120px) var(--pad-x);
}
.statement-band::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.28); }
.statement-band h2 {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 24ch;
  font-size: clamp(34px, 3.6vw, 64px);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

/* ---------- How it works: dynamic three-box ---------- */

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 36px);
}

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.35s ease;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

.step-top { padding: clamp(24px, 2.2vw, 38px); }

.step-num {
  font-family: var(--mono);
  font-size: clamp(11px, 0.8vw, 13px);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 300px;
  padding: 4px 12px;
  margin-bottom: 1.2em;
}

.step-card h3 { margin-bottom: 0.6em; }
.step-card p { color: var(--ink-soft); font-size: clamp(14px, 0.98vw, 16.5px); }

.step-card .phone-wrap {
  margin-top: auto;
  padding: clamp(20px, 2vw, 32px) clamp(28px, 2.6vw, 46px) 0;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.step-card .phone-shot {
  width: 100%;
  max-width: 330px;
  height: auto;
  align-self: flex-start;
  filter: drop-shadow(0 24px 40px rgba(6, 16, 20, 0.2));
  transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.step-card:hover .phone-shot { transform: translateY(-6px) scale(1.02); }

/* ---------- Testimonials (glass over soft bg) ---------- */

.testimonials {
  background: var(--bg-alt);
  padding: clamp(72px, 9vw, 150px) var(--pad-x);
  position: relative;
  text-align: center;
}

.testimonial-track { max-width: 900px; margin: 0 auto; }
.testimonial { display: none; }
.testimonial.active { display: block; animation: quoteIn 0.5s ease; }
@keyframes quoteIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.testimonial blockquote {
  font-family: var(--heading);
  font-size: clamp(24px, 2.3vw, 44px);
  line-height: 1.3;
  font-weight: 400;
}

.testimonial cite {
  display: block;
  margin-top: 2em;
  font-family: var(--mono);
  font-style: normal;
  font-size: clamp(11px, 0.8vw, 13px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.carousel-arrow.prev { left: clamp(12px, 2.5vw, 48px); }
.carousel-arrow.next { right: clamp(12px, 2.5vw, 48px); }

/* ---------- Dark CTA ---------- */

.dark-cta {
  position: relative;
  background: #000 center / cover no-repeat;
  padding: clamp(100px, 12vw, 210px) var(--pad-x);
}
.dark-cta::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }
.dark-cta h2 { position: relative; color: #fff; max-width: 22ch; margin-bottom: 0.9em; }
.dark-cta .hero-ctas { position: relative; margin-top: 0; }

/* ---------- Contact form (glass fields) ---------- */

.contact-form label {
  display: block;
  font-family: var(--mono);
  font-size: clamp(11px, 0.75vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-form label .req { opacity: 0.5; text-transform: none; letter-spacing: 0; }

.contact-form .field { margin-bottom: 22px; }
.contact-form .name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--body);
  font-size: clamp(14px, 1vw, 17px);
  padding: 0.9em 1.4em;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(12, 12, 12, 0.08);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: clamp(50px, 6vw, 100px) var(--pad-x) clamp(32px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-left img { height: clamp(32px, 2.8vw, 48px); width: auto; margin-bottom: 28px; }
.footer-links { list-style: none; }
.footer-links a { font-size: clamp(13px, 0.85vw, 15px); text-decoration: underline; text-underline-offset: 3px; line-height: 2; }
.footer-badge { font-size: 12px; text-align: center; opacity: 0.85; }
.footer-badge img { width: 88px; height: 88px; display: block; }
.footer-badge a { display: block; transition: transform 0.18s ease; }
.footer-badge a:hover { transform: translateY(-2px); }

/* ---------- Motion ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* Stagger inside three-box grids */
.glass-grid .reveal:nth-child(2), .step-grid .step-card:nth-child(2) { transition-delay: 0.12s; }
.glass-grid .reveal:nth-child(3), .step-grid .step-card:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .scroll-hint span { animation: none; }
  .glass-band { background-attachment: scroll; }
  .btn, .chip, .glass-card, .step-card, .step-card .phone-shot { transition: none; }
}

/* ---------- Focus ---------- */

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

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

@media (max-width: 900px) {
  .two-col, .contact-form .name-row { grid-template-columns: 1fr; }
  .title-block .title-with-ring ~ * { margin-left: 0; }
  .glass-grid, .step-grid { grid-template-columns: 1fr; }
  .glass-grid .reveal, .step-grid .step-card { transition-delay: 0s; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; left: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    padding: 24px var(--pad-x) 32px;
    gap: 18px;
  }
  .site-nav.open { display: flex; }
  .site-nav.open a,
  .site-header.scrolled .site-nav.open a { color: #fff; }
  .site-header.scrolled .site-nav.open .nav-cta { background: #fff; color: var(--ink) !important; }
  .nav-toggle { display: block; background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; }
}

@media (min-width: 901px) {
  .nav-toggle { display: none; }
}

/* ---------- Inner pages ---------- */

.hero-page {
  min-height: clamp(380px, 58vh, 560px);
  padding-bottom: clamp(60px, 8vh, 100px);
}
.hero-page .hero-inner { max-width: 900px; }
.hero-page h1 { font-size: clamp(38px, 4vw, 72px); }

.site-nav a.active { border-bottom: 1.5px solid currentColor; padding-bottom: 2px; }

.image-band img { width: 100%; height: clamp(320px, 44vw, 780px); object-fit: cover; }

/* Seven mindsets: glass scroller */
.mindsets-scroller {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.mindset-card { scroll-snap-align: start; }
.mindset-card .ring { width: clamp(56px, 4.5vw, 80px); margin-bottom: 16px; }
.mindset-card h3 { margin-bottom: 0.5em; }

.glass-band-foot {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  max-width: 62ch;
  margin-top: clamp(24px, 3vw, 40px);
  font-size: clamp(14px, 1vw, 17px);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

/* Pricing */
.pricing-head { max-width: 640px; margin-top: clamp(64px, 7vw, 120px); }
.pricing-head p { margin-top: 1em; color: var(--ink-soft); }
.pricing-head a { font-weight: 500; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 40px);
  margin-top: clamp(40px, 4.5vw, 72px);
  align-items: stretch;
}

.tier-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent, var(--ink));
  border-radius: var(--radius);
  padding: clamp(26px, 2.4vw, 42px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 14px 44px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.35s ease;
}
.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 30px 70px rgba(0, 0, 0, 0.12);
}

.tier-head { min-height: clamp(120px, 8.5vw, 160px); }
.tier-name { font-family: var(--heading); font-weight: 600; font-size: clamp(22px, 1.7vw, 30px); }
.tier-size { font-size: 0.85em; color: var(--ink-soft); margin-top: 0.2em; }

.tier-price { display: flex; align-items: baseline; gap: 12px; margin-top: 1em; }
.tier-price .amount { font-family: var(--heading); font-size: clamp(42px, 3.2vw, 60px); font-weight: 500; line-height: 1; }
.tier-price .unit { font-size: 0.72em; line-height: 1.35; color: var(--ink-soft); }

.btn-block { justify-content: center; width: 100%; margin: 18px 0 8px; }

.feature-lead { font-weight: 600; font-size: 0.85em; margin-top: 1.2em; }

.feature-list { list-style: none; margin-top: 0.8em; font-size: 0.9em; }
.feature-list li { padding-left: 1.7em; position: relative; margin-bottom: 0.7em; }
.feature-list li::before { content: '\2713'; position: absolute; left: 0; font-weight: 600; color: var(--accent, var(--inspiring)); }

.small { font-size: 0.8em; color: var(--ink-soft); margin-top: 1em; }

@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; }
  .hero-page { min-height: 320px; }
}

/* Tier differentiation */
.tier-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1e7f6e;
  background: rgba(95, 198, 184, 0.14);
  border-radius: 300px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 10px;
}
.tier-indic {
  font-size: 0.8em;
  color: var(--ink-soft);
  margin-top: 0.8em;
}
.tier-head { min-height: clamp(150px, 10.5vw, 200px); }

/* Bio photo: match Ed's landscape crop */
.bio-photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 50% 22%; }

/* Team mindset map collage (report pages, layered) */
.map-collage { position: relative; padding-bottom: 64%; }
.map-collage .collage-cover {
  display: block;
  width: 70%;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(6, 16, 20, 0.25);
}
.map-collage .collage-ladder {
  position: absolute;
  right: 0;
  top: 25%;
  width: 60%;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(6, 16, 20, 0.28);
  border: 1px solid var(--line);
}
.map-collage .collage-analysis {
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 56%;
  z-index: 2;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(6, 16, 20, 0.28);
  border: 1px solid var(--line);
}

/* Pricing: compact team-map explainer */
.map-explainer {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 48px);
  margin-top: clamp(36px, 4vw, 64px);
}
.map-explainer img { border-radius: calc(var(--radius) * 0.6); border: 1px solid var(--line); }
@media (max-width: 900px) {
  .map-explainer { grid-template-columns: 1fr; }
}

/* Full-bleed split section: image fills the left half edge to edge */
.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.split-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-media .split-inner {
  display: flex;
  align-items: center;
  padding: clamp(70px, 8vw, 140px) var(--pad-x) clamp(70px, 8vw, 140px) clamp(40px, 5vw, 100px);
}
@media (max-width: 900px) {
  .split-media { grid-template-columns: 1fr; }
  .split-media > img { max-height: 46vh; }
}

/* Content pages (privacy, security) */
.prose-page { max-width: 860px; margin: 0 auto; }
.prose-page h2 { font-size: clamp(24px, 2vw, 34px); margin-top: 2.2em; padding-top: 1.3em; border-top: 1px solid var(--line); }
.prose-page h3 { margin-top: 1.6em; }
.prose-page p, .prose-page li { color: var(--ink-soft); }
.prose-page p { margin-top: 0.8em; }
.prose-page ul { padding-left: 1.3em; margin-top: 0.8em; }
.prose-page li { margin-bottom: 0.55em; }
.prose-page .meta { font-family: var(--mono); font-size: clamp(11px, 0.75vw, 13px); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 2.4em; }
.table-scroll { overflow-x: auto; margin-top: 1.2em; }
.prose-table { width: 100%; border-collapse: collapse; font-size: 0.92em; min-width: 560px; }
.prose-table th, .prose-table td { text-align: left; padding: 12px 14px; border: 1px solid var(--line); vertical-align: top; }
.prose-table th { font-weight: 600; background: var(--bg-alt); font-family: var(--heading); }
.prose-table td { color: var(--ink-soft); }
.video-frame { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 60px rgba(6, 16, 20, 0.25); margin-bottom: clamp(40px, 5vw, 72px); background: #000; }
mux-player { display: block; aspect-ratio: 16 / 9; width: 100%; }

/* Print / PDF export: clean document from the content pages */
@media print {
  .site-header, .scroll-progress, .site-footer, .nav-toggle, .video-frame { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero, .hero-page { min-height: auto !important; background-image: none !important; background: #fff !important; padding: 24px 0 8px !important; }
  .hero::after { display: none !important; }
  .hero-inner { color: #000 !important; }
  .hero h1 { text-shadow: none !important; color: #000 !important; font-size: 30pt !important; }
  .eyebrow-light { color: #555 !important; }
  .section { padding: 12px 0 !important; }
  .pdf-link { display: none !important; }
  body { background: #fff !important; font-size: 11pt; }
}

/* Pricing: single centred intro + individual strip */
.pricing-intro { margin-bottom: clamp(40px, 5vw, 72px); }
.pricing-intro .section-title-center { margin-bottom: 0; }
.section-sub { text-align: center; max-width: 640px; margin: 1.1em auto 0; color: var(--ink-soft); }
.solo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 40px) clamp(24px, 3vw, 48px);
  margin-top: clamp(28px, 3vw, 48px);
}
.solo-strip p { color: var(--ink-soft); margin-top: 0.3em; max-width: 56ch; }

/* FAQ accordion */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-of-type { border-top: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2vw, 26px) 4px;
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(17px, 1.3vw, 22px);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-weight: 400;
  font-size: 1.4em;
  line-height: 1;
  color: var(--ink-soft);
  transition: transform 0.25s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--ink-soft); padding: 0 4px clamp(18px, 2vw, 26px); max-width: 70ch; }
