:root {
  --navy: #0a1633;
  --black: #000000;
  --green: #00ff88;
  --green-soft: rgba(0, 255, 136, 0.16);
  --white: #f7fafc;
  --muted: #9aa8bb;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #163d70;
  --amber: #ffcd7a;
  --panel: rgba(7, 16, 37, 0.82);
  --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;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 255, 136, 0.08), transparent 28rem),
    linear-gradient(180deg, #02040a 0%, var(--navy) 44%, #03050b 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(0, 0, 0, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: clamp(10.5rem, 18vw, 17rem);
  height: auto;
}

.brand span {
  color: var(--muted);
  font-size: 0.76rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  color: #d9e4ef;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 8.5rem clamp(1rem, 5vw, 4rem) 4rem;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  filter: saturate(0.92) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(10, 22, 51, 0.82) 35%, rgba(10, 22, 51, 0.2) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 38%),
    radial-gradient(circle at 28% 55%, rgba(0, 255, 136, 0.13), transparent 24rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 43rem;
  margin: 1.35rem 0 0;
  color: #d8e4ef;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.45rem;
  padding: 0.8rem 1rem;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #00150c;
  box-shadow: 0 18px 50px rgba(0, 255, 136, 0.16);
}

.button-secondary {
  border-color: rgba(0, 255, 136, 0.5);
  background: rgba(0, 255, 136, 0.08);
  color: var(--white);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.trust-strip {
  margin-top: 1.8rem;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 99rem;
  padding: 0.35rem 0.72rem;
  color: #c7d4e4;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.82rem;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: -2.4rem auto 0;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  background: rgba(2, 7, 18, 0.82);
  backdrop-filter: blur(16px);
}

.metric {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--green);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.metric span {
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1rem, 4vw, 2rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.rich-copy {
  color: #c7d4e4;
  font-size: 1.03rem;
}

.rich-copy p:first-child {
  margin-top: 0;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 2rem;
}

.section-intro {
  max-width: 44rem;
  color: #c7d4e4;
  font-size: 1.04rem;
}

.featured-watch {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: center;
}

.youtube-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, 0.28);
  border-radius: 0.5rem;
  background: #02040a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.youtube-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.08) 72%),
    linear-gradient(90deg, rgba(10, 22, 51, 0.38), rgba(0, 255, 136, 0.1)),
    url("assets/medihealth-hero.png") center / cover;
}

.embed-placeholder small,
.content-label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.embed-placeholder strong {
  display: block;
  max-width: 24ch;
  font-size: clamp(1.05rem, 2.5vw, 1.75rem);
  line-height: 1.1;
}

.play-mark {
  position: relative;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 255, 136, 0.72);
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.16);
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.18);
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 1.16rem;
  top: 0.88rem;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-left: 0.9rem solid var(--green);
}

.featured-watch-copy h3 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.featured-watch-copy p {
  color: #c7d4e4;
}

.shorts-heading,
.library-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.shorts-heading {
  margin: clamp(4rem, 8vw, 6rem) 0 1.5rem;
}

.shorts-heading .section-kicker {
  margin-bottom: 0.45rem;
}

.shorts-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.text-link {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 800;
}

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

.short-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  transition: transform 180ms ease, border-color 180ms ease;
}

.short-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.45);
}

.short-thumb {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 15.5rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  overflow: hidden;
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(10, 22, 51, 0.08) 74%),
    url("assets/medihealth-hero.png");
  background-size: cover;
}

.short-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, transparent 42%, rgba(0, 255, 136, 0.22));
}

.short-thumb img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.short-thumb span,
.short-thumb strong {
  position: relative;
  z-index: 1;
}

.short-thumb-paycheck {
  background-position: 58% center;
}

.short-thumb-burnout {
  background-position: 72% center;
}

.short-thumb-retirement {
  background-position: 82% center;
}

.short-thumb-reset {
  background-position: 45% center;
}

.short-thumb-overtime {
  background-position: 65% center;
}

.short-thumb-system {
  background-position: 28% center;
}

.short-thumb span {
  width: fit-content;
  border: 1px solid rgba(0, 255, 136, 0.45);
  border-radius: 99rem;
  padding: 0.28rem 0.55rem;
  background: rgba(0, 0, 0, 0.58);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
}

.short-thumb strong {
  max-width: 9ch;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.short-card-body {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.short-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.short-card-body a {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.35rem;
  color: var(--green);
  font-weight: 800;
}

.video-page-hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: end;
  padding: 9rem clamp(1rem, 5vw, 4rem) 4rem;
  overflow: hidden;
}

.video-page-hero-media,
.video-page-hero-overlay {
  position: absolute;
  inset: 0;
}

.video-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.video-page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(10, 22, 51, 0.75) 48%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 45%);
}

.video-page-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.video-page-hero-content h1 {
  max-width: none;
}

.video-page-hero-content > p:not(.section-kicker) {
  max-width: 43rem;
  color: #d8e4ef;
  font-size: 1.1rem;
}

.topic-filter-band {
  position: sticky;
  z-index: 20;
  top: 4.75rem;
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
}

.topic-filter-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 2rem);
}

.topic-filter-inner > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topic-tags {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.topic-tag {
  min-height: 2.3rem;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 99rem;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  color: #d7e1ee;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.topic-tag:hover,
.topic-tag.is-active {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green);
}

.library-heading {
  margin-bottom: 2rem;
}

.library-heading > p {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
}

.long-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 1rem;
}

.long-video-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.long-video-card:only-child {
  width: min(100%, 860px);
}

.long-video-card .youtube-embed {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.long-video-copy {
  padding: 1rem;
}

.long-video-copy h3 {
  font-size: 1.12rem;
}

.long-video-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.shorts-library-section {
  padding-top: 2rem;
}

.shorts-grid-library {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.filter-empty {
  margin: 2rem 0 0;
  color: var(--muted);
  text-align: center;
}

.video-cta {
  max-width: var(--max);
  margin: 1rem auto clamp(4rem, 8vw, 7rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem);
  border-block: 1px solid rgba(0, 255, 136, 0.3);
  background:
    linear-gradient(90deg, rgba(0, 255, 136, 0.11), rgba(22, 61, 112, 0.18)),
    rgba(0, 0, 0, 0.3);
}

.video-cta-copy {
  max-width: 44rem;
}

.video-cta-copy p:not(.section-kicker) {
  color: #d3deeb;
}

.video-cta > .button {
  max-width: 26rem;
  text-align: center;
}

.video-cta-actions {
  display: grid;
  min-width: min(100%, 22rem);
  gap: 0.75rem;
}

.video-cta-actions .button {
  width: 100%;
  text-align: center;
}

.video-grid,
.resource-grid,
.product-row {
  display: grid;
  gap: 1rem;
}

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

.video-card,
.resource-card,
.product-card,
.contact-form,
.newsletter-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border-radius: 0.5rem;
}

.video-card {
  overflow: hidden;
}

.video-card h3,
.video-card p {
  padding-inline: 1rem;
}

.video-card h3 {
  padding-top: 1rem;
}

.video-card p {
  margin: 0.55rem 0 1.1rem;
  color: var(--muted);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #02040a;
}

.video-slate {
  display: grid;
  align-content: end;
  gap: 0.35rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.2), rgba(0, 255, 136, 0.16)),
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.16), transparent 8rem),
    linear-gradient(135deg, #03050b 0%, #0a1633 62%, #000 100%);
  border-bottom: 1px solid var(--line);
}

.video-slate span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.video-slate strong {
  max-width: 10ch;
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 0.95;
}

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

.resource-card {
  min-height: 14rem;
  padding: 1.3rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 136, 0.45);
  background: rgba(0, 255, 136, 0.07);
}

.resource-card span {
  color: var(--amber);
  font-weight: 800;
}

.resource-card h3 {
  margin-top: 2rem;
}

.resource-card p,
.product-card span {
  color: var(--muted);
}

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

.product-card {
  padding: 1.4rem;
}

.product-card p {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card a,
.form-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  color: var(--green);
  font-weight: 800;
}

.contact-section a {
  color: var(--green);
  font-weight: 800;
}

.newsletter-panel {
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2.4rem);
  border-block: 1px solid rgba(0, 255, 136, 0.25);
  background:
    linear-gradient(90deg, rgba(0, 255, 136, 0.11), rgba(22, 61, 112, 0.18)),
    rgba(0, 0, 0, 0.28);
}

.newsletter-copy p:not(.section-kicker) {
  color: #d3deeb;
  max-width: 42rem;
}

form {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
}

label span {
  display: block;
  margin-bottom: 0.35rem;
  color: #d7e1ee;
  font-size: 0.88rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.48);
  color: var(--white);
  padding: 0.9rem 0.95rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(0, 255, 136, 0.4);
  border-color: rgba(0, 255, 136, 0.55);
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--green);
  font-weight: 800;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 0.7rem;
  text-align: right;
}

.footer-links p {
  margin: 0;
}

.footer-products,
.compact-product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-products a,
.compact-product-links a {
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  border: 1px solid rgba(0, 255, 136, 0.4);
  border-radius: 0.35rem;
  padding: 0.4rem 0.65rem;
  background: rgba(0, 255, 136, 0.07);
  font-size: 0.8rem;
}

.footer-brand {
  display: grid;
  gap: 0.45rem;
}

.footer-brand img {
  width: min(16rem, 70vw);
  height: auto;
}

.footer-brand span {
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal.reveal-pending {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.subpage {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8rem clamp(1rem, 4vw, 2rem) 4rem;
}

.page-hero {
  max-width: 850px;
  padding: 2rem 0 clamp(2.5rem, 6vw, 4.5rem);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.55rem, 6vw, 5rem);
}

.page-hero p:not(.section-kicker) {
  max-width: 46rem;
  color: #d3deeb;
  font-size: 1.12rem;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 1.2rem;
  align-items: start;
}

.article-panel,
.action-panel {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  padding: clamp(1.2rem, 3vw, 2rem);
}

.article-panel h2,
.action-panel h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.article-panel p,
.action-panel p,
.article-panel li,
.small-note {
  color: #c7d4e4;
}

.article-panel ul {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.2rem;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.33rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--green);
  border-radius: 0.2rem;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.16);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.action-panel {
  position: sticky;
  top: 6rem;
}

.subpage-grid {
  padding-bottom: 2rem;
}

.compact-footer {
  align-items: center;
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.legal-logo img {
  width: min(18rem, 74vw);
  margin-bottom: 2rem;
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-page p {
  color: #d3deeb;
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    inset: 4.4rem 1rem auto;
    display: grid;
    gap: 0;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.92);
    transform: translateY(-0.5rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.8rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .proof-band,
  .video-grid,
  .resource-grid,
  .product-row,
  .split,
  .newsletter-panel,
  .article-grid,
  .featured-watch,
  .long-video-grid {
    grid-template-columns: 1fr;
  }

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

  .shorts-heading,
  .library-heading,
  .video-cta {
    align-items: start;
    flex-direction: column;
  }

  .library-heading > p {
    max-width: 42rem;
  }

  .static-nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .static-nav a {
    padding: 0;
  }

  .action-panel {
    position: static;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 88vh;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: clamp(9.2rem, 46vw, 12rem);
  }

  .hero {
    padding: 7rem 1rem 3rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(10, 22, 51, 0.72)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 42%);
  }

  h1 {
    max-width: 11ch;
  }

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

  .shorts-grid,
  .shorts-grid-library {
    grid-template-columns: 1fr;
  }

  .short-thumb {
    min-height: 19rem;
  }

  .shorts-heading {
    align-items: start;
  }

  .topic-filter-band {
    top: 4.25rem;
  }

  .topic-filter-inner {
    display: block;
  }

  .topic-filter-inner > span {
    display: block;
    margin-bottom: 0.5rem;
  }

  .video-cta > .button {
    width: 100%;
    max-width: none;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-items: start;
    text-align: left;
  }

  .compact-product-links {
    display: grid;
  }

  .static-nav {
    display: none;
  }
}
