/* =====================================================
   YOUR PERSONALITY BLUEPRINT  —  main.css  v1.0
   Palette: warm charcoal base · luminous teal · soft gold
   Tone: Premium editorial. Not dark. Not light. Exact.
   ===================================================== */

/* ── Override NFD Wonder Blocks faded text ──────────── */
:root { --wndb--color--text--faded: #f0f4ff !important; }

/* ── Tokens ─────────────────────────────────────────── */
:root {
  /* Canvas */
  --c-base:        #1a1f2e;   /* rich midnight blue-charcoal   */
  --c-raised:      #212736;   /* cards, raised surfaces        */
  --c-overlay:     #272d3f;   /* hover, selected states        */
  --c-recessed:    #161b28;   /* inputs, inset areas           */

  /* Teal – primary accent */
  --c-teal:        #4ecdc4;
  --c-teal-bright: #6ee7e0;
  --c-teal-dim:    rgba(78,205,196,.12);
  --c-teal-glow:   rgba(78,205,196,.20);

  /* Gold – secondary warmth */
  --c-gold:        #f0c674;
  --c-gold-dim:    rgba(240,198,116,.10);

  /* Ink */
  --c-ink-100:     #f0f4ff;   /* headlines                     */
  --c-ink-70:      #b8c4dc;   /* body text                     */
  --c-ink-40:      #6b7a99;   /* muted / meta                  */
  --c-ink-20:      #3a4258;   /* very faint / disabled         */

  /* Borders – hairlines only */
  --c-line:        rgba(255,255,255,.07);
  --c-line-bright: rgba(78,205,196,.18);

  /* Glass */
  --glass:         rgba(33,39,54,.65);
  --glass-blur:    blur(20px);

  /* Shadows */
  --sh-sm:  0 2px 12px rgba(0,0,0,.25);
  --sh-md:  0 8px 32px rgba(0,0,0,.30);
  --sh-lg:  0 20px 60px rgba(0,0,0,.38);
  --sh-teal:0 0 40px rgba(78,205,196,.14);

  /* Type */
  --f-serif: 'Newsreader', Georgia, serif;
  --f-sans:  'DM Sans', system-ui, sans-serif;

  /* Radii */
  --r-sm:   .5rem;
  --r-md:   .875rem;
  --r-lg:   1.25rem;
  --r-xl:   1.875rem;
  --r-pill: 999px;

  /* Spacing rhythm */
  --gap:    1.5rem;

  /* Motion */
  --t-fast: .18s cubic-bezier(.4,0,.2,1);
  --t-std:  .28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }
body {
  background: var(--c-base);
  color: var(--c-ink-100);
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}
body ::selection { background: var(--c-teal-dim); color: var(--c-teal); }
img  { max-width:100%; height:auto; display:block; }
a    { color:inherit; text-decoration:none; }
ul   { list-style:none; }
button { font-family:inherit; cursor:pointer; }
.material-symbols-outlined {
  font-variation-settings:'FILL' 0,'wght' 300,'GRAD' 0,'opsz' 24;
  vertical-align:middle; line-height:1; display:inline-block;
}

/* ── Layout helpers ─────────────────────────────────── */
.wrap { max-width:1100px; margin:0 auto; padding:0 1.5rem; }
.wrap--narrow { max-width:760px; }
.wrap--wide   { max-width:1280px; }

/* ── Typography ─────────────────────────────────────── */
.eyebrow {
  display:inline-flex; align-items:center; gap:.4rem;
  font-family:var(--f-sans); font-size:.6875rem; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--c-teal); margin-bottom:.875rem;
}
.eyebrow .material-symbols-outlined { font-size:.875rem; }

h1,h2,h3,h4 { font-family:var(--f-serif); font-style:italic; color:var(--c-ink-100); line-height:1.1; letter-spacing:-.015em; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--f-sans); font-weight:500;
  border-radius:var(--r-pill); border:none; cursor:pointer;
  transition:var(--t-std); line-height:1; white-space:nowrap;
  text-decoration:none;
}
.btn .material-symbols-outlined { font-size:1.125rem; transition:transform var(--t-fast); }
.btn:hover .material-symbols-outlined { transform:translateX(3px); }

.btn-primary {
  background: var(--c-teal);
  color: #0a1520;
  font-weight:600;
  padding:.875rem 2rem; font-size:.9375rem;
  box-shadow: var(--sh-sm), 0 0 0 1px rgba(78,205,196,.3);
}
.btn-primary:hover { background:var(--c-teal-bright); transform:translateY(-2px); box-shadow:var(--sh-md),var(--sh-teal); }
.btn-primary:active { transform:translateY(0); }

.btn-outline {
  background:transparent; color:var(--c-ink-70);
  border:1px solid var(--c-line-bright);
  padding:.875rem 2rem; font-size:.9375rem;
}
.btn-outline:hover { color:var(--c-teal); border-color:var(--c-teal); background:var(--c-teal-dim); }

.btn-sm  { padding:.5rem 1.25rem; font-size:.8125rem; }
.btn-lg  { padding:1rem 2.5rem; font-size:1.0625rem; }
.btn-xl  { padding:1.125rem 3rem; font-size:1.125rem; }
.btn-block { width:100%; justify-content:center; }

/* ── Glass card mixin ────────────────────────────────── */
.glass {
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--c-line);
  /* Subtle top-left inner highlight – simulates light catching glass edge */
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), inset 1px 0 0 rgba(255,255,255,.03), var(--sh-md);
}

/* ── Aura blobs ──────────────────────────────────────── */
.aura {
  position:absolute; border-radius:50%; pointer-events:none; z-index:0;
  filter:blur(80px); opacity:.7;
}
.aura--teal   { background:radial-gradient(circle, rgba(78,205,196,.18) 0%, transparent 70%); width:500px; height:500px; }
.aura--gold   { background:radial-gradient(circle, rgba(240,198,116,.12) 0%, transparent 70%); width:400px; height:400px; }
.aura--purple { background:radial-gradient(circle, rgba(160,130,220,.10) 0%, transparent 70%); width:420px; height:420px; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:200;
  height:68px;
  background: rgba(26,31,46,.88);
  backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px);
  border-bottom:1px solid var(--c-line);
  transition:box-shadow var(--t-std);
}
.site-header.scrolled { box-shadow:0 4px 24px rgba(0,0,0,.35); }

.header-inner {
  max-width:1100px; margin:0 auto; padding:0 1.5rem;
  height:68px; display:flex; align-items:center; gap:1.5rem;
}

.site-logo { flex-shrink:0; }
.site-logo a {
  display:flex; align-items:center; gap:.6rem;
  font-family:var(--f-serif); font-style:italic;
  font-size:1.125rem; color:var(--c-ink-100); font-weight:400;
}
.logo-icon {
  width:32px; height:32px; border-radius:50%;
  background:var(--c-teal-dim); border:1px solid var(--c-teal-glow);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.logo-icon .material-symbols-outlined { color:var(--c-teal); font-size:1.125rem; font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 24; }

.site-nav { flex:1; }
.nav-list { display:flex; align-items:center; gap:.25rem; }
.nav-list a {
  display:block; padding:.45rem .875rem;
  font-size:.875rem; font-weight:400; color:var(--c-ink-40);
  border-radius:var(--r-pill); transition:var(--t-fast);
}
.nav-list a:hover,
.nav-list .current-menu-item a { color:var(--c-ink-100); background:rgba(255,255,255,.05); }
.nav-list .current-menu-item a { color:var(--c-teal); }

.header-cta { flex-shrink:0; }

/* Mobile toggle */
.nav-toggle {
  display:none; background:none; border:none; color:var(--c-ink-70);
  padding:.5rem; border-radius:var(--r-sm); transition:var(--t-fast); margin-left:auto;
}
.nav-toggle .material-symbols-outlined { font-size:1.5rem; }
.nav-toggle:hover { color:var(--c-ink-100); background:rgba(255,255,255,.05); }

.mobile-nav {
  display:none; background:var(--c-raised); border-top:1px solid var(--c-line);
  padding:1rem 1.5rem 1.5rem;
}
.mobile-nav.open { display:block; }
.mobile-nav .nav-list { flex-direction:column; align-items:stretch; }
.mobile-nav .nav-list a { padding:.875rem 0; border-radius:0; border-bottom:1px solid var(--c-line); }
.mobile-nav .btn { width:100%; justify-content:center; margin-top:1rem; }

@media(max-width:768px) {
  .site-nav,.header-cta { display:none; }
  .nav-toggle { display:flex; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position:relative; overflow:hidden;
  min-height:100vh; display:flex; align-items:center;
  padding:120px 0 80px;
}
.hero .aura--teal   { top:-60px;  right:-80px; }
.hero .aura--purple { bottom:0;   left:-100px; opacity:.5; }
.hero .aura--gold   { top:30%;    right:15%;   opacity:.35; }

.hero-inner {
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.1fr 1fr; gap:4rem; align-items:center;
}

.hero-content { max-width:580px; }

.hero-title {
  font-size:clamp(2.75rem,5.5vw,5rem);
  font-weight:300; margin-bottom:1.5rem; color:var(--c-ink-100);
}
.hero-title em { color:var(--c-teal); }
.hero-title strong { font-weight:600; font-style:normal; color:var(--c-gold); }

.hero-sub {
  font-size:1.125rem; color:var(--c-ink-70); line-height:1.8;
  margin-bottom:2.5rem; max-width:480px;
}
.hero-sub b { color:var(--c-ink-100); font-weight:500; }

.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:2.5rem; }

.hero-proof {
  display:flex; gap:1.75rem; flex-wrap:wrap;
  font-size:.8125rem; color:var(--c-ink-40); font-weight:500;
}
.hero-proof span { display:flex; align-items:center; gap:.35rem; }
.hero-proof .material-symbols-outlined {
  font-size:.9375rem; color:var(--c-teal);
  font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 24;
}

/* ── Visual orb ── */
.hero-visual { display:flex; justify-content:center; align-items:center; }
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(78,205,196,0.18);
  aspect-ratio: 16 / 9;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}
.orb-wrap { position:relative; width:360px; height:360px; }

.orb-ring {
  position:absolute; inset:0; border-radius:50%;
  border:1px solid rgba(78,205,196,.12);
  animation:spin 22s linear infinite;
}
.orb-ring--2 {
  inset:28px; border-color:rgba(240,198,116,.08);
  animation-direction:reverse; animation-duration:16s;
}
.orb-ring--3 {
  inset:56px; border-color:rgba(78,205,196,.06);
  animation-duration:30s;
}
.orb-core {
  position:absolute; inset:76px; border-radius:50%;
  background:var(--glass); backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
  border:1px solid rgba(78,205,196,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 0 60px rgba(78,205,196,.12), var(--sh-lg);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.5rem;
}
.orb-core .material-symbols-outlined {
  font-size:2.5rem; color:var(--c-teal);
  font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 48;
}
.orb-label { font-size:.5rem; letter-spacing:.25em; text-transform:uppercase; color:var(--c-ink-40); }

.orb-dot {
  position:absolute; width:40px; height:40px; border-radius:50%;
  background:var(--glass); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), var(--sh-sm);
  display:flex; align-items:center; justify-content:center; color:var(--c-teal);
  animation:pulse 3s ease-in-out infinite;
}
.orb-dot .material-symbols-outlined { font-size:1rem; }
.orb-dot:nth-child(4) { top:0;   left:50%; transform:translateX(-50%); animation-delay:0s;   }
.orb-dot:nth-child(5) { top:18%; right:0;  animation-delay:.6s;  }
.orb-dot:nth-child(6) { bottom:18%; right:0; animation-delay:1.2s; }
.orb-dot:nth-child(7) { bottom:0; left:50%; transform:translateX(-50%); animation-delay:1.8s; }
.orb-dot:nth-child(8) { top:18%; left:0;  animation-delay:2.4s; }

@keyframes spin  { to { transform:rotate(360deg); } }
@keyframes pulse { 0%,100%{box-shadow:inset 0 1px 0 rgba(255,255,255,.08),var(--sh-sm)} 50%{box-shadow:inset 0 1px 0 rgba(78,205,196,.2),0 0 20px rgba(78,205,196,.15)} }

@media(max-width:900px) {
  .hero-inner { grid-template-columns:1fr; text-align:center; }
  .hero-content { max-width:100%; }
  .hero-sub { max-width:100%; }
  .hero-actions,.hero-proof { justify-content:center; }
  .hero-visual { display:flex; margin-top:32px; }
  .hero-video-wrap { max-width:100%; }
  .hero { min-height:auto; padding:110px 0 70px; }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background:var(--c-raised);
  border-top:1px solid var(--c-line); border-bottom:1px solid var(--c-line);
  padding:2.25rem 0;
}
.stats-inner {
  display:flex; align-items:center; justify-content:center;
  gap:3rem; flex-wrap:wrap;
}
.stat { text-align:center; }
.stat-num {
  display:block; font-family:var(--f-serif); font-style:italic;
  font-size:2.5rem; font-weight:300; color:var(--c-teal);
  line-height:1; letter-spacing:-.02em;
}
.stat-lbl { font-size:.625rem; letter-spacing:.18em; text-transform:uppercase; color:var(--c-ink-40); font-weight:600; margin-top:.2rem; }
.stat-div { width:1px; height:44px; background:var(--c-line); }
@media(max-width:580px){ .stat-div{display:none} .stats-inner{gap:1.75rem} }

/* =====================================================
   SECTIONS — shared
   ===================================================== */
.section { padding:100px 0; position:relative; overflow:hidden; }
.section--alt { background:var(--c-raised); }
.section--recessed { background:var(--c-recessed); }

.section-head { text-align:center; max-width:620px; margin:0 auto 4rem; }
.section-head h2 { font-size:clamp(1.875rem,3.5vw,3rem); font-weight:300; margin-bottom:1rem; }
.section-head p  { font-size:1.0625rem; color:var(--c-ink-70); line-height:1.75; }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.steps {
  display:flex; align-items:flex-start; gap:1.25rem;
  flex-wrap:wrap; justify-content:center; margin-bottom:3.5rem;
}
.step {
  flex:1; min-width:230px; max-width:300px;
  padding:2.5rem 2rem; text-align:center;
  border-radius:var(--r-xl);
  background:var(--glass); backdrop-filter:var(--glass-blur); -webkit-backdrop-filter:var(--glass-blur);
  border:1px solid var(--c-line);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06),var(--sh-md);
  transition:var(--t-std);
}
.step:hover { transform:translateY(-5px); border-color:var(--c-line-bright); box-shadow:inset 0 1px 0 rgba(78,205,196,.1),var(--sh-lg),var(--sh-teal); }
.step-num { font-family:var(--f-serif); font-style:italic; font-size:3rem; font-weight:300; color:var(--c-teal); opacity:.3; line-height:1; margin-bottom:1.25rem; }
.step-icon {
  width:52px; height:52px; border-radius:50%; margin:0 auto 1.25rem;
  background:var(--c-teal-dim); border:1px solid var(--c-teal-glow);
  display:flex; align-items:center; justify-content:center;
}
.step-icon .material-symbols-outlined { color:var(--c-teal); font-size:1.375rem; }
.step h3 { font-family:var(--f-sans); font-style:normal; font-size:1.0625rem; font-weight:600; color:var(--c-ink-100); margin-bottom:.75rem; }
.step p  { font-size:.875rem; color:var(--c-ink-70); line-height:1.7; }
.step-arrow { display:flex; align-items:center; padding-top:2rem; color:var(--c-ink-20); flex-shrink:0; }

.steps-cta { text-align:center; }

/* =====================================================
   DIMENSIONS
   ===================================================== */
.dims { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.dim-card {
  padding:1.75rem 2rem;
  background:var(--glass); backdrop-filter:var(--glass-blur); -webkit-backdrop-filter:var(--glass-blur);
  border:1px solid var(--c-line); border-radius:var(--r-lg);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
  transition:var(--t-fast);
}
.dim-card:hover { border-color:var(--c-line-bright); }
.dim-card--wide { grid-column:1/-1; }
.dim-track-row { display:flex; align-items:center; gap:1rem; margin-bottom:.75rem; }
.dim-pole { font-size:.6rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; white-space:nowrap; flex-shrink:0; }
.dim-pole--a { color:var(--c-teal); }
.dim-pole--b { color:var(--c-ink-40); }
.dim-track  { flex:1; height:2px; background:var(--c-ink-20); border-radius:2px; position:relative; }
.dim-thumb  {
  position:absolute; top:50%; transform:translate(-50%,-50%);
  width:12px; height:12px; border-radius:50%; background:var(--c-teal);
  box-shadow:0 0 12px rgba(78,205,196,.55), 0 0 0 2px var(--c-base);
}
.dim-card p { font-size:.875rem; color:var(--c-ink-40); line-height:1.6; }
@media(max-width:640px){ .dims{grid-template-columns:1fr} .dim-card--wide{grid-column:auto} }

/* =====================================================
   ARCHETYPE SHOWCASE
   ===================================================== */
.showcase { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:start; }

.archetype-card {
  padding:3rem; text-align:center;
  border-radius:var(--r-xl);
  background:var(--glass); backdrop-filter:var(--glass-blur); -webkit-backdrop-filter:var(--glass-blur);
  border:1px solid var(--c-line);
  position:relative; overflow:hidden;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06), var(--sh-lg);
}
/* Top glow wash */
.archetype-card::before {
  content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:80%; height:1px; background:linear-gradient(90deg,transparent,rgba(78,205,196,.35),transparent);
}
.archetype-icon {
  width:80px; height:80px; border-radius:50%; margin:0 auto 1.5rem;
  background:var(--c-teal-dim); border:1px solid var(--c-teal-glow);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 30px rgba(78,205,196,.14);
}
.archetype-icon .material-symbols-outlined { font-size:2rem; color:var(--c-teal); font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 48; }
.archetype-card h3 { font-size:2.25rem; font-weight:300; margin-bottom:.75rem; }
.archetype-quote { font-family:var(--f-serif); font-style:italic; color:var(--c-ink-70); font-size:1rem; margin-bottom:1.75rem; line-height:1.6; }
.archetype-tags { display:flex; flex-wrap:wrap; gap:.5rem; justify-content:center; }
.tag { background:var(--c-overlay); border:1px solid var(--c-line); color:var(--c-ink-40); font-size:.6rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:.3rem .875rem; border-radius:var(--r-pill); }

.insights { display:flex; flex-direction:column; gap:1rem; }
.insight-card {
  display:flex; gap:1rem; align-items:flex-start; padding:1.5rem;
  background:var(--c-raised); border:1px solid var(--c-line); border-radius:var(--r-lg);
  transition:var(--t-std);
}
.insight-card:hover { border-color:var(--c-line-bright); transform:translateX(4px); }
.insight-icon { flex-shrink:0; margin-top:2px; }
.insight-icon .material-symbols-outlined { color:var(--c-teal); font-size:1.25rem; font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 24; }
.insight-card h4 { font-family:var(--f-sans); font-style:normal; font-size:.8125rem; font-weight:600; color:var(--c-ink-100); margin-bottom:.3rem; }
.insight-card p  { font-size:.875rem; color:var(--c-ink-70); line-height:1.65; }

@media(max-width:900px){ .showcase{grid-template-columns:1fr} }

/* =====================================================
   REPORT FEATURES
   ===================================================== */
.features { display:grid; grid-template-columns:repeat(3,1fr); gap:1.125rem; }
.feature-card {
  padding:1.875rem;
  background:var(--c-raised); border:1px solid var(--c-line); border-radius:var(--r-lg);
  transition:var(--t-std);
}
.feature-card:hover { border-color:var(--c-line-bright); transform:translateY(-4px); box-shadow:var(--sh-md),var(--sh-teal); }
.feature-icon { font-size:1.625rem!important; color:var(--c-teal); font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 24; display:block; margin-bottom:1rem; }
.feature-card h4 { font-family:var(--f-serif); font-size:1.125rem; font-weight:400; margin-bottom:.5rem; }
.feature-card p  { font-size:.875rem; color:var(--c-ink-70); line-height:1.65; }
@media(max-width:900px){ .features{grid-template-columns:1fr 1fr} }
@media(max-width:560px){ .features{grid-template-columns:1fr} }

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  position:relative; overflow:hidden;
  padding:120px 0; text-align:center;
  background:var(--c-raised);
}
.cta-band .aura--teal   { top:-100px; left:50%; transform:translateX(-50%); opacity:.6; }
.cta-band .aura--purple { bottom:-60px; right:-80px; opacity:.4; }
.cta-inner { position:relative; z-index:1; max-width:560px; margin:0 auto; }
.cta-icon { font-size:2.5rem!important; color:var(--c-teal); font-variation-settings:'FILL' 1,'wght' 400,'GRAD' 0,'opsz' 48; display:block; margin-bottom:1.5rem; }
.cta-band h2 { font-size:clamp(2.25rem,4vw,3.5rem); font-weight:300; margin-bottom:1rem; }
.cta-band h2 em { color:var(--c-teal); }
.cta-band p  { font-size:1.0625rem; color:var(--c-ink-70); margin-bottom:2.5rem; }
.cta-footnote { margin-top:1.25rem; font-size:.6875rem; letter-spacing:.15em; text-transform:uppercase; color:var(--c-ink-40); font-weight:600; }

/* =====================================================
   QUIZ & RESULTS PAGES
   ===================================================== */
.page-quiz,.page-results {
  padding-top:68px; min-height:100vh; position:relative;
}
.page-bg { position:fixed; inset:0; pointer-events:none; z-index:0; }
.page-bg .aura--teal   { top:5%; right:-60px; }
.page-bg .aura--purple { bottom:5%; left:-60px; opacity:.5; }

.quiz-wrap,.results-wrap {
  position:relative; z-index:1;
  max-width:820px; margin:0 auto; padding:2.5rem 1.5rem 5rem;
}

/* ── Force plugin UI into our theme ── */

/* Re-scope the plugin's own CSS variables */
.ypb #ypb-quiz-app,
.ypb .ypb-result-page,
.ypb .ypb-guide-page {
  --ypb-surface:     #212736 !important;
  --ypb-border:      rgba(78,205,196,0.14) !important;
  --ypb-border-soft: rgba(78,205,196,0.07) !important;
  --ypb-accent:      #4ecdc4 !important;
  --ypb-accent-soft: rgba(78,205,196,0.12) !important;
  --ypb-text:        #f0f4ff !important;
  --ypb-text-soft:   #b8c4dc !important;
  --ypb-shadow:      0 16px 48px rgba(0,0,0,.40) !important;
  color: #f0f4ff !important;
}

.ypb #ypb-quiz-app { padding:0 !important; }

.ypb .ypb-quiz-card,
.ypb .ypb-result-page section,
.ypb .ypb-guide-page section {
  background: rgba(33,39,54,.70) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(78,205,196,.12) !important;
  border-radius: 1.25rem !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 20px 60px rgba(0,0,0,.4) !important;
  color: #f0f4ff !important;
}

.ypb .ypb-quiz-header { border-bottom:1px solid rgba(255,255,255,.06) !important; background:transparent !important; }
.ypb .ypb-quiz-header h2 { color:#f0f4ff !important; font-family:'Newsreader',serif !important; font-style:italic !important; font-weight:300 !important; font-size:clamp(1.5rem,3vw,2.1rem) !important; }
.ypb .ypb-kicker,.ypb .ypb-hero-eyebrow { color:#4ecdc4 !important; letter-spacing:.16em !important; }

.ypb .ypb-progress-bar { background:#161b28 !important; height:3px !important; border-radius:3px !important; }
.ypb .ypb-progress-bar span { background:linear-gradient(90deg,#4ecdc4,#a78bfa) !important; box-shadow:0 0 8px rgba(78,205,196,.4) !important; }
.ypb .ypb-progress-label { color:#6b7a99 !important; }

.ypb .ypb-question-prompt { color:#f0f4ff !important; font-family:'Newsreader',serif !important; font-style:italic !important; font-weight:400 !important; }
.ypb .ypb-question-meta   { color:#6b7a99 !important; }

.ypb .ypb-answer-card {
  background: rgba(22,27,40,.75) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: .875rem !important;
  color: #f0f4ff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
  transition: all .2s ease !important;
}
.ypb .ypb-answer-card:hover { background:rgba(38,48,69,.75) !important; border-color:rgba(78,205,196,.25) !important; }
.ypb .ypb-answer-card.is-selected { border-color:#4ecdc4 !important; background:rgba(78,205,196,.09) !important; }
.ypb .ypb-answer-badge { background:rgba(78,205,196,.12) !important; color:#4ecdc4 !important; }
.ypb .ypb-answer-text  { color:#f0f4ff !important; }

.ypb .ypb-actions .button { border-radius:999px !important; font-family:'DM Sans',sans-serif !important; font-weight:600 !important; border:none !important; }
.ypb .ypb-actions .button-primary { background:#4ecdc4 !important; color:#0a1520 !important; box-shadow:0 0 20px rgba(78,205,196,.22) !important; }
.ypb .ypb-actions .button-primary:hover { background:#6ee7e0 !important; transform:translateY(-1px) !important; }
.ypb .ypb-actions .button-secondary,.ypb .ypb-actions .button-default { background:rgba(33,39,54,.8) !important; color:#b8c4dc !important; border:1px solid rgba(255,255,255,.08) !important; }

.ypb .ypb-hero h1 { color:#f0f4ff !important; font-family:'Newsreader',serif !important; font-style:italic !important; }
.ypb .ypb-section h2,.ypb .ypb-section h3 { color:#f0f4ff !important; }
.ypb .ypb-section p,.ypb .ypb-hero-summary,.ypb .ypb-section-intro,.ypb .ypb-tagline { color:#b8c4dc !important; }
.ypb .ypb-section .ypb-conversion-cta p { color:#1a1f2e !important; }
.ypb .ypb-section .ypb-conversion-cta-copy p { color:#1a1f2e !important; }

.ypb .ypb-trait-card,.ypb .ypb-secondary-card,.ypb .ypb-compat-card { background:rgba(22,27,40,.8) !important; border-color:rgba(78,205,196,.09) !important; }
.ypb .ypb-trait-card h3,.ypb .ypb-secondary-card h3,.ypb .ypb-compat-card h4 { color:#f0f4ff !important; }
.ypb .ypb-trait-card p,.ypb .ypb-secondary-card p,.ypb .ypb-compat-card p,.ypb .ypb-meter-row { color:#b8c4dc !important; }

.ypb .ypb-pill,.ypb .ypb-confidence-badge { background:rgba(78,205,196,.12) !important; color:#4ecdc4 !important; }
.ypb .ypb-blueprint-code { color:#4ecdc4 !important; }
.ypb .ypb-blueprint-label { color:#f0f4ff !important; }
.ypb .ypb-list li:before { background:#4ecdc4 !important; }

.ypb .ypb-highlight { background:rgba(78,205,196,.05) !important; border-color:rgba(78,205,196,.18) !important; }
.ypb .ypb-paywall   { background:rgba(160,130,220,.06) !important; border-color:rgba(160,130,220,.20) !important; }
.ypb .ypb-paywall-card { background:rgba(22,27,40,.8) !important; border-color:rgba(255,255,255,.07) !important; }
.ypb .ypb-paywall-card h3 { color:#f0f4ff !important; }

.ypb .ypb-upgrade-note { background:rgba(160,130,220,.07) !important; border:1px solid rgba(160,130,220,.18) !important; color:#b8c4dc !important; border-radius:1rem !important; }
.ypb .ypb-upgrade-note strong { color:#c4abff !important; }
.ypb .ypb-upgrade-note .button-primary { background:#4ecdc4 !important; color:#0a1520 !important; border-radius:999px !important; }

.ypb .ypb-premium-report { background:rgba(78,205,196,.04) !important; border-color:rgba(78,205,196,.14) !important; }
.ypb .ypb-premium-card { background:rgba(22,27,40,.8) !important; border-color:rgba(255,255,255,.07) !important; box-shadow:none !important; }
.ypb .ypb-premium-card h3 { color:#f0f4ff !important; }
.ypb .ypb-premium-card p { color:#b8c4dc !important; }
.ypb .ypb-premium-card-emphasis { background:rgba(78,205,196,.07) !important; }

.ypb .ypb-share-input { background:rgba(13,18,30,.9) !important; border:1px solid rgba(78,205,196,.18) !important; color:#f0f4ff !important; border-radius:.75rem !important; }

.ypb .ypb-guide-hero { background:rgba(22,27,40,.7) !important; }
.ypb .ypb-guide-hero h1 { color:#f0f4ff !important; }
.ypb .ypb-guide-lead { color:#b8c4dc !important; }
.ypb .ypb-guide-dimension-card,.ypb .ypb-guide-card { background:rgba(22,27,40,.8) !important; border-color:rgba(255,255,255,.07) !important; }
.ypb .ypb-guide-pair   { background:rgba(78,205,196,.12) !important; color:#4ecdc4 !important; }
.ypb .ypb-guide-visual { background:rgba(78,205,196,.05) !important; }
.ypb .ypb-guide-visual-o,.ypb .ypb-guide-visual-r { background:rgba(78,205,196,.04) !important; }
.ypb .ypb-guide-symbol { background:rgba(33,39,54,.9) !important; color:#4ecdc4 !important; border-color:rgba(78,205,196,.16) !important; box-shadow:none !important; }
.ypb .ypb-guide-tagline { color:#f0f4ff !important; }
.ypb .ypb-guide-summary { color:#b8c4dc !important; }
.ypb .ypb-guide-chip { background:rgba(78,205,196,.10) !important; color:#4ecdc4 !important; }
.ypb .ypb-guide-code { background:#4ecdc4 !important; color:#0a1520 !important; }

.ypb .ypb-license-box { background:rgba(33,39,54,.8) !important; border-color:rgba(78,205,196,.14) !important; }
.ypb .ypb-license-box-copy h3 { color:#f0f4ff !important; }
.ypb .ypb-license-box-copy p  { color:#b8c4dc !important; }
.ypb .ypb-license-input { background:rgba(13,18,30,.9) !important; border-color:rgba(78,205,196,.22) !important; color:#f0f4ff !important; border-radius:.75rem !important; }
.ypb .ypb-license-badge { background:rgba(33,39,54,.9) !important; color:#b8c4dc !important; }
.ypb .ypb-license-badge.is-active { background:rgba(78,205,196,.12) !important; color:#4ecdc4 !important; }

.ypb .ypb-result-empty,.ypb .ypb-inline-upgrade-wall { background:rgba(33,39,54,.8) !important; border-color:rgba(78,205,196,.12) !important; color:#b8c4dc !important; border-radius:1.125rem !important; }
.ypb .ypb-inline-upgrade-copy h4 { color:#f0f4ff !important; }

/* =====================================================
   STANDARD PAGE
   ===================================================== */
.page-standard { padding:110px 0 80px; }
.page-standard article { max-width:740px; margin:0 auto; }
.page-standard h1 { font-size:clamp(2rem,4vw,3rem); font-weight:300; margin-bottom:2rem; padding-bottom:1.5rem; border-bottom:1px solid var(--c-line); }
.page-standard .entry-content { font-size:1.0625rem; line-height:1.85; color:var(--c-ink-100); }
.page-standard .entry-content h2,.page-standard .entry-content h3 { color:var(--c-ink-100); margin:2rem 0 1rem; }
.page-standard .entry-content p { margin-bottom:1.25rem; }
.page-standard .entry-content a { color:var(--c-teal); text-decoration:underline; text-underline-offset:3px; }
.page-standard .entry-content ul,.page-standard .entry-content ol { margin:1rem 0 1.25rem 1.5rem; list-style:initial; }
.page-standard .entry-content ol { list-style:decimal; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background:var(--c-recessed); border-top:1px solid var(--c-line); }
.footer-top { padding:4rem 0 3rem; }
.footer-grid { display:grid; grid-template-columns:1fr 2fr; gap:4rem; }
.footer-brand .site-logo a { font-size:1rem; }
.footer-tagline { font-size:.875rem; color:var(--c-ink-40); line-height:1.7; margin-top:.75rem; max-width:220px; }
.footer-cols { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.footer-col h4 { font-family:var(--f-sans); font-style:normal; font-size:.625rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--c-ink-40); margin-bottom:1.125rem; }
.footer-links { display:flex; flex-direction:column; gap:.5rem; }
.footer-links a { font-size:.875rem; color:var(--c-ink-40); transition:color var(--t-fast); }
.footer-links a:hover { color:var(--c-teal); }
.footer-col p { font-size:.875rem; color:var(--c-ink-40); line-height:1.7; }

.footer-bottom {
  border-top:1px solid var(--c-line); padding:1.25rem 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.75rem;
}
.footer-bottom .wrap { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.75rem; width:100%; }
.footer-copy,.footer-legal { font-size:.75rem; color:var(--c-ink-40); }
.footer-legal { display:flex; gap:.75rem; align-items:center; }
.footer-legal a:hover { color:var(--c-teal); }
.footer-legal span { opacity:.3; }

@media(max-width:900px){ .footer-grid{grid-template-columns:1fr;gap:2.5rem} .footer-cols{grid-template-columns:1fr 1fr} }
@media(max-width:560px){ .footer-cols{grid-template-columns:1fr} .footer-bottom .wrap{justify-content:center;text-align:center} }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal { opacity:0; transform:translateY(20px); transition:opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal:nth-child(2){ transition-delay:.08s }
.reveal:nth-child(3){ transition-delay:.16s }
.reveal:nth-child(4){ transition-delay:.12s }
.reveal:nth-child(5){ transition-delay:.18s }
.reveal:nth-child(6){ transition-delay:.22s }

/* ── Scrollbar ── */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--c-recessed); }
::-webkit-scrollbar-thumb { background:var(--c-overlay); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:var(--c-teal); }


/* =====================================================
   LEGACY PLACEHOLDER REPLACEMENT PANEL
   ===================================================== */
.ypb .ypb-upgrade-panel {
  margin-top: 1rem;
  background: linear-gradient(145deg, rgba(18,24,38,.96), rgba(28,36,54,.96)) !important;
  border: 1px solid rgba(78,205,196,.16) !important;
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  overflow: hidden;
}
.ypb .ypb-upgrade-panel__inner {
  display:grid;
  grid-template-columns: 1.6fr auto;
  gap: 1.25rem;
  align-items:center;
  padding: 1.35rem 1.4rem;
}
.ypb .ypb-upgrade-panel__eyebrow {
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#4ecdc4 !important;
  margin-bottom:.5rem;
}
.ypb .ypb-upgrade-panel h3 {
  margin:0 0 .45rem;
  color:#f0f4ff !important;
  font-size:1.35rem;
  line-height:1.15;
}
.ypb .ypb-upgrade-panel p {
  margin:0;
  color:#dbe6f8 !important;
  line-height:1.65;
  font-size:1rem;
}
.ypb .ypb-upgrade-panel__chips {
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin-top:.9rem;
}
.ypb .ypb-upgrade-chip {
  display:inline-flex;
  align-items:center;
  padding:.45rem .7rem;
  border-radius:999px;
  background:rgba(78,205,196,.10);
  border:1px solid rgba(78,205,196,.18);
  color:#e9f7f7 !important;
  font-size:.84rem;
  line-height:1.2;
  white-space:normal;
}
.ypb .ypb-upgrade-panel__actions {
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.ypb .ypb-upgrade-panel__button,
.ypb .ypb-upgrade-panel__button.button,
.ypb .ypb-upgrade-panel__button.button-primary {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  padding:.95rem 1.2rem;
  border-radius:.95rem !important;
  background:#4ecdc4 !important;
  border-color:#4ecdc4 !important;
  color:#08131d !important;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 14px 30px rgba(78,205,196,.18);
}
.ypb .ypb-upgrade-panel__button:hover {
  transform:translateY(-1px);
  filter:brightness(1.03);
}
@media (max-width: 820px) {
  .ypb .ypb-upgrade-panel__inner { grid-template-columns: 1fr; }
  .ypb .ypb-upgrade-panel__actions { justify-content:flex-start; }
}

/* ── Override ypb-public dark text colours on dark background ── */
.ypb .ypb-upgrade-body,
.ypb .ypb-upgrade-title,
.ypb .ypb-upgrade-meta,
.ypb .ypb-upgrade-note-copy,
.ypb .ypb-premium-benefits-list,
.ypb .ypb-premium-benefits-list li { color:#f0f4ff !important; font-weight:400 !important; }
.ypb .ypb-premium-benefits-title { color:#f0f4ff !important; font-weight:600 !important; }
.ypb .ypb-inline-upgrade-copy p { color:#f0f4ff !important; }

/* ── Premium Gumroad Button ─────────────────────────── */
.btn-premium {
  background: linear-gradient(135deg, rgba(240,198,116,.15), rgba(240,198,116,.08));
  color: var(--c-gold) !important;
  border: 1px solid rgba(240,198,116,.45);
  box-shadow: 0 0 24px rgba(240,198,116,.10), inset 0 1px 0 rgba(240,198,116,.12);
  letter-spacing: .02em;
}
.btn-premium:hover {
  background: linear-gradient(135deg, rgba(240,198,116,.25), rgba(240,198,116,.14));
  border-color: rgba(240,198,116,.75);
  box-shadow: 0 0 36px rgba(240,198,116,.22), inset 0 1px 0 rgba(240,198,116,.2);
  transform: translateY(-2px);
  color: var(--c-gold) !important;
}
.btn-premium .material-symbols-outlined { font-size:1.1rem; vertical-align:middle; }
.hero-actions--premium { margin-top: -.75rem; }

/* ── Gumroad link colour in upgrade wall ────────────── */
.ypb .ypb-inline-upgrade-copy a { color: var(--c-gold) !important; text-decoration: underline; text-underline-offset: 3px; }
.ypb .ypb-inline-upgrade-copy a:hover { color: #f7d98a !important; }

/* ── Override ypb-conversion section — all light background, needs dark text ── */
.ypb-conversion-card p { color: #1a1f2e !important; }
.ypb-conversion-card h3 { color: #1a1f2e !important; }
.ypb .ypb-section .ypb-conversion-card p { color: #1a1f2e !important; }
.ypb .ypb-section .ypb-conversion-card h3 { color: #1a1f2e !important; }
div.ypb-conversion-card p { color: #1a1f2e !important; }
div.ypb-conversion-card h3 { color: #1a1f2e !important; }
.ypb-conversion-cta p { color: #1a1f2e !important; }
.ypb-conversion-cta-copy > p { color: #1a1f2e !important; }
div.ypb-conversion-cta p { color: #1a1f2e !important; }
.ypb-conversion-cta h3 { color: #1a1f2e !important; }
.ypb-conversion-cta li { color: #1a1f2e !important; }
.ypb-conversion-cta-copy p { color: #1a1f2e !important; }
.ypb-conversion-cta-copy h3 { color: #1a1f2e !important; }
.ypb-conversion-cta-copy li { color: #1a1f2e !important; }
.ypb-surface-transition p { color: #1a1f2e !important; }
.ypb-surface-transition h2 { color: #1a1f2e !important; }

/* ── Conversion cards as links ───────────────────────── */
a.ypb-conversion-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
a.ypb-conversion-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.18), 0 0 0 2px rgba(78,205,196,.35);
  border-color: rgba(78,205,196,.45);
}
.ypb-conversion-card-cta {
  display: block;
  margin-top: 1rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4ecdc4;
}

/* ── Premium upgrade panel ───────────────────────────── */
.ypb-premium-upgrade-panel {
  margin-top: 3rem;
  background: linear-gradient(135deg, #1a1f2e 0%, #212736 50%, #1a2535 100%);
  border: 1px solid rgba(78,205,196,.25);
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.4), 0 0 60px rgba(78,205,196,.08);
}
.ypb-premium-upgrade-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4ecdc4, #a78bfa, #f0c674, #4ecdc4);
  background-size: 200% 100%;
}
.ypb-premium-upgrade-inner {
  padding: 3.5rem;
  position: relative;
  z-index: 1;
}
.ypb-premium-upgrade-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.ypb-premium-star { font-size: 1.125rem; }
.ypb-premium-upgrade-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: #f0f4ff !important;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.ypb-premium-upgrade-sub {
  font-size: 1.125rem;
  color: #b8c4dc !important;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.ypb-premium-upgrade-sub em { color: #f0f4ff; font-style: italic; }
.ypb-premium-upgrade-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media(max-width: 640px) {
  .ypb-premium-upgrade-features { grid-template-columns: 1fr; }
  .ypb-premium-upgrade-inner { padding: 2rem 1.5rem; }
}
.ypb-premium-upgrade-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1rem;
  padding: 1.25rem;
}
.ypb-premium-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .1rem;
}
.ypb-premium-upgrade-feature strong {
  display: block;
  color: #f0f4ff !important;
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: .35rem;
}
.ypb-premium-upgrade-feature p {
  color: #8a9ab8 !important;
  font-size: .875rem;
  line-height: 1.6;
  margin: 0 !important;
}
.ypb-premium-upgrade-cta {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.ypb-premium-upgrade-btn {
  display: inline-block;
  padding: 1.1rem 3rem;
  background: linear-gradient(135deg, #4ecdc4, #3bb8b0);
  color: #0a1520 !important;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 0 40px rgba(78,205,196,.35), 0 8px 32px rgba(0,0,0,.3);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  margin-bottom: 1rem;
}
.ypb-premium-upgrade-btn:hover {
  background: linear-gradient(135deg, #6ee7e0, #4ecdc4);
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(78,205,196,.5), 0 16px 48px rgba(0,0,0,.35);
  color: #0a1520 !important;
}
.ypb-premium-upgrade-meta {
  color: #6b7a99 !important;
  font-size: .8125rem;
  margin: 0 !important;
  letter-spacing: .02em;
}


/* ── Contact Page ───────────────────────────────────── */
.ypb-contact-page {
  position: relative;
  overflow: hidden;
  background: var(--c-base);
}

.ypb-contact-shell {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 4vw, 4.5rem) 0 6rem;
}

/* ── Hero ─────────────────────────────────────────── */
.ypb-contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--c-recess) 0%, var(--c-raised) 52%, rgba(23,32,51,.98) 100%);
  border: 1px solid var(--c-line);
  border-radius: 32px;
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 32px 90px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.05);
}

.ypb-contact-hero-aura {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(60px);
  opacity: .55;
}
.ypb-contact-hero-aura--teal {
  width: 26rem; height: 26rem;
  top: -8rem; right: -5rem;
  background: radial-gradient(circle, rgba(120,231,223,.28), rgba(120,231,223,0));
  animation: ypbContactPulse 10s ease-in-out infinite;
}
.ypb-contact-hero-aura--violet {
  width: 18rem; height: 18rem;
  bottom: -6rem; left: -3rem;
  background: radial-gradient(circle, rgba(167,139,250,.22), rgba(167,139,250,0));
}

.ypb-contact-hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(280px,.9fr);
  gap: 2rem;
  align-items: center;
}

/* Kicker pill */
.ypb-contact-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1rem .5rem .75rem;
  border-radius: 9999px;
  background: rgba(120,231,223,.08);
  border: 1px solid rgba(120,231,223,.25);
  backdrop-filter: blur(10px);
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-teal) !important;
  font-family: var(--ff-b);
}
.ypb-contact-kicker .material-symbols-outlined {
  font-size: 1rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.ypb-contact-kicker-dot {
  width: .55rem; height: .55rem;
  border-radius: 9999px;
  background: var(--c-teal);
  box-shadow: 0 0 0 7px rgba(120,231,223,.15);
}

.ypb-contact-title {
  font-size: clamp(2.4rem, 5.5vw, 4.75rem);
  line-height: .96; letter-spacing: -.03em;
  margin: 1.25rem 0 1.15rem;
  color: var(--c-100) !important;
  font-weight: 300 !important;
}
.ypb-contact-title em { font-style: italic; color: var(--c-teal) !important; }

.ypb-contact-lead {
  max-width: 46rem;
  font-size: 1.05rem; line-height: 1.85;
  color: var(--c-70) !important;
}

.ypb-contact-hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-top: 1.75rem;
}

/* Buttons */
.ypb-contact-btn,
.ypb-contact-btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .9rem 1.4rem;
  border-radius: 9999px;
  font-weight: 700; font-size: .9375rem;
  letter-spacing: -.01em;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  text-decoration: none !important;
}
.ypb-contact-btn {
  background: var(--c-teal);
  color: var(--c-recess) !important;
  box-shadow: 0 0 28px rgba(120,231,223,.3), 0 8px 24px rgba(0,0,0,.3);
}
.ypb-contact-btn-outline {
  background: rgba(120,231,223,.08);
  color: var(--c-100) !important;
  border: 1px solid rgba(120,231,223,.25);
}
.ypb-contact-btn:hover,
.ypb-contact-btn-outline:hover { transform: translateY(-2px); opacity: .92; }
.ypb-contact-btn .material-symbols-outlined,
.ypb-contact-btn-outline .material-symbols-outlined { font-size: 1.1rem; }

/* Spotlight card */
.ypb-contact-spotlight {
  position: relative;
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(120,231,223,.08), rgba(120,231,223,.03));
  border: 1px solid rgba(120,231,223,.18);
  backdrop-filter: blur(18px);
}
.ypb-contact-spotlight::before {
  content: "";
  position: absolute; inset: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.05);
  pointer-events: none;
}

.ypb-contact-email-card {
  background: rgba(11,18,32,.6);
  border: 1px solid rgba(120,231,223,.2);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.ypb-contact-email-label {
  display: block;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-teal) !important;
  margin-bottom: .65rem;
  font-family: var(--ff-b);
}
.ypb-contact-email-link {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: 1.05rem; font-weight: 700;
  color: var(--c-100) !important;
  word-break: break-word;
  text-decoration: none !important;
}
.ypb-contact-email-link .material-symbols-outlined {
  font-size: 1.2rem; color: var(--c-teal) !important;
  flex-shrink: 0;
}
.ypb-contact-email-note {
  margin-top: .9rem;
  color: var(--c-70) !important;
  font-size: .9rem; line-height: 1.7;
}

.ypb-contact-proof-list { display: grid; gap: .8rem; margin-top: 1rem; }
.ypb-contact-proof-item {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .9rem 1rem;
  border-radius: 18px;
  background: rgba(120,231,223,.05);
  border: 1px solid rgba(120,231,223,.12);
  color: var(--c-85) !important;
  font-size: .9rem; line-height: 1.65;
}
.ypb-contact-proof-item .material-symbols-outlined {
  font-size: 1.1rem; flex-shrink: 0;
  margin-top: .15rem;
  color: var(--c-teal) !important;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.ypb-contact-proof-item strong { color: var(--c-100) !important; }

/* ── Main grid ────────────────────────────────────── */
.ypb-contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(280px,.95fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.ypb-contact-panel {
  background: var(--c-raised);
  border: 1px solid var(--c-line);
  border-radius: 28px;
  padding: clamp(1.4rem, 2.4vw, 2.2rem);
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.ypb-contact-panel-glass {
  background: linear-gradient(160deg, rgba(120,231,223,.07) 0%, rgba(167,139,250,.06) 100%);
  border-color: rgba(120,231,223,.18);
}

.ypb-contact-section-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-50) !important;
  font-family: var(--ff-b);
}
.ypb-contact-section-kicker .material-symbols-outlined { font-size: 1rem; }
.ypb-contact-section-kicker--teal { color: var(--c-teal) !important; }

.ypb-contact-panel-title {
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  line-height: 1.07; letter-spacing: -.02em;
  margin: .9rem 0 1rem;
  color: var(--c-100) !important;
  font-weight: 300 !important;
}

.ypb-contact-panel-copy {
  font-size: .9875rem; line-height: 1.85;
  color: var(--c-70) !important;
}

/* Tiles */
.ypb-contact-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}
.ypb-contact-tile {
  padding: 1.15rem;
  border-radius: 22px;
  background: var(--c-overlay);
  border: 1px solid var(--c-line);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.ypb-contact-tile-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(120,231,223,.18), rgba(167,139,250,.15));
  color: var(--c-teal) !important;
  margin-bottom: .9rem;
}
.ypb-contact-tile-icon .material-symbols-outlined {
  font-size: 1.2rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.ypb-contact-tile h3 { font-size: 1rem; margin-bottom: .4rem; color: var(--c-100) !important; font-weight: 600 !important; }
.ypb-contact-tile p  { font-size: .9rem; line-height: 1.7; color: var(--c-70) !important; }

/* Stat band */
.ypb-contact-stat-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.ypb-contact-stat {
  padding: 1.1rem 1rem;
  border-radius: 22px;
  background: rgba(120,231,223,.06);
  border: 1px solid rgba(120,231,223,.14);
  text-align: center;
}
.ypb-contact-stat strong {
  display: block;
  font-size: 2rem; line-height: 1;
  color: var(--c-teal) !important;
  font-weight: 300 !important;
  font-style: italic;
}
.ypb-contact-stat span {
  display: block; margin-top: .4rem;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-50) !important; font-family: var(--ff-b);
}

/* ── Showcase ─────────────────────────────────────── */
.ypb-contact-showcase { margin-top: 1.5rem; }
.ypb-contact-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.ypb-contact-showcase-card {
  position: relative; overflow: hidden;
  padding: 1.35rem;
  border-radius: 26px;
  background: var(--c-overlay);
  border: 1px solid var(--c-line);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
.ypb-contact-showcase-card::before {
  content: ""; position: absolute;
  inset: 0 auto auto 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--c-teal), var(--c-violet));
}
.ypb-contact-showcase-card h3 { font-size: 1.1rem; margin-bottom: .5rem; color: var(--c-100) !important; font-weight: 600 !important; }
.ypb-contact-showcase-card p  { font-size: .93rem; line-height: 1.78; color: var(--c-70) !important; }

.ypb-contact-link-inline {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1rem;
  font-weight: 700; font-size: .9rem;
  color: var(--c-teal) !important;
  text-decoration: none !important;
  transition: opacity .2s;
}
.ypb-contact-link-inline:hover { opacity: .75; }
.ypb-contact-link-inline .material-symbols-outlined { font-size: 1rem; }

/* ── FAQ ──────────────────────────────────────────── */
.ypb-contact-faq { margin-top: 1.5rem; }
.ypb-contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.ypb-contact-faq-item {
  padding: 1.2rem;
  border-radius: 24px;
  background: var(--c-raised);
  border: 1px solid var(--c-line);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.ypb-contact-faq-item h3 { font-size: 1rem; color: var(--c-100) !important; margin-bottom: .45rem; font-weight: 600 !important; }
.ypb-contact-faq-item p  { font-size: .92rem; line-height: 1.72; color: var(--c-70) !important; }

/* ── CTA Banner ───────────────────────────────────── */
.ypb-contact-cta-banner {
  position: relative; overflow: hidden;
  margin-top: 1.5rem;
  padding: clamp(1.6rem, 2.8vw, 2.4rem);
  border-radius: 30px;
  background: linear-gradient(140deg, rgba(120,231,223,.1) 0%, rgba(167,139,250,.08) 100%);
  border: 1px solid rgba(120,231,223,.2);
  box-shadow: 0 0 60px rgba(120,231,223,.07);
}
.ypb-contact-cta-aura {
  position: absolute; right: -3rem; bottom: -3rem;
  width: 12rem; height: 12rem; border-radius: 9999px;
  background: radial-gradient(circle, rgba(120,231,223,.15), rgba(120,231,223,0));
  pointer-events: none;
}
.ypb-contact-cta-row {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.ypb-contact-cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.05; font-weight: 300 !important;
  color: var(--c-100) !important;
  margin-bottom: .5rem;
}
.ypb-contact-cta-banner p {
  max-width: 44rem;
  color: var(--c-70) !important;
  line-height: 1.8;
}
.ypb-contact-cta-banner strong { color: var(--c-teal) !important; }

/* ── Animations ───────────────────────────────────── */
@keyframes ypbContactPulse {
  0%,100% { transform: scale(1); opacity: .55; }
  50%      { transform: scale(1.08); opacity: .8; }
}

@media (prefers-reduced-motion: reduce) {
  .ypb-contact-hero-aura { animation: none; }
  .ypb-contact-btn, .ypb-contact-btn-outline { transition: none; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1100px) {
  .ypb-contact-hero-grid,
  .ypb-contact-main-grid,
  .ypb-contact-showcase-grid,
  .ypb-contact-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .ypb-contact-tiles,
  .ypb-contact-stat-band { grid-template-columns: 1fr; }
  .ypb-contact-hero  { border-radius: 24px; }
  .ypb-contact-panel,
  .ypb-contact-showcase-card,
  .ypb-contact-faq-item,
  .ypb-contact-cta-banner { border-radius: 22px; }
}
