:root {
  --orange: #f45d22;
  --graphite: #1f2328;
  --white: #f9fafb;
  --paper: #ffffff;
  --gray-100: #f1f3f5;
  --gray-200: #d9d9d9;
  --gray-500: #69717c;
  --blue: #2f80ed;
  --teal: #2ec4b6;
  --ink: #171a1f;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--ink);
}

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

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

.site-header {
  align-items: center;
  background: rgba(249, 250, 251, 0.94);
  border-bottom: 1px solid rgba(31, 35, 40, 0.09);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 2px;
}

.wordmark-dot {
  background: var(--orange);
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  color: #353b43;
}

.header-action,
.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
}

.header-action {
  background: var(--orange);
  color: var(--white);
  justify-self: end;
  padding: 0 18px;
}

.hero {
  background: var(--graphite);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  min-height: calc(100vh - 82px);
}

.hero-copy {
  align-self: center;
  padding: clamp(44px, 7vw, 96px) clamp(24px, 6vw, 72px);
}

.eyebrow {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.94;
  margin-bottom: 28px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  margin-bottom: 18px;
  max-width: 820px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.18;
  margin-bottom: 12px;
}

.hero-text {
  color: rgba(249, 250, 251, 0.82);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.62;
  max-width: 670px;
}

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

.button {
  padding: 0 20px;
}

.button.primary {
  background: var(--orange);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(249, 250, 251, 0.28);
  color: var(--white);
}

.hero-image {
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-image::after {
  background: linear-gradient(90deg, var(--graphite), rgba(31, 35, 40, 0.56), rgba(31, 35, 40, 0.08));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.cred-strip {
  background: var(--paper);
  border-bottom: 1px solid rgba(31, 35, 40, 0.09);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
}

.cred-strip div {
  border-right: 1px solid rgba(31, 35, 40, 0.09);
  display: grid;
  gap: 8px;
  padding: 28px clamp(18px, 3vw, 44px);
}

.cred-strip strong {
  color: var(--graphite);
  font-size: 1.18rem;
}

.cred-strip span {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.4;
}

.section-grid,
.content-band,
.split-band,
.dark-band {
  padding: clamp(64px, 9vw, 118px) clamp(22px, 5vw, 56px);
}

.section-grid,
.content-band,
.split-band {
  margin: 0 auto;
  max-width: calc(var(--max) + 112px);
}

.section-intro {
  margin-bottom: 34px;
  max-width: 900px;
}

.section-intro p:not(.eyebrow) {
  color: var(--gray-500);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 760px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.article-card,
.channel-card,
.lab-panel {
  border-radius: var(--radius);
}

.info-card,
.article-card {
  background: var(--paper);
  border: 1px solid rgba(31, 35, 40, 0.1);
  min-height: 238px;
  padding: 26px;
}

.info-card {
  border-top: 4px solid var(--orange);
}

.card-kicker,
.tag {
  color: var(--orange);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.info-card p,
.article-card p,
.channel-card p,
.lab-panel p,
.split-band p {
  color: var(--gray-500);
  line-height: 1.58;
}

.dark-band {
  background: var(--graphite);
  color: var(--white);
}

.dark-band > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.section-intro.inverse p:not(.eyebrow) {
  color: rgba(249, 250, 251, 0.76);
}

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

.channel-card {
  background: rgba(249, 250, 251, 0.06);
  border: 1px solid rgba(249, 250, 251, 0.16);
  display: grid;
  gap: 22px;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  padding: 18px;
}

.channel-card h3 {
  font-size: 1.55rem;
}

.channel-card p {
  color: rgba(249, 250, 251, 0.74);
}

.channel-image {
  align-self: stretch;
  background: #11161c;
  border-radius: 6px;
  overflow: hidden;
}

.channel-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.channel-image.compact img {
  object-position: center;
}

.latest-videos {
  margin-top: 44px;
}

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

.mini-heading h3 {
  font-size: 1.45rem;
  margin: 0;
}

.mini-heading a {
  color: rgba(249, 250, 251, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

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

.video-card {
  background: rgba(249, 250, 251, 0.06);
  border: 1px solid rgba(249, 250, 251, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.video-card a {
  display: block;
}

.video-card span {
  color: var(--orange);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 16px 16px 8px;
  text-transform: uppercase;
}

.video-card h4 {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
  min-height: 68px;
  padding: 0 16px 18px;
}

.article-card {
  border-top: 4px solid var(--graphite);
}

.tag.blue {
  color: var(--blue);
}

.tag.teal {
  color: var(--teal);
}

.article-card a {
  color: var(--graphite);
  display: inline-flex;
  font-weight: 800;
  margin-top: 16px;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.split-band {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.split-band p {
  font-size: 1.05rem;
  max-width: 700px;
}

.lab-panel {
  background: var(--graphite);
  color: var(--white);
  padding: 30px;
}

.lab-panel span {
  color: var(--orange);
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.panel-link {
  border: 1px solid rgba(249, 250, 251, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  margin-top: 10px;
  min-height: 44px;
  padding: 12px 16px;
}

.site-footer {
  align-items: center;
  background: #111418;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 34px clamp(22px, 5vw, 56px);
}

.site-footer p {
  color: rgba(249, 250, 251, 0.68);
  margin: 10px 0 0;
}

.wp-content-shell {
  background: var(--white);
  color: var(--ink);
  min-height: 70vh;
}

.wp-content-hero,
.wp-article-header {
  background: var(--graphite);
  color: var(--white);
  padding: clamp(64px, 9vw, 120px) clamp(22px, 5vw, 56px) clamp(42px, 6vw, 76px);
}

.wp-content-hero > *,
.wp-article-header > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.wp-content-hero h1,
.wp-article-header h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

.wp-content-hero p:not(.eyebrow),
.wp-article-header p:not(.eyebrow) {
  color: rgba(249, 250, 251, 0.78);
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 760px;
}

.wp-content-list,
.wp-article-body {
  margin: 0 auto;
  max-width: 860px;
  padding: clamp(44px, 7vw, 82px) clamp(22px, 5vw, 56px);
}

.wp-list-card {
  background: var(--paper);
  border: 1px solid rgba(31, 35, 40, 0.1);
  border-radius: var(--radius);
  margin-bottom: 18px;
  padding: 28px;
}

.wp-list-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.wp-list-card a {
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.wp-article-body {
  color: #242932;
  font-size: 1.08rem;
  line-height: 1.74;
}

.wp-article-body h2 {
  border-top: 1px solid rgba(31, 35, 40, 0.12);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-top: 52px;
  padding-top: 38px;
}

.wp-article-body h3 {
  font-size: 1.45rem;
  margin-top: 34px;
}

.wp-article-body p,
.wp-article-body li {
  color: #3f4650;
}

.wp-article-body a {
  color: var(--graphite);
  font-weight: 700;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.wp-article-body blockquote {
  border-left: 4px solid var(--orange);
  color: var(--graphite);
  font-size: 1.18rem;
  margin: 32px 0;
  padding-left: 20px;
}

.wp-article-body hr {
  border: 0;
  border-top: 1px solid rgba(31, 35, 40, 0.12);
  margin: 34px 0;
}

.newsletter-body {
  max-width: 940px;
}

.newsletter-cta-panel {
  background: var(--graphite);
  border-radius: var(--radius);
  color: var(--white);
  padding: clamp(28px, 5vw, 48px);
}

.newsletter-cta-panel h2 {
  border: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin: 0 0 18px;
  padding: 0;
}

.newsletter-cta-panel p:not(.eyebrow) {
  color: rgba(249, 250, 251, 0.78);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 680px;
}

.newsletter-cta-panel .button {
  margin-top: 12px;
}

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.newsletter-actions .button.secondary {
  border-color: rgba(249, 250, 251, 0.3);
  color: var(--white);
}

.newsletter-actions.light .button {
  margin-top: 0;
}

.beehiiv-form {
  margin-top: 24px;
}

.newsletter-cta-panel .newsletter-fallback {
  font-size: 0.92rem;
  margin: 18px 0 0;
}

.newsletter-cta-panel .newsletter-download-note {
  font-size: 0.98rem;
  margin: 18px 0 0;
}

.newsletter-cta-panel .newsletter-fallback a {
  color: var(--white);
  font-weight: 800;
  text-decoration-color: var(--orange);
}

.newsletter-note {
  margin-top: 24px;
}

.flow-section {
  border-top: 1px solid rgba(31, 35, 40, 0.12);
  margin-top: 48px;
  padding-top: 38px;
}

.flow-section.first {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.flow-section h2,
.inline-cta h2 {
  border: 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  margin-top: 0;
  padding-top: 0;
}

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

.check-list li {
  background: var(--paper);
  border: 1px solid rgba(31, 35, 40, 0.1);
  border-radius: var(--radius);
  padding: 16px 18px 16px 42px;
  position: relative;
}

.check-list li::before {
  background: var(--orange);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: 18px;
  position: absolute;
  top: 25px;
  width: 10px;
}

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

.number-card,
.score-band {
  background: var(--paper);
  border: 1px solid rgba(31, 35, 40, 0.1);
  border-radius: var(--radius);
  padding: 22px;
}

.number-card span,
.score-band span {
  color: var(--orange);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.number-card h3,
.score-band h3 {
  color: var(--graphite);
}

.quiet-note {
  color: var(--gray-500);
  font-size: 0.98rem;
  margin-top: 18px;
}

.inline-cta {
  background: var(--graphite);
  border-radius: var(--radius);
  color: var(--white);
  margin-top: 48px;
  padding: clamp(26px, 5vw, 42px);
}

.inline-cta h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.inline-cta p {
  color: rgba(249, 250, 251, 0.76);
}

.dimension-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.4rem;
}

.dimension-list li {
  background: var(--paper);
  border: 1px solid rgba(31, 35, 40, 0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(249, 250, 251, 0.78);
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

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

  .hero-copy {
    padding-bottom: 36px;
  }

  .hero-image {
    min-height: 340px;
  }

  .hero-image::after {
    background: linear-gradient(180deg, var(--graphite), rgba(31, 35, 40, 0));
  }

  .cred-strip,
  .card-grid.three,
  .video-grid,
  .channel-layout,
  .split-band,
  .number-card-grid,
  .score-band-grid {
    grid-template-columns: 1fr;
  }

  .channel-card {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .channel-image {
    aspect-ratio: 16 / 9;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }
}
