/* =========================================================
   Skye Blanks — Design System
   ========================================================= */

:root {
  /* Brand */
  --purple-900: #2a0450;
  --purple-700: #390566;
  --purple-500: #6b2bb8;
  --purple-300: #b794e6;
  --purple-50:  #f5efff;

  /* Neutrals */
  --ink:    #0f0a1a;
  --muted:  #5b5566;
  --white:  #ffffff;
  --line:   #ece8f2;
  --bg-soft:#fbfaff;

  /* Layout */
  --max:     1200px;
  --radius:  14px;
  --radius-lg: 24px;
  --pill:    999px;

  /* Type scale */
  --f-xs:  0.8125rem;
  --f-sm:  0.9375rem;
  --f-base:1.0625rem;
  --f-lg:  1.25rem;
  --f-xl:  1.625rem;
  --f-2xl: 2.25rem;
  --f-3xl: 3rem;
  --f-4xl: 4rem;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15,10,26,.04), 0 1px 3px rgba(15,10,26,.06);
  --shadow-md: 0 8px 24px rgba(57,5,102,.08), 0 2px 6px rgba(15,10,26,.04);
  --shadow-lg: 0 30px 60px -20px rgba(57,5,102,.25);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* =========================================================
   Reset / base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--f-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--purple-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--purple-500); }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.25rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: var(--f-xl); }
p  { margin: 0 0 1em; color: var(--muted); }

:focus-visible {
  outline: 2px solid var(--purple-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Layout primitives
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: clamp(56px, 9vw, 112px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.eyebrow {
  display: inline-block;
  font-size: var(--f-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple-700);
  background: var(--purple-50);
  padding: 6px 14px;
  border-radius: var(--pill);
  margin-bottom: 18px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--pill);
  font-weight: 600;
  font-size: var(--f-sm);
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple-700);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(57,5,102,.6);
}
.btn-primary:hover {
  background: var(--purple-500);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(57,5,102,.7);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--purple-700);
  color: var(--purple-700);
  background: var(--purple-50);
}
.btn-light {
  background: var(--white);
  color: var(--purple-700);
}
.btn-light:hover { background: var(--purple-50); color: var(--purple-700); }
.btn svg { width: 16px; height: 16px; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 4px 24px rgba(57,5,102,.08);
  border-color: transparent;
}
.nav {
  display: flex;
  align-items: center;
  height: 116px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  color: var(--ink);
}
.brand img {
  height: 100px;
  width: auto;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-md);
}
.nav > nav { margin-left: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-cta { margin-left: 28px; }
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: var(--f-sm);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-700), var(--purple-500));
  border-radius: 2px;
  transition: width .3s var(--ease), left .3s var(--ease);
}
.nav-links a:hover { color: var(--purple-700); }
.nav-links a:hover::after { width: 100%; left: 0; }
.nav-links a.active { color: var(--purple-700); }
.nav-links a.active::after { width: 100%; left: 0; }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta .btn {
  padding: 11px 22px;
  position: relative;
  overflow: hidden;
}
.nav-cta .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.nav-cta .btn:hover::before { opacity: 1; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  z-index: 110;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.6,.05,.2,1), top .25s var(--ease) .15s, background-color .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
/* Hamburger morphs to X when drawer is open */
.nav-toggle[aria-expanded="true"] span,
.nav-toggle[aria-expanded="true"] span::before,
.nav-toggle[aria-expanded="true"] span::after {
  background: #fff;
  transition: transform .35s cubic-bezier(.6,.05,.2,1) .1s, top .25s var(--ease), background-color .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile drawer — hidden by default, shown only on mobile when .open */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: radial-gradient(circle at 100% 0%, var(--purple-700) 0%, var(--purple-900) 55%, #15032a 100%);
  color: #fff;
  z-index: 100;
  padding: 96px 28px 36px;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: circle(0px at calc(100% - 44px) 44px);
  transition: clip-path .6s cubic-bezier(.7,0,.2,1), opacity .35s var(--ease), visibility .6s;
  overflow-y: auto;
}
.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: circle(2400px at calc(100% - 44px) 44px);
}
.mobile-drawer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(183,148,230,.18), transparent 55%);
  pointer-events: none;
}
@media (max-width: 820px) {
  .mobile-drawer { display: flex; }
}
.mobile-drawer .drawer-eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-drawer.open .drawer-eyebrow { opacity: 1; transform: translateY(0); transition-delay: .25s; }

.mobile-drawer ul {
  counter-reset: drawer;
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
}
.mobile-drawer ul li {
  counter-increment: drawer;
  border-bottom: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  position: relative;
}
.mobile-drawer.open ul li { opacity: 1; transform: translateY(0); }
.mobile-drawer.open ul li:nth-child(1) { transition-delay: .30s; }
.mobile-drawer.open ul li:nth-child(2) { transition-delay: .37s; }
.mobile-drawer.open ul li:nth-child(3) { transition-delay: .44s; }
.mobile-drawer.open ul li:nth-child(4) { transition-delay: .51s; }
.mobile-drawer.open ul li:nth-child(5) { transition-delay: .58s; }

.mobile-drawer ul a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.85rem, 6.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  padding: 18px 0;
  line-height: 1;
  position: relative;
  transition: color .25s var(--ease), transform .35s var(--ease);
}
.mobile-drawer ul a::before {
  content: counter(drawer, decimal-leading-zero);
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: rgba(255,255,255,.4);
  align-self: center;
  min-width: 26px;
  transition: color .25s var(--ease);
}
.mobile-drawer ul a::after {
  content: '→';
  margin-left: auto;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  align-self: center;
}
.mobile-drawer ul a:hover,
.mobile-drawer ul a:active { color: var(--purple-300); transform: translateX(4px); }
.mobile-drawer ul a:hover::before { color: var(--purple-300); }
.mobile-drawer ul a:hover::after { opacity: 1; transform: translateX(0); }

.mobile-drawer .btn {
  align-self: stretch;
  text-align: center;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-drawer.open .btn { opacity: 1; transform: translateY(0); transition-delay: .68s; }

.mobile-close {
  display: none;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 110px) 0 clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,43,184,.18), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 span {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: var(--f-lg);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  font-size: var(--f-sm);
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-meta > div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -.01em;
}
.hero-meta span { font-size: var(--f-xs); color: var(--muted); }

.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--purple-50), #fff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}
.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,10,26,.35) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-portrait .badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: #fff;
  padding: 10px 16px;
  border-radius: var(--pill);
  box-shadow: var(--shadow-md);
  font-size: var(--f-xs);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-portrait .badge::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
}

/* Trust / logo strip */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  background: var(--bg-soft);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: var(--f-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  color: var(--muted);
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logos span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #6b6378;
  letter-spacing: -.01em;
  opacity: .8;
  transition: opacity .2s, color .2s;
  white-space: nowrap;
}
.trust-logos span:hover { opacity: 1; color: var(--purple-700); }
@media (max-width: 640px) {
  .trust-logos { gap: 24px; }
  .trust-logos span { font-size: .95rem; }
}

/* =========================================================
   Section heading
   ========================================================= */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sec-head p { font-size: var(--f-lg); }

/* =========================================================
   Pillars (4-up grid)
   ========================================================= */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s var(--ease);
  position: relative;
}
.pillar:hover {
  border-color: var(--purple-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--purple-50), #fff);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--purple-700);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.15rem; margin-bottom: 10px; }
.pillar p  { font-size: var(--f-sm); margin: 0; }
.pillar-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--purple-300);
}

/* =========================================================
   Credentials band (purple)
   ========================================================= */
.credentials {
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.credentials::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%);
}
.credentials .container { position: relative; z-index: 1; }
.credentials h2 { color: #fff; }
.credentials .sec-head p { color: rgba(255,255,255,.78); }
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.cred {
  border-top: 2px solid rgba(255,255,255,.18);
  padding-top: 20px;
}
.cred h4 {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 6px;
}
.cred p {
  font-size: var(--f-sm);
  color: rgba(255,255,255,.72);
  margin: 0;
}

/* =========================================================
   Case study teasers
   ========================================================= */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.case:hover {
  border-color: var(--purple-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.case-tag {
  font-size: var(--f-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--purple-700);
  margin-bottom: 14px;
}
.case-result {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.case h3 { font-size: 1rem; font-weight: 600; color: var(--muted); margin: 0 0 14px; }
.case p { font-size: var(--f-sm); flex: 1; }
.case-link {
  font-weight: 600;
  font-size: var(--f-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}
.case-link::after {
  content: '→';
  transition: transform .2s var(--ease);
}
.case-link:hover::after { transform: translateX(4px); }

/* =========================================================
   Lead magnet
   ========================================================= */
.lead-magnet {
  background: var(--bg-soft);
}
.lm-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.lm-cover {
  position: relative;
  display: grid;
  place-items: center;
  padding: 12px;
}
.lm-cover img {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(57,5,102,.35));
  transform: rotate(-3deg);
  transition: transform .4s var(--ease);
}
.lm-cover img:hover { transform: rotate(0deg) scale(1.02); }
.lm-form { display: flex; flex-direction: column; }
.lm-form h2 { margin-bottom: 14px; }
.lm-form p { font-size: var(--f-base); margin-bottom: 24px; }
.lm-input-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lm-input-row input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--pill);
  font: inherit;
  font-size: var(--f-sm);
  color: var(--ink);
  background: #fff;
  transition: border-color .2s var(--ease);
}
.lm-input-row input:focus { outline: none; border-color: var(--purple-500); }
.lm-fineprint {
  font-size: var(--f-xs);
  color: var(--muted);
  margin: 14px 0 0;
}

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  color: #fff;
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.12), transparent 60%);
}
.final-cta .container { position: relative; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 720px;
  margin: 0 auto 16px;
}
.final-cta p {
  color: rgba(255,255,255,.78);
  font-size: var(--f-lg);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #0a0612;
  color: #d8d2e3;
  padding: 72px 0 32px;
  font-size: var(--f-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid h5 {
  color: #fff;
  font-size: var(--f-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: #b1a9c2; }
.footer-grid a:hover { color: #fff; }
.footer-brand p { color: #b1a9c2; max-width: 320px; margin-top: 16px; }
.footer-brand .brand { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: #756c87;
  font-size: var(--f-xs);
}
.footer-bottom a { color: #756c87; }
.footer-bottom a:hover { color: #fff; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  color: #b1a9c2;
  transition: all .2s var(--ease);
}
.socials a:hover { background: var(--purple-700); color: #fff; }
.socials svg { width: 16px; height: 16px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav { height: 68px; }
  .brand img { height: 40px; }
  .nav-cta { margin-left: 0; gap: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-portrait { max-width: 420px; margin: 0 auto; }
  .lm-card { grid-template-columns: 1fr; gap: 40px; }
  .lm-cover { max-width: 280px; margin: 0 auto; }
  .case-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Home hero — give it room to breathe on mobile */
  .v2-hero { min-height: auto; }
  .v2-hero .container { padding-top: 88px; padding-bottom: 64px; }
  .v2-hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); margin-bottom: 16px; }
  .v2-hero .hero-sub { margin-bottom: 28px; }
  .v2-hero .hero-ctas { gap: 12px; margin-bottom: 36px; }
  .v2-hero .btn-light, .v2-hero .btn-ghost { padding: 14px 24px; font-size: .95rem; }
  .v2-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    padding-top: 28px;
  }
}

@media (max-width: 480px) {
  .pillars, .cred-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-logos { gap: 28px; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-hero {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -250px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107,43,184,.16), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,10,26,.4) 100%);
  pointer-events: none;
}
.about-h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1;
  margin-bottom: 28px;
}
.about-h1 span {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.about-lede {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  color: var(--muted);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 36px;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.about-credentials span {
  font-size: var(--f-xs);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--purple-700);
  background: var(--purple-50);
  padding: 8px 14px;
  border-radius: var(--pill);
  border: 1px solid rgba(107,43,184,.15);
}

/* Asprey-style stat row */
.authority-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.authority-stats .stat strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.authority-stats .stat span {
  font-size: var(--f-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
@media (max-width: 720px) {
  .authority-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* =========================================================
   ANIMATED PRESS MARQUEE (Asprey-style infinite scroll)
   ========================================================= */
.press-wall {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  overflow: hidden;
}
.press-wall h2 {
  text-align: center;
  font-size: var(--f-xs);
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 36px;
}

.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 72px;
  padding-right: 72px;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -.015em;
  color: #4a4257;
  opacity: .55;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity .25s, color .25s, transform .25s;
}
.marquee-item:hover {
  opacity: 1;
  color: var(--purple-700);
  transform: translateY(-1px);
}
.marquee-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple-300);
  margin-right: 20px;
  opacity: .6;
}
.marquee-item.serif { font-family: 'Plus Jakarta Sans', Georgia, serif; font-style: italic; font-weight: 800; }
.marquee-item.condensed { font-weight: 800; letter-spacing: -.03em; text-transform: uppercase; }
.marquee-item.allcaps { text-transform: uppercase; letter-spacing: .06em; font-size: 1.3rem; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Reverse direction utility */
.marquee.reverse .marquee-track { animation-direction: reverse; }

@media (max-width: 720px) {
  .marquee-track { gap: 48px; padding-right: 48px; }
  .marquee-item { font-size: 1.3rem; }
  .marquee-item.allcaps { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; justify-content: center; flex-wrap: wrap; }
}

/* Bio narrative — long-form copy */
.bio-narrative {
  max-width: 760px;
  margin: 0 auto;
}
.bio-narrative p {
  font-size: var(--f-lg);
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 24px;
}
.bio-narrative p:first-of-type::first-line {
  font-weight: 600;
}
.bio-narrative .pull {
  border-left: 3px solid var(--purple-700);
  padding-left: 24px;
  margin: 40px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

/* Roles grid */
.roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.role {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all .3s var(--ease);
}
.role:hover {
  border-color: var(--purple-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.role-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-50), #fff);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--purple-700);
}
.role-icon svg { width: 24px; height: 24px; }
.role h3 { font-size: 1.1rem; margin: 0 0 6px; }
.role-org {
  font-size: var(--f-xs);
  font-weight: 600;
  color: var(--purple-700);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 10px;
}
.role p { font-size: var(--f-sm); margin: 0; }
@media (max-width: 720px) { .roles { grid-template-columns: 1fr; } }

/* Speaking topics */
.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.topic {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--purple-50), #fff);
  border: 1px solid rgba(107,43,184,.15);
}
.topic strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--purple-700);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.topic p { font-size: var(--f-sm); margin: 0; }
@media (max-width: 820px) { .topics { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .topics { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-portrait { max-width: 440px; margin: 0 auto; order: 2; }
}

/* =========================================================
   PAGE HERO (shared by case-studies + media)
   ========================================================= */
/* =========================================================
   PAGE HERO — image-backed or video-backed
   ========================================================= */
.page-hero {
  position: relative;
  padding: clamp(100px, 14vw, 200px) 0 clamp(80px, 10vw, 140px);
  text-align: center;
  overflow: hidden;
  color: #fff;
}
/* Dark overlay */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,18,.72) 0%, rgba(42,4,80,.82) 50%, rgba(10,6,18,.92) 100%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  max-width: 900px;
  margin: 16px auto 20px;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.page-hero h1 span {
  background: linear-gradient(135deg, #b794e6, #e0d0f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.page-hero .eyebrow {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}
.page-hero .lede {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin: 0 auto;
}
.page-hero + .section,
.page-hero + .press-wall,
.page-hero + .media-section,
.page-hero + section {
  margin-top: clamp(48px, 6vw, 80px);
}

/* Hero background image */
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Hero background video */
.page-hero .hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   CASE STUDIES PAGE
   ========================================================= */
.cs-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cs {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.cs:hover {
  border-color: var(--purple-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.cs-banner {
  background: linear-gradient(160deg, var(--purple-700), var(--purple-900));
  color: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.cs-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 60%);
}
.cs-banner > * { position: relative; z-index: 1; }
.cs-industry {
  font-size: var(--f-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  opacity: .8;
  margin-bottom: 8px;
}
.cs-result {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 16px 0 4px;
}
.cs-result-sub { font-size: var(--f-sm); opacity: .85; }
.cs-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: var(--f-xs);
  margin-top: 28px;
  opacity: .85;
}
.cs-meta div::before { content: '— '; opacity: .6; }
.cs-body { padding: 36px 40px; }
.cs-body h2 { font-size: 1.5rem; margin-bottom: 14px; }
.cs-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.cs-row h4 {
  font-size: var(--f-xs);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--purple-700);
  margin: 0 0 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.cs-row p { font-size: var(--f-sm); margin: 0; line-height: 1.55; color: var(--muted); }

@media (max-width: 900px) {
  .cs { grid-template-columns: 1fr; }
  .cs-row { grid-template-columns: 1fr; gap: 16px; }
  .cs-body { padding: 32px 28px; }
}

/* =========================================================
   MEDIA PAGE
   ========================================================= */
.media-section { padding-top: clamp(48px, 6vw, 80px); }
.media-section + .media-section { padding-top: 0; }

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.section-label h2 {
  font-size: 1.5rem;
  margin: 0;
}
.section-label .count {
  font-size: var(--f-xs);
  background: var(--purple-50);
  color: var(--purple-700);
  padding: 4px 12px;
  border-radius: var(--pill);
  font-weight: 600;
}

/* Featured media card (hero feature) */
.media-featured {
  display: block;
  max-width: 920px;
  margin: 0 auto 56px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.media-featured-img {
  position: relative;
  background: #0f0a1a;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.media-featured-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.media-featured-body { text-align: left; }
.media-featured-body h3 { max-width: 720px; }

/* Speaking & Events empty state */
.events-empty {
  display: grid;
  place-items: center;
  padding: 24px 0;
}
.events-empty-card {
  width: 100%;
  max-width: 640px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
}
.events-empty-card h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 14px 0 12px;
  line-height: 1.25;
}
.events-empty-card > p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 24px;
}
.events-empty-card .lm-input-row { margin-top: 4px; }
.media-featured-body {
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.media-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--f-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  color: var(--purple-700);
  margin-bottom: 18px;
}
.media-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--purple-500);
  border-radius: 50%;
}
.media-featured-body h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.media-featured-body p { margin-bottom: 24px; }

/* Media grid (podcasts, press, speaking) */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.media-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
  text-decoration: none;
}
.media-card:hover {
  border-color: var(--purple-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.media-card-content { padding: 24px 28px; display: flex; flex-direction: column; flex: 1; }

/* Thumbnail for podcast cards */
.media-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(160deg, var(--purple-900), var(--purple-700));
}
.media-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,10,26,.4) 100%);
  pointer-events: none;
}
/* Podcast icon overlay on placeholder thumbs */
.media-thumb .thumb-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}
.media-thumb .thumb-icon svg {
  width: 42px;
  height: 42px;
  color: rgba(255,255,255,.5);
}
.media-thumb .thumb-show {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* Press logo thumbnail */
.media-logo-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.media-logo-thumb .logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--ink);
  opacity: .7;
  text-align: center;
  line-height: 1.1;
  transition: opacity .2s, color .2s;
}
.media-card:hover .media-logo-thumb .logo-text { opacity: 1; color: var(--purple-700); }
.media-logo-thumb .logo-text.text-lg { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
.media-logo-thumb .logo-text.text-md { font-size: clamp(1.2rem, 2vw, 1.75rem); }
.media-logo-thumb .logo-text.text-sm { font-size: clamp(1rem, 1.6vw, 1.35rem); }
.media-logo-thumb .logo-text.serif { font-family: 'Plus Jakarta Sans', Georgia, serif; font-style: italic; }
.media-logo-thumb .logo-text.condensed { letter-spacing: -.03em; text-transform: uppercase; }
.media-logo-thumb .logo-text.allcaps { text-transform: uppercase; letter-spacing: .08em; }
.media-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.media-outlet {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: var(--f-sm);
  color: var(--purple-700);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.media-date {
  font-size: var(--f-xs);
  color: var(--muted);
  font-weight: 500;
}
.media-card h3 {
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--ink);
}
.media-card p {
  font-size: var(--f-sm);
  color: var(--muted);
  flex: 1;
  margin: 0 0 16px;
}
.media-card .arrow {
  font-size: var(--f-sm);
  font-weight: 600;
  color: var(--purple-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.media-card .arrow::after { content: '→'; transition: transform .2s var(--ease); }
.media-card:hover .arrow::after { transform: translateX(4px); }

/* Type badge for media (podcast / article / video) */
.media-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--pill);
  background: var(--purple-50);
  color: var(--purple-700);
  margin-bottom: 12px;
}
.media-type svg { width: 10px; height: 10px; }

@media (max-width: 820px) {
  .media-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   HOMEWORK / PRE-CALL PAGE
   ========================================================= */
/* Homework page — dark immersive layout */
.hw-top {
  background: var(--ink);
  padding: 24px 0 clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.hw-top::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(107,43,184,.2), transparent 65%);
  filter: blur(60px);
}
.hw-header {
  text-align: center;
  padding: 20px 0 24px;
  position: relative;
  z-index: 1;
}
.hw-header .eyebrow { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); margin-bottom: 10px; }
.hw-header h1 {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  margin: 0 0 8px;
  line-height: 1.15;
  color: #fff;
}
.hw-header h1 span {
  background: linear-gradient(135deg, #b794e6, #e0d0f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hw-header .hw-sub {
  font-size: var(--f-sm);
  color: rgba(255,255,255,.6);
  margin: 0;
}
.hw-top .video-frame {
  position: relative;
  z-index: 1;
  border-color: rgba(107,43,184,.25);
}
.hw-bar {
  padding: 24px 0 0;
  position: relative;
  z-index: 1;
}
.hw-bar .steps .step {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.85);
}
.hw-bar .steps .step .num {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
}

/* Steps strip */
.steps {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: 10px 18px 10px 10px;
  font-size: var(--f-sm);
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.step .num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.step.done { color: var(--muted); }
.step.done .num { background: #d4cce0; }

/* Video player — branded native player */
.video-section {
  padding: clamp(24px, 3vw, 40px) 0 clamp(48px, 6vw, 72px);
}
.video-frame {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a0612;
  border: none;
  box-shadow:
    0 30px 60px -20px rgba(107,43,184,.15),
    0 0 40px -10px rgba(107,43,184,.1);
  transition: box-shadow .4s var(--ease);
}
.video-frame:hover {
  box-shadow:
    0 30px 60px -20px rgba(107,43,184,.22),
    0 0 50px -10px rgba(107,43,184,.14);
}
.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #0a0612;
}
/* Hide default controls initially (show via JS on play) */
.video-frame video:not([controls]) { cursor: pointer; }

/* Custom play button overlay */
.video-play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10,6,18,.25);
  border: 0;
  cursor: pointer;
  z-index: 5;
  transition: background .3s var(--ease);
}
.video-play-btn:hover { background: rgba(10,6,18,.15); }
.video-play-btn .play-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(183,148,230,.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px -6px rgba(107,43,184,.2);
  transition: all .3s var(--ease);
  animation: playPulse 2s ease-in-out infinite;
}
@keyframes playPulse {
  0%, 100% { box-shadow: 0 8px 30px -6px rgba(107,43,184,.2), 0 0 0 0 rgba(183,148,230,.3); }
  50%      { box-shadow: 0 8px 30px -6px rgba(107,43,184,.3), 0 0 0 16px rgba(183,148,230,0); }
}
.video-play-btn:hover .play-circle {
  background: rgba(183,148,230,.5);
  transform: scale(1.06);
  box-shadow: 0 12px 36px -6px rgba(107,43,184,.25);
}
.video-play-btn .play-circle svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  color: #fff;
}
.video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}

/* Label under the play button */
.video-play-btn .play-label {
  position: absolute;
  bottom: clamp(24px, 5%, 56px);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: var(--f-sm);
  color: rgba(255,255,255,.85);
  letter-spacing: .03em;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

/* Purple tint accent line at top of player */
.video-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(183,148,230,.4), transparent);
  z-index: 10;
}

/* Webkit custom controls styling */
.video-frame video::-webkit-media-controls-panel { background: linear-gradient(0deg, rgba(10,6,18,.8), transparent); }
.video-frame video::-webkit-media-controls-play-button { filter: brightness(1.2); }
.video-frame video::-webkit-media-controls-timeline { filter: hue-rotate(260deg) saturate(1.5); }

.video-meta {
  max-width: 1080px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: var(--f-sm);
  color: var(--muted);
}
.video-meta strong { color: var(--ink); }

@media (max-width: 640px) {
  .video-play-btn .play-circle { width: 72px; height: 72px; }
  .video-play-btn .play-circle svg { width: 24px; height: 24px; }
}

/* =========================================================
   HOME V2 — DISRUPTIVE / THOUGHT LEADER
   ========================================================= */

/* Full-bleed video hero */
.v2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.v2-hero .hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.v2-hero .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v2-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,18,.6) 0%, rgba(42,4,80,.75) 40%, rgba(10,6,18,.95) 100%);
  z-index: 1;
}
.v2-hero .container { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; }
.v2-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: #fff;
  max-width: 780px;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.v2-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #b794e6, #e0d0f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.v2-hero .hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.v2-hero .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.v2-hero .btn-light { font-size: 1rem; padding: 16px 32px; }
.v2-hero .btn-ghost { border-color: rgba(255,255,255,.3); color: #fff; font-size: 1rem; padding: 16px 32px; }
.v2-hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

/* Stats row in hero */
.v2-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 36px;
}
.v2-stats .stat { display: flex; flex-direction: column; gap: 4px; }
.v2-stats .stat strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.v2-stats .stat span {
  font-size: var(--f-xs);
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
@media (max-width: 820px) {
  .v2-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    padding-top: 28px;
  }
}
@media (max-width: 640px) { .v2-stats { gap: 22px 28px; } }

/* Manifesto / disruptive statement */
.v2-manifesto {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.v2-manifesto::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(107,43,184,.1), transparent 65%);
  filter: blur(60px);
}
.v2-manifesto blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: var(--ink);
  max-width: 960px;
  margin: 0 auto;
  letter-spacing: -.02em;
  position: relative;
}
.v2-manifesto blockquote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.v2-manifesto .attrib {
  margin-top: 28px;
  font-size: var(--f-sm);
  color: var(--muted);
  font-weight: 500;
}

/* PREMO feature section */
.v2-premo {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.v2-premo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.v2-premo-img {
  position: relative;
  overflow: hidden;
}
.v2-premo-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.v2-premo-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--ink) 100%);
}
.v2-premo-body {
  padding: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v2-premo-body .eyebrow { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.v2-premo-body h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 20px; }
.v2-premo-body p { color: rgba(255,255,255,.72); font-size: var(--f-lg); margin-bottom: 16px; }
.v2-premo-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.v2-premo-facts .fact strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 4px;
}
.v2-premo-facts .fact span {
  font-size: var(--f-xs);
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
}
@media (max-width: 900px) {
  .v2-premo-grid { grid-template-columns: 1fr; }
  .v2-premo-img { min-height: 350px; }
  .v2-premo-img::after { background: linear-gradient(180deg, transparent 50%, var(--ink) 100%); }
}

/* How it works — big number steps */
.v2-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  counter-reset: vstep;
}
.v2-step {
  counter-increment: vstep;
  padding-top: 28px;
  border-top: 2px solid var(--line);
  position: relative;
}
.v2-step::before {
  content: counter(vstep, decimal-leading-zero);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple-50), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--purple-50);
  position: absolute;
  top: 28px;
  right: 0;
  opacity: .6;
}
.v2-step h3 { font-size: 1.25rem; margin-bottom: 10px; max-width: 260px; }
.v2-step p { font-size: var(--f-sm); max-width: 300px; }
@media (max-width: 820px) { .v2-steps { grid-template-columns: 1fr; } }

/* =========================================================
   APPLY PAGE — calendar embed
   ========================================================= */
.apply-hero {
  text-align: center;
  padding: 32px 0 24px;
}
.apply-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 12px auto 12px;
  max-width: 700px;
}
.apply-hero h1 span {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.apply-hero .lede {
  font-size: var(--f-base);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}
.calendar-section {
  padding: 0 0 clamp(48px, 6vw, 80px);
}
.calendar-frame {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: #fff;
  min-height: 700px;
  position: relative;
}
.calendar-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 700px;
  border: 0;
  display: block;
}
.apply-trust {
  text-align: center;
  padding: 24px 0 0;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: var(--f-xs);
  color: var(--muted);
}
.apply-trust div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.apply-trust svg {
  width: 16px;
  height: 16px;
  color: var(--purple-500);
}

/* =========================================================
   MULTI-STEP APPLICATION FORM
   ========================================================= */
.apply-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  min-height: 480px;
  position: relative;
}

/* Progress bar */
.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 48px;
}
.form-progress .bar {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--line);
  overflow: hidden;
  transition: background .3s var(--ease);
}
.form-progress .bar.active {
  background: linear-gradient(90deg, var(--purple-700), var(--purple-500));
}
.form-progress .bar.done {
  background: var(--purple-300);
}

/* Step container */
.form-step {
  display: none;
  animation: stepIn .45s var(--ease) both;
}
.form-step.active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes stepOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-12px); }
}

/* Loading spinner between steps */
.form-loader {
  display: none;
  text-align: center;
  padding: 80px 0;
  animation: stepIn .3s var(--ease) both;
}
.form-loader.active { display: block; }
.spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border: 3px solid var(--line);
  border-top-color: var(--purple-500);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-loader p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: var(--f-sm);
  color: var(--muted);
  margin: 0;
}

/* Typing dots animation for loader text */
.loading-dots::after {
  content: '';
  animation: dots 1.4s steps(4, end) infinite;
}
@keyframes dots {
  0%  { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

/* Step exit animation */
.form-step.exiting {
  animation: stepOut .25s var(--ease) forwards;
}

/* Step label */
.step-label {
  font-size: var(--f-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  color: var(--purple-700);
  margin-bottom: 12px;
}
.step-question {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 32px;
  letter-spacing: -.02em;
}

/* Text input */
.form-input {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid var(--line);
  border-radius: 16px;
  font: inherit;
  font-size: 1.15rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  outline: none;
}
.form-input:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 4px rgba(107,43,184,.1);
}
.form-input::placeholder { color: #b1a9c2; }

/* Textarea */
textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* Option cards (for hours question) */
.form-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-option {
  padding: 18px 20px;
  border: 2px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  font-size: var(--f-sm);
  color: var(--ink);
  transition: all .25s var(--ease);
  background: #fff;
  user-select: none;
}
.form-option:hover {
  border-color: var(--purple-300);
  background: var(--purple-50);
}
.form-option.selected {
  border-color: var(--purple-700);
  background: var(--purple-50);
  color: var(--purple-700);
  box-shadow: 0 0 0 3px rgba(107,43,184,.12);
}
.form-option .opt-label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 2px;
}
.form-option .opt-sub {
  font-size: var(--f-xs);
  color: var(--muted);
  font-weight: 500;
}

/* Next button */
.form-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 36px;
  border-radius: var(--pill);
  border: 0;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 24px -8px rgba(57,5,102,.5);
  transition: all .25s var(--ease);
}
.form-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(57,5,102,.6);
}
.form-next:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.form-next svg { width: 18px; height: 18px; }

/* Investment question special styling */
.invest-card {
  background: linear-gradient(160deg, var(--purple-50), #fff);
  border: 2px solid rgba(107,43,184,.2);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  margin-bottom: 28px;
}
.invest-card p {
  font-size: var(--f-lg);
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 8px;
}
.invest-card .amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 16px 0;
  display: block;
}
.invest-options {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.invest-yes, .invest-no {
  padding: 14px 32px;
  border-radius: var(--pill);
  font-weight: 700;
  font-size: var(--f-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s var(--ease);
}
.invest-yes {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(57,5,102,.5);
}
.invest-yes:hover { transform: translateY(-1px); }
.invest-no {
  background: #fff;
  color: var(--muted);
  border-color: var(--line);
}
.invest-no:hover { border-color: var(--purple-300); color: var(--ink); }

/* Calendar reveal */
.calendar-hidden { display: none; }
.calendar-reveal {
  animation: stepIn .5s var(--ease) both;
}

/* Not a fit message */
.not-fit {
  text-align: center;
  padding: 48px 24px;
  animation: stepIn .45s var(--ease) both;
}
.not-fit h2 { font-size: 1.75rem; margin-bottom: 12px; }
.not-fit p { color: var(--muted); max-width: 480px; margin: 0 auto 24px; }

@media (max-width: 520px) {
  .form-options { grid-template-columns: 1fr; }
  .invest-options { flex-direction: column; }
}

/* =========================================================
   ABOUT HERO V2 — full-bleed video, split layout
   ========================================================= */
.about-hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.about-hero-v2 .hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-v2 .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,6,18,.85) 0%, rgba(42,4,80,.7) 50%, rgba(10,6,18,.88) 100%);
  z-index: 1;
}
.about-hero-v2 .container { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 80px; }

.about-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left: text content */
.about-v2-text .eyebrow { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.about-v2-text h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: .95;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.about-v2-text h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #b794e6, #e0d0f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-v2-text .lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.about-v2-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.about-v2-creds span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 12px;
  border-radius: var(--pill);
}
.about-v2-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.about-v2-ctas .btn-light { padding: 14px 28px; }
.about-v2-ctas .btn-ghost { border-color: rgba(255,255,255,.3); color: #fff; padding: 14px 28px; }
.about-v2-ctas .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

/* Right: portrait with floating stats */
.about-v2-portrait {
  position: relative;
}
.about-v2-portrait .portrait-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.about-v2-portrait .portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}

/* Floating stat cards on portrait */
.float-stat {
  position: absolute;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 16px 20px;
  z-index: 3;
  animation: floatPulse 3s ease-in-out infinite alternate;
}
.float-stat strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.float-stat span {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.float-stat.top-right { top: -20px; right: -24px; animation-delay: 0s; }
.float-stat.bottom-left { bottom: 40px; left: -32px; animation-delay: 1.5s; }
.float-stat.bottom-right { bottom: -16px; right: 20px; animation-delay: .75s; }

@keyframes floatPulse {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .about-v2-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-v2-portrait { max-width: 400px; margin: 0 auto; }
  .float-stat.top-right { right: -8px; }
  .float-stat.bottom-left { left: -8px; }
}

/* =========================================================
   FRAMEWORK / BOOK FUNNEL PAGE
   ========================================================= */
.fw-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.fw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(107,43,184,.25), transparent 65%);
}
.fw-hero .container { position: relative; z-index: 1; padding: 140px 24px 80px; }
.fw-hero h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  color: #fff;
  line-height: .95;
  letter-spacing: -.03em;
  max-width: 900px;
  margin: 0 auto 24px;
}
.fw-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #b794e6, #e0d0f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fw-hero .sub {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(255,255,255,.7);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.fw-hero .book-float {
  display: inline-block;
  filter: drop-shadow(0 40px 80px rgba(57,5,102,.5));
  margin-bottom: 40px;
  animation: floatPulse 3s ease-in-out infinite alternate;
}
.fw-hero .book-float img {
  height: clamp(280px, 35vw, 420px);
  width: auto;
}

/* Pain points section */
.fw-pain {
  background: #fff;
  text-align: center;
}
.fw-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.fw-pain-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: left;
  transition: all .3s var(--ease);
}
.fw-pain-card:hover {
  border-color: var(--purple-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.fw-pain-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-50), #fff);
  border: 1px solid rgba(107,43,184,.15);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--purple-700);
}
.fw-pain-card .icon svg { width: 24px; height: 24px; }

/* Reviews */
.fw-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fw-review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s var(--ease);
}
.fw-review:hover {
  border-color: var(--purple-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.fw-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.fw-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--purple-500);
}
.fw-review blockquote {
  font-size: var(--f-base);
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 20px;
  font-style: italic;
}
.fw-review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fw-review-author strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: var(--f-sm);
  color: var(--ink);
}
.fw-review-author span {
  font-size: var(--f-xs);
  color: var(--muted);
}
@media (max-width: 820px) { .fw-reviews { grid-template-columns: 1fr; } }
.fw-pain-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.fw-pain-card p { font-size: var(--f-sm); margin: 0; }
@media (max-width: 820px) { .fw-pain-grid { grid-template-columns: 1fr; } }

/* What's inside the framework */
.fw-inside {
  background: var(--bg-soft);
}
.fw-chapters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  counter-reset: chap;
}
.fw-chapter {
  counter-increment: chap;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  position: relative;
}
.fw-chapter:hover {
  border-color: var(--purple-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.fw-chapter::before {
  content: counter(chap, decimal-leading-zero);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  color: var(--purple-500);
  display: block;
  margin-bottom: 10px;
}
.fw-chapter h3 { font-size: 1.1rem; margin-bottom: 8px; }
.fw-chapter p { font-size: var(--f-sm); margin: 0; }
@media (max-width: 640px) { .fw-chapters { grid-template-columns: 1fr; } }

/* Big email capture */
.fw-capture {
  background: linear-gradient(160deg, var(--purple-900), var(--purple-700));
  color: #fff;
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.fw-capture::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.1), transparent 60%);
}
.fw-capture .container { position: relative; }
.fw-capture h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.fw-capture p { color: rgba(255,255,255,.75); font-size: var(--f-lg); max-width: 560px; margin: 0 auto 36px; }
.fw-capture .lm-input-row {
  max-width: 480px;
  margin: 0 auto;
}
.fw-capture .lm-input-row input {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.fw-capture .lm-input-row input::placeholder { color: rgba(255,255,255,.5); }
.fw-capture .lm-input-row input:focus { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.1); }
.fw-capture .lm-fineprint { color: rgba(255,255,255,.5); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
