:root {
  --ink: #111318;
  --ink-soft: #2c3038;
  --paper: #f5f0e8;
  --paper-white: #ffffff;
  --line: #ddd6ca;
  --muted: #6f6a62;
  --red: #b10f16;
  --red-dark: #7a0b10;
  --navy: #061b38;
  --navy-soft: #0b2f5d;
  --gold: #d1a34d;
  --charcoal: #111318;
  --shadow: 0 22px 60px rgba(17, 19, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Pretendard",
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:where(a, button):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

:where(a, strong, .button) {
  overflow-wrap: anywhere;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 64px);
  color: var(--paper-white);
  background: rgba(6, 27, 56, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 32px;
  color: var(--paper-white);
  background: var(--red);
  border-radius: 4px;
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 15px;
  font-weight: 800;
}

.nav-links a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-call {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--paper-white);
  background: var(--red);
  border-radius: 4px;
  opacity: 1 !important;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper-white);
  background:
    linear-gradient(90deg, rgba(6, 27, 56, 0.24), rgba(17, 19, 24, 0.08)),
    url("./assets/youtube-skin.png");
  background-position: center;
  background-size: cover;
}

.video-backdrop,
.video-backdrop video,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.video-backdrop {
  z-index: 0;
  pointer-events: none;
  background-image: url("./assets/youtube-skin.png");
  background-position: center;
  background-size: cover;
}

.video-backdrop video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.03) brightness(1.14);
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 15, 30, 0.08) 0%, rgba(5, 15, 30, 0.02) 42%, rgba(5, 15, 30, 0) 100%),
    linear-gradient(0deg, rgba(5, 15, 30, 0.06) 0%, rgba(5, 15, 30, 0) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  isolation: isolate;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 96px);
  margin-right: auto;
  padding: 0 0 clamp(46px, 8vh, 88px);
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -26px;
  bottom: clamp(20px, 3vh, 34px);
  left: -22px;
  width: min(680px, calc(100% + 12px));
  background: transparent;
  border-left: 2px solid rgba(209, 163, 77, 0.42);
  border-radius: 8px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--paper-white);
  font-size: clamp(58px, 8.6vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  margin: 20px 0 0;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-subtitle,
.hero-copy {
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  color: var(--paper-white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(177, 15, 22, 0.34);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--paper-white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.11);
}

.button.dark {
  color: var(--paper-white);
  background: var(--navy);
}

.button.ghost {
  color: var(--paper-white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(3, 10, 20, 0.38);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.action-bar {
  color: var(--paper-white);
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-soft) 48%, var(--charcoal) 100%);
}

.action-bar-inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 126px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

.action-bar p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--paper-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--line);
}

.trust-strip > .metric-tile {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 22px;
  background: var(--paper-white);
}

.trust-strip strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.trust-strip > .metric-tile > span {
  color: var(--muted);
  font-weight: 700;
}


.trust-strip strong span {
  color: inherit;
}

.metric-tile {
  position: relative;
  overflow: hidden;
}

.metric-signal,
.metric-register,
.metric-route {
  width: min(154px, 100%);
  height: 22px;
  min-height: 0;
  margin-top: 13px;
  padding: 0;
  background: transparent;
}

.metric-signal {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  border-bottom: 1px solid rgba(6, 27, 56, 0.18);
}

.metric-signal span {
  flex: 1;
  min-width: 3px;
  display: block;
  background: var(--gold);
  transform: scaleY(0.18);
  transform-origin: bottom;
}

.metric-signal-years span:nth-child(1) { height: 26%; }
.metric-signal-years span:nth-child(2) { height: 48%; }
.metric-signal-years span:nth-child(3) { height: 36%; }
.metric-signal-years span:nth-child(4) { height: 68%; }
.metric-signal-years span:nth-child(5) { height: 100%; }
.metric-signal-cases span:nth-child(1) { height: 22%; }
.metric-signal-cases span:nth-child(2) { height: 44%; }
.metric-signal-cases span:nth-child(3) { height: 58%; }
.metric-signal-cases span:nth-child(4) { height: 76%; }
.metric-signal-cases span:nth-child(5) { height: 100%; }

.trust-strip.metrics-loop .metric-signal span {
  animation: metricSignalRise 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.trust-strip.metrics-loop .metric-signal span:nth-child(2) { animation-delay: 70ms; }
.trust-strip.metrics-loop .metric-signal span:nth-child(3) { animation-delay: 140ms; }
.trust-strip.metrics-loop .metric-signal span:nth-child(4) { animation-delay: 210ms; }
.trust-strip.metrics-loop .metric-signal span:nth-child(5) { animation-delay: 280ms; }

.metric-register {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  border-top: 1px solid rgba(6, 27, 56, 0.18);
  border-bottom: 1px solid rgba(6, 27, 56, 0.18);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.metric-register i {
  display: block;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.16);
  transform-origin: left;
}

.trust-strip.metrics-loop .metric-register i {
  animation: metricRuleDraw 760ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.metric-route {
  display: flex;
  align-items: center;
  gap: 5px;
}

.metric-route span {
  flex: 1;
  height: 3px;
  display: block;
  background: rgba(6, 27, 56, 0.14);
  transform: scaleX(0.16);
  transform-origin: left;
}

.metric-route span:nth-child(1) { background: var(--red); }
.metric-route span:nth-child(2) { background: rgba(177, 15, 22, 0.66); }
.metric-route span:nth-child(3) { background: var(--gold); }

.trust-strip.metrics-loop .metric-route span {
  animation: metricRouteDraw 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.trust-strip.metrics-loop .metric-route span:nth-child(2) { animation-delay: 110ms; }
.trust-strip.metrics-loop .metric-route span:nth-child(3) { animation-delay: 220ms; }

@keyframes metricSignalRise {
  from { transform: scaleY(0.18); opacity: 0.4; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes metricRuleDraw {
  from { transform: scaleX(0.16); opacity: 0.35; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes metricRouteDraw {
  from { transform: scaleX(0.16); opacity: 0.35; }
  to { transform: scaleX(1); opacity: 1; }
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 118px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.js-ready .intro > .section-copy[data-reveal],
.js-ready .intro > .quote-panel[data-reveal] {
  transition-duration: 620ms;
}

.js-ready .intro > .section-copy[data-reveal] {
  transform: translateX(-64px);
}

.js-ready .intro > .quote-panel[data-reveal] {
  transform: translateX(64px);
  transition-delay: 120ms;
}

.js-ready .intro > .section-copy[data-reveal].is-visible,
.js-ready .intro > .quote-panel[data-reveal].is-visible {
  transform: translateX(0);
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-copy p:not(.section-label),
.profile-copy p,
.channel-copy p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 20px);
}

.quote-panel {
  padding: clamp(28px, 4vw, 42px);
  color: var(--paper-white);
  background: var(--charcoal);
  border-left: 6px solid var(--red);
  border-radius: 8px;
}

.quote-panel p {
  margin: 0;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.45;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.section-actions {
  display: flex;
  align-items: center;
  padding-bottom: 6px;
}

.text-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  transition: gap 180ms ease, color 180ms ease;
}

.text-action:hover {
  gap: 12px;
  color: var(--red-dark);
}

.text-action span:last-child {
  font-size: 18px;
  line-height: 1;
}

.muted-action {
  color: var(--navy);
}

.action-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--paper-white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 11px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

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

.topic-grid article {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.topic-grid article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--red);
  transition: width 220ms ease;
}

.topic-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(177, 15, 22, 0.35);
  box-shadow: 0 18px 42px rgba(17, 19, 24, 0.13);
}

.topic-grid article:hover::after {
  width: 100%;
}

.topic-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topic-meta span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.topic-meta b {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.topic-grid h3 {
  margin: 22px 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.topic-grid p {
  margin: 0;
  color: var(--muted);
}


.topic-mini-chart {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  align-items: end;
  height: 42px;
  margin-top: 22px;
  padding: 9px 10px 0;
  background: linear-gradient(180deg, rgba(6, 27, 56, 0.06), rgba(177, 15, 22, 0.05));
  border: 1px solid rgba(6, 27, 56, 0.08);
  border-radius: 6px;
}

.topic-mini-chart span {
  display: block;
  min-height: 8px;
  background: linear-gradient(180deg, var(--navy-soft), var(--red));
  border-radius: 3px 3px 0 0;
  transform: scaleY(0.22);
  transform-origin: bottom;
}

.topic-mini-chart span:nth-child(1) { height: 38%; }
.topic-mini-chart span:nth-child(2) { height: 76%; }
.topic-mini-chart span:nth-child(3) { height: 54%; }
.topic-mini-chart span:nth-child(4) { height: 100%; }

.topic-grid article.is-visible .topic-mini-chart span {
  animation: topicChartRise 860ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.topic-grid article.is-visible .topic-mini-chart span:nth-child(2) { animation-delay: 80ms; }
.topic-grid article.is-visible .topic-mini-chart span:nth-child(3) { animation-delay: 160ms; }
.topic-grid article.is-visible .topic-mini-chart span:nth-child(4) { animation-delay: 240ms; }

@keyframes topicChartRise {
  from { transform: scaleY(0.22); opacity: 0.44; }
  to { transform: scaleY(1); opacity: 1; }
}

.topic-mini-chart.chart-risk {
  background: linear-gradient(180deg, rgba(177, 15, 22, 0.08), rgba(209, 163, 77, 0.1));
}

.topic-mini-chart.chart-risk span:nth-child(1) { height: 28%; }
.topic-mini-chart.chart-risk span:nth-child(2) { height: 100%; }
.topic-mini-chart.chart-risk span:nth-child(3) { height: 46%; }
.topic-mini-chart.chart-risk span:nth-child(4) { height: 68%; }

.topic-mini-chart.chart-flow,
.topic-mini-chart.chart-route {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  background: linear-gradient(180deg, rgba(6, 27, 56, 0.08), rgba(209, 163, 77, 0.08));
}

.topic-mini-chart.chart-flow span,
.topic-mini-chart.chart-route span {
  height: 4px;
  min-height: 4px;
  border-radius: 999px;
  transform: translateY(var(--chart-y, 0)) scaleX(0.18);
  transform-origin: left center;
}

.topic-mini-chart.chart-flow span { background: var(--gold); }
.topic-mini-chart.chart-flow span:nth-child(1) { --chart-y: 7px; }
.topic-mini-chart.chart-flow span:nth-child(2) { --chart-y: -4px; }
.topic-mini-chart.chart-flow span:nth-child(3) { --chart-y: 3px; }
.topic-mini-chart.chart-flow span:nth-child(4) { --chart-y: -9px; }

.topic-grid article.is-visible .topic-mini-chart.chart-flow span,
.topic-grid article.is-visible .topic-mini-chart.chart-route span {
  animation: topicFlowDraw 860ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes topicFlowDraw {
  from { transform: translateY(var(--chart-y, 0)) scaleX(0); opacity: 0.25; }
  to { transform: translateY(var(--chart-y, 0)) scaleX(1); opacity: 1; }
}

.topic-mini-chart.chart-evidence {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  background: radial-gradient(circle at center, rgba(209, 163, 77, 0.14), rgba(6, 27, 56, 0.04));
}

.topic-mini-chart.chart-evidence span {
  width: 12px;
  height: 12px;
  min-height: 12px;
  justify-self: center;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: scale(0.35);
}

.topic-mini-chart.chart-evidence span:nth-child(2),
.topic-mini-chart.chart-evidence span:nth-child(4) {
  background: var(--gold);
}

.topic-grid article.is-visible .topic-mini-chart.chart-evidence span {
  animation: topicEvidencePop 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.topic-grid article.is-visible .topic-mini-chart.chart-evidence span:nth-child(2),
.topic-grid article.is-visible .topic-mini-chart.chart-evidence span:nth-child(4) {
  animation-delay: 100ms;
}

@keyframes topicEvidencePop {
  from { transform: scale(0.2); opacity: 0.2; }
  to { transform: scale(1); opacity: 1; }
}

.topic-mini-chart.chart-impact {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 10px;
  background: rgba(177, 15, 22, 0.06);
}

.topic-mini-chart.chart-impact span {
  flex: 1;
  height: 8px;
  min-height: 8px;
  background: var(--red);
  border-radius: 999px;
  transform: scaleX(0.2);
  transform-origin: left center;
}

.topic-mini-chart.chart-impact span:nth-child(2) { opacity: 0.78; }
.topic-mini-chart.chart-impact span:nth-child(3) { opacity: 0.56; }
.topic-mini-chart.chart-impact span:nth-child(4) { opacity: 0.36; }

.topic-grid article.is-visible .topic-mini-chart.chart-impact span {
  animation: topicSegmentFill 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.topic-grid article.is-visible .topic-mini-chart.chart-impact span:nth-child(2) { animation-delay: 100ms; }
.topic-grid article.is-visible .topic-mini-chart.chart-impact span:nth-child(3) { animation-delay: 180ms; }
.topic-grid article.is-visible .topic-mini-chart.chart-impact span:nth-child(4) { animation-delay: 260ms; }

@keyframes topicSegmentFill {
  from { transform: scaleX(0); opacity: 0.2; }
  to { transform: scaleX(1); }
}

.topic-mini-chart.chart-route {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding-left: 10px;
  padding-right: 10px;
}

.topic-mini-chart.chart-route span { background: var(--navy-soft); }
.topic-mini-chart.chart-route span:nth-child(1) { --chart-y: 8px; }
.topic-mini-chart.chart-route span:nth-child(2) { --chart-y: 3px; }
.topic-mini-chart.chart-route span:nth-child(3) { --chart-y: -2px; }
.topic-mini-chart.chart-route span:nth-child(4) { --chart-y: -8px; }
.topic-mini-chart.chart-route span:nth-child(5) { --chart-y: -13px; }

.topic-mini-chart.chart-process {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  background: rgba(6, 27, 56, 0.05);
}

.topic-mini-chart.chart-process::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  left: 18px;
  height: 2px;
  background: rgba(6, 27, 56, 0.25);
  transform: translateY(-50%);
}

.topic-mini-chart.chart-process span {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  min-height: 15px;
  justify-self: center;
  background: var(--paper-white);
  border: 3px solid var(--red);
  border-radius: 50%;
  transform: scale(0.35);
}

.topic-mini-chart.chart-process span:nth-child(2) { border-color: var(--gold); }
.topic-mini-chart.chart-process span:nth-child(3) { border-color: var(--navy); }
.topic-mini-chart.chart-process span:nth-child(4) { border-color: var(--muted); }

.topic-grid article.is-visible .topic-mini-chart.chart-process span {
  animation: topicEvidencePop 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.topic-grid article.is-visible .topic-mini-chart.chart-process span:nth-child(2) { animation-delay: 100ms; }
.topic-grid article.is-visible .topic-mini-chart.chart-process span:nth-child(3) { animation-delay: 180ms; }
.topic-grid article.is-visible .topic-mini-chart.chart-process span:nth-child(4) { animation-delay: 260ms; }

.topic-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.topic-actions a {
  min-height: 40px;
  flex: 1 1 120px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.topic-actions a:first-child {
  color: var(--red);
}

.topic-actions a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.signal-marquee {
  overflow: hidden;
  padding: 18px 0;
  color: var(--paper-white);
  background: var(--navy);
  border-top: 1px solid rgba(209, 163, 77, 0.5);
  border-bottom: 1px solid rgba(209, 163, 77, 0.5);
}

.signal-marquee-track {
  display: flex;
  width: max-content;
  animation: signalMarquee 24s linear infinite;
  will-change: transform;
}

.signal-marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
}

.signal-marquee span {
  color: var(--paper-white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.signal-marquee i {
  color: var(--gold);
  font-size: 16px;
  font-style: normal;
}

@keyframes signalMarquee {
  to { transform: translateX(-50%); }
}

.post-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(6, 27, 56, 0.08), transparent 420px),
    var(--paper);
}

.posts-hero,
.posts-list-section,
.article-shell {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.posts-hero {
  padding: clamp(74px, 9vw, 118px) 0 34px;
}

.posts-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.posts-hero p:not(.section-label) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.posts-list-section {
  padding: 18px 0 clamp(84px, 9vw, 124px);
}

.directory-page {
  background:
    linear-gradient(180deg, rgba(6, 27, 56, 0.1), transparent 520px),
    var(--paper);
}

.directory-hero,
.directory-links,
.directory-content {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.directory-hero {
  padding: clamp(58px, 8vw, 104px) 0 34px;
}

.directory-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.directory-breadcrumbs a:hover {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.directory-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.08;
  letter-spacing: 0;
}

.directory-lead {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.82;
}

.directory-answer {
  max-width: 860px;
  margin-top: 30px;
  padding: 22px 24px;
  color: var(--paper-white);
  background: var(--navy);
  border-left: 5px solid var(--gold);
  border-radius: 4px;
}

.directory-answer strong {
  display: block;
  color: var(--gold);
  font-size: 14px;
}

.directory-answer p {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.75;
}

.directory-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.directory-meta span {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.directory-links {
  padding: 18px 0 8px;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.directory-card {
  min-height: 220px;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.directory-card:hover {
  border-color: var(--gold);
  box-shadow: 0 18px 42px rgba(17, 19, 24, 0.14);
  transform: translateY(-3px);
}

.directory-card a {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.directory-card-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.directory-card h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.3;
}

.directory-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.directory-card strong {
  margin-top: auto;
  padding-top: 16px;
  color: var(--red);
  font-size: 14px;
}

.directory-content {
  padding-top: 22px;
}

.directory-content .article {
  max-width: 940px;
}

.directory-content .article-cover.directory-cover {
  width: min(100%, 620px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 34px auto;
  background: var(--paper-white);
}

.directory-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.directory-sources {
  overflow-wrap: anywhere;
  margin-top: 44px;
  padding: 20px 22px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.directory-sources strong {
  color: var(--navy);
}

.directory-sources ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.posts-list {
  display: grid;
  gap: 18px;
}

.post-card {
  overflow: hidden;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(17, 19, 24, 0.1);
}

.post-card a {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  min-height: 180px;
}

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

.post-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 22px 24px 22px 0;
}

.post-card span,
.article-eyebrow {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.post-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
}

.post-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.post-card time {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-shell {
  padding: clamp(58px, 8vw, 98px) 0 clamp(84px, 10vw, 128px);
}

.article {
  max-width: 880px;
  margin: 0 auto;
}

.article h1 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
}

.article-lead {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.78;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-meta span,
.article-meta time {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.post-page .article-actions .button.secondary {
  color: var(--navy);
  background: var(--paper-white);
  border-color: var(--line);
}

.post-page .article-actions .button.secondary:hover {
  border-color: var(--navy);
}

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 7;
  display: block;
  object-fit: cover;
  margin: 34px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.post-page .article-cover {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.article-toc {
  margin: 0 0 48px;
  padding: 24px 26px;
  background: var(--navy);
  border-radius: 8px;
  color: var(--paper-white);
}

.article-toc strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 18px;
}

.article-toc ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.article-toc a:hover {
  color: var(--gold);
}

.article-section {
  scroll-margin-top: 104px;
  margin-top: 52px;
}

.article-section h2,
.article-faq h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.24;
}

.article-section p,
.article-disclaimer p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.9;
}

.article-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.article-list li {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 18px;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-list strong {
  color: var(--red);
}

.article-list span {
  color: var(--ink-soft);
}

.article-related .article-list li {
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  overflow-wrap: anywhere;
}

.article-table-wrap {
  overflow-x: auto;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-white);
}

.article table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.article th,
.article td {
  padding: 15px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

.article th {
  color: var(--paper-white);
  background: var(--navy);
}

.article tr:last-child td {
  border-bottom: 0;
}

.article th:last-child,
.article td:last-child {
  border-right: 0;
}

.article-note,
.article-disclaimer {
  margin-top: 26px;
  padding: 22px 24px;
  background: rgba(177, 15, 22, 0.08);
  border: 1px solid rgba(177, 15, 22, 0.24);
  border-radius: 8px;
}

.article-note strong,
.article-disclaimer strong {
  color: var(--red);
  font-weight: 900;
}

.article-note p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.article-faq {
  margin-top: 62px;
  padding: 30px;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(17, 19, 24, 0.1);
}

.article-faq-list {
  display: grid;
  gap: 10px;
}

.article-faq-item {
  border-bottom: 1px solid var(--line);
}

.article-faq-item:last-child {
  border-bottom: 0;
}

.article-faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.article-faq-item summary::-webkit-details-marker {
  display: none;
}

.article-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--red);
  font-size: 28px;
  font-weight: 500;
}

.article-faq-item[open] summary::after {
  content: "-";
}

.article-faq-answer p {
  margin: 0;
  padding: 0 34px 18px 0;
  color: var(--ink-soft);
  line-height: 1.82;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.article-tags span {
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(209, 163, 77, 0.14);
  border: 1px solid rgba(209, 163, 77, 0.36);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.article-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding: 28px;
  color: var(--paper-white);
  background: var(--navy);
  border-radius: 8px;
}

.article-final-cta span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.article-final-cta strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.28;
}

.channel-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.channel-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.channel-action {
  margin-top: 24px;
}

.profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.profile-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #d9d3ca;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 500ms ease;
}

.profile-image:hover img {
  transform: scale(1.025);
}

.profile-image::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(6, 27, 56, 0.62));
}

.profile-image-caption {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 20px;
  color: var(--paper-white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.profile-actions .button {
  min-height: 48px;
  padding: 0 18px;
  font-size: 14px;
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  background: var(--red);
  border-radius: 50%;
}


.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 104px;
}

.faq-intro p:not(.section-label) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 27, 56, 0.08);
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.45;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--paper-white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--red);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.contact {
  padding-bottom: 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-grid a,
.contact-grid address {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-style: normal;
}

.contact-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.contact-grid strong {
  margin-top: 6px;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.25;
}


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

.prep-step {
  padding: 20px;
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.prep-step span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.prep-step strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.25;
}

.prep-step i {
  display: block;
  height: 9px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(6, 27, 56, 0.1);
  border-radius: 999px;
}

.prep-step i b {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
}

.prep-step:nth-child(1) i b { --prep-scale: 0.88; }
.prep-step:nth-child(2) i b { --prep-scale: 0.76; }
.prep-step:nth-child(3) i b { --prep-scale: 0.94; }

.prep-meter.is-visible .prep-step i b {
  animation: prepFill 980ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.prep-meter.is-visible .prep-step:nth-child(2) i b { animation-delay: 140ms; }
.prep-meter.is-visible .prep-step:nth-child(3) i b { animation-delay: 280ms; }

@keyframes prepFill {
  from { transform: scaleX(0); opacity: 0.42; }
  to { transform: scaleX(var(--prep-scale)); opacity: 1; }
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 28px 30px;
  color: var(--paper-white);
  background: linear-gradient(90deg, var(--navy), var(--charcoal));
  border-radius: 8px;
}

.contact-cta .section-label {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
}

.contact-cta strong {
  display: block;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.3;
}

.contact-cta .button {
  flex: 0 0 auto;
  min-height: 50px;
  font-size: 14px;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 360ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 40ms);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js-ready .topic-grid article[data-reveal] {
  transition-duration: 680ms;
}

.js-ready .topic-grid article:nth-child(odd)[data-reveal] {
  transform: translateX(-42px) translateY(18px) rotate(-1deg);
}

.js-ready .topic-grid article:nth-child(even)[data-reveal] {
  transform: translateX(42px) translateY(18px) rotate(1deg);
}

.js-ready .topic-grid article[data-reveal].is-visible {
  transform: translateX(0) translateY(0) rotate(0);
}

.js-ready .topic-grid article:nth-child(2)[data-reveal] { transition-delay: 80ms; }
.js-ready .topic-grid article:nth-child(3)[data-reveal] { transition-delay: 160ms; }
.js-ready .topic-grid article:nth-child(4)[data-reveal] { transition-delay: 240ms; }
.js-ready .topic-grid article:nth-child(5)[data-reveal] { transition-delay: 320ms; }
.js-ready .topic-grid article:nth-child(6)[data-reveal] { transition-delay: 400ms; }

.js-ready .topic-grid article[data-reveal].is-visible:hover {
  transform: translateY(-7px);
}

.js-ready .channel-section > .channel-copy[data-reveal],
.js-ready .profile > .profile-image[data-reveal],
.js-ready .profile > .profile-copy[data-reveal],
.js-ready .faq-section > .faq-intro[data-reveal],
.js-ready .faq-section > .faq-list[data-reveal] {
  transition-duration: 720ms;
}

.js-ready .profile > .profile-image[data-reveal],
.js-ready .faq-section > .faq-intro[data-reveal] {
  transform: translateX(-54px);
}

.js-ready .channel-section > .channel-copy[data-reveal],
.js-ready .profile > .profile-copy[data-reveal],
.js-ready .faq-section > .faq-list[data-reveal] {
  transform: translateX(54px);
  transition-delay: 120ms;
}

.js-ready .channel-section > [data-reveal].is-visible,
.js-ready .profile > [data-reveal].is-visible,
.js-ready .faq-section > [data-reveal].is-visible {
  transform: translateX(0);
}

.js-ready .faq-list details {
  opacity: 0;
  transform: translateY(16px);
}

.js-ready .faq-list.is-visible details {
  animation: faqItemReveal 540ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js-ready .faq-list.is-visible details:nth-child(2) { animation-delay: 70ms; }
.js-ready .faq-list.is-visible details:nth-child(3) { animation-delay: 140ms; }
.js-ready .faq-list.is-visible details:nth-child(4) { animation-delay: 210ms; }
.js-ready .faq-list.is-visible details:nth-child(5) { animation-delay: 280ms; }
.js-ready .faq-list.is-visible details:nth-child(6) { animation-delay: 350ms; }

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

.js-ready .prep-meter.is-visible .prep-step {
  animation: prepStepReveal 580ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.js-ready .prep-meter.is-visible .prep-step:nth-child(2) { animation-delay: 100ms; }
.js-ready .prep-meter.is-visible .prep-step:nth-child(3) { animation-delay: 200ms; }

@keyframes prepStepReveal {
  from { opacity: 0.2; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js-ready .intro > .section-copy[data-reveal],
  .js-ready .intro > .quote-panel[data-reveal] {
    transform: none;
    transition: none;
  }

  .signal-marquee-track {
    animation-play-state: paused;
  }

  .js-ready .topic-grid article[data-reveal],
  .js-ready .profile > [data-reveal],
  .js-ready .faq-section > [data-reveal] {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .js-ready .faq-list details,
  .js-ready .faq-list.is-visible details,
  .js-ready .prep-meter.is-visible .prep-step {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .js-ready .topic-grid article:nth-child(odd)[data-reveal],
  .js-ready .topic-grid article:nth-child(even)[data-reveal],
  .js-ready .channel-section > .channel-copy[data-reveal],
  .js-ready .profile > .profile-image[data-reveal],
  .js-ready .profile > .profile-copy[data-reveal],
  .js-ready .faq-section > .faq-intro[data-reveal],
  .js-ready .faq-section > .faq-list[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .topic-grid article,
  .text-action,
  .profile-image img {
    transition: none;
  }

  .metric-signal span,
  .metric-register i,
  .metric-route span,
  .topic-mini-chart span,
  .prep-step i b,
  .trust-strip.metrics-loop .metric-signal span,
  .trust-strip.metrics-loop .metric-register i,
  .trust-strip.metrics-loop .metric-route span,
  .topic-grid article.is-visible .topic-mini-chart span,
  .prep-meter.is-visible .prep-step i b {
    animation: none;
  }

  .topic-mini-chart span {
    transform: scaleY(1);
  }

  .metric-signal span {
    transform: scaleY(1);
  }

  .metric-register i,
  .metric-route span,
  .prep-step i b {
    transform: scaleX(1);
  }
}

.floating-contact {
  position: fixed;
  z-index: 35;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(6, 27, 56, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.floating-contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--paper-white);
  background: var(--red);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 900;
}

.floating-contact a + a {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 18px 28px;
  padding: 40px max(20px, calc((100% - 1200px) / 2));
  color: rgba(255, 255, 255, 0.7);
  background: var(--charcoal);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer > p {
  grid-column: 1 / -1;
  max-width: 1160px;
}

.site-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: start;
  gap: 24px 40px;
}

.site-footer-main > p {
  padding-top: 10px;
  color: var(--paper-white);
  font-size: 16px;
  font-weight: 800;
}

.site-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px 20px;
}

.site-footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--paper-white);
  font-weight: 800;
}

.site-footer-links a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer-social {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer-social-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-footer-social-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.footer-social-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px 0 7px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.footer-social-link:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-social-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--paper-white);
}

.footer-social-icon svg {
  width: 21px;
  height: 21px;
  display: block;
}

.site-footer-business {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: center;
  gap: 8px 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.55;
}

.site-footer-business p {
  margin: 0;
  overflow-wrap: anywhere;
}

.site-footer-business p:last-child {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
}

.site-footer-business a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer-business a:hover {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 64px;
  }

  .nav-links {
    gap: 8px;
    font-size: 13px;
  }

  .nav-links a:not(.nav-call) {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .nav-links a.nav-optional {
    display: none;
  }

  .hero-content {
    margin-left: clamp(20px, 5vw, 54px);
    padding-bottom: 54px;
  }

  .action-bar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-actions {
    padding-bottom: 0;
  }

  .trust-strip,
  .topic-grid,
  .contact-grid,
  .prep-meter,
  .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .channel-section,
  .profile,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .js-ready .intro > .section-copy[data-reveal],
  .js-ready .intro > .quote-panel[data-reveal] {
    transform: translateY(28px);
  }

  .js-ready .intro > .section-copy[data-reveal].is-visible,
  .js-ready .intro > .quote-panel[data-reveal].is-visible {
    transform: translateY(0);
  }

  .js-ready .topic-grid article:nth-child(odd)[data-reveal],
  .js-ready .topic-grid article:nth-child(even)[data-reveal] {
    transform: translateY(24px) rotate(0);
  }

  .js-ready .topic-grid article[data-reveal].is-visible {
    transform: translateY(0);
  }

  .js-ready .channel-section > .channel-copy[data-reveal],
  .js-ready .profile > .profile-image[data-reveal],
  .js-ready .profile > .profile-copy[data-reveal],
  .js-ready .faq-section > .faq-intro[data-reveal],
  .js-ready .faq-section > .faq-list[data-reveal] {
    transform: translateY(28px);
  }

  .js-ready .channel-section > [data-reveal].is-visible,
  .js-ready .profile > [data-reveal].is-visible,
  .js-ready .faq-section > [data-reveal].is-visible {
    transform: translateY(0);
  }

  .post-card a {
    grid-template-columns: 1fr;
  }

  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-card img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .post-card div {
    padding: 0 22px 22px;
  }

  .article-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .article-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-intro {
    position: static;
  }

  .profile-image {
    min-height: 460px;
  }


  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer-main,
  .site-footer-business {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer-social-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@supports not (min-height: 100svh) {
  .hero {
    min-height: calc(100vh - 72px);
  }

  @media (max-width: 900px) {
    .hero {
      min-height: calc(100vh - 64px);
    }
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  .floating-contact {
    background: rgba(6, 27, 56, 0.97);
  }

  .hero-content::before {
    background: transparent;
  }
}


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

  .brand-mark {
    width: 42px;
    height: 28px;
  }

  .hero {
    min-height: calc(96svh - 64px);
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(56px, 16vw, 86px);
  }

  .nav-links a:not(.nav-call) {
    display: none;
  }

  .nav-links a.nav-info {
    display: inline-flex;
  }

  .hero-actions,
  .button,
  .channel-buttons {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }


  .trust-strip,
  .topic-grid,
  .contact-grid,
  .prep-meter,
  .check-list {
    grid-template-columns: 1fr;
  }

  .trust-strip > .metric-tile {
    min-height: 92px;
  }

  .faq-list summary {
    min-height: 60px;
    padding: 16px 18px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .topic-grid article {
    min-height: auto;
  }

  .profile-image {
    min-height: 390px;
  }

  .floating-contact {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .floating-contact a {
    flex: 1;
    justify-content: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 88px;
  }

  .site-footer-social {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer-links,
  .site-footer-social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-business p:last-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-footer-business span[aria-hidden="true"] {
    display: none;
  }

  .site-footer > p {
    grid-column: auto;
  }

  .posts-hero,
  .posts-list-section,
  .article-shell,
  .directory-hero,
  .directory-links,
  .directory-content {
    width: min(100% - 32px, 980px);
  }

  .posts-hero {
    padding-top: 52px;
  }

  .article-shell {
    padding-top: 48px;
  }

  .directory-hero {
    padding-top: 48px;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .directory-card,
  .directory-card a {
    min-height: 0;
  }

  .article h1 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .article-cover {
    aspect-ratio: 16 / 9;
    margin: 26px 0;
  }

  .article-toc,
  .article-faq,
  .article-final-cta,
  .article-note,
  .article-disclaimer {
    padding: 20px;
  }

  .article-section p,
  .article-disclaimer p {
    font-size: 16px;
  }

  .article-actions .button,
  .article-final-cta .button {
    width: 100%;
  }

  .contact-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .contact-cta .button {
    width: 100%;
  }

  .topic-actions {
    gap: 12px;
  }
}


/* Privacy page */
.policy-body {
  min-height: 100vh;
  background: var(--paper);
}

.policy-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 100px;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--red);
  font-weight: 900;
}

.policy-content {
  padding: clamp(28px, 6vw, 64px);
  background: var(--paper-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy-content h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
}

.policy-content h2 {
  margin: 38px 0 10px;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.3;
}

.policy-content p,
.policy-content li {
  color: var(--ink-soft);
  font-size: 16px;
}

.policy-content ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.policy-lead {
  margin: 20px 0 0;
  font-size: 19px !important;
}

.policy-updated {
  margin: 20px 0 0;
  color: var(--muted) !important;
  font-size: 14px !important;
  font-weight: 800;
}

@media (max-width: 640px) {
  .policy-main {
    width: min(100% - 28px, 900px);
    padding-top: 28px;
  }

  .policy-content {
    padding: 24px 20px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 15px;
  }
}
