/* ============================================
   YOU2 — Design System
   Bright, bold, optimistic lifestyle
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Palette — warm, energetic, optimistic */
  --sun:        #FFB627;   /* signature amber */
  --sun-deep:   #F08A00;
  --coral:      #FF5E5B;
  --peach:      #FFDAC1;
  --cream:      #FFF7EC;
  --ink:        #1A1A2E;
  --ink-soft:   #3A3A52;
  --sky:        #4ECDC4;
  --plum:       #6B2D5C;
  --leaf:       #7FB069;
  --lilac:      #C9B1FF;

  /* Domain colors */
  --domain-mind:   #FF5E5B;  /* coral red */
  --domain-body:   #7FB069;  /* leaf green */
  --domain-craft:  #FFB627;  /* sun amber */
  --domain-world:  #4ECDC4;  /* sky teal */

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Shadows — chunky, playful */
  --shadow-card: 0 1px 0 rgba(0,0,0,0.04), 0 8px 24px rgba(26,26,46,0.08);
  --shadow-hover: 0 1px 0 rgba(0,0,0,0.04), 0 16px 40px rgba(26,26,46,0.14);
  --shadow-chunk: 6px 6px 0 var(--ink);
  --shadow-chunk-sun: 6px 6px 0 var(--sun);

  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Grain overlay ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.display-xl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 96;
}

.display-md {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.italic-accent { font-style: italic; font-family: var(--font-display); }

.lead {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  color: var(--ink-soft);
  line-height: 1.55;
}

/* The signature "²" superscript treatment */
.sup2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 0.7em;
  vertical-align: 0.55em;
  color: var(--coral);
}

/* ============================================
   LAYOUT
   ============================================ */

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-5); }

.section { padding: var(--s-10) 0; position: relative; }
.section-sm { padding: var(--s-8) 0; }

@media (max-width: 768px) {
  .section { padding: var(--s-8) 0; }
  .container { padding: 0 var(--s-4); }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,26,46,0.08);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--s-4) var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.nav-brand .sup2 { font-size: 1.1rem; }

.nav-links {
  display: flex;
  gap: var(--s-6);
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--coral); }

.nav-links a.active {
  color: var(--ink);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--sun);
  border-radius: 2px;
}

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--coral); transform: translateY(-2px); }

.mobile-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 8px;
}

.mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  position: relative;
}
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  width: 22px; height: 2px; left: 0;
  background: var(--ink);
}
.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after  { top: 7px; }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; gap: 0; padding: var(--s-4); border-bottom: 1px solid rgba(26,26,46,0.08); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 8px; font-size: 1.05rem; }
  .mobile-toggle { display: flex; }
  .nav-cta { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(.2,.8,.3,1);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--coral);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,94,91,0.35);
}

.btn-sun {
  background: var(--sun);
  color: var(--ink);
}
.btn-sun:hover {
  background: var(--sun-deep);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(240,138,0,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  padding: var(--s-9) 0 var(--s-10);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 20s ease-in-out infinite;
}

.hero-blob.b1 { width: 460px; height: 460px; background: var(--sun); top: -100px; right: -80px; }
.hero-blob.b2 { width: 380px; height: 380px; background: var(--coral); bottom: -120px; left: -60px; animation-delay: -6s; }
.hero-blob.b3 { width: 300px; height: 300px; background: var(--sky); top: 40%; left: 30%; opacity: 0.3; animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-8);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-7); }
}

.hero-title { margin-bottom: var(--s-5); }

.hero-title .line { display: block; }

.hero-title .accent {
  background: linear-gradient(100deg, var(--coral), var(--sun-deep) 60%, var(--sun));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: var(--s-6);
  line-height: 1.55;
}

.hero-cta-row { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-6); }

.hero-stats {
  display: flex;
  gap: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px dashed rgba(26,26,46,0.2);
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Hero book stack visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1.1;
  max-width: 520px;
  margin-left: auto;
}

.book-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.book-stack .book {
  position: absolute;
  width: 50%;
  aspect-ratio: 2/3;
  border-radius: 4px 10px 10px 4px;
  box-shadow: var(--shadow-hover);
  transition: transform 0.4s cubic-bezier(.2,.8,.3,1);
  overflow: hidden;
  display: block;
  background: var(--cream);
}

.book-stack .book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-stack .book:hover { transform: translateY(-8px) rotate(var(--r, 0deg)) scale(1.03); }

.book-stack .book.bk1 { top: 5%;  left: 8%;  --r: -7deg; transform: rotate(-7deg); z-index: 3; }
.book-stack .book.bk2 { top: 18%; right: 8%; --r: 5deg;  transform: rotate(5deg); z-index: 2; }
.book-stack .book.bk3 { bottom: 5%; left: 20%; --r: -3deg; transform: rotate(-3deg); z-index: 1; }

.book-sticker {
  position: absolute;
  top: -20px; right: -20px;
  z-index: 10;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--sun);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1;
  transform: rotate(12deg);
  animation: wobble 6s ease-in-out infinite;
  box-shadow: var(--shadow-card);
}

@keyframes wobble {
  0%, 100% { transform: rotate(12deg); }
  50% { transform: rotate(-8deg); }
}

/* ============================================
   BOOK COVER (CSS-only, no external images)
   ============================================ */

.book-cover {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8% 10%;
  color: var(--cream);
  font-family: var(--font-display);
  overflow: hidden;
}

.book-cover.v-coral  { background: linear-gradient(160deg, #FF5E5B, #B3232B); }
.book-cover.v-sun    { background: linear-gradient(160deg, #FFB627, #B35900); color: var(--ink); }
.book-cover.v-sky    { background: linear-gradient(160deg, #4ECDC4, #1A7570); }
.book-cover.v-plum   { background: linear-gradient(160deg, #8A4478, #3B1231); }
.book-cover.v-leaf   { background: linear-gradient(160deg, #9CCE82, #3F6930); }
.book-cover.v-ink    { background: linear-gradient(160deg, #2C2C4A, #0A0A18); }
.book-cover.v-peach  { background: linear-gradient(160deg, #FFDAC1, #E89968); color: var(--ink); }
.book-cover.v-lilac  { background: linear-gradient(160deg, #C9B1FF, #6E47CC); }
.book-cover.v-mint   { background: linear-gradient(160deg, #A3E3C8, #2F8B68); }
.book-cover.v-ember  { background: linear-gradient(160deg, #F0A868, #A04A08); color: var(--ink); }

.book-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2), transparent 60%);
  pointer-events: none;
}

.book-cover .cover-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}

.book-cover .cover-title {
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.book-cover .cover-title .sup2 {
  color: inherit;
  opacity: 0.85;
  font-size: 0.7em;
}

.book-cover .cover-foot {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.book-cover .cover-num {
  position: absolute;
  top: 10%; right: 10%;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  opacity: 0.22;
  line-height: 1;
}

/* ============================================
   DOMAIN TABS / SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--s-8);
}

.section-header .eyebrow { margin-bottom: var(--s-3); display: inline-block; }

.section-header p {
  margin-top: var(--s-4);
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* ============================================
   DOMAIN CARDS (the 4 priority areas)
   ============================================ */

.domain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}

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

@media (max-width: 520px) {
  .domain-grid { grid-template-columns: 1fr; }
}

.domain-card {
  position: relative;
  padding: var(--s-6) var(--s-5) var(--s-5);
  border-radius: var(--r-lg);
  background: #fff;
  border: 1.5px solid rgba(26,26,46,0.08);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.domain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--dc, var(--sun));
}

.domain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--dc, var(--sun));
}

.domain-card[data-domain="mind"]   { --dc: var(--domain-mind); }
.domain-card[data-domain="body"]   { --dc: var(--domain-body); }
.domain-card[data-domain="craft"]  { --dc: var(--domain-craft); }
.domain-card[data-domain="world"]  { --dc: var(--domain-world); }

.domain-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--dc);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
  color: #fff;
}
.domain-icon svg { width: 28px; height: 28px; stroke-width: 2; }

.domain-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-2);
}

.domain-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: var(--s-4);
}

.domain-card .book-count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dc);
  font-weight: 600;
}

.domain-card .domain-link {
  margin-top: var(--s-3);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.domain-card .domain-link::after {
  content: '→';
  transition: transform 0.25s;
}
.domain-card:hover .domain-link::after { transform: translateX(4px); }

/* ============================================
   BOOK GRID
   ============================================ */

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s-5);
}

.book-card {
  background: transparent;
  text-align: left;
  transition: transform 0.3s;
}

.book-card:hover { transform: translateY(-6px); }

.book-card .book-cover-wrap {
  aspect-ratio: 2/3;
  border-radius: 6px 12px 12px 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: var(--s-4);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  background: var(--cream);
}

/* Real book cover image — fills the wrap edge-to-edge */
.book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   COLLAGE GRID — 10-book showcase
   ============================================ */

.collage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .collage-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .collage-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
}
@media (max-width: 460px) {
  .collage-grid { grid-template-columns: repeat(2, 1fr); }
}

.collage-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(.2,.8,.3,1);
}

.collage-item:hover { transform: translateY(-6px); }

.collage-cover {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: 4px 8px 8px 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--cream);
  transition: box-shadow 0.3s;
  margin-bottom: var(--s-3);
}

.collage-item:hover .collage-cover { box-shadow: var(--shadow-hover); }

.collage-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(.2,.8,.3,1);
}

.collage-item:hover .collage-cover img { transform: scale(1.05); }

.collage-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), transparent 70%);
  pointer-events: none;
}

.collage-number {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 6px;
}

.collage-domain {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 7px;
  border-radius: 6px;
  text-align: right;
  max-width: 60%;
  line-height: 1.1;
}

.collage-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}

.collage-meta strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}

.collage-meta span {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

@media (max-width: 720px) {
  .collage-meta strong { font-size: 0.85rem; }
  .collage-meta span { display: none; }
  .collage-domain { display: none; }
}

.book-card:hover .book-cover-wrap { box-shadow: var(--shadow-hover); }

.book-card .book-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.book-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.book-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================
   CHIPS / TAGS
   ============================================ */

.chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--peach);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip.chip-mind   { background: #FFE0DF; color: #B3232B; }
.chip.chip-body   { background: #E0F1D6; color: #3F6930; }
.chip.chip-craft  { background: #FFF0D1; color: #8B4A00; }
.chip.chip-world  { background: #D6F3F0; color: #1A7570; }

/* ============================================
   TOOLKIT / WIZARD CARDS
   ============================================ */

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s-5);
}

.toolkit-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-6);
  border: 1.5px solid rgba(26,26,46,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.toolkit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ink);
}

.toolkit-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.toolkit-card.featured p { color: rgba(255,247,236,0.75); }

.toolkit-card .tk-kind {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--s-3);
  font-weight: 600;
}

.toolkit-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-3);
  line-height: 1.15;
}

.toolkit-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: var(--s-5);
}

.toolkit-card .tk-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(26,26,46,0.1);
}
.toolkit-card.featured .tk-link { color: var(--cream); border-top-color: rgba(255,247,236,0.15); }

/* ============================================
   STATS BAND
   ============================================ */

.stats-band {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-8) 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--sun);
  opacity: 0.12;
  filter: blur(60px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  position: relative;
  z-index: 2;
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}

.stats-grid .stat-num { font-size: 3.2rem; color: var(--sun); }
.stats-grid .stat-label { color: rgba(255,247,236,0.7); }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-9) 0 var(--s-6);
  margin-top: var(--s-9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--s-3);
}

.footer-brand p { color: rgba(255,247,236,0.7); max-width: 320px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: var(--s-4);
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,247,236,0.75);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--sun); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,247,236,0.12);
  font-size: 0.85rem;
  color: rgba(255,247,236,0.5);
  flex-wrap: wrap;
  gap: var(--s-3);
}

.footer-bottom a { color: rgba(255,247,236,0.7); }
.footer-bottom a:hover { color: var(--sun); }

/* ============================================
   BADGES / PILLS
   ============================================ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--peach);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-sun { background: var(--sun); }
.pill-coral { background: var(--coral); color: #fff; }
.pill-sky { background: var(--sky); color: #fff; }
.pill-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ============================================
   PAGE HERO (for non-home pages)
   ============================================ */

.page-hero {
  padding: var(--s-9) 0 var(--s-7);
  position: relative;
  overflow: hidden;
}

.page-hero .eyebrow { margin-bottom: var(--s-3); display: inline-block; }

.page-hero h1 { margin-bottom: var(--s-4); }

.page-hero .page-intro {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--ink-soft);
  line-height: 1.55;
}

.page-hero-visual {
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--s-5);
}

.breadcrumb a { color: var(--coral); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

/* ============================================
   BOOK DETAIL PAGE
   ============================================ */

.book-detail {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--s-8);
  align-items: flex-start;
}

@media (max-width: 900px) {
  .book-detail { grid-template-columns: 1fr; gap: var(--s-6); }
}

.book-detail-cover-wrap {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

@media (max-width: 900px) {
  .book-detail-cover-wrap {
    position: static;
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
}

.book-detail-cover {
  display: block;
  aspect-ratio: 2/3;
  border-radius: 8px 16px 16px 8px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.3s, box-shadow 0.3s;
}

.book-detail-cover:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(26,26,46,0.2);
}

.book-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-detail-buy-row {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.book-detail-info .chip { margin-bottom: var(--s-4); }

.book-detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: var(--s-3);
}

.book-detail-info .subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-soft);
  margin-bottom: var(--s-5);
  line-height: 1.3;
}

.book-detail-info .book-blurb {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: var(--s-6);
}

.book-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  padding: var(--s-5);
  background: #fff;
  border-radius: var(--r-lg);
  margin-bottom: var(--s-6);
  border: 1px solid rgba(26,26,46,0.08);
}

@media (max-width: 600px) {
  .book-meta-grid { grid-template-columns: repeat(2, 1fr); }
}

.meta-item .meta-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.meta-item .meta-value {
  font-weight: 600;
  font-size: 1rem;
}

.principles-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-5) 0;
}

.principles-list li {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid rgba(26,26,46,0.08);
}

.principles-list .num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--coral);
  font-size: 1.2rem;
  flex-shrink: 0;
  min-width: 28px;
}

.quote-block {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-7);
  border-radius: var(--r-lg);
  margin: var(--s-7) 0;
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 30px;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--sun);
  opacity: 0.35;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
  font-style: italic;
  margin-bottom: var(--s-4);
}

.quote-block cite {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--sun);
}

/* ============================================
   YOUTUBE PAGE
   ============================================ */

.yt-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3A1C4A 100%);
  color: var(--cream);
  padding: var(--s-9) 0;
  position: relative;
  overflow: hidden;
}

.yt-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,94,91,0.35), transparent 70%);
  filter: blur(60px);
}

.yt-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}

@media (max-width: 900px) {
  .yt-hero-inner { grid-template-columns: 1fr; }
}

.yt-hero .pill { background: rgba(255,94,91,0.2); color: #FF8A87; }

.yt-hero h1 { color: var(--cream); }

.yt-player-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  aspect-ratio: 16/9;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.yt-play-btn {
  width: 84px; height: 84px;
  background: #FF0000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: auto;
  box-shadow: 0 10px 40px rgba(255,0,0,0.5);
  transition: transform 0.3s;
  cursor: pointer;
}
.yt-play-btn:hover { transform: scale(1.1); }
.yt-play-btn svg { width: 34px; height: 34px; fill: white; margin-left: 4px; }

.yt-player-card .yt-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.yt-player-card .yt-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s-5);
}

.video-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1.5px solid rgba(26,26,46,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.video-thumb {
  aspect-ratio: 16/9;
  position: relative;
  background: linear-gradient(135deg, var(--coral), var(--sun));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.video-thumb .yt-play-btn { width: 60px; height: 60px; margin: 0; }
.video-thumb .yt-play-btn svg { width: 24px; height: 24px; }

.video-thumb.v-mind  { background: linear-gradient(135deg, #FF5E5B, #B3232B); }
.video-thumb.v-body  { background: linear-gradient(135deg, #7FB069, #3F6930); }
.video-thumb.v-craft { background: linear-gradient(135deg, #FFB627, #B35900); }
.video-thumb.v-world { background: linear-gradient(135deg, #4ECDC4, #1A7570); }
.video-thumb.v-plum  { background: linear-gradient(135deg, #8A4478, #3B1231); }

.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.3));
}

.video-info { padding: var(--s-4) var(--s-5) var(--s-5); }

.video-info .video-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
  font-weight: 600;
}

.video-info h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.video-info .video-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ============================================
   ABOUT / CONTACT
   ============================================ */

.author-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-7);
  border: 1.5px solid rgba(26,26,46,0.08);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-6);
  align-items: center;
}

@media (max-width: 700px) {
  .author-card { grid-template-columns: 1fr; text-align: center; }
}

.author-avatar {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun), var(--coral));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 4.5rem;
  color: var(--cream);
  box-shadow: var(--shadow-card);
  margin: 0 auto;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   WIZARD / QUIZ / TOOLKIT INTERACTIVES
   ============================================ */

.wizard-shell {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-7);
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  border: 1.5px solid rgba(26,26,46,0.08);
}

.wizard-progress {
  display: flex;
  gap: 6px;
  margin-bottom: var(--s-6);
}

.wizard-step-dot {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(26,26,46,0.1);
  transition: background 0.3s;
}
.wizard-step-dot.active { background: var(--coral); }
.wizard-step-dot.complete { background: var(--leaf); }

.wizard-step { display: none; animation: fadeIn 0.4s; }
.wizard-step.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step .step-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--s-2);
  font-weight: 600;
}

.wizard-step h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--s-3);
}

.wizard-step p.helper {
  color: var(--ink-soft);
  margin-bottom: var(--s-5);
}

.wizard-options {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}

.wizard-option {
  padding: var(--s-4) var(--s-5);
  border: 2px solid rgba(26,26,46,0.1);
  border-radius: var(--r-md);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.wizard-option:hover { border-color: var(--coral); background: #FFF5F5; }
.wizard-option.selected { border-color: var(--coral); background: #FFEDEC; }

.wizard-option .opt-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(26,26,46,0.08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}
.wizard-option.selected .opt-num { background: var(--coral); color: #fff; }

.wizard-input {
  width: 100%;
  padding: var(--s-4) var(--s-5);
  border: 2px solid rgba(26,26,46,0.15);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s;
  margin-bottom: var(--s-5);
}
.wizard-input:focus { outline: none; border-color: var(--coral); }

textarea.wizard-input { min-height: 110px; resize: vertical; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  align-items: center;
}

.wizard-slider-row {
  display: flex; flex-direction: column; gap: var(--s-2);
  margin-bottom: var(--s-5);
}

.wizard-slider-row label {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wizard-slider-row label .val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--coral);
  font-size: 1.1rem;
}

.wizard-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--coral) var(--pct, 0%), rgba(26,26,46,0.1) var(--pct, 0%));
  outline: none;
}

.wizard-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  background: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--cream);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.wizard-slider::-moz-range-thumb {
  width: 26px; height: 26px;
  background: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--cream);
}

/* Wizard result */
.wizard-result {
  display: none;
  padding: var(--s-6);
  background: linear-gradient(135deg, var(--cream), #fff);
  border-radius: var(--r-lg);
  border: 2px solid var(--sun);
  margin-top: var(--s-5);
}
.wizard-result.show { display: block; animation: fadeIn 0.5s; }

.wizard-result h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}

.wizard-result .result-score {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
  margin-bottom: var(--s-3);
}

/* Self-assessment bars */
.score-bars { display: flex; flex-direction: column; gap: var(--s-4); margin: var(--s-5) 0; }
.score-row { }
.score-row .score-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.95rem;
}
.score-row .score-label .score-val {
  font-family: var(--font-mono);
  font-weight: 700;
}
.score-track {
  height: 12px;
  background: rgba(26,26,46,0.08);
  border-radius: 6px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s cubic-bezier(.2,.8,.3,1);
}
.score-row[data-d="mind"]  .score-fill { background: var(--domain-mind); }
.score-row[data-d="body"]  .score-fill { background: var(--domain-body); }
.score-row[data-d="craft"] .score-fill { background: var(--domain-craft); }
.score-row[data-d="world"] .score-fill { background: var(--domain-world); }

/* ============================================
   PLATFORM PREVIEW (You2 Platform)
   ============================================ */

.platform-preview {
  background: linear-gradient(160deg, #1A1A2E, #3A1C4A);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  position: relative;
  overflow: hidden;
  margin: var(--s-7) 0;
}

.platform-preview::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--sun), transparent 70%);
  filter: blur(60px);
  opacity: 0.3;
}

.platform-preview-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

@media (max-width: 900px) {
  .platform-preview-inner { grid-template-columns: 1fr; }
}

.platform-preview h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--s-4);
}

.platform-preview ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-5) 0;
}

.platform-preview ul li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  color: rgba(255,247,236,0.85);
}

.platform-preview ul li::before {
  content: '✓';
  color: var(--sun);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.phone-mockup {
  background: #000;
  border-radius: 32px;
  padding: 10px;
  aspect-ratio: 9/18;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
}

.phone-screen {
  background: linear-gradient(180deg, var(--cream), #fff);
  height: 100%;
  border-radius: 24px;
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: #000;
  border-radius: 12px;
  z-index: 3;
}

.phone-screen-header {
  padding-top: 30px;
}
.phone-screen-header .app-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.phone-screen-header .app-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--coral);
  text-transform: uppercase;
}

.phone-metric-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-metric-card .pm-label { font-size: 0.75rem; color: var(--ink-soft); }
.phone-metric-card .pm-value { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.phone-metric-card .pm-value.up { color: var(--leaf); }

.phone-progress {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.phone-progress .pp-label {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}
.phone-progress .pp-bar {
  height: 6px;
  background: rgba(26,26,46,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.phone-progress .pp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--sun));
}

/* ============================================
   CTA BAND
   ============================================ */

.cta-band {
  background: var(--sun);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  text-align: center;
  margin: var(--s-8) auto;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.cta-band::before {
  width: 200px; height: 200px;
  background: var(--coral);
  top: -80px; left: -80px;
  opacity: 0.4;
}
.cta-band::after {
  width: 160px; height: 160px;
  background: var(--sky);
  bottom: -60px; right: -60px;
  opacity: 0.45;
}

.cta-band-inner { position: relative; z-index: 2; }

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: var(--s-4);
}

.cta-band p {
  color: var(--ink);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto var(--s-5);
  opacity: 0.85;
}

/* ============================================
   FORMS (contact)
   ============================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-4); }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.form-input, .form-textarea, .form-select {
  padding: 14px 18px;
  border: 2px solid rgba(26,26,46,0.12);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--coral);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ============================================
   UTIL
   ============================================ */

.text-center { text-align: center; }
.mt-7 { margin-top: var(--s-7); }
.mb-7 { margin-bottom: var(--s-7); }
.flex-row { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(.2,.8,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   PROSE (article content)
   ============================================ */

.prose { max-width: 720px; margin: 0 auto; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: var(--s-6) 0 var(--s-3);
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: var(--s-5) 0 var(--s-2);
}
.prose p { margin-bottom: var(--s-4); line-height: 1.7; font-size: 1.05rem; }
.prose ul, .prose ol {
  margin: 0 0 var(--s-5) var(--s-5);
  line-height: 1.7;
}
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 4px solid var(--sun);
  padding-left: var(--s-5);
  margin: var(--s-5) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
}
