:root {
  --charcoal: #061225;
  --ink: #14233f;
  --steel: #4b5c7c;
  --stone: #eef5ff;
  --paper: #f8fbff;
  --royal: #1264ff;
  --navy: #071b46;
  --blue: #0b63ff;
  --sky: #38a3ff;
  --line: rgba(6, 18, 37, 0.14);
  --shadow: 0 24px 70px rgba(5, 21, 55, 0.16);
  --font-display: "Big Shoulders Display", Inter, sans-serif;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100;
  padding: 12px 20px;
  border-radius: 4px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

#athletes,
#pillars,
#method,
#products,
#newsletter,
#coaching,
#founder,
#articles,
#channels,
#schedule,
#contact,
#daily,
#results {
  scroll-margin-top: 96px;
}

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

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 12px clamp(20px, 4vw, 56px) 10px;
  color: var(--charcoal);
  background: rgba(248, 251, 255, 0.92);
  box-shadow: 0 10px 32px rgba(5, 21, 55, 0.08);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--charcoal);
  background: rgba(248, 251, 255, 0.98);
  box-shadow: 0 12px 36px rgba(5, 21, 55, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 58px;
}

.brand-mark img {
  width: 64px;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.header-verse {
  flex: 1 0 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: center;
  max-width: 1180px;
  margin: 6px auto 0;
  padding: 8px 0 0;
  border-top: 1px solid rgba(6, 18, 37, 0.1);
  text-align: center;
}

.verse-label {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.verse-lines {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
}

.verse-lines p {
  display: flex;
  gap: 8px;
  align-items: baseline;
  justify-content: center;
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.35;
}

.verse-lines span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verse-lines cite {
  flex: 0 0 auto;
  color: var(--royal);
  font-style: normal;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 18, 37, 0.9) 0%, rgba(7, 27, 70, 0.72) 39%, rgba(6, 18, 37, 0.18) 74%),
    linear-gradient(180deg, rgba(11, 99, 255, 0.16), rgba(6, 18, 37, 0.55));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 164px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0.002em;
}

h2 {
  margin-bottom: 18px;
  color: var(--charcoal);
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  line-height: 0.94;
  letter-spacing: 0.002em;
}

h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.primary:hover {
  background: var(--royal);
  box-shadow: 0 10px 26px rgba(18, 100, 255, 0.35);
  transform: translateY(-2px);
}

.button.secondary {
  color: #fff;
  border-color: rgba(56, 163, 255, 0.72);
  background: rgba(18, 100, 255, 0.16);
}

.button.secondary:hover {
  background: rgba(56, 163, 255, 0.28);
  transform: translateY(-2px);
}

.nav-cta {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover {
  box-shadow: 0 8px 20px rgba(18, 100, 255, 0.3);
  transform: translateY(-1px);
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 4px 0;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  right: 0;
}

.text-link {
  transition: opacity 160ms ease;
}

.text-link:hover {
  opacity: 0.72;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.section-copy p {
  max-width: 670px;
  font-size: 1.08rem;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
  border-bottom: 2px solid var(--blue);
}

.feature-panel,
.profile-photo,
.contact-form {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.feature-panel {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--royal);
  box-shadow: 0 0 0 5px rgba(18, 100, 255, 0.12);
}

.muted {
  background: var(--stone);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p {
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 700px;
}

.audience-section {
  background: var(--paper);
}

.daily-section {
  padding-top: clamp(54px, 8vw, 90px);
  padding-bottom: clamp(54px, 8vw, 90px);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.daily-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.featured-podcast-card,
.daily-verse-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.featured-podcast-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 38px);
  padding: clamp(28px, 5vw, 52px);
  border-top: 5px solid var(--royal);
}

.featured-podcast-card h2 {
  font-size: clamp(2.35rem, 5vw, 4.65rem);
}

.featured-podcast-card p:not(.eyebrow),
.daily-verse-card blockquote p {
  font-size: 1.08rem;
}

.featured-podcast-player {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(6, 18, 37, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 12%, rgba(56, 163, 255, 0.24), transparent 34%),
    var(--paper);
}

.featured-podcast-player audio {
  width: 100%;
}

.daily-verse-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 10%, rgba(56, 163, 255, 0.28), transparent 36%),
    linear-gradient(145deg, #071b46 0%, #0b2f7a 72%, #0b63ff 145%);
}

.daily-verse-card h3 {
  color: #fff;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
}

.daily-verse-card .eyebrow,
.daily-verse-card blockquote p,
.daily-verse-card cite {
  color: rgba(255, 255, 255, 0.82);
}

.daily-verse-card blockquote {
  margin: 18px 0 0;
}

.daily-verse-card blockquote p {
  margin-bottom: 12px;
  color: #fff;
  font-weight: 800;
}

.daily-verse-card cite {
  font-style: normal;
  font-weight: 800;
}

.audience-section .section-heading {
  max-width: 1040px;
}

.audience-section h2 {
  font-size: clamp(2.9rem, 6.3vw, 6.25rem);
  line-height: 0.96;
}

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

.audience-grid article,
.offer-card {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.audience-grid article {
  border-bottom: 5px solid var(--royal);
}

.audience-grid h3,
.offer-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(72px, 10vw, 124px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 8%, rgba(18, 100, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #061225 0%, #071b46 58%, #0b2f7a 100%);
}

.method-intro {
  position: sticky;
  top: 112px;
  align-self: start;
}

.method-intro h2,
.method-steps h3 {
  color: #fff;
}

.method-intro p:not(.eyebrow),
.method-steps p {
  color: rgba(255, 255, 255, 0.76);
}

.method-steps {
  display: grid;
  gap: 14px;
}

.method-steps article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 6px 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.method-steps article:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.method-steps span {
  grid-row: span 2;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

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

.pillar-grid.five-pillars {
  grid-template-columns: repeat(5, 1fr);
}

.pillar-grid article {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border-top: 5px solid var(--royal);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.pillar-grid article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.pillar-number {
  display: block;
  margin-bottom: 20px;
  color: transparent;
  font-family: var(--font-display);
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 1.5px var(--sky);
  opacity: 0.85;
}

.profile-photo {
  position: relative;
  overflow: hidden;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  justify-self: center;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

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

.outcomes div {
  padding: 30px;
  border-left: 4px solid var(--blue);
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.blog-card,
.product-card,
.feed-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.blog-card,
.product-card {
  min-height: 260px;
  padding: clamp(26px, 4vw, 38px);
}

.products-section {
  background: #ffffff;
}

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

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

.training-grid article {
  min-height: 280px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--royal);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-card {
  border-top: 5px solid var(--royal);
}

.newsletter-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.newsletter-section .substack-embed {
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.featured-post {
  color: #fff;
  background: linear-gradient(145deg, #071b46 0%, #0b63ff 135%);
}

.featured-post h3,
.featured-post .text-link {
  color: #fff;
}

.featured-post .text-link {
  border-bottom-color: rgba(255, 255, 255, 0.76);
}

.post-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-section {
  background: #ffffff;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.feed-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 300px;
  padding: clamp(24px, 4vw, 34px);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feed-panel:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.feed-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  min-width: 0;
}

.feed-heading .eyebrow,
.feed-heading h3 {
  margin-bottom: 0;
}

.feed-heading div {
  min-width: 0;
}

.feed-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
}

.embed-placeholder,
.quote-feed,
.video-frame,
.podcast-player,
.substack-embed {
  flex: 1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(6, 18, 37, 0.1);
  border-radius: 8px;
  background: var(--paper);
}

.embed-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  text-align: center;
}

.embed-placeholder p,
.podcast-player p {
  margin-bottom: 0;
}

.substack-embed {
  min-height: 320px;
  overflow: hidden;
  background: #fff;
}

.substack-embed iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 320px;
  border: 0;
  background: #fff;
}

.schedule-section {
  background: #ffffff;
}

.calendly-placeholder {
  display: grid;
  justify-items: center;
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--royal);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 8%, rgba(56, 163, 255, 0.18), transparent 32%),
    var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.calendly-placeholder p {
  max-width: 560px;
}

.quote-feed {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.feed-action {
  display: inline-flex;
  justify-self: start;
  margin-top: 6px;
}

.quote-feed p {
  margin: 0;
  padding: 16px;
  border-left: 4px solid var(--blue);
  background: #ffffff;
  font-weight: 800;
}

.video-frame {
  aspect-ratio: 16 / 9;
  min-height: 220px;
  overflow: hidden;
}

.video-frame iframe,
.youtube-embed {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
}

.x-panel iframe,
.twitter-timeline {
  width: 100% !important;
  max-width: 100% !important;
}

.twitter-timeline-rendered {
  width: 100% !important;
  max-width: 100% !important;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(6, 18, 37, 0.88), rgba(11, 99, 255, 0.62)),
    radial-gradient(circle at 70% 35%, rgba(56, 163, 255, 0.5), transparent 34%);
}

.podcast-player {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 220px;
  padding: 24px;
}

.episode-title {
  font-weight: 800;
}

.podcast-player audio {
  width: 100%;
}

.pillar-program-section {
  color: #fff;
  background:
    radial-gradient(circle at 80% 16%, rgba(56, 163, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #061225 0%, #071b46 72%, #0b2f7a 100%);
}

.pillar-program-section h2 {
  color: #fff;
}

.pillar-program-section .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.coaching-section {
  background: var(--paper);
}

.offer-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.founder-section {
  background: #ffffff;
}

.dark-panel {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.dark-panel h3 {
  color: #fff;
}

.dark-panel .check-list li::before {
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(56, 163, 255, 0.16);
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.offer-card.featured {
  color: #fff;
  background: linear-gradient(145deg, #071b46 0%, #0b63ff 135%);
}

.offer-card.featured h3 {
  color: #fff;
}

.offer-card.featured p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.offer-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--charcoal);
  font-size: 1.1rem;
  font-weight: 800;
}

details p {
  max-width: 760px;
  padding-bottom: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 76px);
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 72px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(56, 163, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #061225 0%, #071b46 70%, #0b2f7a 100%);
}

.contact-section h2 {
  color: #fff;
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(6, 18, 37, 0.2);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--charcoal);
}

.site-footer p {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.site-footer div {
  display: flex;
  gap: 22px;
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.legal-page h1 {
  margin-top: 24px;
  color: var(--charcoal);
  font-size: clamp(3rem, 7vw, 5.4rem);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-page p {
  font-size: 1.06rem;
}

@media (max-width: 980px) {
  .pillar-grid,
  .outcomes,
  .blog-grid,
  .media-grid,
  .product-grid,
  .training-grid,
  .audience-grid,
  .offer-grid,
  .split,
  .reverse,
  .contact-section,
  .method-section,
  .daily-feature,
  .featured-podcast-card {
    grid-template-columns: 1fr;
  }

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

  .pillar-grid.five-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-intro {
    position: static;
  }

  .hero {
    min-height: 780px;
  }

  .header-verse {
    gap: 4px;
  }

  .verse-label {
    text-align: center;
  }

  .verse-lines {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .verse-lines p {
    justify-content: center;
    text-align: center;
  }

  .feed-panel {
    min-height: auto;
  }

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

}

@media (max-width: 760px) {
  .site-header {
    min-height: 106px;
    padding: 8px 16px;
  }

  .brand {
    gap: 8px;
    font-size: 1.24rem;
  }

  .brand-mark {
    width: 54px;
    height: 48px;
  }

  .brand-mark img {
    width: 52px;
    height: 48px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 106px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    color: var(--charcoal);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 58px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 0;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 18, 37, 0.9), rgba(7, 27, 70, 0.48)),
      linear-gradient(180deg, rgba(11, 99, 255, 0.12), rgba(6, 18, 37, 0.78));
  }

  h1 {
    font-size: 2.75rem;
    line-height: 0.94;
  }

  .header-verse {
    margin-top: 4px;
    padding-top: 6px;
  }

  .verse-label {
    font-size: 0.76rem;
  }

  .verse-lines p {
    flex-wrap: wrap;
    gap: 4px 7px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .verse-lines span {
    flex: 1 1 100%;
    max-width: 92vw;
    white-space: normal;
  }

  .verse-lines cite {
    flex: 0 0 auto;
    margin: 0 auto;
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

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

  .pillar-grid.five-pillars {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .method-steps article {
    grid-template-columns: 1fr;
  }

  .method-steps span {
    grid-row: auto;
  }

  .offer-card {
    min-height: auto;
  }

  .offer-card .button {
    align-self: stretch;
  }

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

  .section {
    padding: 54px 18px;
  }

  .feed-panel,
  .product-card,
  .training-grid article,
  .calendly-placeholder,
  .contact-form {
    width: 100%;
    max-width: 100%;
    padding: 18px;
    overflow: hidden;
  }

  .feed-heading {
    gap: 10px;
    margin-bottom: 16px;
  }

  .feed-icon {
    width: 38px;
    height: 38px;
    font-size: 0.74rem;
  }

  .embed-placeholder,
  .quote-feed,
  .podcast-player {
    min-height: 170px;
    padding: 14px;
  }

  .quote-feed p {
    padding: 12px;
    font-size: 0.92rem;
  }

  .feed-action {
    justify-self: stretch;
    width: 100%;
  }

  .x-panel iframe,
  .twitter-timeline,
  .twitter-timeline-rendered {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .substack-embed,
  .substack-embed iframe {
    height: 320px;
    min-height: 320px;
  }

  .site-footer,
  .site-footer div {
    flex-direction: column;
  }
}

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

  .site-nav {
    inset: 112px 12px auto;
  }

  .hero {
    padding-top: 132px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 0.98;
  }

  .hero-content {
    width: calc(100% - 28px);
  }
}
