:root {
  --green: #013f34;
  --green-2: #075342;
  --green-soft: #eaf4ed;
  --gold: #c08323;
  --gold-2: #e2b35d;
  --red: #d92121;
  --cream: #fffaf1;
  --paper: #fffdf8;
  --line: #dec28b;
  --text: #0d2721;
  --muted: #5e655f;
  --shadow: 0 16px 38px rgba(49, 32, 8, 0.08);
  --radius: 15px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at 50% 0%, rgba(236, 198, 120, .16), transparent 28rem),
    linear-gradient(180deg, #fffaf3 0%, #fffdf8 43%, #fbf6ec 100%);
}

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

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  width: 100%;
  height: 55px;
  background: rgba(255, 251, 244, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 134, 32, 0.38);
}

.header-inner {
  max-width: 760px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 152px;
}

.brand img {
  width: 148px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 43px);
  flex: 1;
}

.nav-menu a {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 18px 0;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 50%;
  bottom: 11px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(180deg, #d79a3e, #b97a22);
  color: #10251d;
  border: 1px solid rgba(122, 72, 10, .18);
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 8px 18px rgba(178, 112, 25, .18);
  font-size: 10.5px;
  font-weight: 800;
  padding: 9px 15px;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease;
}

.join-btn:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 12px 24px rgba(178, 112, 25, .22);
}

.join-btn span {
  font-size: 16px;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 36px;
  border: 1px solid rgba(197, 134, 32, .24);
  background: rgba(255,255,255,.6);
  border-radius: 10px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green);
  border-radius: 99px;
  margin: 5px 0;
}

main {
  overflow: hidden;
}

.hero,
.proof-section,
.story-section,
.fit-section,
.audience-section,
.philosophy-section,
.next-step-section,
.comparison-section,
.final-cta {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  text-align: center;
  padding: 19px 20px 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 5px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.eyebrow span {
  width: 25px;
  height: 1px;
  background: var(--gold);
  opacity: .68;
}

.hero h1 {
  margin: 0 auto;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 4.4vw, 32px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero h1 strong {
  color: #bc801e;
  font-weight: inherit;
}

.hero-subtitle {
  margin: 9px auto 0;
  max-width: 690px;
  color: #2e3935;
  font-size: 11.5px;
  font-weight: 500;
}

.proof-section {
  padding: 0 22px;
}

.proof-image {
  width: 100%;
  border-radius: 14px;
  filter: drop-shadow(0 14px 24px rgba(62, 38, 6, .07));
}

.story-section {
  padding: 26px 28px 8px;
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 40px;
  align-items: center;
}

.story-copy h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.18;
  color: #10261f;
  font-weight: 800;
}

.story-copy p {
  margin: 0 0 13px;
  font-size: 10.5px;
  color: #323e3a;
}

.video-card {
  display: block;
  border-radius: 14px;
  transition: transform .18s ease, filter .18s ease;
}

.video-card img {
  width: 100%;
  border-radius: 14px;
}

.video-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.fit-section {
  padding: 14px 26px 23px;
}

.section-heading {
  text-align: center;
  margin-bottom: 12px;
}

.section-heading h2 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  color: #10261f;
  font-size: 15px;
  font-weight: 800;
}

.section-heading p {
  margin: 0;
  font-size: 10.5px;
  color: #48514d;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fit-card {
  min-height: 210px;
  background: rgba(255, 253, 248, .86);
  border: 1px solid rgba(211, 151, 52, .54);
  border-radius: 8px;
  padding: 12px 17px 14px;
  box-shadow: 0 10px 20px rgba(81, 48, 10, .04);
}

.fit-card h3 {
  margin: 0 0 10px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.fit-card.good h3 {
  color: var(--green);
}

.fit-card.bad h3 {
  color: #bf341f;
}

.fit-card ul,
.persona-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fit-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  color: #222b28;
  font-size: 9.6px;
  line-height: 1.45;
}

.fit-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 13px;
  font-size: 8px;
  font-weight: 900;
}

.good li::before {
  content: "✓";
  background: var(--green);
}

.bad li::before {
  content: "×";
  background: #cf2e2a;
}

.audience-section {
  padding: 16px 26px 18px;
}

.section-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.section-title-line span {
  height: 1px;
  width: 86px;
  background: rgba(198, 139, 42, .45);
}

.section-title-line h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: #10261f;
}

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

.persona-card {
  min-height: 153px;
  background: rgba(255, 253, 248, .92);
  border: 1px solid rgba(209, 151, 52, .62);
  border-radius: 8px;
  padding: 13px 14px 12px;
  box-shadow: 0 10px 20px rgba(81, 48, 10, .035);
}

.persona-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  color: #f1c86d;
  background: var(--green);
  border: 1px solid rgba(226, 179, 93, .64);
  border-radius: 50%;
  font-size: 18px;
}

.persona-card h3 {
  min-height: 34px;
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  color: #11281f;
  text-align: center;
  font-size: 10.5px;
  line-height: 1.16;
  font-weight: 800;
}

.persona-card li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 4px;
  font-size: 9.4px;
  line-height: 1.35;
  color: #27342f;
}

.persona-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .57em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.philosophy-section {
  padding: 13px 66px 17px;
  text-align: center;
}

.philosophy-section .intro {
  margin: 0 0 6px;
  font-size: 11px;
  color: #343e3b;
}

.philosophy-section h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  color: #c78324;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.18;
}

.principles {
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
}

.principle {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}

.principle-icon {
  color: var(--gold);
  font-size: 27px;
  text-align: center;
}

.principle p {
  margin: 0;
  font-size: 11px;
  color: #252e2b;
}

.closing-copy {
  max-width: 610px;
  margin: 11px auto 0;
  font-size: 11px;
  color: #252e2b;
}

.next-step-section {
  padding: 18px 26px 20px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
}

.next-step-section .video-card {
  border-radius: 11px;
}

.next-step-section .video-card img {
  border-radius: 11px;
  box-shadow: 0 14px 28px rgba(53, 33, 6, .09);
}

.next-copy h2 {
  margin: 0 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  color: #10261f;
  font-size: 24px;
  line-height: 1.08;
}

.next-copy p {
  margin: 0 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  color: #10261f;
  font-size: 15px;
  line-height: 1.25;
}

.youtube {
  display: inline-flex;
  align-items: center;
  color: #192a25;
  font-size: 11px;
  font-weight: 700;
}

.youtube::first-letter {
  color: red;
}

.comparison-section {
  padding: 2px 26px 8px;
  text-align: center;
}

.comparison-section h2 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1;
  font-weight: 500;
}

.comparison-section p {
  margin: 2px auto 12px;
  max-width: 610px;
  font-size: 10.5px;
  color: #303b37;
  line-height: 1.38;
}

.comparison-section img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 14px 24px rgba(49, 32, 8, .055);
}

.final-cta {
  position: relative;
  margin-bottom: 13px;
  padding: 9px 30px 10px;
  min-height: 68px;
  display: grid;
  grid-template-columns: 140px 1fr 170px;
  align-items: center;
  gap: 16px;
  background: rgba(255, 251, 244, .92);
  border: 1px solid rgba(211, 151, 52, .56);
  border-radius: 8px;
  box-shadow: 0 16px 28px rgba(52, 32, 5, .07);
}

.final-cta .trophy {
  color: var(--gold);
  font-size: 44px;
  line-height: 1;
  text-align: center;
}

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

.cta-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: #10261f;
}

.cta-copy p {
  margin: 0;
  color: #33403b;
  font-size: 10px;
}

.cta-copy strong {
  display: block;
  margin-top: 1px;
  color: #d69a35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1;
}

.join-btn.large {
  background: linear-gradient(180deg, #095a43, #013f34);
  color: #ffd374;
  border-radius: 4px;
  font-size: 12px;
  padding: 10px 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 10px 20px rgba(0, 61, 49, .20);
}

.final-cta small {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 8.8px;
  color: #5f625b;
}

@media (max-width: 760px) {
  .header-inner {
    padding: 0 16px;
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-menu,
  .header-cta {
    display: none;
  }

  .site-header.open {
    height: auto;
  }

  .site-header.open .header-inner {
    min-height: 55px;
    flex-wrap: wrap;
    align-content: center;
    padding-bottom: 12px;
  }

  .site-header.open .nav-menu,
  .site-header.open .header-cta {
    display: flex;
    flex-basis: 100%;
  }

  .site-header.open .nav-menu {
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }

  .site-header.open .nav-menu a {
    padding: 8px 0;
    border-top: 1px solid rgba(197, 134, 32, .18);
  }

  .site-header.open .header-cta {
    order: 4;
    margin: 6px 0 0;
  }

  .hero {
    padding-top: 22px;
  }

  .story-section,
  .next-step-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .story-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .fit-grid,
  .persona-grid {
    grid-template-columns: 1fr 1fr;
  }

  .philosophy-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .final-cta {
    margin-left: 18px;
    margin-right: 18px;
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 135px;
  }

  .brand img {
    width: 136px;
  }

  .hero h1 {
    font-size: 25px;
  }

  .proof-section,
  .fit-section,
  .audience-section,
  .comparison-section,
  .next-step-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .story-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .fit-grid,
  .persona-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-title-line span {
    width: 35px;
  }

  .philosophy-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .principle {
    grid-template-columns: 32px 1fr;
  }

  .comparison-section img,
  .proof-image {
    border-radius: 10px;
  }

  .final-cta small {
    position: static;
    display: block;
    transform: none;
    white-space: normal;
    margin-top: 7px;
  }
}
