:root {
  --ink: #203330;
  --muted: #5e6c67;
  --bg: #fff7e8;
  --surface: #ffffff;
  --cream: #fff0ca;
  --sand: #ffe9c7;
  --yellow: #ffd45c;
  --blue: #d7f4f7;
  --blue-soft: #ecfbfc;
  --blue-strong: #197d8b;
  --green: #dff3d5;
  --green-soft: #eff9e9;
  --green-strong: #337746;
  --peach: #ffe0ca;
  --peach-soft: #fff0e5;
  --coral: #ef8959;
  --coral-dark: #aa4727;
  --rose: #ffe3e4;
  --brand-yellow: #fdc401;
  --brand-blue: #009eff;
  --brand-purple: #902ed3;
  --brand-orange: #fc7b03;
  --brand-red: #fa2505;
  --border: #d9e4d8;
  --shadow: 0 20px 54px rgba(53, 64, 47, 0.15);
  --shadow-small: 0 11px 28px rgba(53, 64, 47, 0.1);
  --shadow-tiny: 0 7px 18px rgba(53, 64, 47, 0.08);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fff1cf 0, var(--bg) 520px),
    var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 212, 92, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 125, 139, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: 0.35;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue-strong);
  outline-offset: 4px;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 7.2vw, 5.85rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 16px 0 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 9px max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(255, 240, 202, 0.98), rgba(236, 251, 252, 0.94)),
    rgba(255, 247, 232, 0.96);
  border-bottom: 1px solid rgba(253, 196, 1, 0.22);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--brand-blue);
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
}

.site-nav a {
  border-radius: 999px;
  padding: 5px 0;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-strong);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 50px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 66px 40px 82px;
}

.hero::before {
  position: absolute;
  inset: 18px 0 28px;
  z-index: -1;
  background:
    radial-gradient(circle at 13% 16%, rgba(253, 196, 1, 0.32), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(0, 158, 255, 0.16), transparent 30%),
    radial-gradient(circle at 72% 84%, rgba(255, 224, 202, 0.86), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 240, 202, 0.58) 44%, rgba(236, 251, 252, 0.62));
  border: 1px solid rgba(253, 196, 1, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 26px 86px rgba(53, 64, 47, 0.1);
  content: "";
}

.hero-copy {
  max-width: 780px;
}

.hero-brand-logo {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(980px, 100%);
  max-height: 420px;
  margin: -16px auto -8px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 30px rgba(53, 64, 47, 0.11));
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--green-strong);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 690px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.7vw, 1.75rem);
  font-weight: 790;
  line-height: 1.28;
  margin-top: 12px;
}

.hero-text {
  max-width: 650px;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.38rem);
  font-weight: 850;
  line-height: 1.35;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 830;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-small);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
  color: #241d19;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-yellow);
}

.button-secondary {
  background: linear-gradient(135deg, var(--blue-strong), #2f9ca5);
  color: #ffffff;
}

.button-subtle {
  background: var(--surface);
  border-color: var(--border);
  color: var(--blue-strong);
  box-shadow: none;
}

.button-subtle:hover,
.button-subtle:focus-visible {
  background: var(--blue-soft);
}

.button-light {
  background: #ffffff;
  border-color: rgba(32, 51, 48, 0.14);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--cream);
}

.free-line {
  max-width: 720px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 820;
  margin-top: 24px;
}

.hero-support {
  display: grid;
  gap: 11px;
  max-width: 720px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(25, 125, 139, 0.12);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.badge-list li {
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(253, 196, 1, 0.28);
  border-radius: 999px;
  box-shadow: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.trust-strip span {
  padding: 6px 10px;
  background: rgba(255, 224, 202, 0.7);
  border: 1px solid rgba(0, 158, 255, 0.18);
  border-radius: 999px;
  color: var(--blue-strong);
  font-size: 0.84rem;
  font-weight: 830;
}

.hero-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(253, 196, 1, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(10px);
}

.hero-card p {
  margin: 0;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(253, 196, 1, 0.24);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 820;
  line-height: 1.25;
}

.hero-card small {
  color: var(--ink);
  font-weight: 720;
  line-height: 1.35;
}

.mini-label {
  color: var(--green-strong);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section {
  padding: 82px 0;
}

.section-light {
  background: var(--surface);
}

.section-blue {
  background: var(--blue-soft);
}

.section-green {
  background:
    linear-gradient(135deg, var(--green) 0%, var(--green-soft) 47%, var(--peach-soft) 100%);
}

.section-resources {
  background:
    linear-gradient(135deg, var(--cream) 0%, var(--surface) 48%, var(--green-soft) 100%);
}

.section-free {
  background: var(--cream);
}

.section-faq {
  background: var(--surface);
}

.section-journey {
  background: var(--peach-soft);
}

.section-glimpses {
  background:
    linear-gradient(135deg, #ffedbd, var(--rose) 45%, var(--green-soft));
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

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

.section-heading p {
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
}

.two-column,
.video-layout,
.song-layout,
.vision-grid,
.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: start;
}

.text-stack p,
.section p,
.check-list,
.timeline {
  color: var(--muted);
}

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

.step-card,
.audience-card,
.dream-card,
.resource-card,
.free-box,
.contact-box,
.glimpse-card,
.faq-item {
  min-width: 0;
  background: var(--surface);
  border: 1px solid rgba(217, 228, 216, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.step-card {
  min-height: 176px;
  padding: 26px;
  background: var(--surface);
}

.step-card:nth-child(2) {
  background: var(--blue-soft);
  border-color: rgba(0, 158, 255, 0.16);
}

.step-card:nth-child(3) {
  background: var(--green-soft);
}

.step-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-yellow), var(--yellow));
  border-radius: 50%;
  color: var(--ink);
  font-weight: 900;
}

.step-card h3 {
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.center-text {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
  text-align: center;
}

.resource-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.resource-intro .section-heading {
  margin: 0;
  text-align: left;
}

.resource-start {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.resource-start p {
  margin: 0;
}

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

.resource-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 26px;
  background: var(--surface);
}

.resource-card:nth-child(2) {
  background: var(--blue-soft);
  border-color: rgba(0, 158, 255, 0.16);
}

.resource-card:nth-child(3) {
  background: var(--green-soft);
}

.resource-card-secondary {
  background: rgba(255, 255, 255, 0.72);
}

/* Temporarily hidden: downloadable PDF/resources are not available yet. Re-enable when files are added. */
.resource-card-secondary {
  display: none;
}

.resource-card h3 {
  font-size: 1.22rem;
}

.resource-card p,
.resource-card .button {
  margin-top: 0;
}

.resource-card .button {
  align-self: end;
  justify-self: start;
}

.resource-facts {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.94rem;
  list-style: none;
}

.resource-facts strong {
  color: var(--ink);
}

.video-copy .button,
.song-copy .button,
.contact-box .button {
  margin-top: 24px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 158, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(53, 64, 47, 0.18);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.play-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(32, 51, 48, 0.16);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
}

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

.audience-heading {
  margin-bottom: 28px;
}

.audience-card {
  padding: 28px;
  background: var(--surface);
}

.audience-card:nth-child(2) {
  background: var(--blue-soft);
  border-color: rgba(0, 158, 255, 0.16);
}

.audience-card:nth-child(3) {
  background: var(--green-soft);
}

.audience-card h3,
.audience-card h4 {
  margin-top: 26px;
}

.audience-card > h3 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.audience-card h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

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

.check-list li {
  position: relative;
  padding-left: 31px;
  font-weight: 690;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.09em;
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--ink);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

.song-layout {
  align-items: center;
}

.song-copy {
  padding: 4px 0;
}

.cover-card {
  overflow: hidden;
  max-width: 430px;
  background: var(--surface);
  border: 12px solid var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cover-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  object-fit: cover;
}

.small-note {
  color: var(--green-strong);
  font-size: 0.98rem;
  font-weight: 820;
}

.impact-section {
  padding: 46px 0;
}

.impact-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 30px 34px;
  background:
    linear-gradient(135deg, var(--ink), #31504b);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #ffffff;
  text-align: center;
}

.impact-box p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 820;
  line-height: 1.28;
}

.dream-card {
  padding: 28px;
  background: var(--cream);
  border-color: rgba(253, 196, 1, 0.35);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
}

.timeline li {
  position: relative;
  padding: 18px 20px 18px 70px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(53, 64, 47, 0.07);
  counter-increment: timeline;
  font-weight: 680;
}

.timeline li::before {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 25px;
  height: 25px;
  background: var(--brand-yellow);
  border-radius: 50%;
  color: var(--ink);
  content: counter(timeline);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 25px;
  text-align: center;
}

.timeline li span {
  display: block;
  margin-bottom: 3px;
  color: var(--coral-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.glimpse-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.glimpse-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 30px;
  background: var(--surface);
  border-color: rgba(253, 196, 1, 0.24);
  border-left: 3px solid var(--brand-yellow);
}

.glimpse-card:nth-child(2) {
  background: var(--blue-soft);
  border-color: rgba(25, 125, 139, 0.18);
  border-left-color: var(--brand-blue);
}

.glimpse-card p,
.glimpse-card .button {
  margin-top: 0;
}

.glimpse-card .button {
  align-self: end;
  justify-self: start;
}

.glimpse-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 2px;
  background: var(--ink);
  border-radius: var(--radius);
}

.card-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
}

.free-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
  gap: 28px;
  align-items: center;
  padding: 32px;
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 24px;
  background: var(--surface);
}

.faq-item h3 {
  font-size: 1.16rem;
}

.faq-item p {
  margin-top: 10px;
}

.contact-section {
  background: var(--blue-soft);
}

.contact-box {
  max-width: 820px;
  padding: 38px;
  background: var(--surface);
  text-align: center;
}

.email-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(1.25rem, 5vw, 2.1rem);
  font-weight: 850;
  text-decoration-color: var(--brand-orange);
  text-decoration-thickness: 4px;
  text-underline-offset: 7px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: #ffffff;
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer strong {
  font-size: 1rem;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  font-weight: 760;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .two-column,
  .video-layout,
  .song-layout,
  .vision-grid,
  .history-layout,
  .resource-intro,
  .audience-grid,
  .free-box,
  .glimpse-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 40px 70px;
  }

  .hero-card {
    max-width: 560px;
  }

  .cover-card {
    max-width: 360px;
  }

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

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

  .step-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 8px 16px 10px;
  }

  .site-nav {
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    gap: 0 12px;
    padding-bottom: 4px;
    font-size: 0.84rem;
    line-height: 1.35;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 6px 0;
  }

  .hero,
  .section-inner {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    gap: 20px;
    padding: 30px 20px 46px;
  }

  .hero::before {
    inset: 8px 0 18px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.82rem, 10vw, 2.45rem);
  }

  .hero-subtitle {
    font-size: clamp(1.12rem, 5.4vw, 1.35rem);
  }

  .hero-text {
    font-size: 1.04rem;
  }

  .button-row {
    margin-top: 24px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    min-height: 54px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .free-line {
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .hero-support {
    gap: 8px;
    margin-top: 24px;
    padding-top: 12px;
  }

  .badge-list {
    gap: 6px;
  }

  .badge-list li {
    width: auto;
    padding: 6px 9px;
    font-size: 0.84rem;
  }

  .trust-strip {
    gap: 6px;
  }

  .trust-strip span {
    padding: 5px 8px;
    font-size: 0.8rem;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .impact-section {
    padding: 36px 0;
  }

  .hero-card,
  .audience-card,
  .dream-card,
  .resource-card,
  .free-box,
  .contact-box,
  .impact-box,
  .glimpse-card,
  .faq-item {
    padding: 22px;
  }

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

  .resource-intro {
    gap: 20px;
    margin-bottom: 22px;
  }

  .resource-card {
    gap: 13px;
  }

  .resource-facts {
    gap: 6px;
    font-size: 0.9rem;
  }

  .check-list {
    gap: 9px;
  }

  .audience-card h3,
  .audience-card h4 {
    margin-top: 20px;
  }

  .faq-item h3 {
    font-size: 1.08rem;
  }

  .cover-card {
    max-width: 100%;
    border-width: 7px;
  }

  .play-badge {
    right: 10px;
    bottom: 10px;
    padding: 8px 11px;
    font-size: 0.86rem;
  }

  .timeline li {
    padding-right: 14px;
  }

  .site-footer {
    padding: 24px 16px;
  }
}
