:root {
  --bg: #0a0a0f;
  --bg-elevated: #111118;
  --bg-soft: #171721;
  --surface: rgba(18, 18, 25, 0.86);
  --surface-strong: rgba(14, 14, 19, 0.94);
  --surface-light: rgba(255, 250, 241, 0.92);
  --surface-gold: linear-gradient(180deg, rgba(212, 177, 106, 0.2), rgba(212, 177, 106, 0.06));
  --gold: #d4b16a;
  --gold-deep: #b89248;
  --gold-soft: rgba(212, 177, 106, 0.14);
  --font-display: "Cinzel", Georgia, serif;
  --font-ui: "Inter", Arial, Helvetica, sans-serif;
  --text-hero: #f8f8f8;
  --text: #cfcfcf;
  --text-dark: #18140d;
  --muted: #9b9b9b;
  --muted-quiet: #707070;
  --muted-dark: #5f5646;
  --line: rgba(212, 177, 106, 0.2);
  --line-strong: rgba(212, 177, 106, 0.38);
  --success: #88c29a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --content: 1180px;
  --content-readable: 760px;
  --header-height: 82px;
  --type-hero: 64px;
  --type-hero-tablet: 52px;
  --type-hero-mobile: 38px;
  --type-section: 42px;
  --type-section-mobile: 32px;
  --type-module: 36px;
  --type-h2: 30px;
  --type-h3: 24px;
  --type-h4: 20px;
  --type-body: 18px;
  --type-small: 16px;
  --type-caption: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--type-body);
  line-height: 1.8;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 177, 106, 0.08), transparent 26%),
    #08080d;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

p {
  margin-bottom: 18px;
  max-width: var(--content-readable);
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.8;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: 4px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #8f6830 0%, #d4b16a 55%, #f0d699 100%);
  box-shadow: 0 0 18px rgba(212, 177, 106, 0.45);
}

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

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes chartDrift {
  0%, 100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(-1deg) translateY(-6px);
  }
}

@keyframes lightFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes softShimmer {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  25% {
    opacity: 0.28;
  }
  100% {
    transform: translateX(180%);
    opacity: 0;
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes signalPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.12);
    opacity: 0.8;
  }
}

@keyframes insightDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

a {
  color: inherit;
}

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

.site-shell {
  overflow: visible;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(18, 14, 10, 0.88);
  border-bottom: 1px solid rgba(212, 177, 106, 0.08);
  isolation: isolate;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-height);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(320px, 32vw);
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.header-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.header-cta {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-dark {
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(212, 177, 106, 0.08), transparent 20%),
    linear-gradient(180deg, #0a0b11 0%, #0c0d14 100%);
}

.section-light {
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(212, 177, 106, 0.08), transparent 20%),
    linear-gradient(180deg, #fbf7f0 0%, #f4ecdf 100%);
}

.section-light .eyebrow,
.section-light .section-copy,
.section-light .feature-card p,
.section-light .journey-note,
.section-light .disclaimer,
.section-light .cta-copy,
.section-light .founder-copy p,
.section-light .pillar-card p,
.section-light .practice-card p {
  color: var(--muted-dark);
}

.section-light .section-title,
.section-light .feature-card h3,
.section-light .journey-step strong,
.section-light .practice-card h3,
.section-light .cta-panel h2,
.section-light .founder-copy h3,
.section-light .founder-copy h2,
.section-light .pillar-card h3 {
  color: var(--text-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section-title,
.hero-title,
.cta-panel h2,
.founder-copy h2,
.page-hero h1,
.page-main h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3.25rem);
  text-wrap: balance;
}

.section-copy {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 0 0 90px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 177, 106, 0.12), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(88, 125, 212, 0.12), transparent 20%),
    linear-gradient(180deg, #08080c 0%, #0f1018 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(212, 177, 106, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  z-index: -3;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 560px;
  background:
    linear-gradient(rgba(212, 177, 106, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 177, 106, 0.1) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent);
  z-index: -2;
}

.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  padding: 28px 0 32px;
}

.hero-user-note {
  margin: 0 0 14px;
  color: rgba(245, 239, 228, 0.64);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-title {
  max-width: 720px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-dynamic-line {
  display: flex;
  align-items: baseline;
  gap: 0.18em;
  min-height: 1.18em;
}

.hero-fixed-word {
  flex: 0 0 auto;
}

.hero-rotator {
  position: relative;
  display: inline-grid;
  align-items: baseline;
  min-width: 16.2ch;
  min-height: 1.18em;
  overflow: hidden;
  vertical-align: baseline;
}

.hero-rotator-word {
  grid-area: 1 / 1;
  display: inline-block;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-rotator-word.is-current {
  opacity: 1;
}

.hero-subtitle {
  max-width: 640px;
  margin-top: 22px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.8;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #e0bf7c, var(--gold-deep));
  color: #140f07;
  box-shadow: 0 18px 36px rgba(180, 142, 71, 0.26);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.metric-pill {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.94rem;
}

.hero-art {
  position: relative;
  min-height: 620px;
}

.hero-dashboard {
  position: relative;
  min-height: 620px;
  padding-top: 22px;
}

.dashboard-glow {
  position: absolute;
  inset: 80px 10% 70px 16%;
  border-radius: 42px;
  background: radial-gradient(circle at center, rgba(212, 177, 106, 0.12), transparent 72%);
  opacity: 0.7;
}

.dashboard-header {
  position: absolute;
  top: 4px;
  left: 18px;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding: 18px 24px 16px;
  border: 1px solid rgba(212, 177, 106, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(24, 19, 13, 0.9), rgba(12, 10, 9, 0.94));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.dashboard-kicker {
  color: rgba(212, 177, 106, 0.9);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.dashboard-header strong {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(245, 239, 228, 0.98);
}

.dashboard-surface {
  position: absolute;
  inset: 58px 0 0;
  border: 1px solid rgba(212, 177, 106, 0.18);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(13, 11, 10, 0.84);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.dashboard-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 177, 106, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 177, 106, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.5;
}

.dashboard-chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio-line,
.trend-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-line {
  stroke: rgba(128, 166, 232, 0.42);
  stroke-width: 4;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 9s ease-out infinite;
}

.trend-line {
  stroke-width: 5;
  stroke-dasharray: 1000;
}

.trend-line-base {
  stroke: rgba(255, 249, 239, 0.12);
}

.trend-line-active {
  stroke: rgba(212, 177, 106, 0.96);
  stroke-dashoffset: 1000;
  animation: drawPath 7s ease-out infinite 0.6s;
}

.candle line {
  stroke: rgba(255, 249, 239, 0.24);
  stroke-width: 8;
  stroke-linecap: round;
}

.candle rect {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: candleLift 4.8s ease-in-out infinite;
  animation-delay: var(--shift);
}

.milestone-candle rect {
  transition: fill 260ms ease, opacity 260ms ease, filter 260ms ease;
}

.milestone-candle.is-completed rect {
  fill: #d4b16a;
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(212, 177, 106, 0.14));
}

.milestone-candle.is-completed line {
  stroke: rgba(212, 177, 106, 0.28);
}

.milestone-candle.is-current rect {
  fill: #87afe7;
  opacity: 1;
}

.milestone-candle.is-upcoming rect {
  fill: rgba(92, 89, 84, 0.9);
  opacity: 0.38;
}

.milestone-candle.is-upcoming line {
  stroke: rgba(255, 249, 239, 0.12);
}

.svg-chip,
.svg-quiz-card,
.svg-flow-card {
  opacity: 0;
  animation: svgCardReveal 1.2s ease forwards;
  animation-delay: var(--delay);
}

.svg-chip rect,
.svg-quiz-card rect,
.svg-flow-card rect {
  fill: rgba(18, 15, 12, 0.96);
  stroke: rgba(212, 177, 106, 0.16);
  stroke-width: 1.15;
}

.svg-chip {
  cursor: pointer;
}

.svg-chip rect {
  transition: stroke 220ms ease, fill 220ms ease, transform 220ms ease, filter 220ms ease;
}

.svg-chip.is-completed rect {
  fill: rgba(25, 20, 14, 0.98);
  stroke: rgba(212, 177, 106, 0.26);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.svg-chip.is-current rect {
  fill: rgba(20, 20, 24, 0.98);
  stroke: rgba(135, 175, 231, 0.32);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}

.svg-chip.is-upcoming rect {
  fill: rgba(14, 13, 12, 0.9);
  stroke: rgba(255, 255, 255, 0.08);
}

.svg-chip text,
.svg-flow-card text,
.svg-quiz-card text {
  fill: rgba(245, 239, 228, 0.94);
  font-family: var(--font-ui);
}

.svg-chip .chip-index {
  fill: rgba(212, 177, 106, 0.92);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.1px;
}

.svg-chip .chip-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.svg-chip.is-upcoming .chip-index,
.svg-chip.is-upcoming .chip-label {
  fill: rgba(255, 255, 255, 0.54);
}

.svg-quiz-card .quiz-title {
  fill: #d4b16a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.svg-quiz-card .quiz-score {
  font-size: 40px;
  font-weight: 700;
}

.svg-quiz-card .quiz-delta {
  fill: #9cc7a8;
  font-size: 15px;
  font-weight: 700;
}

.svg-flow-card text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  fill: rgba(241, 234, 224, 0.86);
}

.flow-copy {
  letter-spacing: 0.01em;
}

.hero-milestone-tooltip {
  position: absolute;
  z-index: 6;
  width: 220px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(212, 177, 106, 0.16);
  border-radius: 18px;
  background: rgba(14, 12, 10, 0.96);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}

.hero-milestone-tooltip-label {
  margin-bottom: 8px;
  color: rgba(212, 177, 106, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-milestone-tooltip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.hero-milestone-tooltip p {
  margin: 0;
  color: rgba(245, 239, 228, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-tooltip-button {
  width: 100%;
  margin-top: 12px;
  min-height: 44px;
}

.home-hero {
  padding: 0;
  overflow-x: clip;
  overflow-y: visible;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 177, 106, 0.16), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(212, 177, 106, 0.11), transparent 22%),
    linear-gradient(145deg, #060606 0%, #0d0b09 56%, #080706 100%);
}

.home-hero::before,
.home-hero::after {
  display: none;
}

.hero-premium-shell {
  position: relative;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
  min-height: calc(100vh - var(--header-height));
  padding: clamp(28px, 4vh, 44px) 0;
  display: flex;
  align-items: center;
}

.hero-grid-fade,
.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-fade {
  background:
    linear-gradient(rgba(212, 177, 106, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 177, 106, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 88%);
  opacity: 0.18;
}

.hero-ambient {
  filter: blur(12px);
}

.hero-ambient-left {
  background: radial-gradient(circle at 22% 28%, rgba(212, 177, 106, 0.16), transparent 34%);
}

.hero-ambient-right {
  background: radial-gradient(circle at 76% 36%, rgba(156, 116, 49, 0.22), transparent 28%);
}

.premium-hero-copy {
  min-width: 0;
  padding: 0;
  font-family: var(--font-ui);
  max-width: 760px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 177, 106, 0.18), rgba(212, 177, 106, 0.85));
}

.premium-hero-title {
  max-width: none;
  font-size: clamp(1.95rem, 3.2vw, 3.55rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.008em;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.premium-hero-title span {
  display: block;
  white-space: nowrap;
}

.home-hero .hero-subtitle {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(245, 239, 228, 0.76);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.16vw, 1.08rem);
  line-height: 1.78;
}

.premium-hero-actions {
  margin-top: 34px;
  gap: 16px;
}

.home-hero .button {
  min-height: 56px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.home-hero .button-primary {
  color: #090909;
  background: linear-gradient(135deg, #ecd39b 0%, #d4b16a 48%, #a97b36 100%);
  box-shadow: 0 14px 30px rgba(154, 113, 44, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.home-hero .button-secondary {
  color: #ffffff;
  border-color: rgba(212, 177, 106, 0.32);
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.05), rgba(255, 248, 236, 0.02));
}

.home-hero .button:hover {
  transform: translateY(-2px);
}

.home-hero .button-primary:hover {
  box-shadow: 0 18px 38px rgba(154, 113, 44, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.home-hero .button-secondary:hover {
  border-color: rgba(212, 177, 106, 0.46);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.hero-brand-line {
  margin: 26px 0 0;
  color: rgba(245, 239, 228, 0.66);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.floating-card {
  position: absolute;
  width: min(230px, 78%);
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(12, 12, 18, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.floating-card strong,
.journey-step strong,
.feature-card h3,
.pillar-card h3,
.practice-card h3,
.page-card h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.floating-card p,
.feature-card p,
.pillar-card p,
.practice-card p,
.journey-step p,
.page-card p,
.founder-copy p,
.disclaimer,
.cta-copy {
  margin: 0;
  line-height: 1.7;
}

.floating-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.floating-card.one {
  top: 0;
  right: 2%;
  animation: driftA 4.2s ease-in-out infinite;
}

.floating-card.two {
  bottom: 86px;
  left: -4%;
  animation: driftB 4.8s ease-in-out infinite;
}

.floating-card.three {
  top: 300px;
  right: -3%;
  animation: driftC 5.2s ease-in-out infinite;
}

@keyframes driftA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes driftB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@keyframes driftC {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.pillar-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(212, 177, 106, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(14, 14, 20, 0.88);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pillar-card::after,
.feature-card::after,
.practice-card::after,
.cta-panel::after,
.founder-card::after,
.journey-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(240px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(212, 177, 106, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.pillar-card:hover::after,
.feature-card:hover::after,
.practice-card:hover::after,
.cta-panel:hover::after,
.founder-card:hover::after,
.journey-detail:hover::after {
  opacity: 1;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -34% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 177, 106, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 177, 106, 0.62);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(212, 177, 106, 0.12);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card.light {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(251, 244, 232, 0.96)),
    rgba(255, 255, 255, 0.96);
  border-color: rgba(212, 177, 106, 0.22);
}

.pillar-card.light .button-secondary {
  color: var(--text-dark);
  background: rgba(212, 177, 106, 0.1);
}

.pillar-card.light p {
  color: var(--muted-dark);
}

.pillar-card.light .pillar-kicker,
.pillar-card.light h3 {
  color: var(--text-dark);
}

.pillar-card.light .icon-wrap {
  background: rgba(212, 177, 106, 0.14);
}

.pillar-card.offset {
  margin-top: 28px;
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(212, 177, 106, 0.1);
  border: 1px solid rgba(212, 177, 106, 0.2);
  color: var(--gold);
}

.pillar-kicker,
.step-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.pillars-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.journey-board {
  margin-top: 40px;
  padding: 30px;
  border: 1px solid rgba(212, 177, 106, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(212, 177, 106, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 246, 236, 0.96));
  box-shadow: 0 20px 40px rgba(23, 20, 13, 0.08);
}

.journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.journey-grid::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 38px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 177, 106, 0.45), rgba(212, 177, 106, 0.8), rgba(212, 177, 106, 0.45));
}

.journey-step {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 177, 106, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.journey-step::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5c684, var(--gold-deep));
  box-shadow: 0 0 0 6px rgba(212, 177, 106, 0.12);
  animation: glowPulse 3.2s ease-in-out infinite;
}

.journey-step strong {
  padding-top: 24px;
}

.journey-step:hover,
.journey-step:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(212, 177, 106, 0.42);
  box-shadow: 0 16px 30px rgba(40, 28, 13, 0.08);
}

.journey-step.is-active {
  border-color: rgba(212, 177, 106, 0.54);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 243, 225, 0.98));
  box-shadow: 0 18px 34px rgba(40, 28, 13, 0.1);
}

.journey-note {
  margin-top: 20px;
  color: var(--muted-dark);
  font-size: 0.98rem;
}

.journey-detail {
  position: relative;
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(212, 177, 106, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(249, 241, 227, 0.96));
  overflow: hidden;
}

.journey-detail-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.journey-detail h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--text-dark);
}

.journey-detail p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.75;
}

.home-page .journey-detail {
  animation: lightFloat 5.4s ease-in-out infinite;
}

.practice-card,
.cta-panel,
.founder-card,
.page-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}

.practice-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  background:
    linear-gradient(135deg, rgba(12, 13, 20, 0.96), rgba(25, 23, 18, 0.96));
  box-shadow: var(--shadow);
  position: relative;
}

.practice-content,
.practice-visual,
.cta-panel,
.founder-card,
.page-card {
  padding: 32px;
}

.practice-visual {
  position: relative;
  background:
    radial-gradient(circle at top, rgba(212, 177, 106, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.practice-stack {
  display: grid;
  gap: 14px;
}

.mini-panel {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.mini-panel strong {
  display: block;
  margin-bottom: 6px;
}

.mini-panel span {
  color: var(--muted);
  font-size: 0.94rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.feature-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(212, 177, 106, 0.18);
  background: rgba(255, 255, 255, 0.82);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(46, 34, 18, 0.12);
  border-color: rgba(212, 177, 106, 0.34);
}

.badge-board {
  margin-top: 34px;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(212, 177, 106, 0.16);
  background:
    radial-gradient(circle at top right, rgba(212, 177, 106, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 239, 223, 0.96));
  box-shadow: 0 22px 48px rgba(35, 27, 14, 0.08);
}

.badge-board-title {
  margin: 0;
  color: var(--text-dark);
  font-family: "Cinzel", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  line-height: 1.18;
}

.badge-board-note {
  max-width: 840px;
  margin: 14px 0 0;
  color: var(--muted-dark);
  line-height: 1.76;
}

.badge-board-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.badge-board-actions .button {
  min-width: 220px;
}

.badge-board-actions .button-secondary {
  background: linear-gradient(135deg, #e3c47f, #c29042);
  border-color: rgba(212, 177, 106, 0.4);
  color: #171107;
  box-shadow: 0 18px 34px rgba(194, 144, 66, 0.22);
}

.badge-board-actions .button-secondary:hover {
  border-color: rgba(212, 177, 106, 0.52);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.badge-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(212, 177, 106, 0.18);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.badge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 40%, transparent 72%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.badge-card:hover {
  transform: translateY(-5px);
}

.badge-card:hover::before {
  opacity: 1;
}

.badge-card.is-unlocked {
  background:
    radial-gradient(circle at top right, rgba(212, 177, 106, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.98), rgba(30, 23, 15, 0.96));
  border-color: rgba(212, 177, 106, 0.34);
  box-shadow: 0 18px 40px rgba(28, 22, 12, 0.18), 0 0 24px rgba(212, 177, 106, 0.12);
}

.badge-card.is-locked {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(243, 234, 217, 0.82));
  border-color: rgba(212, 177, 106, 0.14);
  box-shadow: 0 14px 28px rgba(28, 22, 12, 0.06);
  opacity: 0.76;
}

.badge-card.is-unlocked h3,
.badge-card.is-unlocked .badge-description,
.badge-card.is-unlocked .badge-condition,
.badge-card.is-unlocked .badge-condition strong,
.badge-card.is-unlocked .badge-condition span {
  color: var(--text);
}

.badge-card.is-locked h3 {
  color: var(--text-dark);
}

.badge-card.is-locked .badge-description,
.badge-card.is-locked .badge-condition span {
  color: var(--muted-dark);
}

.badge-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.badge-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(212, 177, 106, 0.24);
  background: rgba(212, 177, 106, 0.12);
  color: var(--gold);
  flex-shrink: 0;
}

.badge-card.is-unlocked .badge-icon {
  box-shadow: 0 0 18px rgba(212, 177, 106, 0.14);
}

.badge-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-icon svg path,
.badge-icon svg circle {
  vector-effect: non-scaling-stroke;
}

.badge-state {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-card.is-unlocked .badge-state {
  color: #141008;
  background: linear-gradient(135deg, #ecd08f, #c49443);
}

.badge-card.is-locked .badge-state {
  color: var(--muted-dark);
  background: rgba(212, 177, 106, 0.1);
}

.badge-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.42;
}

.badge-description,
.badge-condition {
  margin: 0;
  line-height: 1.72;
}

.badge-condition {
  display: grid;
  gap: 6px;
}

.badge-condition strong {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.cta-panel {
  background:
    radial-gradient(circle at left top, rgba(212, 177, 106, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(16, 16, 24, 0.96), rgba(27, 24, 18, 0.96));
  box-shadow: var(--shadow);
  position: relative;
}

.cta-copy {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
}

.founder-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 251, 244, 0.96), rgba(248, 240, 225, 0.96));
  box-shadow: 0 20px 40px rgba(23, 20, 13, 0.08);
  position: relative;
}

.founder-avatar {
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(212, 177, 106, 0.38);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(212, 177, 106, 0.32)),
    linear-gradient(135deg, rgba(22, 18, 11, 0.08), rgba(212, 177, 106, 0.18));
  color: var(--text-dark);
  font-family: "Cinzel", serif;
  font-size: 2.65rem;
}

.founder-copy h3 {
  margin: 12px 0 14px;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.founder-section-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.founder-title-line {
  max-width: none;
  white-space: nowrap;
}

.founder-title-line span {
  color: var(--gold-deep);
  position: relative;
}

.founder-title-line span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.2em;
  background: rgba(212, 177, 106, 0.16);
  z-index: -1;
  border-radius: 999px;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(14, 11, 8, 0.98));
  color: var(--text);
  border-top: 1px solid rgba(212, 177, 106, 0.14);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 42px 0 24px;
}

.footer-brand-mark {
  align-items: flex-start;
  display: inline-flex;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.footer-logo {
  height: auto;
  width: min(280px, 100%);
  max-width: 100%;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: "Cinzel", serif;
  font-size: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 177, 106, 0.12);
  background: rgba(5, 5, 5, 0.34);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 22px;
}

.footer-copy,
.footer-note {
  margin: 0;
  max-width: none;
  color: rgba(207, 207, 207, 0.74);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-note {
  color: rgba(212, 177, 106, 0.76);
  text-align: right;
}

.disclaimer-wrap,
.disclaimer {
  display: none !important;
}

.page-hero {
  padding: 32px 0 56px;
  color: var(--text);
}

.page-hero-card {
  position: relative;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(212, 177, 106, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(10, 10, 16, 0.95), rgba(24, 23, 18, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 177, 106, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 177, 106, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent);
  opacity: 0.36;
}

.page-hero h1 {
  position: relative;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.page-hero p {
  position: relative;
  max-width: 740px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.page-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-main {
  padding: 0 0 80px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 243, 231, 0.95));
  box-shadow: 0 14px 32px rgba(20, 16, 9, 0.08);
}

.page-card.dark {
  background:
    linear-gradient(180deg, rgba(18, 18, 26, 0.96), rgba(12, 12, 17, 0.96));
}

.page-card.dark h3,
.page-card.dark p,
.page-card.dark li {
  color: var(--text);
}

.page-card.dark p,
.page-card.dark li {
  color: var(--muted);
}

.page-card h3 {
  margin: 0 0 10px;
}

.page-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted-dark);
  line-height: 1.75;
}

.page-card li + li {
  margin-top: 8px;
}

.page-card .button {
  margin-top: 18px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.module-card {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 22px;
  text-decoration: none;
  border-radius: 22px;
  border: 1px solid rgba(212, 177, 106, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 243, 231, 0.95));
  box-shadow: 0 14px 32px rgba(20, 16, 9, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 177, 106, 0.56);
  box-shadow: 0 20px 42px rgba(20, 16, 9, 0.12);
}

.module-card span,
.module-card em {
  color: var(--gold-deep);
  font-style: normal;
  font-weight: 700;
}

.module-card strong {
  color: var(--text-dark);
  line-height: 1.45;
}

.module-note {
  margin-top: 18px;
  color: var(--muted-dark);
  line-height: 1.75;
}

.page-footer-link {
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-wrap,
  .practice-card,
  .founder-card,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 520px;
  }

  .pillars-grid,
  .journey-grid,
  .features-grid,
  .module-grid,
  .badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-grid::before {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 74px;
  }

  .hero-premium-shell {
    width: min(calc(100% - 24px), 1400px);
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    gap: 30px;
    padding: 40px 0 60px;
  }

  .header-inner {
    min-height: 74px;
  }

  .header-nav {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero-card,
  .practice-content,
  .practice-visual,
  .cta-panel,
  .founder-card,
  .page-card,
  .badge-board {
    padding: 24px;
  }

  .founder-avatar {
    width: 124px;
    height: 124px;
    font-size: 2.2rem;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 98px;
  }

  .founder-title-line {
    white-space: normal;
  }

  .premium-hero-title {
    font-size: clamp(1.18rem, 5.1vw, 1.55rem);
  }

  .home-hero .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-brand-line {
    font-size: 0.88rem;
    letter-spacing: 0.04em;
  }

  .container {
    width: min(calc(100% - 24px), var(--content));
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 0;
  }

  .brand-logo {
    height: 42px;
    max-width: min(240px, 58vw);
  }

  .header-cta {
    width: auto;
    min-height: 44px;
    padding: 10px 16px;
  }

  .footer-logo {
    height: auto;
    width: min(220px, 100%);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 40px;
  }

  .footer-brand-mark {
    padding: 0;
    border-radius: 0;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0 24px;
  }

  .footer-note {
    text-align: left;
  }

  .hero-subtitle,
  .section-copy,
  .cta-copy,
  .founder-copy p,
  .pillar-card p,
  .feature-card p,
  .practice-card p,
  .journey-step p,
  .page-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .section-title,
  .cta-panel h2,
  .founder-copy h2,
  .page-main h2 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .button-row,
  .page-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .pillars-grid,
  .journey-grid,
  .features-grid,
  .module-grid,
  .badge-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card.offset {
    margin-top: 0;
  }

  .journey-board,
  .founder-card {
    padding: 0;
  }

  .journey-board {
    padding: 20px;
  }

  .journey-step {
    padding: 16px;
  }

  .page-hero-card {
    padding: 24px;
  }

  .hero-art {
    min-height: auto;
  }

  .hero-dashboard {
    min-height: auto;
    padding-top: 0;
  }

  .dashboard-header,
  .dashboard-surface {
    position: static;
  }

  .dashboard-header {
    width: 100%;
  }

  .dashboard-glow,
  .dashboard-surface::before {
    display: none;
  }

  .dashboard-surface {
    position: relative;
    padding: 18px;
    margin-top: 12px;
    min-height: 360px;
  }

  .practice-content,
  .practice-visual,
  .cta-panel,
  .founder-card,
  .page-card,
  .badge-board {
    padding: 22px;
  }

.founder-card {
  gap: 18px;
  text-align: center;
  }
}

/* About page */
.about-page {
  background:
    radial-gradient(circle at top left, rgba(212, 177, 106, 0.08), transparent 22%),
    linear-gradient(180deg, #090909 0%, #12100d 100%);
}

.about-page .site-header {
  background: rgba(12, 10, 8, 0.9);
}

.about-main {
  overflow: hidden;
}

.about-hero {
  position: relative;
  padding: 36px 0 44px;
  background:
    radial-gradient(circle at 12% 10%, rgba(212, 177, 106, 0.16), transparent 18%),
    radial-gradient(circle at 84% 22%, rgba(212, 177, 106, 0.1), transparent 18%),
    linear-gradient(145deg, #080808 0%, #17120c 56%, #0d0c0a 100%);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 80px 0 auto;
  height: 420px;
  background:
    linear-gradient(rgba(212, 177, 106, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 177, 106, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent);
  pointer-events: none;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  padding: 64px 0 28px;
}

.about-hero-copy h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.04;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  max-width: 8.2ch;
}

.about-hero-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(245, 239, 228, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.about-hero-panel {
  position: relative;
  min-height: 560px;
}

.about-market-frame {
  position: absolute;
  inset: 18px 0 0;
  border-radius: 36px;
  border: 1px solid rgba(212, 177, 106, 0.18);
  background:
    radial-gradient(circle at top right, rgba(212, 177, 106, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.02)),
    rgba(12, 10, 8, 0.94);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.about-market-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(212, 177, 106, 0.08), transparent 46%),
    radial-gradient(circle at 70% 26%, rgba(212, 177, 106, 0.12), transparent 20%);
}

.about-market-header {
  display: flex;
  gap: 10px;
  padding: 22px 24px 12px;
}

.about-market-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 177, 106, 0.5);
}

.about-chart-line {
  position: absolute;
  inset: 92px 9% 160px 9%;
  border-radius: 24px;
  border: 1px solid rgba(212, 177, 106, 0.12);
  background:
    linear-gradient(rgba(212, 177, 106, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 177, 106, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.about-chart-line::before {
  content: "";
  position: absolute;
  inset: 14% 8% 18% 8%;
  background: linear-gradient(120deg, transparent 0 4%, rgba(212, 177, 106, 0.75) 4% 6%, transparent 6% 12%, rgba(212, 177, 106, 0.55) 12% 14%, transparent 14% 22%, rgba(212, 177, 106, 0.8) 22% 24%, transparent 24% 34%, rgba(212, 177, 106, 0.6) 34% 36%, transparent 36% 48%, rgba(212, 177, 106, 0.82) 48% 50%, transparent 50% 62%, rgba(212, 177, 106, 0.6) 62% 64%, transparent 64% 78%, rgba(212, 177, 106, 0.92) 78% 80%, transparent 80%);
  clip-path: polygon(0 82%, 8% 76%, 18% 79%, 30% 61%, 38% 66%, 48% 48%, 58% 54%, 68% 30%, 78% 38%, 90% 18%, 100% 24%, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 12px rgba(212, 177, 106, 0.22));
}

.about-chart-bars {
  position: absolute;
  left: 11%;
  right: 11%;
  bottom: 46px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.about-chart-bars i {
  display: block;
  width: 10%;
  min-width: 18px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #efd59b, #b98b3e);
  box-shadow: 0 0 22px rgba(212, 177, 106, 0.18);
  animation: aboutBarPulse 3.2s ease-in-out infinite;
}

.about-chart-bars i:nth-child(1) { height: 62px; animation-delay: 0s; }
.about-chart-bars i:nth-child(2) { height: 94px; animation-delay: 0.2s; }
.about-chart-bars i:nth-child(3) { height: 72px; animation-delay: 0.4s; }
.about-chart-bars i:nth-child(4) { height: 132px; animation-delay: 0.6s; }
.about-chart-bars i:nth-child(5) { height: 98px; animation-delay: 0.8s; }
.about-chart-bars i:nth-child(6) { height: 148px; animation-delay: 1s; }
.about-chart-bars i:nth-child(7) { height: 118px; animation-delay: 1.2s; }
.about-chart-bars i:nth-child(8) { height: 176px; animation-delay: 1.4s; }

@keyframes aboutBarPulse {
  0%, 100% { transform: translateY(0); opacity: 0.94; }
  50% { transform: translateY(-6px); opacity: 1; }
}

.about-hero-badge {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 177, 106, 0.22);
  background: rgba(14, 12, 10, 0.88);
  color: var(--text);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-size: 0.92rem;
}

.badge-top {
  top: 84px;
  right: 24px;
  animation: driftA 4.5s ease-in-out infinite;
}

.badge-middle {
  left: 22px;
  bottom: 144px;
  animation: driftB 4.8s ease-in-out infinite;
}

.badge-bottom {
  right: 42px;
  bottom: 86px;
  animation: driftC 5.2s ease-in-out infinite;
}

.about-section-head {
  max-width: 760px;
}

.about-focus-section {
  position: relative;
}

.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.about-focus-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid rgba(212, 177, 106, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.03)),
    rgba(16, 13, 10, 0.9);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-focus-card::before,
.about-philosophy-card::before,
.about-disclaimer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.12) 44%, transparent 72%);
  pointer-events: none;
  animation: softShimmer 8s linear infinite;
}

.about-focus-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 177, 106, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.about-focus-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 700;
  background: rgba(212, 177, 106, 0.1);
  border: 1px solid rgba(212, 177, 106, 0.22);
}

.about-focus-card h3,
.about-pillar-tile strong,
.about-founder-copy h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.about-focus-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.about-pillars-section {
  background:
    radial-gradient(circle at top left, rgba(212, 177, 106, 0.08), transparent 22%),
    linear-gradient(180deg, #fcf6ec 0%, #f0e2c6 100%);
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.about-pillar-tile {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 172px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(212, 177, 106, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 239, 224, 0.96));
  box-shadow: 0 18px 36px rgba(38, 28, 14, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-pillar-tile:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(249, 240, 222, 0.98), rgba(240, 225, 193, 0.96));
}

.about-pillar-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 177, 106, 0.42);
  box-shadow: 0 24px 42px rgba(38, 28, 14, 0.12);
}

.about-pillar-tile span {
  display: inline-flex;
  width: fit-content;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.about-pillar-tile strong {
  color: var(--text-dark);
  line-height: 1.5;
}

.about-philosophy-section {
  background:
    radial-gradient(circle at right top, rgba(212, 177, 106, 0.12), transparent 18%),
    linear-gradient(180deg, #0b0a09 0%, #14110d 100%);
}

.about-philosophy-card,
.about-disclaimer-card {
  position: relative;
  padding: 38px;
  border-radius: 34px;
  border: 1px solid rgba(212, 177, 106, 0.18);
  background:
    linear-gradient(135deg, rgba(18, 14, 10, 0.96), rgba(31, 24, 16, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-philosophy-card .section-copy,
.about-disclaimer-card .section-copy {
  max-width: 820px;
}

.about-founder-section {
  background:
    radial-gradient(circle at top left, rgba(212, 177, 106, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf5eb 0%, #eddcc0 100%);
}

.about-founder-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 34px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(212, 177, 106, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 236, 216, 0.96));
  box-shadow: 0 22px 44px rgba(32, 24, 13, 0.1);
}

.about-founder-avatar {
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(212, 177, 106, 0.4);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.94), rgba(212, 177, 106, 0.34)),
    linear-gradient(135deg, rgba(22, 18, 11, 0.06), rgba(212, 177, 106, 0.18));
  color: var(--text-dark);
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.about-founder-copy h3 {
  color: var(--text-dark);
}

.about-founder-copy p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.78;
  max-width: 650px;
}

.about-disclaimer-section {
  padding-top: 0;
  background:
    linear-gradient(180deg, #0b0a09 0%, #0d0b0a 100%);
}

/* Analytics page */
.analytics-page {
  background:
    radial-gradient(circle at top left, rgba(212, 177, 106, 0.08), transparent 20%),
    linear-gradient(180deg, #080808 0%, #12100d 100%);
}

.analytics-page .site-header {
  background: rgba(12, 10, 8, 0.92);
}

.analytics-hero {
  padding: 34px 0 26px;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 177, 106, 0.12), transparent 20%),
    linear-gradient(145deg, #080808 0%, #18120d 58%, #0b0a09 100%);
}

.analytics-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 30px;
  align-items: center;
}

.analytics-hero-copy {
  padding: 64px 0 22px;
}

.analytics-hero-copy h1,
.analytics-panel-title {
  margin: 0;
  font-family: "Cinzel", serif;
  line-height: 1.1;
}

.analytics-hero-copy h1 {
  font-size: clamp(2.8rem, 5.6vw, 5rem);
}

.analytics-hero-copy p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(245, 239, 228, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.8;
}

.analytics-note {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 177, 106, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.page-status-banner {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(212, 177, 106, 0.18);
  background: rgba(255, 248, 236, 0.08);
  color: var(--text);
  line-height: 1.7;
  max-width: 720px;
}

.section-light .page-status-banner {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-dark);
  border-color: rgba(212, 177, 106, 0.2);
}

.page-status-banner.is-live {
  border-color: rgba(136, 194, 154, 0.34);
  box-shadow: 0 10px 28px rgba(136, 194, 154, 0.08);
}

.page-status-banner.is-fallback,
.page-status-banner.is-error {
  border-color: rgba(212, 177, 106, 0.26);
}

.analytics-hero-panel {
  min-height: 320px;
  display: grid;
  place-items: center;
}

.analytics-orbit-card {
  position: relative;
  width: min(420px, 100%);
  min-height: 300px;
  border-radius: 34px;
  border: 1px solid rgba(212, 177, 106, 0.16);
  background:
    radial-gradient(circle at center, rgba(212, 177, 106, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.02)),
    rgba(12, 10, 8, 0.9);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.analytics-orbit-card::before,
.analytics-orbit-card::after {
  content: "";
  position: absolute;
  inset: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  border: 1px solid rgba(212, 177, 106, 0.14);
}

.analytics-orbit-card::before {
  width: 190px;
  height: 190px;
}

.analytics-orbit-card::after {
  width: 290px;
  height: 290px;
}

.analytics-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 177, 106, 0.2);
  background: rgba(17, 14, 11, 0.92);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.analytics-chip:nth-child(1) {
  top: 34px;
  left: 34px;
}

.analytics-chip:nth-child(2) {
  top: 128px;
  right: 28px;
}

.analytics-chip:nth-child(3) {
  bottom: 38px;
  left: 72px;
}

.analytics-dashboard-section {
  background:
    linear-gradient(180deg, #090909 0%, #12100d 100%);
}

.analytics-overview-grid,
.pillar-performance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.analytics-grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  margin-top: 18px;
}

.analytics-panel,
.analytics-stat-card,
.insight-card,
.suggestion-card,
.analytics-empty-state {
  position: relative;
  border: 1px solid rgba(212, 177, 106, 0.16);
  border-radius: 28px;
  overflow: hidden;
}

.analytics-panel,
.analytics-empty-state {
  margin-top: 18px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(212, 177, 106, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.06), rgba(255, 248, 236, 0.02)),
    rgba(12, 10, 8, 0.9);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.analytics-panel-title {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.analytics-stat-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.03)),
    rgba(14, 12, 9, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.analytics-stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.analytics-stat-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(212, 177, 106, 0.22);
  background: rgba(212, 177, 106, 0.1);
  color: var(--gold);
}

.analytics-stat-icon svg,
.analytics-chart svg,
.badge-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.analytics-stat-value {
  color: var(--text);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
}

.analytics-stat-card h3,
.recent-test-card h3,
.insight-card h3,
.pillar-performance-card h3 {
  margin: 18px 0 8px;
  color: var(--text);
  font-size: 1.08rem;
}

.analytics-stat-card p,
.recent-test-card p,
.suggestion-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.analytics-chart-wrap {
  margin-top: 22px;
}

.analytics-chart {
  width: 100%;
  height: 320px;
  display: block;
}

.analytics-grid-lines line {
  stroke: rgba(212, 177, 106, 0.12);
  stroke-width: 1;
}

.analytics-grid-lines text,
.analytics-point-label {
  fill: rgba(245, 239, 228, 0.72);
  font-size: 11px;
  font-family: var(--font-ui);
}

.analytics-line-path {
  fill: none;
  stroke: url(#analyticsLineStroke);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.analytics-line-area {
  fill: rgba(212, 177, 106, 0.08);
}

.analytics-chart circle {
  fill: #d4b16a;
  stroke: rgba(12, 10, 8, 0.92);
  stroke-width: 3;
}

.recent-test-card {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(212, 177, 106, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.recent-test-meta,
.pillar-performance-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.recent-test-date {
  color: var(--muted);
}

.recent-test-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.recent-test-score strong {
  color: var(--text);
  font-size: 1.8rem;
}

.recent-test-score span {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.analytics-disabled-button {
  cursor: not-allowed;
  opacity: 0.6;
}

.insights-grid {
  margin-top: 22px;
}

.insight-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.03)),
    rgba(14, 12, 9, 0.9);
}

.insight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.insight-tag,
.insight-empty {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(212, 177, 106, 0.1);
  border: 1px solid rgba(212, 177, 106, 0.16);
  color: var(--text);
}

.insight-empty {
  color: var(--muted);
}

.pillar-performance-grid {
  margin-top: 22px;
}

.pillar-performance-card {
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.03)),
    rgba(14, 12, 9, 0.9);
  border: 1px solid rgba(212, 177, 106, 0.14);
}

.pillar-score-row {
  margin-top: 12px;
}

.pillar-score-row strong {
  color: var(--text);
  font-size: 1.4rem;
}

.pillar-progress-track {
  margin-top: 14px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.pillar-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: rgba(212, 177, 106, 0.18);
}

.pillar-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pillar-status.is-excellent,
.pillar-progress-fill.is-excellent {
  background: linear-gradient(135deg, #f2d693, #c79948);
  color: #171107;
}

.pillar-status.is-good,
.pillar-progress-fill.is-good {
  background: rgba(212, 177, 106, 0.22);
  color: #efd699;
}

.pillar-status.is-practice,
.pillar-progress-fill.is-practice {
  background: rgba(206, 132, 96, 0.2);
  color: #f1b398;
}

.pillar-status.is-empty,
.pillar-progress-fill.is-empty {
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.suggestions-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.suggestion-card {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.03)),
    rgba(14, 12, 9, 0.9);
}

.suggestion-mark {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0d494, #c08e42);
  box-shadow: 0 0 14px rgba(212, 177, 106, 0.22);
}

.analytics-empty-state {
  text-align: center;
}

.analytics-empty-state .section-copy {
  margin-left: auto;
  margin-right: auto;
}

/* Badges page */
.badges-page {
  background:
    radial-gradient(circle at top left, rgba(212, 177, 106, 0.08), transparent 20%),
    linear-gradient(180deg, #090909 0%, #12100d 100%);
}

.badges-page .site-header {
  background: rgba(12, 10, 8, 0.92);
}

.badges-hero {
  padding: 34px 0 26px;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 177, 106, 0.12), transparent 20%),
    linear-gradient(145deg, #080808 0%, #17120d 58%, #0b0a09 100%);
}

.badges-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 30px;
  align-items: center;
}

.badges-hero-copy {
  padding: 64px 0 22px;
}

.badges-hero-copy h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 1.08;
}

.badges-hero-copy p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(245, 239, 228, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.8;
}

.badges-hero-panel {
  min-height: 320px;
  display: grid;
  place-items: center;
}

.badges-hero-orbit {
  position: relative;
  width: min(420px, 100%);
  min-height: 300px;
  border-radius: 34px;
  border: 1px solid rgba(212, 177, 106, 0.16);
  background:
    radial-gradient(circle at center, rgba(212, 177, 106, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.02)),
    rgba(12, 10, 8, 0.9);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.badges-hero-orbit::before,
.badges-hero-orbit::after {
  content: "";
  position: absolute;
  inset: 50%;
  translate: -50% -50%;
  border-radius: 50%;
  border: 1px solid rgba(212, 177, 106, 0.14);
}

.badges-hero-orbit::before {
  width: 190px;
  height: 190px;
}

.badges-hero-orbit::after {
  width: 290px;
  height: 290px;
}

.badges-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 177, 106, 0.2);
  background: rgba(17, 14, 11, 0.92);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.badges-chip:nth-child(1) {
  top: 34px;
  left: 34px;
}

.badges-chip:nth-child(2) {
  top: 128px;
  right: 28px;
}

.badges-chip:nth-child(3) {
  bottom: 38px;
  left: 72px;
}

.badges-hero-orbit.is-interactive {
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.4), 0 0 28px rgba(212, 177, 106, 0.08);
}

.badges-hero-orbit.is-interactive .badges-chip:nth-child(1) {
  transform: translate3d(-4px, -8px, 24px);
}

.badges-hero-orbit.is-interactive .badges-chip:nth-child(2) {
  transform: translate3d(8px, -2px, 34px);
}

.badges-hero-orbit.is-interactive .badges-chip:nth-child(3) {
  transform: translate3d(-2px, 8px, 28px);
}

.badges-collection-section {
  background:
    radial-gradient(circle at top left, rgba(212, 177, 106, 0.08), transparent 18%),
    linear-gradient(180deg, #faf4ea 0%, #efe1c5 100%);
}

.badge-board-page {
  margin-top: 0;
}

.badges-page .badge-card {
  background:
    radial-gradient(circle at top right, rgba(212, 177, 106, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(18, 14, 10, 0.98), rgba(30, 23, 15, 0.96));
  border-color: rgba(212, 177, 106, 0.22);
  box-shadow: 0 18px 40px rgba(28, 22, 12, 0.18);
  opacity: 1;
}

.badges-page .badge-card h3,
.badges-page .badge-card .badge-description,
.badges-page .badge-card .badge-condition,
.badges-page .badge-card .badge-condition strong,
.badges-page .badge-card .badge-condition span {
  color: var(--text);
}

.badges-page .badge-card .badge-icon {
  background: rgba(212, 177, 106, 0.1);
  border-color: rgba(212, 177, 106, 0.22);
  box-shadow: 0 0 18px rgba(212, 177, 106, 0.08);
}

.badges-page .badge-card .badge-state {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.badges-page .badge-card.is-unlocked .badge-state {
  background: linear-gradient(135deg, #ecd08f, #c49443);
  color: #141008;
}

.badges-page .badge-card.is-locked .badge-state {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 239, 228, 0.78);
}

@media (max-width: 1100px) {
  .about-hero-grid,
  .about-founder-card {
    grid-template-columns: 1fr;
  }

  .about-focus-grid,
  .about-pillars-grid,
  .analytics-overview-grid,
  .pillar-performance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-panel {
    min-height: 460px;
  }

  .analytics-hero-grid,
  .analytics-grid-two,
  .badges-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .about-hero {
    padding-bottom: 24px;
  }

  .about-hero-copy {
    padding-top: 42px;
  }

  .about-hero-panel {
    min-height: 400px;
  }

  .about-market-frame,
  .about-philosophy-card,
  .about-founder-card,
  .about-disclaimer-card {
    border-radius: 28px;
  }

  .analytics-hero-copy {
    padding-top: 42px;
  }

  .badges-hero-copy {
    padding-top: 42px;
  }

  .analytics-panel,
  .analytics-empty-state {
    padding: 24px;
    border-radius: 24px;
  }

  .badges-hero-orbit {
    border-radius: 28px;
  }
}

@media (max-width: 560px) {
  .about-hero-grid,
  .about-focus-grid,
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.06;
  }

  .about-hero-panel {
    min-height: 340px;
  }

  .about-market-frame {
    position: relative;
    inset: auto;
    min-height: 340px;
  }

  .about-hero-badge {
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  .badge-top {
    top: 64px;
    right: 14px;
  }

  .badge-middle {
    left: 14px;
    bottom: 122px;
  }

  .badge-bottom {
    right: 18px;
    bottom: 64px;
  }

  .about-focus-card,
  .about-pillar-tile,
  .about-philosophy-card,
  .about-founder-card,
  .about-disclaimer-card {
    padding: 22px;
    border-radius: 24px;
  }

  .about-founder-card {
    gap: 18px;
    text-align: center;
  }

  .about-founder-avatar {
    width: 128px;
    height: 128px;
    font-size: 2.25rem;
  }

  .analytics-overview-grid,
  .pillar-performance-grid {
    grid-template-columns: 1fr;
  }

  .analytics-hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .analytics-note {
    border-radius: 18px;
  }

  .analytics-orbit-card {
    min-height: 260px;
    border-radius: 24px;
  }

  .analytics-chip {
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .analytics-chip:nth-child(1) {
    left: 16px;
    top: 18px;
  }

  .analytics-chip:nth-child(2) {
    right: 16px;
    top: 98px;
  }

  .analytics-chip:nth-child(3) {
    left: 24px;
    bottom: 18px;
  }

  .badges-hero-copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .badges-hero-orbit {
    min-height: 260px;
    border-radius: 24px;
  }

  .badges-chip {
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .badges-chip:nth-child(1) {
    left: 16px;
    top: 18px;
  }

  .badges-chip:nth-child(2) {
    right: 16px;
    top: 98px;
  }

  .badges-chip:nth-child(3) {
    left: 24px;
    bottom: 18px;
  }

  .recent-test-meta,
  .pillar-performance-top,
  .recent-test-score {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Homepage-only redesign */
.home-page {
  background:
    radial-gradient(circle at top left, rgba(212, 177, 106, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.03)),
    rgba(16, 13, 10, 0.9);
}

.home-page .hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 177, 106, 0.16), transparent 20%),
    radial-gradient(circle at 80% 14%, rgba(98, 72, 33, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.08), rgba(255, 248, 236, 0.03)),
    rgba(16, 13, 10, 0.9);
}

.home-page .hero::after {
  inset: 0 0 auto;
  height: 460px;
  background:
    linear-gradient(rgba(212, 177, 106, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 177, 106, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
}

.home-page .hero-wrap {
  gap: clamp(28px, 4vw, 56px);
}

.home-page .hero-copy {
  max-width: 590px;
}

.home-page .hero-title {
  max-width: 10.6ch;
  font-size: clamp(3rem, 5vw, 5.15rem);
  font-weight: 600;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.home-page .hero-subtitle {
  max-width: 560px;
  color: rgba(245, 239, 228, 0.78);
}

.home-page .button-primary {
  background: linear-gradient(135deg, #e5c98b, #c59a4c 55%, #a97b36 100%);
  box-shadow: 0 18px 40px rgba(171, 127, 53, 0.34);
}

.home-page .button-secondary {
  background: rgba(255, 248, 236, 0.04);
  border-color: rgba(212, 177, 106, 0.34);
}

.home-page .pillars-section {
  position: relative;
  background:
    linear-gradient(180deg, #0b0a09 0%, #14110d 100%);
}

.home-page .pillars-section .section-copy {
  max-width: 760px;
}

.home-page .pillars-grid {
  gap: 22px;
}

.home-page .pillar-card {
  border-radius: 28px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(22, 18, 13, 0.98), rgba(11, 10, 8, 0.98));
  border-color: rgba(212, 177, 106, 0.14);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.home-page .pillar-card.light {
  background:
    linear-gradient(180deg, rgba(252, 247, 239, 0.98), rgba(239, 228, 206, 0.98));
}

.home-page .pillar-card:nth-child(2n) {
  transform: translateY(24px);
}

.home-page .pillar-card:hover {
  transform: translateY(-8px);
}

.home-page .pillar-card:nth-child(2n):hover {
  transform: translateY(16px);
}

.home-page .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(212, 177, 106, 0.12);
  border-color: rgba(212, 177, 106, 0.26);
}

.home-page .journey-section {
  background:
    linear-gradient(180deg, #f7f0e4 0%, #ebdcc0 100%);
}

.home-page .journey-board {
  border-radius: 34px;
  padding: 36px;
  background:
    radial-gradient(circle at right top, rgba(212, 177, 106, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 238, 223, 0.95));
  box-shadow: 0 24px 50px rgba(50, 35, 16, 0.1);
}

.home-page .journey-step {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(34, 26, 14, 0.08);
  animation: lightFloat 4s ease-in-out infinite;
}

.home-page .journey-grid .journey-step:nth-child(1) { animation-delay: 0s; }
.home-page .journey-grid .journey-step:nth-child(2) { animation-delay: 0.35s; }
.home-page .journey-grid .journey-step:nth-child(3) { animation-delay: 0.7s; }
.home-page .journey-grid .journey-step:nth-child(4) { animation-delay: 1.05s; }
.home-page .journey-grid .journey-step:nth-child(5) { animation-delay: 1.4s; }
.home-page .journey-grid .journey-step:nth-child(6) { animation-delay: 1.75s; }
.home-page .journey-grid .journey-step:nth-child(7) { animation-delay: 2.1s; }
.home-page .journey-grid .journey-step:nth-child(8) { animation-delay: 2.45s; }

.home-page .practice-section {
  background:
    radial-gradient(circle at left top, rgba(212, 177, 106, 0.1), transparent 24%),
    linear-gradient(180deg, #0d0b09 0%, #090807 100%);
}

.home-page .practice-card {
  border-radius: 34px;
  grid-template-columns: minmax(0, 1.2fr) 320px;
  background:
    linear-gradient(135deg, #17120d 0%, #241a10 52%, #120f0b 100%);
  border-color: rgba(212, 177, 106, 0.18);
}

.home-page .practice-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top, rgba(212, 177, 106, 0.24), transparent 40%);
}

.home-page .mini-panel {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.home-page .progress-section {
  background:
    linear-gradient(180deg, #f4ecdf 0%, #e8d8bb 100%);
}

.home-page .why-section {
  background:
    linear-gradient(180deg, #fffaf3 0%, #f2e3c9 100%);
}

.home-page .features-grid {
  gap: 20px;
}

.home-page .feature-card {
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 234, 216, 0.95));
  box-shadow: 0 18px 34px rgba(46, 34, 18, 0.09);
  animation: lightFloat 4.8s ease-in-out infinite;
}

.home-page .feature-card::before,
.home-page .journey-detail::before,
.home-page .founder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.18) 44%, transparent 70%);
  pointer-events: none;
  animation: softShimmer 7.5s linear infinite;
}

.home-page .feature-card:nth-child(1) { animation-delay: 0s; }
.home-page .feature-card:nth-child(2) { animation-delay: 0.6s; }
.home-page .feature-card:nth-child(3) { animation-delay: 1.2s; }
.home-page .feature-card:nth-child(4) { animation-delay: 1.8s; }

.home-page .pillars-grid .pillar-card:nth-child(1) { animation-delay: 80ms; }
.home-page .pillars-grid .pillar-card:nth-child(2) { animation-delay: 140ms; }
.home-page .pillars-grid .pillar-card:nth-child(3) { animation-delay: 200ms; }
.home-page .pillars-grid .pillar-card:nth-child(4) { animation-delay: 260ms; }
.home-page .pillars-grid .pillar-card:nth-child(5) { animation-delay: 320ms; }
.home-page .pillars-grid .pillar-card:nth-child(6) { animation-delay: 380ms; }
.home-page .pillars-grid .pillar-card:nth-child(7) { animation-delay: 440ms; }
.home-page .pillars-grid .pillar-card:nth-child(8) { animation-delay: 500ms; }

.home-page .journey-grid .journey-step:nth-child(1) { animation-delay: 60ms; }
.home-page .journey-grid .journey-step:nth-child(2) { animation-delay: 120ms; }
.home-page .journey-grid .journey-step:nth-child(3) { animation-delay: 180ms; }
.home-page .journey-grid .journey-step:nth-child(4) { animation-delay: 240ms; }
.home-page .journey-grid .journey-step:nth-child(5) { animation-delay: 300ms; }
.home-page .journey-grid .journey-step:nth-child(6) { animation-delay: 360ms; }
.home-page .journey-grid .journey-step:nth-child(7) { animation-delay: 420ms; }
.home-page .journey-grid .journey-step:nth-child(8) { animation-delay: 480ms; }

.home-page .features-grid .feature-card:nth-child(1) { animation-delay: 70ms; }
.home-page .features-grid .feature-card:nth-child(2) { animation-delay: 140ms; }
.home-page .features-grid .feature-card:nth-child(3) { animation-delay: 210ms; }
.home-page .features-grid .feature-card:nth-child(4) { animation-delay: 280ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.home-page .feature-card:nth-child(1) {
  border-top: 4px solid #d4b16a;
}

.home-page .feature-card:nth-child(2) {
  border-top: 4px solid #b98d44;
}

.home-page .feature-card:nth-child(3) {
  border-top: 4px solid #7696d7;
}

.home-page .feature-card:nth-child(4) {
  border-top: 4px solid #8bb695;
}

.home-page .final-cta-section {
  background:
    radial-gradient(circle at right center, rgba(212, 177, 106, 0.1), transparent 20%),
    linear-gradient(180deg, #0a0908 0%, #120f0b 100%);
}

.home-page .cta-panel {
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(18, 14, 10, 0.98), rgba(39, 29, 16, 0.96));
  border-color: rgba(212, 177, 106, 0.2);
}

.home-page .founder-section {
  background:
    linear-gradient(180deg, #f7f0e2 0%, #ecdcc1 100%);
}

.home-page .founder-section-intro .section-title {
  max-width: none;
}

.home-page .founder-section-intro .section-copy {
  max-width: 680px;
}

.home-page .founder-card {
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(244, 233, 211, 0.98));
  border: 1px solid rgba(212, 177, 106, 0.18);
  box-shadow: 0 24px 50px rgba(49, 35, 15, 0.1);
  animation: lightFloat 5.6s ease-in-out infinite;
}

@media (max-width: 1100px) {
  .home-page .practice-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-page .hero-wrap {
    gap: 30px;
  }

  .home-page .pillar-card:nth-child(2n),
  .home-page .pillar-card:nth-child(2n):hover {
    transform: none;
  }

  .home-page .journey-board,
  .home-page .cta-panel,
  .home-page .founder-card,
  .home-page .practice-card {
    border-radius: 28px;
  }
}

@media (max-width: 560px) {
  .home-page .hero-title {
    max-width: none;
    font-size: clamp(1.18rem, 5.1vw, 1.55rem);
  }

  .home-page .hero-subtitle {
    color: rgba(245, 239, 228, 0.8);
  }

  .home-page .journey-board,
  .home-page .cta-panel,
  .home-page .founder-card,
  .home-page .practice-card,
  .home-page .feature-card,
  .home-page .pillar-card {
    border-radius: 24px;
  }

  .journey-detail {
    padding: 18px;
    border-radius: 20px;
  }
}

/* Leaderboard */

.leaderboard-side-card,
.leaderboard-state-card,
.leaderboard-table-shell,
.leaderboard-my-rank-card {
  border-radius: 24px;
  border: 1px solid rgba(212, 177, 106, 0.18);
  background: linear-gradient(180deg, rgba(24, 20, 13, 0.96), rgba(11, 11, 11, 0.98));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.leaderboard-side-card {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.leaderboard-card-copy {
  color: var(--muted);
  margin: 0;
}

.leaderboard-filter-row {
  display: grid;
  gap: 10px;
}

.leaderboard-filter-row label,
.leaderboard-mini-label,
.leaderboard-page-status,
.leaderboard-level-text {
  color: rgba(242, 223, 182, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.leaderboard-filter-select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(212, 177, 106, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
}

.leaderboard-my-rank-card {
  padding: 18px 20px;
}

.leaderboard-user-rank {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.leaderboard-user-rank strong {
  display: block;
  margin-top: 6px;
  font-size: 1.3rem;
  color: var(--gold);
}

.leaderboard-section {
  padding-top: 0;
}

.leaderboard-state-card {
  padding: 28px;
  text-align: center;
  color: var(--text);
}

.leaderboard-state-card.is-error {
  border-color: rgba(239, 93, 93, 0.36);
  color: #ffcbc7;
}

.leaderboard-table-wrap {
  display: grid;
  gap: 20px;
}

.leaderboard-table-shell {
  overflow: hidden;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}

.leaderboard-table th,
.leaderboard-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(212, 177, 106, 0.12);
  text-align: left;
}

.leaderboard-table th {
  color: rgba(242, 223, 182, 0.74);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leaderboard-table td {
  color: var(--text);
}

.leaderboard-level {
  display: grid;
  gap: 4px;
}

.leaderboard-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 177, 106, 0.24);
  background: rgba(212, 177, 106, 0.12);
  color: #f0d699;
  font-weight: 700;
}

.leaderboard-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .leaderboard-user-rank {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .leaderboard-pagination {
    flex-direction: column;
  }

  .leaderboard-table,
  .leaderboard-table thead,
  .leaderboard-table tbody,
  .leaderboard-table th,
  .leaderboard-table td,
  .leaderboard-table tr {
    display: block;
  }

  .leaderboard-table thead {
    display: none;
  }

  .leaderboard-table tr {
    padding: 18px;
    border-bottom: 1px solid rgba(212, 177, 106, 0.12);
  }

  .leaderboard-table td {
    padding: 8px 0;
    border-bottom: 0;
  }

  .leaderboard-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: rgba(242, 223, 182, 0.72);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
}

/* TopInvestor typography system */

body,
button,
input,
select,
textarea,
table,
.header-nav a,
.button,
.feature-card,
.pillar-card,
.analytics-page,
.badge-card,
.leaderboard-page,
.site-footer {
  font-family: var(--font-ui);
}

.hero-title,
.premium-hero-title,
.section-title,
.page-hero h1,
.analytics-hero-copy h1,
.founder-title-line,
.pillar-card > h3,
.badge-board-title,
.cta-panel h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-title,
.premium-hero-title,
.home-page .hero-title {
  color: var(--text-hero);
  font-size: var(--type-hero);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-subtitle,
.analytics-hero-copy p,
.signup-intro > p,
.section-copy {
  max-width: var(--content-readable);
  color: var(--text);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-subtitle {
  margin-bottom: 40px;
}

.section-title {
  color: var(--text-hero);
  font-size: var(--type-section);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.section-copy,
.feature-card p,
.pillar-card p,
.practice-card p,
.cta-copy,
.founder-copy p,
.footer-links a,
.analytics-stat-card p,
.recent-test-card p,
.suggestion-card p,
.leaderboard-card-copy {
  max-width: var(--content-readable);
  color: var(--text);
  font-size: var(--type-body);
  font-weight: 400;
  line-height: 1.8;
}

.header-nav a {
  color: var(--muted);
  font-size: var(--type-small);
  font-weight: 500;
}

.button,
.signup-submit,
.social-auth-button,
.ti-btn {
  min-height: auto;
  padding: 16px 32px;
  border-radius: 14px;
  font-family: var(--font-ui);
  font-size: var(--type-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.feature-card,
.pillar-card,
.analytics-stat-card,
.analytics-panel,
.insight-card,
.suggestion-card,
.signup-card,
.leaderboard-side-card {
  padding: 32px;
}

.feature-card h3,
.analytics-stat-card h3,
.recent-test-card h3,
.insight-card h3,
.pillar-performance-card h3,
.signup-benefit h2,
.footer-links h3,
.leaderboard-table td,
.leaderboard-user-rank strong {
  font-family: var(--font-ui);
  font-size: var(--type-h3);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
}

.analytics-panel-title,
.signup-card-top h2,
.badge-card h3,
.recent-test-card h3 {
  font-family: var(--font-ui);
  font-size: var(--type-h2);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.eyebrow,
.pillar-kicker,
.step-label,
.leaderboard-table th,
.leaderboard-mini-label,
.leaderboard-page-status,
.form-error,
.form-success,
.disclaimer {
  font-family: var(--font-ui);
  font-size: var(--type-caption);
  font-weight: 500;
}

.analytics-grid-lines text,
.analytics-point-label {
  font-family: var(--font-ui);
}

.section-light .section-title,
.section-light .feature-card h3,
.section-light .journey-step strong,
.section-light .practice-card h3,
.section-light .cta-panel h2,
.section-light .founder-copy h3,
.section-light .founder-copy h2,
.section-light .pillar-card h3 {
  color: var(--text-dark);
}

@media (max-width: 980px) {
  .hero-title,
  .premium-hero-title,
  .home-page .hero-title {
    font-size: var(--type-hero-tablet);
  }

  .section-title {
    font-size: 36px;
  }

  .hero-subtitle,
  .analytics-hero-copy p,
  .signup-intro > p,
  .section-copy {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  p,
  .section-copy,
  .feature-card p,
  .pillar-card p,
  .practice-card p,
  .cta-copy,
  .founder-copy p {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-title,
  .premium-hero-title,
  .home-page .hero-title,
  .analytics-hero-copy h1,
  .signup-intro h1 {
    font-size: var(--type-hero-mobile);
    line-height: 1.12;
  }

  .section-title {
    font-size: var(--type-section-mobile);
  }

  .hero-subtitle,
  .analytics-hero-copy p,
  .signup-intro > p {
    font-size: 18px;
    line-height: 1.65;
  }

  .button,
  .signup-submit,
  .social-auth-button,
  .ti-btn {
    width: 100%;
    padding: 15px 24px;
  }

  .feature-card,
  .pillar-card,
  .analytics-stat-card,
  .analytics-panel,
  .insight-card,
  .suggestion-card,
  .signup-card,
  .leaderboard-side-card {
    padding: 24px;
  }
}
