:root {
  --cream: #f8f6f2;
  --paper: #fffdf8;
  --raised: #f1eee8;
  --ink: #1f2833;
  --muted: #626b75;
  --line: #c5c6c7;
  --line-soft: rgba(197, 198, 199, 0.55);
  --coral: #ff6f61;
  --aqua: #94e1d9;
  --teal: #45a29e;
  --shadow: 0 18px 50px rgba(31, 40, 51, 0.08);
  --shadow-strong: 0 24px 70px rgba(31, 40, 51, 0.14);
  --r-sm: 16px;
  --r-md: 24px;
  --r-lg: 40px;
  --r-xl: 72px;
  --pill: 9999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 48px;
  --max: 1160px;
  --fast: 180ms;
  --normal: 420ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 111, 97, 0.14), transparent 320px),
    var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
summary {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(940px, calc(100% - 28px));
  min-height: 64px;
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 16px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line-soft);
  border-radius: var(--pill);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 52px;
  height: 52px;
}

.nav-toggle {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--ink);
  border: 0;
  border-radius: var(--pill);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--cream);
}

.site-nav {
  position: absolute;
  top: 70px;
  right: 0;
  left: 0;
  display: none;
  gap: 4px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 12px 14px;
  color: var(--muted);
  border-radius: var(--pill);
  font-size: 0.9rem;
  font-weight: 850;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(148, 225, 217, 0.34);
  outline: none;
}

.section-pad {
  width: min(var(--max), calc(100% - 28px));
  margin-inline: auto;
  padding: 62px 0;
}

.hero {
  display: grid;
  gap: var(--space-7);
  min-height: calc(100vh - 92px);
  padding-top: 54px;
}

.hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  animation: fade-up var(--normal) ease both;
}

.hero-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 var(--space-4);
  padding: 8px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--pill);
  box-shadow: var(--shadow);
  font-size: 0.84rem;
  font-weight: 900;
}

.eyebrow {
  color: var(--teal);
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 980px;
  font-size: clamp(3.35rem, 12vw, 8rem);
}

h2 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}

h3 {
  font-size: 1.24rem;
  line-height: 1.1;
}

.hero-text,
.section-heading p,
.community-card p,
.about-copy p,
.proof-main p,
.video-copy p,
.guide-card span,
.resource-card span,
.final-cta p,
.site-footer p {
  color: var(--muted);
  text-wrap: pretty;
}

.hero-text {
  max-width: 760px;
  margin: var(--space-6) 0 0;
  font-size: clamp(1.12rem, 3.8vw, 1.42rem);
  line-height: 1.38;
}

.hero-actions {
  display: grid;
  gap: var(--space-3);
  width: min(430px, 100%);
  margin-top: var(--space-7);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  cursor: pointer;
  transition: transform var(--fast) ease, box-shadow var(--fast) ease, background var(--fast) ease;
}

.button::after {
  content: "→";
  margin-left: 10px;
}

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

.button.secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line-soft);
}

.button.full {
  width: 100%;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  outline: none;
}

.button:active {
  transform: translateY(0);
}

.button:disabled,
.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.chip-row,
.community-pills,
.marquee-track,
.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.chip-row {
  justify-content: center;
  margin-top: var(--space-6);
}

.chip-row span,
.community-pills span,
.marquee-track span,
.value-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(148, 225, 217, 0.38);
  border: 1px solid rgba(69, 162, 158, 0.18);
  border-radius: var(--pill);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.route-panel {
  position: relative;
  width: min(980px, 100%);
  margin-inline: auto;
  padding: var(--space-4);
  background: var(--raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: float-in 520ms 100ms ease both;
}

.route-panel::before {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -76px;
  width: 210px;
  height: 160px;
  background: var(--aqua);
  border-radius: 55% 55% 0 0;
  opacity: 0.7;
}

.route-panel-head,
.route-list {
  position: relative;
  z-index: 1;
}

.route-panel-head {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  font-weight: 950;
}

.route-list {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-3) 0 0;
  margin: 0;
  list-style: none;
  counter-reset: route;
}

.route-list li {
  counter-increment: route;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: var(--space-3);
  align-content: start;
  padding: var(--space-4);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  min-width: 0;
}

.route-list li::before {
  content: counter(route);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--coral);
  border-radius: var(--r-sm);
  font-weight: 950;
}

.route-list strong {
  display: block;
  min-width: 0;
  line-height: 1.16;
}

.route-list li > strong,
.route-list li > span {
  grid-column: 2;
}

.route-list span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.38;
  margin-top: 4px;
  min-width: 0;
}

.route-list li > div {
  min-width: 0;
}

.section-heading {
  max-width: 900px;
}

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

.section-heading p {
  max-width: 760px;
  margin: var(--space-4) 0 0;
  font-size: 1.04rem;
}

.stats-grid,
.topic-grid,
.mini-card-grid,
.guide-grid,
.resource-grid {
  display: grid;
  gap: var(--space-4);
}

.stat-card,
.chart-card,
.topic-grid article,
.community-card,
.about-card,
.video-feature,
.video-list a:not(.button),
.guide-card,
.resource-card,
.final-cta > div {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: none;
}

.stats-grid {
  margin-top: var(--space-7);
}

.stat-card {
  min-height: 210px;
  padding: var(--space-6);
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.stat-card strong {
  display: block;
  margin: var(--space-5) 0 var(--space-2);
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 13vw, 6.2rem);
  font-weight: 500;
  line-height: 0.92;
}

.stat-card.accent strong {
  color: var(--coral);
}

.stat-card span {
  color: var(--muted);
  font-weight: 800;
}

.source-note {
  margin: var(--space-4) 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.chart-card {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding: var(--space-5);
}

.bar-row {
  display: grid;
  grid-template-columns: minmax(118px, 0.9fr) minmax(0, 1.7fr) 58px;
  gap: var(--space-3);
  align-items: center;
}

.bar-row span,
.bar-row strong {
  font-size: 0.9rem;
  font-weight: 900;
}

.bar-row div {
  height: 16px;
  background: var(--raised);
  border-radius: var(--pill);
  overflow: hidden;
}

.bar-row i {
  display: block;
  width: calc(var(--value) * 2.5%);
  max-width: 100%;
  height: 100%;
  background: var(--line);
  border-radius: inherit;
}

.bar-row.highlight i {
  background: var(--coral);
}

.bar-row.highlight span,
.bar-row.highlight strong {
  color: var(--coral);
}

.use-section {
  background: var(--teal);
  color: #fff;
  border-radius: var(--r-xl) var(--r-xl) var(--r-lg) var(--r-lg);
  width: min(var(--max), calc(100% - 28px));
  margin: var(--space-7) auto;
  overflow: hidden;
}

.use-inner {
  width: 100%;
}

.use-section h2,
.use-section p,
.use-section .eyebrow {
  color: #fff;
}

.use-section .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.2);
}

.marquee {
  margin-top: var(--space-7);
  overflow: hidden;
}

.marquee-track {
  width: max-content;
  flex-wrap: nowrap;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  background: rgba(255, 255, 255, 0.9);
  border-color: transparent;
}

.topic-grid article,
.guide-card,
.resource-card {
  min-height: 178px;
  padding: var(--space-5);
  transition: transform var(--fast) ease, border-color var(--fast) ease, box-shadow var(--fast) ease;
}

.topic-grid article {
  display: grid;
  align-content: start;
  gap: var(--space-3);
}

.topic-grid article:hover,
.guide-card:hover,
.resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 111, 97, 0.45);
  box-shadow: var(--shadow);
}

.topic-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.38;
}

.community-card {
  display: grid;
  gap: var(--space-6);
  padding: var(--space-6);
  background:
    radial-gradient(circle at 100% 100%, rgba(148, 225, 217, 0.38), transparent 34%),
    var(--paper);
}

.community-card p {
  max-width: 760px;
  margin: var(--space-4) 0 0;
}

.mini-card-grid span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: var(--space-4);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  font-weight: 900;
  line-height: 1.18;
}

.about-card {
  display: grid;
  gap: var(--space-6);
  padding: var(--space-6);
  overflow: hidden;
}

.about-copy p {
  max-width: 780px;
  margin: var(--space-4) 0 0;
}

.about-proof {
  display: grid;
  gap: var(--space-4);
}

.paco-photo {
  position: relative;
  min-height: 420px;
  margin: 0;
  background: var(--raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.paco-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(31, 40, 51, 0.42), transparent);
  pointer-events: none;
}

.paco-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 44%;
}

.proof-main {
  padding: var(--space-6);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(148, 225, 217, 0.42), transparent 36%),
    var(--ink);
  border-radius: var(--r-md);
}

.proof-main span,
.credential-grid span {
  display: block;
  margin: 0 0 var(--space-2);
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-main strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  font-weight: 500;
  line-height: 0.9;
}

.proof-main p {
  margin: var(--space-3) 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.credential-grid {
  display: grid;
  gap: var(--space-3);
}

.credential-grid article {
  min-height: 118px;
  padding: var(--space-4);
  background: var(--raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
}

.credential-grid span {
  color: var(--teal);
}

.credential-grid strong {
  display: block;
  line-height: 1.18;
}

.video-layout {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.video-feature {
  overflow: hidden;
}

.video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  background: var(--paper);
  border: 0;
  cursor: pointer;
  overflow: hidden;
}

.video-cover {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  padding: var(--space-6);
  text-align: center;
  background:
    radial-gradient(circle at 20% 25%, rgba(148, 225, 217, 0.5), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(255, 111, 97, 0.32), transparent 30%),
    var(--paper);
}

.video-cover::before,
.video-cover::after {
  content: "";
  position: absolute;
  border-radius: var(--r-lg);
  opacity: 0.92;
}

.video-cover::before {
  right: 12%;
  bottom: 14%;
  width: 34%;
  height: 28%;
  background: var(--aqua);
  transform: rotate(8deg);
}

.video-cover::after {
  left: 11%;
  bottom: 17%;
  width: 24%;
  height: 23%;
  background: var(--coral);
  transform: rotate(-10deg);
}

.video-logo-mark,
.video-kicker,
.video-cover strong,
.video-cover small,
.play-badge {
  position: relative;
  z-index: 1;
}

.video-logo-mark {
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  margin-bottom: var(--space-4);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line-soft);
  border-radius: var(--pill);
  box-shadow: var(--shadow);
}

.video-logo-mark img {
  width: 74px;
  height: 74px;
}

.video-kicker {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-cover strong {
  max-width: 620px;
  margin-top: var(--space-2);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 4.6rem);
  font-weight: 500;
  line-height: 0.95;
  text-wrap: balance;
}

.video-cover small {
  max-width: 420px;
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-5);
  min-height: 54px;
  padding: 14px 22px;
  color: #fff;
  background: var(--coral);
  border-radius: var(--pill);
  font-weight: 950;
}

.video-placeholder:hover .video-cover,
.video-placeholder:focus-visible .video-cover {
  transform: scale(1.015);
}

.video-placeholder:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

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

.video-copy {
  padding: var(--space-5);
}

.video-copy p {
  margin: var(--space-2) 0 0;
}

.video-list {
  display: grid;
  gap: var(--space-3);
}

.video-list a:not(.button) {
  min-height: 92px;
  display: grid;
  gap: var(--space-2);
  align-content: start;
  padding: var(--space-4);
  transition: transform var(--fast) ease, border-color var(--fast) ease;
}

.video-list span,
.guide-card p,
.resource-card p {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.video-list strong {
  color: var(--ink);
}

.guide-card {
  display: grid;
  gap: var(--space-3);
  align-content: start;
}

.guide-art {
  display: grid;
  place-items: center;
  height: 118px;
  background: var(--aqua);
  border-radius: var(--r-md);
}

.guide-art.alt {
  background: var(--coral);
}

.guide-art.teal {
  background: var(--teal);
}

.guide-art span {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
}

.guide-card a,
.resource-card a {
  color: var(--coral);
  font-weight: 950;
}

.resource-card {
  display: grid;
  gap: var(--space-3);
  align-content: start;
}

.resource-card span,
.guide-card span {
  line-height: 1.4;
}

.resource-card.featured {
  color: #fff;
  background: var(--teal);
}

.resource-card.featured h3,
.resource-card.featured p,
.resource-card.featured span,
.resource-card.featured a {
  color: #fff;
}

.ghost-button {
  width: fit-content;
  min-height: 44px;
  padding: 11px 16px;
  color: var(--muted);
  background: var(--raised);
  border: 1px solid var(--line-soft);
  border-radius: var(--pill);
  font-weight: 900;
}

.final-cta > div {
  display: grid;
  gap: var(--space-5);
  justify-items: start;
  padding: var(--space-7);
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 111, 97, 0.2), transparent 34%),
    var(--paper);
}

.final-cta p {
  max-width: 640px;
  margin: 0;
}

.site-footer {
  width: min(var(--max), calc(100% - 28px));
  margin: var(--space-6) auto 0;
  display: grid;
  gap: var(--space-6);
  padding: var(--space-7) var(--space-6);
  color: #fff;
  background: var(--teal);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.site-footer img {
  width: 76px;
  height: 76px;
}

.site-footer p {
  max-width: 360px;
  margin: var(--space-3) 0 0;
  color: #fff;
  font-weight: 850;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.site-footer a {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--pill);
  font-weight: 900;
}

.site-footer .small {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

@media (min-width: 620px) {
  .hero-actions {
    display: flex;
    justify-content: center;
    width: auto;
  }

  .button {
    min-width: 180px;
  }

  .stats-grid,
  .topic-grid,
  .mini-card-grid,
  .credential-grid,
  .guide-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

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

  .route-panel {
    padding: var(--space-6);
  }

  .route-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .about-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    align-items: center;
  }

  .topic-grid,
  .guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  }

  .resource-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .bar-row {
    grid-template-columns: 1fr 54px;
    gap: var(--space-2);
  }

  .bar-row span {
    grid-column: 1 / -1;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
