:root {
  --teal: #008080;
  --teal-deep: #063f42;
  --teal-ink: #042f32;
  --purple: #4f1964;
  --mist: #ebebea;
  --ink: #000000;
  --gold: #b99a55;
  --olive: #5f7651;
  --paper: #fbfbf8;
  --line: rgba(4, 47, 50, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: white;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--teal-deep);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.46) 43%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 47, 50, 0.48), rgba(4, 47, 50, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 54px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 12px 30px rgba(0, 128, 128, 0.34);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, 100%);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  padding: 18px 22px 0 0;
}

.hero-stats dt {
  font-weight: 900;
  font-size: 1rem;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.intro-band {
  background: var(--teal);
  color: white;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 88px);
}

.intro-band p {
  max-width: 1040px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  line-height: 1.08;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.split,
.included,
.cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.text-stack p,
.cta p,
.check-list,
.outcome-grid p,
.week-list p {
  color: rgba(4, 47, 50, 0.78);
  font-size: 1.02rem;
}

.text-stack p {
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 46px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome-grid article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.outcome-grid article:nth-child(2) {
  background: rgba(235, 235, 234, 0.7);
}

.outcome-grid article:nth-child(3) {
  background: rgba(185, 154, 85, 0.1);
}

.outcome-grid article:nth-child(4) {
  background: rgba(0, 128, 128, 0.08);
}

.weeks {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  background: var(--mist);
}

.week-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.week-list article {
  min-height: 250px;
  padding: 28px;
  background: var(--paper);
}

.week-list span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--purple);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

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

.check-list li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0, 128, 128, 0.12);
}

.quote-band {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  background: var(--purple);
  color: white;
}

.quote-band blockquote {
  margin: 0;
}

.quote-band p {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.98;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 92px;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--teal-ink);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

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

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

.faq-list p {
  max-width: 690px;
  margin: -4px 0 24px;
  color: rgba(4, 47, 50, 0.78);
  font-size: 1.02rem;
}

.cta {
  align-items: center;
}

.application-panel {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.application-panel h3 {
  max-width: 420px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

.application-panel p {
  margin: 0;
}

.application-panel .button {
  width: fit-content;
  margin-top: 10px;
  border: 0;
}

.panel-kicker {
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.24) 34%, rgba(0, 0, 0, 0.82) 100%),
      linear-gradient(90deg, rgba(4, 47, 50, 0.46), rgba(4, 47, 50, 0));
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-content {
    align-self: end;
    padding-top: 140px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.6rem);
  }

  .hero-stats,
  .split,
  .included,
  .faq,
  .cta,
  .outcome-grid,
  .week-list {
    grid-template-columns: 1fr;
  }

  .faq .section-heading {
    position: static;
  }

  .hero-stats div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding-bottom: 14px;
  }

  .outcome-grid article,
  .week-list article {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 780px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .application-panel .button {
    width: 100%;
  }

  .section {
    width: min(100% - 32px, 1120px);
  }
}
