/* =========================================================
   HOME PAGE
   Hero · Framework Preview · Field Guide · Founder · Work
   ========================================================= */

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 0;
  padding: 84px 0 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 1;
  animation: orb-float 20s ease-in-out infinite;
}
.hero__orb--1 {
  top: -15%;
  right: -10%;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle, rgba(196, 98, 45, 0.85), rgba(196, 98, 45, 0.25) 50%, transparent 75%);
}
.hero__orb--2 {
  bottom: -20%;
  left: -10%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(27, 43, 75, 0.4), rgba(27, 43, 75, 0.1) 55%, transparent 75%);
  animation-delay: -10s;
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  background-image: radial-gradient(circle at 1px 1px, rgba(27, 43, 75, 0.16) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black 40%, transparent 85%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 48px;
  width: 100%;
  text-align: center;
}

.hero__brand {
  display: flex;
  justify-content: center;
  margin: 12px 0 24px;
  animation: fade-in 1000ms var(--ease-out) both;
}
.hero__brand img {
  height: 120px;
  width: auto;
}
.hero__top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fade-in 1000ms var(--ease-out) both;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.hero__chip:hover {
  transform: translateY(-1px);
  border-color: var(--orange);
}
.hero__chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
}
.hero__chip-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.4;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.8); opacity: 0; }
}
.hero__chip a {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.78rem;
  transition: transform var(--t-fast);
}
.hero__chip a:hover { transform: translateX(2px); }

.hero__meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
}
.hero__meta-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.hero__meta-label {
  font-size: 0.74rem;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0 auto 20px;
  letter-spacing: -0.035em;
  font-weight: 400;
  line-height: 1.15;
  font-size: clamp(1.4rem, 3.4vw, 2.8rem);
  text-align: center;
  max-width: 880px;
}
.hero__line {
  display: block;
  position: relative;
}
.hero__line--indent { padding-left: 0; }
.hero__line--end { text-align: center; }
.hero__line--accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 300;
}
.hero__line em {
  font-style: italic;
  color: var(--orange);
  font-weight: 200;
  display: inline-block;
}

.reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  line-height: 1.05;
}
.reveal-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1100ms var(--ease-out);
}
.reveal-words.is-in .reveal-word > span {
  transform: translateY(0);
}
/* stagger word animations */
.hero__title .reveal-word:nth-child(1) > span { transition-delay: 50ms; }
.hero__title .reveal-word:nth-child(2) > span { transition-delay: 100ms; }
.hero__title .reveal-word:nth-child(3) > span { transition-delay: 150ms; }
.hero__title .reveal-word:nth-child(4) > span { transition-delay: 200ms; }
.hero__title .reveal-word:nth-child(5) > span { transition-delay: 250ms; }

.hero__pain {
  max-width: 720px;
  margin: 32px auto 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: center;
  animation: fade-in 1000ms 700ms var(--ease-out) both;
}
.hero__pain p { margin: 0 0 18px; }
.hero__pain p:last-child { margin-bottom: 0; }
.hero__pain-close {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 24px !important;
}
.hero__pain-close em {
  font-style: italic;
  color: var(--orange-bright, #C4622D);
}

.hero__bottom {
  display: flex;
  justify-content: center;
  animation: fade-in 1000ms 800ms var(--ease-out) both;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 1;
  animation: fade-in 1000ms 1500ms var(--ease-out) both;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink-mute) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0; width: 100%; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scroll-down 2s ease-in-out infinite;
}
@keyframes scroll-down {
  0%, 100% { top: -40px; opacity: 0; }
  50% { top: 0; opacity: 1; }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 76px 0 40px; }
  .hero__inner { padding: 16px 20px; }
  .hero__title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero__line--indent { padding-left: 0; }
  .hero__line--end { text-align: center; }
  .hero__top { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 16px; }
  .hero__brand { justify-content: center; margin: 8px 0 16px; }
  .hero__brand img { height: 72px; }
  .hero__bottom { justify-content: center; }
  .hero__ctas { justify-content: center; }
  .hero__scroll-hint { display: none; }
  .hero__pain { font-size: 0.98rem; margin: 24px auto 28px; }
  .hero__pain-close { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .hero__brand img { height: 56px; }
  .hero__chip { font-size: 0.78rem; }
  .hero__ctas .btn { font-size: 0.9rem; padding: 14px 20px; }
}
@media (max-width: 720px) {
  .hero__orb { opacity: 0.5; filter: blur(60px); }
  .hero__orb--1 { width: 500px; height: 500px; }
  .hero__orb--2 { width: 400px; height: 400px; }
  .hero__noise { opacity: 0.4; }
}

/* ---------- STATS ---------- */
.stats {
  padding: 32px 0;
  background: transparent;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.stats__item {
  padding: 28px 24px;
  border-right: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background var(--t-med);
}
.stats__item:last-child { border-right: none; }
.stats__item:hover { background: var(--cream-warm); }
.stats__num {
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stats__plus {
  color: var(--orange);
  font-style: normal;
  font-size: 0.6em;
  font-weight: 300;
}
.stats__label {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .stats { padding: 24px 0; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .stats__item { padding: 18px 10px; }
  .stats__num { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .stats__label { font-size: 0.78rem; line-height: 1.3; }
}
@media (max-width: 480px) {
  .stats__item { padding: 14px 8px; }
  .stats__num { font-size: clamp(1.4rem, 8vw, 2rem); }
  .stats__label { font-size: 0.72rem; }
}

/* ---------- PROBLEM ---------- */
.problem {
  padding: 48px 0;
  position: relative;
}
.problem__layout {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px 28px;
  align-items: start;
}
.problem__sidebar {
  position: sticky;
  top: 120px;
}
.problem__index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.problem__index-line {
  flex-grow: 1;
  height: 1px;
  background: var(--line-strong);
  position: relative;
}
.problem__index-line::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 30%;
  height: 100%;
  background: var(--orange);
}
.problem__main {
  grid-column: 2;
}
.problem__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.problem__copy {
  grid-column: 2;
  max-width: 720px;
  margin-top: 24px;
}
.problem__copy p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.2em;
}
.problem__bold {
  font-family: 'Outfit', sans-serif !important;
  color: var(--navy) !important;
  font-size: 1.25rem !important;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3 !important;
}
@media (max-width: 900px) {
  .problem { padding: 40px 0; }
  .problem__layout { grid-template-columns: 1fr; gap: 20px; }
  .problem__sidebar { position: static; }
  .problem__main, .problem__copy { grid-column: 1; }
}

/* ---------- FRAMEWORK PREVIEW (sticky scroll storytelling) ---------- */
.framework-preview {
  padding: 56px 0 64px;
  background: var(--cream-warm);
  position: relative;
}
.framework-preview__head {
  margin-bottom: 36px;
  max-width: 800px;
}
.framework-preview__title {
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.pillars {
  position: relative;
}
.pillars__sticky-line {
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
@media (max-width: 1080px) {
  .pillars__sticky-line { display: none; }
}

.pillar {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 36px 0;
  align-items: start;
  border-bottom: 1px solid var(--line-strong);
}
.pillar:first-child { padding-top: 0; }
.pillar:last-child { border-bottom: none; padding-bottom: 0; }

.pillar__sticky {
  position: sticky;
  top: 140px;
}
.pillar__num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 200;
  color: var(--navy);
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin-bottom: 24px;
}
.pillar__viz {
  width: 200px;
  height: 200px;
  color: var(--navy);
  transition: transform var(--t-slow);
}
.pillar:hover .pillar__viz {
  transform: rotate(8deg) scale(1.04);
}
.pillar__viz svg {
  width: 100%;
  height: 100%;
}
.pillar__circle {
  transform-origin: center;
  animation: pillar-pulse 4s ease-in-out infinite;
}
.pillar__circle:nth-child(2) { animation-delay: 0.5s; }
.pillar__circle:nth-child(3) { animation-delay: 1s; }
@keyframes pillar-pulse {
  0%, 100% { opacity: var(--from-opacity, 0.15); }
  50% { opacity: 0.6; }
}

.pillar__body {
  padding-top: 24px;
}
.pillar__body h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  line-height: 1.05;
}
.pillar__sub {
  color: var(--ink-mute);
  font-style: italic;
  font-weight: 300;
  font-size: 0.7em;
}
.pillar__body > p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 560px;
}
.pillar__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar__body ul li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 32px;
  transition: padding-left var(--t-fast), color var(--t-fast);
}
.pillar__body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  transition: transform var(--t-fast);
}
.pillar__body ul li:last-child {
  border-bottom: 1px solid var(--line);
}
.pillar__body ul li:hover {
  padding-left: 40px;
  color: var(--orange);
}

.framework-preview__cta {
  margin-top: 60px;
  text-align: center;
}

@media (max-width: 1080px) {
  .pillar { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .pillar__sticky { position: static; }
  .pillar__viz { width: 96px; height: 96px; }
  .pillar__body { padding-top: 0; }
}

/* ---------- FEATURE / FIELD GUIDE ---------- */
.feature {
  padding: 44px 0;
  background: transparent;
}
.feature__card {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.feature__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.feature__bg::before {
  content: "";
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196, 98, 45, 0.3), transparent 60%);
  filter: blur(40px);
}
.feature__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(248, 245, 240, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
}
.feature__copy {
  position: relative;
}
.feature__copy h2 {
  color: var(--cream);
  font-weight: 300;
  letter-spacing: -0.04em;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin-bottom: 28px;
  line-height: 1.05;
}
.feature__copy h2 em {
  color: var(--orange-bright);
  font-weight: 200;
}
.feature__copy > p {
  color: rgba(248, 245, 240, 0.7);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}
.feature__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  gap: 12px;
}
.feature__list li {
  font-size: 0.98rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature__list li span {
  color: var(--orange-bright);
  font-weight: 500;
}
.feature__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.feature__guarantee {
  font-size: 0.84rem;
  color: rgba(248, 245, 240, 0.6);
}

/* Book mockup */
.feature__visual {
  position: relative;
  perspective: 1500px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.book {
  position: relative;
  width: 320px;
  height: 440px;
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(8deg);
  transition: transform 1200ms var(--ease-out);
  animation: book-float 6s ease-in-out infinite;
}
.feature__card:hover .book {
  transform: rotateY(-12deg) rotateX(4deg) translateY(-10px);
}
@keyframes book-float {
  0%, 100% { transform: rotateY(-22deg) rotateX(8deg) translateY(0); }
  50% { transform: rotateY(-22deg) rotateX(8deg) translateY(-12px); }
}
.book__shadow {
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 30px;
  background: rgba(0,0,0,0.35);
  filter: blur(20px);
  border-radius: 50%;
  transform: rotateX(80deg);
  z-index: -1;
}
.book__cover, .book__back {
  position: absolute;
  inset: 0;
  border-radius: 4px 14px 14px 4px;
}
.book__back {
  background: var(--navy-deep);
  transform: translateZ(-25px);
  border-radius: 4px 14px 14px 4px;
}
.book__cover {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  box-shadow:
    inset 0 0 80px rgba(0,0,0,0.2),
    20px 20px 60px rgba(15, 26, 51, 0.4);
  overflow: hidden;
}
.book__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 50%),
    repeating-linear-gradient(45deg, transparent 0, transparent 70px, rgba(255,255,255,0.04) 70px, rgba(255,255,255,0.04) 140px);
}
.book__cover::after {
  content: "";
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 1px;
  background: rgba(0,0,0,0.15);
}
.book__cover-inner {
  position: relative;
  height: 100%;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  color: var(--cream);
}
.book__brand {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}
.book__title {
  margin-top: auto;
  font-family: 'Outfit', sans-serif;
  display: flex;
  flex-direction: column;
  line-height: 0.86;
  letter-spacing: -0.05em;
  font-weight: 500;
}
.book__title span:nth-child(1) { font-size: 1.3rem; opacity: 0.7; }
.book__title-big {
  font-size: 4rem !important;
  color: var(--cream);
  margin: 4px 0;
  font-weight: 600;
}
.book__title span:nth-child(3),
.book__title span:nth-child(4) {
  font-size: 1.5rem;
}
.book__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .feature { padding: 32px 0; }
  .feature__card {
    padding: 32px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature__visual { min-height: 280px; }
  .book { width: 200px; height: 280px; }
  .book__title-big { font-size: 2.6rem !important; }
}

/* ---------- FOUNDER ---------- */
.founder {
  padding: 56px 0;
  background: transparent;
}
.founder__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.founder__visual {
  position: relative;
}
.founder__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  box-shadow:
    0 1px 2px rgba(15, 26, 51, 0.04),
    0 30px 80px rgba(15, 26, 51, 0.2);
}
.founder__photo-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 120, 58, 0.45), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(196, 98, 45, 0.25), transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 50%, var(--navy-deep) 100%);
}
.founder__photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(248, 245, 240, 0.04) 1px, transparent 0);
  background-size: 20px 20px;
}
.founder__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 1;
}
.founder__initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 200;
  color: rgba(248, 245, 240, 0.9);
  letter-spacing: -0.06em;
}
.founder__photo-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  padding: 10px 14px;
  background: rgba(15, 26, 51, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  color: var(--cream);
  font-size: 0.8rem;
  color: rgba(248, 245, 240, 0.85);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.founder__photo-tag span:last-child {
  color: var(--orange-bright);
  font-size: 1.1rem;
  transition: transform var(--t-fast);
}
.founder__photo:hover .founder__photo-tag span:last-child {
  transform: translate(2px, -2px);
}
.founder__sticker {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  background: var(--orange);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  animation: spin-slow 30s linear infinite;
  box-shadow: 0 12px 32px rgba(196, 98, 45, 0.3);
  z-index: 2;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.founder__copy h2 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  line-height: 1;
}
.founder__lede {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.founder__copy > p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Credentials grid */
.creds {
  border-top: 1px solid var(--line-strong);
  padding-top: 28px;
}
.creds__head {
  margin-bottom: 20px;
}
.creds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cred {
  padding: 24px 32px 24px 0;
  border-right: 1px solid var(--line-strong);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cred:last-child { border-right: none; }
.cred__num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.cred__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 4px;
}
.cred__sub {
  font-size: 0.84rem;
  color: var(--ink-mute);
  line-height: 1.3;
}

@media (max-width: 1080px) {
  .founder { padding: 40px 0; }
  .founder__layout { grid-template-columns: 1fr; gap: 32px; margin-bottom: 28px; }
  .founder__photo { max-width: 280px; margin: 0 auto; }
  .creds__grid { grid-template-columns: 1fr 1fr; }
  .cred { padding: 24px 20px 24px 0; }
  .cred:nth-child(2) { border-right: none; }
  .cred:nth-child(1), .cred:nth-child(2) {
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .creds__grid { grid-template-columns: 1fr; }
  .cred {
    border-right: none !important;
    border-bottom: 1px solid var(--line-strong);
  }
  .cred:last-child { border-bottom: none; }
}

/* ---------- WORK PREVIEW ---------- */
.work-preview {
  padding: 56px 0;
  background: var(--cream-warm);
}
.work-preview__head {
  margin-bottom: 28px;
  max-width: 800px;
}
.work-preview__head h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tier {
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--t-med), border-color var(--t-med);
}
.tier:hover {
  border-color: var(--navy);
  transform: translateY(-6px);
}
.tier--featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.tier--featured:hover {
  border-color: var(--orange);
}
.tier__badge {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
}
.tier__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
}
.tier__label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--orange);
}
.tier--featured .tier__label { color: var(--orange-bright); }
.tier__index {
  font-family: 'Outfit', sans-serif;
  font-size: 0.84rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.tier--featured .tier__index { color: rgba(248, 245, 240, 0.5); }

.tier h3 {
  margin: 0 0 28px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.tier--featured h3 { color: var(--cream); }

.tier__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.tier--featured .tier__price { border-bottom-color: rgba(248, 245, 240, 0.12); }
.tier__price span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}
.tier--featured .tier__price span { color: var(--cream); font-size: 1.4rem; }
.tier__price em {
  font-size: 0.84rem;
  color: var(--ink-mute);
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
}
.tier--featured .tier__price em { color: rgba(248, 245, 240, 0.6); }

.tier > p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  flex-grow: 1;
  margin-bottom: 32px;
}
.tier--featured > p { color: rgba(248, 245, 240, 0.78); }

.tier__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--navy);
  padding-top: 4px;
  border-top: 1px solid var(--line-strong);
  padding-top: 24px;
  transition: gap var(--t-fast);
}
.tier--featured .tier__cta {
  color: var(--orange-bright);
  border-top-color: rgba(248, 245, 240, 0.12);
}
.tier:hover .tier__cta { gap: 14px; }

@media (max-width: 900px) {
  .work-preview { padding: 40px 0; }
  .tiers { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  padding: 56px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(196, 98, 45, 0.06), transparent 60%);
  pointer-events: none;
}
.testimonial__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial__quote-mark {
  font-family: 'Outfit', serif;
  font-size: 8rem;
  font-weight: 300;
  color: var(--orange);
  line-height: 0.7;
  margin-bottom: -40px;
  margin-left: -16px;
  opacity: 0.3;
  font-style: italic;
}
.testimonial blockquote {
  margin: 0 0 28px;
  padding: 0;
}
.testimonial blockquote p {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.035em;
  margin: 0 0 0.4em;
}
.testimonial blockquote em {
  color: var(--orange);
  font-style: italic;
  font-weight: 300;
}
.testimonial__by {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 16px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
}
.testimonial__name {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.98rem;
}
.testimonial__role {
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .testimonial { padding: 40px 0; }
  .testimonial__quote-mark { font-size: 5rem; }
}

/* ---------- JOURNAL PREVIEW ---------- */
.journal-preview {
  padding: 56px 0;
  background: var(--cream-warm);
}
.journal-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.journal-preview__head h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.journal-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.post {
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--t-med), transform var(--t-med);
  cursor: pointer;
  min-height: 280px;
}
.post:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
}
.post__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.post__num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.84rem;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.post__cat {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.post h3 {
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.post p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0 0 32px;
  flex-grow: 1;
}
.post__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: var(--ink-mute);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.post__arrow {
  width: 32px; height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  color: var(--navy);
  transition: all var(--t-fast);
}
.post:hover .post__arrow {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: translateX(2px);
}

@media (max-width: 900px) {
  .journal-preview { padding: 40px 0; }
  .journal-preview__grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ============ BEYOND EDUCATION WAITLIST ============ */
.beyond {
  padding: 80px 0;
  background: var(--cream);
}
.beyond__card {
  background: var(--navy);
  color: var(--cream);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  box-shadow: 0 40px 100px -50px rgba(27, 43, 75, 0.4);
}
.beyond__copy .eyebrow { color: var(--orange-bright); margin-bottom: 14px; }
.beyond__copy h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--cream);
}
.beyond__copy h2 em {
  font-style: italic;
  color: var(--orange-bright);
}
.beyond__copy p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(248, 245, 240, 0.78);
  margin: 0 0 14px;
}
.beyond__subtle {
  color: var(--cream) !important;
  font-weight: 500 !important;
}
.beyond__form {
  display: grid;
  gap: 12px;
}
.beyond__field input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid rgba(248, 245, 240, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem;
}
.beyond__field input::placeholder { color: rgba(248, 245, 240, 0.45); }
.beyond__field input:focus {
  outline: 2px solid var(--orange-bright);
  border-color: var(--orange-bright);
  background: rgba(255, 255, 255, 0.1);
}
.beyond__form button { width: 100%; justify-content: center; margin-top: 4px; }
.beyond__note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(248, 245, 240, 0.45);
  margin: 8px 0 0;
  text-align: center;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
@media (max-width: 900px) {
  .beyond { padding: 56px 0; }
  .beyond__card { grid-template-columns: 1fr; gap: 28px; }
}
