:root {
  color-scheme: light;
  --lime: #d7ff00;
  --lime-soft: #ebff7a;
  --ink: #102b14;
  --ink-2: #193f1f;
  --cream: #fff8e8;
  --white: #ffffff;
  --mist: #f4f1e8;
  --blue: #0648c7;
  --orange: #ff7a1a;
  --line: rgba(16, 43, 20, 0.14);
  --shadow: rgba(0, 0, 0, 0.16) 0 22px 55px;
  --shadow-soft: rgba(0, 0, 0, 0.1) 0 10px 28px;
  --font-sans: "UntitledSansFont", Inter, Figtree, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  min-width: 320px;
  margin: 0;
  background: var(--cream);
}

.home-page {
  background: var(--lime);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.hero {
  min-height: 100vh;
  padding: 40px 0 84px;
  background:
    radial-gradient(circle at 90% 14%, rgba(255, 255, 255, 0.22), transparent 28rem),
    linear-gradient(180deg, var(--lime), #ccfb00);
}

.site-nav {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(1160px, calc(100% - 40px));
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  border-radius: 999px;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  will-change: transform;
}

.brand,
.nav-cta,
.site-nav__links a,
.button,
.guide-link {
  text-decoration: none;
}

.brand {
  padding-left: 24px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand::after {
  content: "*";
  display: inline-block;
  margin-left: 2px;
  font-size: 26px;
  transform: rotate(12deg);
}

.site-nav__links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 34px;
}

.site-nav__links a {
  color: rgba(16, 43, 20, 0.72);
  font-size: 15px;
  font-weight: 850;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 0;
}

.nav-cta,
.button--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.14) 0 8px 18px;
}

.button--quiet {
  border: 2px solid rgba(16, 43, 20, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1fr);
  gap: 70px;
  align-items: center;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 114px;
}

.hero__copy {
  max-width: 590px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 0 0 24px;
  border: 1px solid rgba(16, 43, 20, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
}

.eyebrow--dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime);
}

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

h1 {
  color: var(--ink);
  font-size: 78px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
}

.lede {
  max-width: 570px;
  margin-top: 28px;
  color: rgba(16, 43, 20, 0.86);
  font-size: 21px;
  font-weight: 650;
  line-height: 1.42;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.reassurance {
  max-width: 520px;
  margin-top: 22px;
  color: rgba(16, 43, 20, 0.72);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -26px;
  width: 76%;
  height: 38%;
  border-radius: 38px;
  background: var(--blue);
  transform: rotate(-3deg);
}

.hero-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 44px;
  box-shadow: var(--shadow);
  will-change: transform;
}

.motion-word {
  display: inline-block;
  white-space: pre;
  will-change: transform, opacity;
}

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 58px;
  width: min(1160px, calc(100% - 40px));
  margin: -22px auto 0;
  border-radius: 54px;
  padding: 70px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.dark-band h2,
.guide-panel h2,
.final-cta h2 {
  color: inherit;
  font-size: 54px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

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

.promise-grid article {
  min-height: 260px;
  border-radius: 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.promise-grid span,
.guide-link span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.promise-grid h3 {
  margin-top: 36px;
  color: var(--white);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0;
}

.promise-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.48;
}

.guide-panel {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.guide-panel__heading {
  max-width: 780px;
}

.guide-panel h2 {
  color: var(--ink);
}

.guide-list {
  display: grid;
  gap: 0;
  margin-top: 52px;
  border-top: 2px solid var(--line);
}

.guide-link {
  display: grid;
  grid-template-columns: 52px minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  border-bottom: 2px solid var(--line);
  padding: 26px 0;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.guide-link:hover {
  border-color: rgba(16, 43, 20, 0.34);
  color: var(--ink);
}

.guide-link strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0;
}

.guide-link em {
  color: rgba(16, 43, 20, 0.74);
  font-size: 17px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.45;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 70px;
  border-radius: 54px;
  padding: 70px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.final-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 20px;
  color: rgba(16, 43, 20, 0.76);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.48;
}

.article {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 120px;
}

.article__header {
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  padding: 64px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.article__header h1 {
  max-width: 860px;
  font-size: 58px;
  line-height: 0.98;
}

.article__body {
  display: grid;
  gap: 18px;
  padding: 72px 0 20px;
}

.article__body h2 {
  margin-top: 42px;
  color: var(--ink);
  font-size: 40px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
}

.article__body p,
.article__body li {
  color: rgba(16, 43, 20, 0.78);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.68;
}

.article__body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  border-radius: 28px;
  padding: 22px 26px 22px 44px;
  background: rgba(255, 255, 255, 0.62);
}

.article-cta {
  display: grid;
  gap: 18px;
  overflow: hidden;
  margin: 38px 0;
  border-radius: 34px;
  padding: 40px;
  background: var(--ink);
  color: var(--white);
}

.article-cta h2 {
  margin: 0;
  color: var(--white);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.article-cta .button {
  justify-self: start;
  background: var(--lime);
  color: var(--ink);
}

.vault-page,
.vault-access-page {
  background: var(--cream);
}

.vault-hero {
  padding: 40px 0 80px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.3), transparent 28rem),
    linear-gradient(180deg, var(--lime), #cffe00);
}

.vault-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1fr);
  gap: 64px;
  align-items: center;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 104px;
}

.vault-hero__copy {
  max-width: 640px;
}

.vault-hero__copy h1 {
  font-size: 72px;
}

.vault-hero__actions,
.vault-workbook__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.vault-cover {
  position: relative;
  margin: 0;
}

.vault-cover::before {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -24px;
  width: 72%;
  height: 42%;
  border-radius: 36px;
  background: var(--blue);
  transform: rotate(4deg);
}

.vault-cover img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 42px;
  box-shadow: var(--shadow);
  will-change: transform;
}

.vault-proof,
.vault-email-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 48px;
  width: min(1160px, calc(100% - 40px));
  margin: -20px auto 0;
  border-radius: 54px;
  padding: 66px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.vault-proof h2,
.vault-email-strip h2,
.vault-section-heading h2,
.vault-workbook__header h1,
.module-title h2 {
  color: inherit;
  font-size: 54px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

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

.proof-stats article {
  min-height: 170px;
  border-radius: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.proof-stats strong {
  display: block;
  color: var(--lime);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.proof-stats span,
.vault-proof__note,
.email-steps,
.email-steps li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.48;
}

.vault-proof__note {
  grid-column: 2;
  max-width: 640px;
}

.vault-inside,
.vault-stack {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0 0;
}

.vault-section-heading {
  max-width: 820px;
}

.vault-section-heading h2 {
  color: var(--ink);
}

.module-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.module-grid article {
  min-height: 280px;
  border: 2px solid var(--line);
  border-radius: 34px;
  padding: 24px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.05) 0 10px 24px;
}

.module-grid span,
.module-title span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.module-grid h3 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.05;
}

.module-grid p,
.stack-list span,
.vault-workbook p,
.vault-workbook li {
  color: rgba(16, 43, 20, 0.75);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.52;
}

.module-grid p {
  margin-top: 12px;
}

.stack-list {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 2px solid var(--line);
}

.stack-list div {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  border-bottom: 2px solid var(--line);
  padding: 28px 0;
}

.stack-list strong {
  color: var(--ink);
  font-size: 25px;
  font-weight: 950;
}

.vault-email-strip {
  margin-top: 108px;
}

.email-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.vault-final {
  margin-top: 82px;
}

.vault-workbook {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 100px;
}

.vault-workbook__header {
  overflow: hidden;
  border-radius: 46px;
  padding: 56px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.5), transparent 22rem),
    var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.vault-workbook__header .brand {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 50px;
}

.vault-workbook__header h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 64px;
}

.vault-workbook__header p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(16, 43, 20, 0.78);
  font-size: 20px;
}

.vault-toc {
  position: sticky;
  top: 12px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.vault-toc a {
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(16, 43, 20, 0.8);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.vault-toc a:hover {
  background: var(--lime);
}

.vault-module {
  margin-top: 34px;
  border: 2px solid var(--line);
  border-radius: 42px;
  padding: 44px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.04) 0 12px 26px;
}

.module-title {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.module-title h2 {
  color: var(--ink);
  font-size: 44px;
}

.module-lede {
  max-width: 760px;
  margin-top: 22px;
  font-size: 19px;
}

.decision-grid,
.park-cards,
.itinerary-grid,
.worksheet-pack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.decision-grid article,
.park-cards article,
.itinerary-grid article,
.worksheet,
.mobile-card {
  border-radius: 28px;
  padding: 24px;
  background: var(--mist);
}

.decision-grid h3,
.park-cards h3,
.itinerary-grid h3,
.worksheet h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.08;
}

.decision-grid p,
.park-cards p,
.itinerary-grid p,
.worksheet p {
  margin-top: 10px;
}

.park-cards ul,
.itinerary-grid ol,
.decision-tree ol,
.source-list,
.blank-list,
.check-grid {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.worksheet-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 18px;
  background: var(--line);
}

.worksheet-table div {
  display: grid;
  grid-template-columns: 0.7fr 0.4fr 1fr;
  gap: 1px;
}

.worksheet-table span,
.worksheet-table strong {
  padding: 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.toolkit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  border-radius: 30px;
  padding: 26px;
  background: var(--ink);
  color: var(--white);
}

.toolkit-panel h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.05;
}

.toolkit-panel p {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.toolkit-panel .button {
  background: var(--lime);
  color: var(--ink);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.download-grid a {
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: var(--mist);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.motion-hover {
  will-change: transform;
}

.button:hover,
.nav-cta:hover {
  box-shadow: rgba(0, 0, 0, 0.14) 0 16px 32px;
}

.module-grid article,
.promise-grid article,
.vault-module,
.article-cta,
.download-grid a,
.park-cards article,
.itinerary-grid article,
.worksheet,
.toolkit-panel,
.priority-board div {
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.module-grid article:hover,
.vault-module:hover,
.article-cta:hover,
.download-grid a:hover,
.park-cards article:hover,
.itinerary-grid article:hover,
.worksheet:hover,
.toolkit-panel:hover,
.priority-board div:hover {
  border-color: rgba(16, 43, 20, 0.32);
  box-shadow: rgba(0, 0, 0, 0.1) 0 18px 36px;
}

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

  .motion-word {
    transform: none !important;
  }
}

.priority-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.priority-board div {
  display: grid;
  gap: 10px;
  border-radius: 24px;
  padding: 22px;
  background: var(--mist);
}

.priority-board strong,
.priority-board span {
  color: var(--ink);
  font-weight: 850;
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: square;
}

.mobile-card {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  background: var(--ink);
  color: var(--white);
}

.mobile-card strong,
.mobile-card span {
  color: var(--white);
}

.source-list a {
  color: var(--blue);
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-nav {
    width: min(100% - 28px, 1160px);
  }

  .site-nav__links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero__inner,
  .vault-hero__inner,
  .dark-band,
  .final-cta,
  .vault-proof,
  .vault-email-strip {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    gap: 46px;
    padding-top: 70px;
  }

  .vault-hero__inner {
    gap: 46px;
    padding-top: 70px;
  }

  .dark-band,
  .final-cta,
  .vault-proof,
  .vault-email-strip {
    padding: 42px;
  }

  .promise-grid,
  .proof-stats,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .promise-grid article,
  .module-grid article {
    min-height: auto;
  }

  .vault-proof__note {
    grid-column: auto;
  }

  .decision-grid,
  .park-cards,
  .itinerary-grid,
  .worksheet-pack,
  .toolkit-panel,
  .priority-board {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-nav {
    min-height: 64px;
    overflow: hidden;
  }

  .brand {
    padding-left: 12px;
    font-size: 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero__inner,
  .vault-hero__inner,
  .dark-band,
  .guide-panel,
  .final-cta,
  .article,
  .vault-proof,
  .vault-inside,
  .vault-stack,
  .vault-email-strip,
  .vault-workbook {
    width: min(100% - 28px, 1160px);
  }

  .hero__inner {
    padding-top: 54px;
  }

  h1 {
    font-size: 56px;
    letter-spacing: 0;
  }

  .vault-hero__copy h1,
  .vault-workbook__header h1 {
    font-size: 40px;
    line-height: 0.96;
  }

  .vault-workbook__header .brand,
  .vault-workbook__header .eyebrow {
    display: flex;
    width: fit-content;
  }

  .vault-workbook__header .brand {
    margin-bottom: 24px;
  }

  .lede {
    font-size: 16px;
    line-height: 1.42;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero-visual img {
    border-radius: 30px;
  }

  .vault-cover img {
    border-radius: 30px;
  }

  .vault-cover::before {
    right: -8px;
    bottom: -14px;
    width: 64%;
  }

  .dark-band,
  .final-cta,
  .article__header,
  .article-cta,
  .vault-proof,
  .vault-email-strip,
  .vault-workbook__header,
  .vault-module {
    border-radius: 34px;
    padding: 30px 22px;
  }

  .dark-band h2,
  .guide-panel h2,
  .final-cta h2,
  .vault-proof h2,
  .vault-email-strip h2,
  .vault-section-heading h2,
  .module-title h2 {
    font-size: 40px;
    letter-spacing: 0;
  }

  .guide-panel {
    padding: 76px 0;
  }

  .guide-link {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .guide-link em {
    grid-column: 2;
  }

  .final-cta .button {
    justify-self: stretch;
  }

  .article__header h1 {
    font-size: 42px;
  }

  .article__body h2 {
    font-size: 34px;
  }

  .article__body p,
  .article__body li {
    font-size: 16px;
  }

  .stack-list div,
  .worksheet-table div,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .module-title {
    grid-template-columns: 1fr;
  }

  .vault-toc {
    border-radius: 24px;
  }
}

/* === Impeccable audit improvements — 2026-05-22 23:50 EDT === */

/* Focus-visible for keyboard users (a11y P1) */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible,
.guide-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
  border-radius: 999px;
}

/* TL;DR pull-quote at top of articles (skim conversion lift) */
.article-tldr {
  display: grid;
  gap: 8px;
  margin: 40px 0 0;
  border-radius: 28px;
  padding: 26px 32px;
  background: var(--lime-soft);
  border: 2px solid rgba(16, 43, 20, 0.16);
}

.article-tldr p:first-child {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-tldr p + p {
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}

/* Related guides at end of article (cross-link conversion lift) */
.related-guides {
  display: grid;
  gap: 0;
  margin: 56px 0 0;
  border-top: 2px solid var(--line);
}

.related-guides__heading {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: 0;
  padding-top: 28px;
}

.related-guides__sub {
  margin: 0 0 28px;
  color: rgba(16, 43, 20, 0.72);
  font-size: 16px;
  font-weight: 650;
}

.related-guides a {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  border-top: 2px solid var(--line);
  padding: 24px 0;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 220ms ease, transform 220ms ease;
}

.related-guides a:last-child {
  border-bottom: 2px solid var(--line);
}

.related-guides a:hover {
  border-color: rgba(16, 43, 20, 0.34);
}

.related-guides strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0;
}

.related-guides em {
  color: rgba(16, 43, 20, 0.74);
  font-size: 16px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.45;
}

/* Mobile sticky CTA bar (responsive P1 — fills mobile nav gap) */
.sticky-cta {
  display: none;
}

@media (max-width: 680px) {
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 248, 232, 0.96);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--line);
    box-shadow: rgba(0, 0, 0, 0.06) 0 -8px 22px;
  }

  .sticky-cta .button {
    flex: 1;
    min-height: 50px;
    width: auto;
    padding: 0 18px;
    font-size: 15px;
  }

  /* Space the body so sticky-cta doesn't cover content */
  body:has(.sticky-cta) main {
    padding-bottom: 76px;
  }

  /* Article body tightens on mobile for skim readability */
  .article-tldr {
    padding: 20px 22px;
    border-radius: 22px;
  }

  .article-tldr p + p {
    font-size: 17px;
  }

  .related-guides__heading {
    font-size: 24px;
  }

  .related-guides a {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media print {
  html,
  body,
  .vault-access-page {
    background: #ffffff;
  }

  .vault-toc,
  .vault-workbook__actions,
  .vault-workbook__header .brand {
    display: none;
  }

  .vault-workbook {
    width: 100%;
    padding: 0;
  }

  .vault-workbook__header,
  .vault-module,
  .worksheet,
  .decision-grid article,
  .park-cards article,
  .itinerary-grid article {
    break-inside: avoid;
    box-shadow: none;
  }

  .vault-workbook__header,
  .vault-module {
    margin: 0 0 18px;
    border: 1px solid #d6d6d6;
    border-radius: 18px;
    padding: 24px;
  }

  .vault-workbook__header h1,
  .module-title h2 {
    font-size: 30px;
    line-height: 1.1;
  }
}
