:root {
  --bg: #11100d;
  --paper: #f3f0dc;
  --ink: #151515;
  --muted: #5e5a4e;
  --brand: #b8ac63;
  --brand-2: #6d80c2;
  --card: #1a1813;
  --radius: 12px;
  --sheen-dur: 4.8s;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.45;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: -35% -40%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  mix-blend-mode: soft-light;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 34%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.08) 56%,
    rgba(255, 255, 255, 0) 66%
  );
  background-size: 220% 100%;
  background-position: 120% 0;
  animation: global-sheen var(--sheen-dur) ease-in-out infinite;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

main > section {
  position: relative;
}

main > section > * {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Libre Baskerville", serif;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  background: rgba(17, 16, 13, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #f3f0dc;
  padding: 3px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

.brand span {
  font-family: "Libre Baskerville", serif;
  font-size: 1.03rem;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: #d4ceb0;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  background: var(--brand);
  color: #151515;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.btn-sm {
  padding: 0.5rem 0.85rem;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(150, 137, 77, 0.55);
  color: #7f7443;
}

.hero {
  background: linear-gradient(110deg, #14120d 70%, #2a2924 70%);
  color: #f4f0de;
  padding: 5rem 0 4rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -30%;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 34%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.06) 56%,
    rgba(255, 255, 255, 0) 66%
  );
  background-size: 220% 100%;
  background-position: 120% 0;
  animation: hero-sheen var(--sheen-dur) ease-in-out infinite;
}

.breeze-text {
  display: block;
  animation: text-breeze var(--sheen-dur) ease-in-out infinite;
  will-change: transform;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.lead {
  font-size: 1.1rem;
  max-width: 62ch;
  color: #d7d1b8;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.microcopy {
  font-size: 0.9rem;
  color: #bcb598;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-card h2 {
  font-size: 1.35rem;
}

.hero-card-logo {
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-logo-full {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.hero-card.hero-card-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: 1.35rem 1.25rem 1.45rem;
  align-self: start;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(210deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 52%),
    rgba(20, 18, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: calc(var(--radius) + 2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: saturate(1.15) blur(14px);
}

.hero-card-logo-frame {
  margin: 0 -0.3rem 0.25rem;
  padding: 0.42rem 0.52rem;
  border-radius: 12px;
  border: 1px solid rgba(184, 172, 99, 0.4);
  background-color: #14120d;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(184, 172, 99, 0.12),
    0 0 28px rgba(184, 172, 99, 0.1),
    0 10px 28px rgba(72, 78, 42, 0.18);
}

.hero-video-stack {
  position: relative;
  min-height: min(220px, 40vw);
}

.hero-video-stack .hero-card-logo-img {
  width: 100%;
  max-width: none;
  margin: 0;
  height: min(220px, 40vw);
  max-height: min(220px, 40vw);
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 8px;
  background-color: #14120d;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-video-stack .hero-card-logo-img {
  transition: opacity 0.85s ease-in-out;
}

.hero-video-stack .hero-card-logo-img:not(.is-active) {
  position: absolute;
  inset: 0.42rem 0.52rem;
  width: calc(100% - 1.04rem);
  height: calc(100% - 0.84rem);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-video-stack .hero-card-logo-img.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-card-logo-img {
  width: 100%;
  max-width: none;
  margin: 0;
  height: min(220px, 40vw);
  max-height: min(220px, 40vw);
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 8px;
  background-color: #14120d;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-card-tagline {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.18rem);
  color: #e8e0c0;
  margin: 0;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.9rem;
}

.hero-card-bullets {
  margin: 0;
  padding-left: 1.15rem;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hero-card-bullets li {
  color: #d6ceae;
  font-size: 0.97rem;
  line-height: 1.42;
  padding-left: 0.15rem;
}

.hero-card-bullets li::marker {
  color: rgba(184, 172, 99, 0.75);
}

.metrics {
  background: #b2a558;
  color: #14120d;
  padding: 1.2rem 0 1.35rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.metric-grid article {
  text-align: center;
  position: relative;
}

.metric-grid h3 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.metric-grid p {
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric-grid article::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 18, 13, 0.45), transparent);
}

.section {
  padding: 4.5rem 0;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 24ch;
}

.light {
  background: var(--paper);
  color: var(--ink);
}

.steps {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.steps article {
  background: #f8f5e9;
  border: 1px solid #d4ccb4;
  border-radius: var(--radius);
  padding: 1.1rem;
}

.steps span {
  color: var(--brand-2);
  font-weight: 700;
}

.guide-section {
  background: radial-gradient(circle at 15% -10%, #8193cf 0%, #6d80c2 36%, #6779ba 100%);
  color: #f2efdf;
  position: relative;
  overflow: hidden;
}

.guide-section::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  width: 380px;
  height: 380px;
  background: rgba(184, 172, 99, 0.18);
  top: -160px;
  right: -80px;
  filter: blur(4px);
}

.guide-section > .container {
  position: relative;
}

.guide-section > .container::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(242, 239, 223, 0.08);
  left: -120px;
  bottom: -120px;
  pointer-events: none;
  z-index: 0;
}

.guide-intro {
  text-align: center;
  max-width: 1020px;
  margin: 0 auto;
}

.guide-section .eyebrow {
  color: #f2efdf;
  margin-bottom: 0.6rem;
}

.guide-intro h2 {
  max-width: 24ch;
  margin: 0 auto 1.25rem;
  line-height: 1.08;
}

.guide-intro h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin: 0.8rem auto 0;
  background: rgba(184, 172, 99, 0.85);
}

.guide-intro p {
  color: #e9e6d8;
  max-width: 86ch;
  margin: 1rem auto 0;
  line-height: 1.5;
  font-size: 1.06rem;
}

.guide-cards {
  margin-top: 2.35rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.guide-card {
  background: linear-gradient(180deg, #e8e4cd 0%, #dcd7be 100%);
  color: #171510;
  border: 1px solid rgba(23, 21, 16, 0.18);
  border-radius: 0;
  padding: 1.3rem 1.15rem;
  min-height: 330px;
  text-align: center;
  position: relative;
  box-shadow: 0 16px 26px rgba(31, 36, 66, 0.28);
  overflow: hidden;
}

.guide-card span {
  display: block;
  font-family: "Libre Baskerville", serif;
  color: #6e81c4;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.guide-card h3 {
  font-size: 2.05rem;
  margin-bottom: 0.75rem;
}

.guide-card p {
  margin: 0;
}

.guide-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(242, 239, 223, 0.55);;
  font-size: 1.8rem;
}

.guide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 42%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.12) 58%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 220% 100%;
  background-position: 120% 0;
  transition: background-position 550ms ease;
}

.guide-card:hover::before {
  background-position: -20% 0;
}

.dark {
  background: #191713;
  color: #f2efdf;
}

.story-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.story {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.story small {
  color: #b9b29a;
}

.bob-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.bob-section {
  position: relative;
  background: #f3f0dc;
  padding-bottom: 2.2rem;
}

.bob-copy h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
}

.bob-copy p {
  color: #27241c;
  font-size: 1.06rem;
  max-width: 64ch;
}

.bob-copy .btn {
  margin-top: 0.45rem;
}

.bob-italic {
  font-style: italic;
  color: #1d1a14;
  font-size: 1.15rem;
}

.bob-quote {
  background: linear-gradient(180deg, #dfdac1 0%, #d5cfb4 100%);
  border-radius: 8px;
  padding: 1.4rem 1.35rem;
  color: #1a1813;
  border: 1px solid rgba(29, 26, 20, 0.12);
  box-shadow: 0 14px 24px rgba(34, 30, 23, 0.12);
}

.bob-quote p {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  line-height: 1.16;
  margin: 0 0 1rem;
  font-style: italic;
  text-align: center;
}

.bob-quote small {
  display: block;
  text-align: center;
  color: #6e81c4;
  margin-top: 0.25rem;
}

.bob-metrics {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.bob-metrics article {
  background: linear-gradient(180deg, #100d09 0%, #18130d 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  text-align: center;
  padding: 1.15rem 0.8rem;
  box-shadow: 0 12px 20px rgba(18, 14, 9, 0.2);
}

.bob-metrics h3 {
  font-size: 3rem;
  color: #b8ac63;
  margin-bottom: 0.2rem;
  display: inline-block;
  background-image: linear-gradient(
    110deg,
    #8f8551 0%,
    #b9ad67 30%,
    #f0e6a8 48%,
    #b9ad67 62%,
    #8f8551 100%
  );
  background-size: 220% 100%;
  background-position: 140% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen-slide 3.4s ease-in-out infinite;
}

.bob-metrics p {
  margin: 0;
  color: #f2efdf;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.smucker-section {
  margin-top: 1.2rem;
  padding: 3.8rem 0 3.2rem;
  position: relative;
  background: #fffdf4;
  box-shadow: 0 1px 0 rgba(29, 26, 20, 0.08) inset, 0 -1px 0 rgba(29, 26, 20, 0.08) inset;
}

.smucker-section::before {
  content: none;
}

.smucker-section::after {
  content: none;
}

.smucker-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.smucker-intro h2 {
  margin: 0 auto 0.9rem;
}

.smucker-intro p {
  color: #252219;
  margin: 0.7rem auto 0;
  max-width: 72ch;
}

.smucker-metrics {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.smucker-metrics article {
  background: linear-gradient(180deg, #100d09 0%, #18130d 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  text-align: center;
  padding: 1.15rem 0.8rem;
  box-shadow: 0 12px 20px rgba(18, 14, 9, 0.2);
}

.smucker-metrics h3 {
  font-size: 3rem;
  margin-bottom: 0.2rem;
  display: inline-block;
  background-image: linear-gradient(
    110deg,
    #5362a7 0%,
    #6e81c4 28%,
    #b8c4ff 48%,
    #6e81c4 62%,
    #5362a7 100%
  );
  background-size: 220% 100%;
  background-position: 140% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen-slide 3.6s ease-in-out infinite;
}

.smucker-metrics p {
  margin: 0;
  color: #f2efdf;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.solution-section {
  background: radial-gradient(circle at 10% 0%, #7a8ccc 0%, #6d80c2 32%, #6779ba 100%);
  color: #f2efdf;
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(184, 172, 99, 0.12);
  right: -150px;
  bottom: -180px;
}

.solution-intro {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.solution-section .eyebrow {
  color: #f2efdf;
  margin-bottom: 0.6rem;
}

.solution-intro h2 {
  margin: 0 auto 0.95rem;
  max-width: 16ch;
}

.solution-intro h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin: 0.8rem auto 0;
  background: rgba(184, 172, 99, 0.85);
}

.solution-intro p {
  margin: 0.6rem auto 0;
  max-width: 76ch;
  color: #ece9dd;
}

.solution-steps {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.solution-step {
  text-align: center;
}

.solution-step span {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(232, 230, 218, 0.55);
  margin-bottom: 0.45rem;
}

.solution-step h3 {
  font-size: 2rem;
  margin-bottom: 0.65rem;
}

.solution-step p {
  margin: 0;
  color: #f0ede1;
}

.plan-section {
  background: linear-gradient(180deg, #120f0b 0%, #1a140d 100%);
}

.plan-section .eyebrow {
  color: #b8ac63;
  margin-bottom: 0.6rem;
  text-align: center;
}

.plan-section h2 {
  max-width: 18ch;
  margin: 0 auto 0.75rem;
  text-align: center;
  line-height: 1.04;
}

.plan-section h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 0.7rem auto 0;
  background: rgba(184, 172, 99, 0.65);
}

.plan-lead {
  max-width: 56ch;
  color: #ece8d9;
  font-size: 1.08rem;
  margin: 0.8rem auto 0;
  text-align: center;
}

.plan-cards {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.plan-card {
  border: 1px solid rgba(225, 216, 187, 0.45);
  border-radius: 4px;
  padding: 1.15rem 1rem;
  text-align: center;
  background: rgba(20, 16, 10, 0.38);
}

.plan-card span {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #b8ac63;
}

.plan-card h3 {
  font-size: 2rem;
  margin-bottom: 0.65rem;
}

.plan-card p {
  margin: 0;
  color: #ece8d9;
}

.stake-section {
  background: radial-gradient(circle at 16% 0%, #7c8ecf 0%, #6d80c2 36%, #697bbd 100%);
  color: #f2efdf;
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
}

.stake-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.stake-intro h2 {
  margin: 0 auto;
  max-width: 14ch;
}

.stake-intro h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin: 0.8rem auto 0;
  background: rgba(184, 172, 99, 0.85);
}

.stake-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stake-grid h3 {
  text-transform: uppercase;
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
  max-width: 14ch;
  line-height: 1.02;
}

.stake-grid ul {
  margin: 0;
  padding-left: 1.2rem;
}

.stake-grid li {
  margin-bottom: 0.38rem;
  color: #f1eee1;
  font-size: 1.03rem;
}

.spirit-section {
  padding-top: 4.2rem;
}

.spirit-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.spirit-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5.2vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 1.1rem;
}

.spirit-copy .eyebrow {
  max-width: 28ch;
  position: relative;
  padding-left: 3.3rem;
}

.spirit-copy .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 2.7rem;
  height: 1px;
  background: rgba(127, 116, 67, 0.8);
}

.spirit-copy p {
  max-width: 56ch;
  color: #2a271f;
}

.spirit-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.spirit-image {
  min-height: 470px;
  border-radius: 0;
  border: 1px solid rgba(32, 29, 22, 0.16);
  background-image: linear-gradient(rgba(27, 24, 18, 0.12), rgba(27, 24, 18, 0.12)),
    url("./assets/hero-heartland.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.problem-section {
  padding-top: 4rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.problem-copy h2 {
  margin-bottom: 1rem;
  max-width: 18ch;
}

.problem-copy p {
  margin: 0 0 1rem;
  color: #272620;
  max-width: 62ch;
}

.problem-copy blockquote {
  margin: 1.1rem 0 0;
  padding: 0.2rem 0 0.2rem 1rem;
  border-left: 2px solid #7d7459;
  font-size: 1.06rem;
  line-height: 1.35;
  max-width: 36ch;
}

.problem-cards {
  display: grid;
  gap: 1rem;
  padding-top: 3rem;
}

.problem-card {
  background: #17140f;
  color: #efe8d0;
  border-radius: 6px;
  padding: 1.1rem 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.problem-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #b9ac63;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  position: relative;
  display: inline-block;
  background-image: linear-gradient(
    110deg,
    #8f8551 0%,
    #b9ad67 30%,
    #f0e6a8 48%,
    #b9ad67 62%,
    #8f8551 100%
  );
  background-size: 220% 100%;
  background-position: 140% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen-slide 3.4s ease-in-out infinite;
}

.problem-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  display: inline-block;
  background-image: linear-gradient(
    110deg,
    #cfc9b2 0%,
    #f3efdd 30%,
    #ffffff 48%,
    #f3efdd 62%,
    #cfc9b2 100%
  );
  background-size: 220% 100%;
  background-position: 140% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen-slide 3.8s ease-in-out infinite;
}

.problem-card-blue h3 {
  background-image: linear-gradient(
    110deg,
    #5362a7 0%,
    #6e81c4 28%,
    #b8c4ff 48%,
    #6e81c4 62%,
    #5362a7 100%
  );
}

@keyframes sheen-slide {
  0% {
    background-position: 140% 0;
  }

  55% {
    background-position: -50% 0;
  }

  100% {
    background-position: -50% 0;
  }
}

@keyframes hero-sheen {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -20% 0;
  }
}

@keyframes global-sheen {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -20% 0;
  }
}

@keyframes text-breeze {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(1.4px);
  }

  100% {
    transform: translateX(-1.4px);
  }
}

.bullets {
  padding-left: 1.1rem;
}

.bullets li {
  margin-bottom: 0.6rem;
}

.lead-form {
  background: #fffdf3;
  border: 1px solid #d8d1bc;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 14px 32px rgba(21, 21, 21, 0.12);
}

.lead-form label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.lead-form input {
  width: 100%;
  margin-top: 0.35rem;
  border-radius: 8px;
  border: 1px solid #c8c0a7;
  padding: 0.65rem 0.7rem;
}

.lead-form .btn {
  width: 100%;
  margin-top: 0.3rem;
}

.form-message {
  min-height: 1.2rem;
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  background: #0f0e0b;
  color: #b9b29a;
  padding: 1rem 0;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.site-footer a {
  color: #d6ceae;
}

.owner-access-link {
  position: absolute;
  right: 0.35rem;
  bottom: 0.25rem;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  background: rgba(214, 206, 174, 0.12);
  border: 1px solid rgba(214, 206, 174, 0.16);
  opacity: 0.18;
}

.owner-access-link:hover,
.owner-access-link:focus-visible {
  opacity: 0.55;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  color: #dfd8bc;
  font-size: 0.9rem;
}

.lift {
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  border-color: rgba(109, 128, 194, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero-grid,
  .split,
  .problem-grid,
  .guide-cards,
  .bob-grid,
  .bob-metrics,
  .smucker-metrics,
  .solution-steps,
  .plan-cards,
  .stake-grid,
  .spirit-grid,
  .story-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-grid aside.hero-card {
    order: -1;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    background: linear-gradient(180deg, #14120d 75%, #2a2924 75%);
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .problem-cards {
    padding-top: 0.5rem;
  }

  .guide-card {
    min-height: auto;
  }

  .guide-card::before {
    background: none;
  }

  .hero::before {
    animation: none;
    opacity: 0;
  }

  body::after {
    opacity: 0.62;
  }

  .guide-card:not(:last-child)::after {
    content: "";
  }

  .stake-grid h3 {
    max-width: none;
  }

  .spirit-image {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  .hero::before {
    animation: none !important;
  }

  .breeze-text {
    animation: none !important;
  }
}

/* Jeff layout — gold / cream palette */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(184, 172, 99, 0.22);
  background: linear-gradient(180deg, var(--paper) 0%, #ebe6d2 100%);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  color: var(--ink);
}

.page-hero h1 em {
  font-style: italic;
  color: #7a6f38;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 1.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-media-panel {
  margin: 0;
}

.hero-media-panel .hero-card-logo-frame {
  margin: 0;
}

.hero-media-tagline {
  margin: 0.75rem 0 0;
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: #5e5738;
  text-align: center;
  line-height: 1.35;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: #fffdf6;
  border: 1px solid rgba(184, 172, 99, 0.28);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 12px 28px rgba(21, 21, 21, 0.08);
}

.h-stat {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 172, 99, 0.2);
}

.h-stat:nth-child(odd) {
  padding-right: 0.85rem;
  border-right: 1px solid rgba(184, 172, 99, 0.2);
}

.h-stat:nth-child(3),
.h-stat:nth-child(4) {
  padding-bottom: 0;
  border-bottom: none;
}

.h-stat-num {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #7a6f38;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.h-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.btn-ghost-dark {
  background: transparent;
  border: 1px solid rgba(94, 90, 78, 0.45);
  color: var(--ink);
}

.btn-ghost-dark:hover {
  border-color: var(--brand);
  color: #5e5738;
}

.page-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-alt {
  background: rgba(255, 253, 246, 0.72);
}

.section-h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  max-width: 28ch;
  line-height: 1.25;
}

.section-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 65ch;
  margin-bottom: 0.85rem;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--brand);
  margin: 0.75rem 0 1.5rem;
  border-radius: 2px;
}

.market-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.market-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 172, 99, 0.28);
  background: #fffdf6;
  font-size: 0.82rem;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.market-pill:hover {
  border-color: var(--brand);
  color: #5e5738;
  background: #f5f0dc;
}

.market-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.problem-quote,
.trial-quote {
  margin: 1.5rem 0 0;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--brand);
  background: rgba(184, 172, 99, 0.12);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.problem-quote p,
.trial-quote p {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #3d3828;
  margin: 0 0 0.35rem;
}

.problem-quote cite,
.trial-quote cite {
  font-size: 0.75rem;
  color: #7a6f38;
  font-style: normal;
}

.trial-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(184, 172, 99, 0.22);
}

.trial-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.trial-crop {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(184, 172, 99, 0.2);
}

.trial-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.trial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.trial-card {
  background: var(--paper);
  border: 1px solid rgba(184, 172, 99, 0.25);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}

.trial-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a6f38;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trial-stat {
  font-family: "Libre Baskerville", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.trial-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.science-box {
  margin-top: 1.25rem;
  padding: 1.5rem 1.65rem;
  border: 1px solid rgba(184, 172, 99, 0.28);
  border-radius: var(--radius);
  background: #fffdf6;
}

.science-citation {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
}

.sci-item {
  background: var(--paper);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
}

.sci-num {
  font-family: "Libre Baskerville", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #7a6f38;
}

.sci-desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 0.2rem;
}

.steps {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(184, 172, 99, 0.2);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: "Libre Baskerville", serif;
  font-size: 1.15rem;
  color: var(--brand);
  min-width: 2rem;
  opacity: 0.85;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.3rem;
}

.step-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.stakes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.stake-card {
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(184, 172, 99, 0.22);
}

.stake-win {
  background: rgba(184, 172, 99, 0.14);
}

.stake-lose {
  background: #e8e3d0;
}

.stake-head {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  margin: 0 0 0.85rem;
}

.stake-win .stake-head {
  color: #5e5738;
}

.stake-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stake-list li {
  font-size: 0.85rem;
  line-height: 1.65;
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.stake-win .stake-list li {
  color: #3d3828;
}

.stake-win .stake-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.stake-lose .stake-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
}

.stake-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.stake-win .stake-item {
  color: #3d3828;
}

.stake-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.stake-win .stake-icon {
  stroke: var(--brand);
}

.stake-lose .stake-icon {
  stroke: var(--muted);
}

.contact-wrap.lead-form {
  margin-top: 1.25rem;
  max-width: 640px;
}

.contact-email {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-email a {
  color: #5e5738;
  font-weight: 600;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.footer-security {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
}

.footer-security a {
  color: #9a9278;
  text-decoration: none;
}

.footer-security a:hover,
.footer-security a:focus-visible {
  color: #d6ceae;
  text-decoration: underline;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #c8c0a7;
  border-radius: 8px;
  background: #fffdf6;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(184, 172, 99, 0.2);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235e5a4e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2rem;
}

.submit-btn {
  width: 100%;
  margin-top: 0.25rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.25rem;
}

.footer-logo {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  color: #f3f0dc;
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.footer-copy,
.footer-right p {
  margin: 0;
  font-size: 0.78rem;
  color: #b9b29a;
  line-height: 1.55;
}

.footer-right {
  text-align: right;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav .nav-cta {
  margin-left: 0.25rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f3f0dc;
  margin: 5px 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    order: -1;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stakes,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-right {
    text-align: left;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(17, 16, 13, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem clamp(4vw, 1.5rem, 2rem);
    gap: 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }
}

/* Audio briefing page */
body {
  cursor:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath fill='%23b8ac63' d='M24 4c-9 1-14.7 4.7-17.8 10.4-1.8 3.2-2.4 6.7-2.2 9.6.1 1.1 1.5 1.5 2.2.7 1.4-1.6 3.5-3.2 6.1-4.4 5.5-2.7 9.8-6.6 12.5-14.9.2-.7-.2-1.5-.8-1.4Z'/%3E%3Cpath fill='none' stroke='%2314110d' stroke-width='1.7' stroke-linecap='round' d='M8.1 21.4c3-1.7 5.8-3.2 8.5-5.6M12.7 18.2c-.3-1.8-.2-3.6.5-5.3'/%3E%3C/svg%3E")
      4 4,
    auto;
}

a,
button,
.btn,
audio,
summary,
[role="button"] {
  cursor:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Ccircle cx='15' cy='15' r='12' fill='%2319140f' stroke='%23b8ac63' stroke-width='2'/%3E%3Cpath fill='none' stroke='%23b8ac63' stroke-width='1.9' stroke-linecap='round' d='M15 21V12M15 12c-2.6 0-4.7 1.7-5.4 4.2M15 12c2.6 0 4.7 1.7 5.4 4.2'/%3E%3Cpath fill='%2399b45c' d='M14.9 11.7c-1.8-.2-3.2-1.2-3.8-2.6 2-.3 3.8.5 4.6 2.2-.2.1-.5.3-.8.4ZM15.1 11.7c1.8-.2 3.2-1.2 3.8-2.6-2-.3-3.8.5-4.6 2.2.2.1.5.3.8.4Z'/%3E%3C/svg%3E")
      15 15,
    pointer;
}

.briefing-page main > section::after {
  content: none;
}

.briefing-main-content {
  padding-top: 0;
}

.briefing-main-content .section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.podcast-studio-container {
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.95) 0%, rgba(25, 20, 14, 0.95) 100%),
    radial-gradient(circle at 20% 10%, rgba(184, 172, 99, 0.14), transparent 48%);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  padding: 2.55rem 0 2.9rem;
  overflow: hidden;
}

.podcast-studio-container::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 19% 62%, rgba(109, 128, 194, 0.22), transparent 22%),
    radial-gradient(circle at 81% 62%, rgba(109, 128, 194, 0.22), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 68%);
  opacity: 0.85;
}

.briefing-stage-title {
  color: #f3ecd0;
  margin: 0 auto 0.5rem;
  max-width: 20ch;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
}

.briefing-stage-subtitle {
  color: #d4ccb0;
  max-width: 64ch;
  margin: 0 auto 1.2rem;
  line-height: 1.55;
  font-size: 1.05rem;
}

.briefing-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 1.4rem;
}

.podcast-studio {
  display: grid;
  grid-template-columns: auto minmax(320px, 620px) auto;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.podcast-studio::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -18px;
  height: 40px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(80, 104, 184, 0.35) 0%, rgba(80, 104, 184, 0) 72%);
}

.podcast-studio::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  top: -12px;
  height: 4px;
  border-radius: 999px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(194, 204, 247, 0.55), rgba(255, 255, 255, 0));
}

.term-sheet-strip {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0.75rem;
}

.term-chip {
  background: linear-gradient(180deg, rgba(250, 245, 224, 0.97), rgba(234, 226, 194, 0.97));
  border: 1px solid rgba(76, 66, 44, 0.35);
  border-radius: 10px;
  text-align: center;
  padding: 0.6rem 0.55rem;
  box-shadow: 0 10px 20px rgba(8, 10, 17, 0.22);
}

.term-chip p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  color: #5b533e;
  font-weight: 700;
}

.term-chip h3 {
  margin: 0.32rem 0 0;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: #17130d;
}

.microphone-frame {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 28%, rgba(96, 88, 62, 0.82) 0%, rgba(26, 21, 15, 0.95) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  border: 1px solid rgba(229, 219, 182, 0.36);
  display: grid;
  place-items: center;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 34px rgba(96, 122, 212, 0.34);
  position: relative;
}

.microphone-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.podcast-studio .microphone {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 6px;
  mix-blend-mode: normal;
  opacity: 1;
  filter:
    brightness(1.34)
    contrast(1.12)
    saturate(1.16)
    drop-shadow(0 7px 12px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 10px rgba(239, 227, 178, 0.18));
}

.briefing-player-panel {
  background: linear-gradient(180deg, rgba(28, 35, 57, 0.88), rgba(20, 27, 47, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: 0 14px 28px rgba(8, 10, 17, 0.48);
  animation: briefing-panel-glow 4.5s ease-in-out infinite;
}

.player-label {
  margin: 0 0 0.55rem;
  color: #d6dff7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.podcast-studio audio {
  width: min(100%, 560px);
  display: block;
  margin: 0 auto;
}

.left-mic {
  --mic-flip: -1;
  animation: mic-sway-left 3.8s ease-in-out infinite;
}

.right-mic {
  --mic-flip: -1;
  animation: mic-sway-right 3.8s ease-in-out infinite;
}

.briefing-metrics {
  padding-top: 1.8rem;
}

.briefing-bullets {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.briefing-bullets li {
  margin-bottom: 0.45rem;
}

.briefing-proof-section {
  background: radial-gradient(circle at 15% -10%, #7f92d0 0%, #6d80c2 36%, #6375b6 100%);
  color: #f2efdf;
}

.briefing-proof-section .eyebrow {
  color: #f2efdf;
}

.briefing-proof-section h2 {
  max-width: 17ch;
  color: #f2efdf;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.briefing-proof-cards .guide-card {
  min-height: 280px;
  border-radius: 10px;
}

.briefing-proof-cards .guide-card h3 {
  font-size: 1.65rem;
}

.briefing-capital-section .plan-card h3 {
  font-size: 1.6rem;
}

.briefing-offer-section {
  padding-top: 3.2rem;
}

.briefing-offer-card {
  border: 1px solid rgba(53, 46, 35, 0.26);
  border-radius: 12px;
  background: linear-gradient(180deg, #fcf8e7 0%, #f3eed9 100%);
  padding: 1.25rem 1.2rem;
  box-shadow: 0 16px 30px rgba(21, 18, 13, 0.12);
  min-height: 100%;
}

.briefing-offer-card h3 {
  font-size: 2rem;
  margin-bottom: 0.65rem;
  text-align: center;
}

.briefing-offer-card .eyebrow {
  margin-bottom: 0.45rem;
}

.briefing-mission-section {
  padding-top: 2.8rem;
}

@keyframes briefing-panel-glow {
  0%,
  100% {
    box-shadow: 0 14px 28px rgba(8, 10, 17, 0.48);
  }

  50% {
    box-shadow: 0 18px 34px rgba(96, 118, 191, 0.42);
  }
}

@keyframes mic-sway-left {
  0%,
  100% {
    transform: scaleX(var(--mic-flip)) scale(1.18) rotate(-2deg) translateY(0);
  }

  50% {
    transform: scaleX(var(--mic-flip)) scale(1.18) rotate(2deg) translateY(-2px);
  }
}

@keyframes mic-sway-right {
  0%,
  100% {
    transform: scaleX(var(--mic-flip)) scale(1.18) rotate(2deg) translateY(0);
  }

  50% {
    transform: scaleX(var(--mic-flip)) scale(1.18) rotate(-2deg) translateY(-2px);
  }
}

.briefing-copy-section {
  padding-top: 2.2rem;
}

.briefing-copy-card {
  background: rgba(255, 254, 246, 0.92);
  border: 1px solid rgba(72, 66, 53, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(19, 16, 12, 0.13);
  padding: clamp(1.2rem, 3vw, 2rem);
  max-width: min(1040px, 92vw);
}

.briefing-copy-card h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.briefing-page .section > .container > .eyebrow {
  text-align: center;
}

.briefing-copy-card p,
.briefing-copy-card li {
  color: #27231a;
}

.briefing-page .site-footer {
  margin-top: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .briefing-player-panel,
  .left-mic,
  .right-mic {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .briefing-main-content .section {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .briefing-actions {
    margin-bottom: 1rem;
  }

  .podcast-studio {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .term-sheet-strip {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .microphone-frame {
    width: 104px;
    height: 104px;
    margin: 0 auto;
  }

  .podcast-studio .microphone {
    width: 82px;
    height: 82px;
  }

  .briefing-proof-cards .guide-card {
    min-height: auto;
  }

  .briefing-offer-card h3 {
    font-size: 1.65rem;
  }
}
