:root {
  color-scheme: light;

  /* Rainbow design system — palette */
  --ink: #0f101a;
  --ink-2: #1a1b28;
  --cloudburst: #ffffff;
  --whisper-gray: #777885;
  --pale-mist: #f1f3f6;
  --sunset-orange: #ff8a00;
  --neon-pink: #ff54bb;
  --sky-blue: #33aaff;
  --cyan-tint: #99eeff;
  --radiant-violet: #8c64ff;
  --teal-glow: #00fff0;
  --joyful-red: #ff0f0f;

  /* Aliases for backwards compatibility with existing class hooks */
  --lime: #ff8a00;          /* repurposed: primary accent = sunset orange */
  --lime-soft: #ffd9a8;
  --cream: #ffffff;
  --white: #ffffff;
  --mist: #f1f3f6;
  --blue: #8c64ff;          /* repurposed: cool accent = radiant violet */
  --orange: #ff8a00;

  /* Gradients */
  --gradient-rainbow-burst:
    linear-gradient(
      rgb(117, 230, 255) 0%,
      rgb(255, 240, 240) 8.17%,
      rgb(254, 240, 255) 14.24%,
      rgb(255, 247, 240) 20.68%,
      rgb(238, 235, 255) 28.77%,
      rgb(246, 235, 255) 37.11%,
      rgb(255, 255, 255) 46.85%,
      rgb(229, 241, 255) 67.29%,
      rgb(255, 255, 255) 100%
    );
  --gradient-pink-sunset:
    linear-gradient(270deg, rgb(255, 133, 100) 0%, rgb(255, 98, 163) 100%);
  --gradient-ethereal-aqua:
    radial-gradient(94.9% 94.9% at 50% 100%, rgb(148, 255, 232) 0%, rgb(233, 226, 246) 35%, rgb(241, 243, 247) 100%);

  /* Lines + elevation */
  --line: rgba(15, 16, 26, 0.08);
  --shadow-inset:
    rgba(255, 255, 255, 0.32) 0px 5px 32px 12px inset,
    rgba(255, 255, 255, 0.44) 0px 1px 4px 0px inset;
  --shadow:
    rgba(15, 16, 26, 0.08) 0px 12px 32px -8px,
    rgba(255, 255, 255, 0.6) 0px 1px 0px 0px inset;
  --shadow-soft:
    rgba(15, 16, 26, 0.06) 0px 6px 18px -6px,
    rgba(255, 255, 255, 0.6) 0px 1px 0px 0px inset;

  /* Type stack — SF Pro Rounded */
  --font-sans:
    "SF Pro Rounded",
    -apple-system, BlinkMacSystemFont,
    "Avenir Next Rounded Std", "Avenir Next Rounded",
    "Inter Display", Inter, Figtree,
    ui-sans-serif, system-ui, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Monaco, monospace;

  /* Spacing scale */
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-20: 20px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-48: 48px;
  --spacing-60: 60px;
  --spacing-64: 64px;
  --spacing-100: 100px;

  /* Radius */
  --radius-pill: 50px;
  --radius-card: 32px;
  --radius-button: 40px;
}

* {
  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);
}

.home-page .sticky-cta {
  display: none;
}

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;
  }
}

/* ============================================================
   PREMIUM UPGRADES — design system, motion atoms, world-building
   Layered ADDITIONS, not rewrites — keeps existing styles intact.
   ============================================================ */

:root {
  --ink-soft: rgba(16, 43, 20, 0.78);
  --ink-mute: rgba(16, 43, 20, 0.56);
  --lime-glow: 0 0 0 6px rgba(215, 255, 0, 0.18);
  --shadow-deep:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 30px 80px -20px rgba(7, 30, 12, 0.35),
    0 12px 28px -16px rgba(7, 30, 12, 0.28);
  --shadow-card:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 14px 38px -18px rgba(7, 30, 12, 0.34);
  --ease-spring: cubic-bezier(.22,1.2,.36,1);
  --chip-y: 0px;
}

html { scroll-behavior: smooth; }

::selection {
  background: var(--ink);
  color: var(--lime);
}

/* ---------- premium typography lift ---------- */
.home-page h1,
.vault-hero h1,
.article__header h1,
.vault-workbook__header h1 {
  letter-spacing: -0.022em;
  font-variation-settings: "wght" 900;
  text-wrap: balance;
}

.home-page h2,
.vault-page h2,
.vault-access-page h2,
.dark-band h2,
.guide-panel h2,
.final-cta h2,
.vault-proof h2,
.vault-email-strip h2,
.vault-section-heading h2,
.module-title h2 {
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.lede { letter-spacing: -0.005em; text-wrap: pretty; }

/* tighten eyebrow visual weight */
.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 9px 14px 8px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.6);
  vertical-align: 1px;
}
.eyebrow--dark::before {
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

/* ---------- scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
  background: rgba(16, 43, 20, 0.06);
}
.scroll-progress__fill {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--ink), var(--blue), var(--lime));
  background-size: 200% 100%;
  animation: progressGradient 6s linear infinite;
}
@keyframes progressGradient {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ---------- subtle grain overlay (filmic warmth) ---------- */
.grain-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- magnetic cursor ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--ink);
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1.5px solid rgba(16,43,20,0.45);
  transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), border-color 0.3s ease, background 0.3s ease;
}
.cursor-ring.is-active {
  width: 64px; height: 64px;
  border-color: transparent;
  background: rgba(215, 255, 0, 0.28);
  mix-blend-mode: multiply;
}
@media (max-width: 919px) {
  .cursor-dot, .cursor-ring { display: none; }
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}
html, body, a, button { cursor: auto; }
@media (hover: hover) and (min-width: 920px) {
  body { cursor: none; }
  a, button, input, textarea, [role="button"] { cursor: none; }
}

/* ---------- hero gradient orbs (animated background depth) ---------- */
.hero, .vault-hero { position: relative; overflow: hidden; }
.hero-orbs {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
}
.hero-orb--a {
  width: 420px; height: 420px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, #fff7a8 0%, transparent 70%);
}
.hero-orb--b {
  width: 360px; height: 360px;
  top: 30%; left: -120px;
  background: radial-gradient(circle, #b6f3ff 0%, transparent 70%);
}
.hero-orb--c {
  width: 300px; height: 300px;
  bottom: -100px; right: 18%;
  background: radial-gradient(circle, #ffd4a8 0%, transparent 70%);
}
.hero__inner, .vault-hero__inner, .site-nav { position: relative; z-index: 2; }

/* ---------- letter-level split animation ---------- */
.motion-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0 0.02em 0.05em;
}
.motion-word__inner {
  display: inline-flex;
  will-change: transform;
}
.motion-letter {
  display: inline-block;
  will-change: transform, opacity;
}

/* ---------- nav glass enhancement ---------- */
.site-nav {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-nav__links a {
  position: relative;
  transition: color 0.25s ease;
}
.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 12%; right: 88%;
  bottom: -8px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: right 0.35s var(--ease-spring), background 0.3s ease;
}
.site-nav__links a:hover { color: var(--ink); }
.site-nav__links a:hover::after { right: 12%; background: var(--blue); }

/* ---------- button refinement ---------- */
.button, .nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  letter-spacing: 0.005em;
}
.nav-cta, .button--primary {
  background: linear-gradient(180deg, #16361b 0%, var(--ink) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 14px 34px -10px rgba(7, 30, 12, 0.55),
    0 2px 6px -2px rgba(7, 30, 12, 0.4);
}
.button--primary::before, .nav-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent 0%, rgba(215,255,0,0.45) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform 0.7s var(--ease-spring);
  z-index: -1;
}
.button--primary:hover::before, .nav-cta:hover::before {
  transform: translateX(110%);
}
.button--primary:hover, .nav-cta:hover {
  box-shadow:
    0 0 0 4px rgba(215, 255, 0, 0.3),
    0 18px 40px -10px rgba(7, 30, 12, 0.6);
}

.button--quiet {
  background: rgba(255, 255, 255, 0.92);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.button--quiet:hover {
  background: var(--white);
  border-color: rgba(16, 43, 20, 0.35);
}

/* button arrow affordance */
.button--primary::after, .nav-cta::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.35s var(--ease-spring);
}
.button--primary:hover::after, .nav-cta:hover::after {
  transform: translateX(4px);
}

/* ---------- hero visual: better backdrop chip ---------- */
.hero-visual::before {
  transform: rotate(-3deg) translateY(var(--chip-y));
  background: linear-gradient(135deg, var(--blue) 0%, #0a36a8 100%);
  box-shadow: 0 30px 60px -20px rgba(6, 72, 199, 0.45);
  transition: transform 0.6s var(--ease-spring);
}
.hero-visual::after {
  content: "";
  position: absolute;
  top: -28px; left: -18px;
  width: 38%; height: 32%;
  background: var(--lime-soft);
  border-radius: 28px;
  transform: rotate(4deg);
  z-index: 1;
  opacity: 0.85;
}
.hero-visual img { box-shadow: var(--shadow-deep); }

.vault-cover::before {
  transform: rotate(4deg) translateY(var(--chip-y));
  background: linear-gradient(135deg, var(--blue) 0%, #0a36a8 100%);
  box-shadow: 0 30px 60px -20px rgba(6, 72, 199, 0.45);
  transition: transform 0.6s var(--ease-spring);
}
.vault-cover::after {
  content: "";
  position: absolute;
  top: -22px; right: -16px;
  width: 32%; height: 28%;
  background: var(--orange);
  border-radius: 24px;
  transform: rotate(-6deg);
  opacity: 0.85;
}
.vault-cover img { box-shadow: var(--shadow-deep); }

/* ---------- marquee ticker band ---------- */
.marquee-band {
  position: relative;
  margin: -8px 0 0;
  padding: 18px 0;
  background: var(--ink);
  color: var(--lime);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 3;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.marquee-dot {
  color: var(--white);
  opacity: 0.45;
  font-size: 8px;
  margin-left: 22px;
}

/* ---------- dark band: richer surface ---------- */
.dark-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 255, 0, 0.1), transparent 36rem),
    radial-gradient(circle at 88% 88%, rgba(6, 72, 199, 0.16), transparent 28rem),
    var(--ink);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-deep);
}
.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.dark-band > * { position: relative; z-index: 1; }

.promise-grid article {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.45s var(--ease-spring), background 0.35s ease, border-color 0.35s ease;
}
.promise-grid article:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(215,255,0,0.25);
}
.promise-grid article::after {
  content: "";
  position: absolute;
  bottom: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(215,255,0,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.promise-grid article:hover::after { opacity: 1; }

.promise-grid span {
  background: linear-gradient(135deg, var(--lime), #b8ff00);
  box-shadow: 0 6px 16px -6px rgba(215,255,0,0.6);
}

/* ---------- guide list row enhancement ---------- */
.guide-link {
  position: relative;
  padding: 30px 18px 30px 18px;
  border-radius: 12px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    padding 0.35s var(--ease-spring);
}
.guide-link::after {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  opacity: 0;
  font-size: 24px;
  font-weight: 950;
  color: var(--ink);
  transition: opacity 0.3s ease, transform 0.4s var(--ease-spring);
}
.guide-link:hover {
  background: rgba(16, 43, 20, 0.04);
  padding-left: 28px;
}
.guide-link:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.guide-link strong { transition: color 0.3s ease; }
.guide-link:hover strong { color: var(--blue); }

.guide-link span {
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s var(--ease-spring);
}
.guide-link:hover span {
  background: var(--ink);
  color: var(--lime);
  transform: scale(1.08) rotate(-6deg);
}

/* ---------- guide-panel section spacing rhythm ---------- */
.guide-panel { padding: 120px 0; }
.guide-panel:first-of-type { padding-top: 90px; }

/* ---------- final CTA refinement ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(215,255,0,0.16), transparent 28rem),
    var(--white);
  border: 1px solid rgba(16, 43, 20, 0.06);
  box-shadow: var(--shadow-card);
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(6,72,199,0.12), transparent 70%);
  pointer-events: none;
}

/* ---------- vault-proof refinement ---------- */
.vault-proof {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 122, 26, 0.18), transparent 30rem),
    radial-gradient(circle at 14% 86%, rgba(6, 72, 199, 0.22), transparent 26rem),
    var(--ink);
  border: 1px solid rgba(255,255,255,0.06);
}
.proof-stats article {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease-spring), background 0.3s ease;
}
.proof-stats article:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.proof-stats strong {
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

/* ---------- module-grid: card lift ---------- */
.module-grid article {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(16, 43, 20, 0.06);
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease, border-color 0.4s ease;
}
.module-grid article:hover {
  border-color: rgba(6, 72, 199, 0.25);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 30px 60px -20px rgba(7, 30, 12, 0.32);
}
.module-grid article span {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime), #b8ff00);
  color: var(--ink);
  font-weight: 950;
  font-size: 13px;
  box-shadow: 0 6px 14px -4px rgba(215,255,0,0.5);
}

/* ---------- sticky CTA polish ---------- */
.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  pointer-events: auto;
}
.sticky-cta .button {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 24px 50px -12px rgba(7, 30, 12, 0.6);
}

/* ---------- focus visibility ---------- */
a:focus-visible, button:focus-visible, .button:focus-visible, .nav-cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px var(--ink),
    0 0 0 6px var(--lime);
  border-radius: 999px;
}

/* ---------- micro-flair: dotted dividers ---------- */
.guide-list {
  border-top: 1px dashed rgba(16, 43, 20, 0.18);
}
.guide-link {
  border-bottom: 1px dashed rgba(16, 43, 20, 0.16);
}

/* ---------- reduced motion fallback ---------- */
.motion-reduced .marquee-track,
.motion-reduced .hero-orb {
  animation: none !important;
  transform: none !important;
}
.motion-reduced .scroll-progress { display: none; }
.motion-reduced .cursor-dot, .motion-reduced .cursor-ring { display: none; }

/* ---------- mobile refinements ---------- */
@media (max-width: 760px) {
  .hero-orb { opacity: 0.4; filter: blur(40px); }
  .hero-orb--a { width: 260px; height: 260px; }
  .hero-orb--b { width: 220px; height: 220px; }
  .hero-orb--c { width: 200px; height: 200px; }
  .marquee-item { padding: 0 18px; font-size: 13px; }
  .guide-link { padding: 22px 14px; }
  .guide-link:hover { padding-left: 18px; }
  .sticky-cta { right: 12px; bottom: 12px; }
  .scroll-progress { height: 2px; }
}

/* ============================================================
   Voice block: editorial rhythm-break with Bradley's POV
   ============================================================ */
.voice-block {
  width: min(1160px, calc(100% - 40px));
  margin: 60px auto;
  padding: 64px clamp(28px, 6vw, 88px);
  background: var(--cream);
  border-radius: 44px;
  position: relative;
  overflow: hidden;
}
.voice-block::before {
  content: "“";
  position: absolute;
  top: -22px;
  left: clamp(20px, 5vw, 64px);
  font-size: clamp(180px, 22vw, 280px);
  line-height: 1;
  font-weight: 950;
  color: var(--lime);
  pointer-events: none;
  letter-spacing: -0.05em;
}
.voice-block__inner {
  position: relative;
  max-width: 760px;
  margin-left: auto;
}
.voice-block__kicker {
  margin: 0 0 18px;
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.voice-block__quote {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.32;
  font-weight: 850;
  color: var(--ink);
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.voice-block__quote p { margin: 0 0 18px; }
.voice-block__quote p:last-child { margin-bottom: 0; font-weight: 650; color: var(--ink-soft); font-size: clamp(17px, 1.6vw, 19px); line-height: 1.55; }
.voice-block__sig {
  margin: 26px 0 0;
  color: var(--ink-mute);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .voice-block { padding: 48px 26px; margin: 36px auto; border-radius: 32px; }
}

/* ============================================================
   Vault proof: opinionated replacement for hero-metric template
   ============================================================ */
.vault-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  padding: clamp(48px, 7vw, 84px);
}
.vault-proof__lead { padding-top: 8px; }
.vault-proof__statement {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 850;
  line-height: 1.32;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.vault-proof__detail {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
  max-width: 56ch;
}
.vault-proof__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.vault-proof__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.vault-proof__list li:last-child {
  border-bottom: 1px solid var(--lime);
}
.vault-proof__list li:last-child span {
  color: var(--lime);
  font-size: 22px;
}
.vault-proof__list span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.vault-proof__list em {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.5;
}
@media (max-width: 760px) {
  .vault-proof { grid-template-columns: 1fr; }
  .vault-proof__list li { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================================
   Module grid: bento, not identical card grid
   ============================================================ */
.module-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.module-grid article {
  grid-column: span 2;
}
.module-grid article:nth-child(1) { grid-column: span 4; min-height: 220px; }
.module-grid article:nth-child(1) h3 { font-size: clamp(28px, 2.6vw, 36px); }
.module-grid article:nth-child(1) p { font-size: 18px; }
.module-grid article:nth-child(5) { grid-column: span 4; background: var(--ink); color: var(--white); border-color: rgba(255,255,255,0.08); }
.module-grid article:nth-child(5) h3 { color: var(--white); }
.module-grid article:nth-child(5) p { color: rgba(255, 255, 255, 0.78); }
.module-grid article:nth-child(8) { grid-column: span 3; }
.module-grid article:nth-child(9) { grid-column: span 3; background: var(--lime); border-color: rgba(16,43,20,0.08); }
.module-grid article:nth-child(10) { grid-column: span 6; }
.module-grid article:nth-child(10) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  align-items: center;
  gap: 28px;
}
.module-grid article:nth-child(10) span { grid-row: 1 / 3; align-self: start; }
@media (max-width: 880px) {
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .module-grid article,
  .module-grid article:nth-child(1),
  .module-grid article:nth-child(5),
  .module-grid article:nth-child(8),
  .module-grid article:nth-child(9),
  .module-grid article:nth-child(10) {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Vault-access: "where to start" path + numbered TOC
   ============================================================ */
.vault-startpath {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--ink);
  color: var(--white);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.vault-startpath::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: var(--lime);
  border-radius: 999px;
  opacity: 0.12;
  pointer-events: none;
}
.vault-startpath__kicker {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.vault-startpath__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  counter-reset: startpath;
}
.vault-startpath__list li {
  counter-increment: startpath;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: baseline;
}
.vault-startpath__list li::before {
  content: counter(startpath);
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}
.vault-startpath__list a {
  display: block;
  color: var(--white);
  font-size: 17px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.vault-startpath__list a:hover { color: var(--lime); }
.vault-startpath__list em {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.45;
}

/* Numbered TOC chips */
.vault-toc a span {
  display: inline-block;
  margin-right: 6px;
  color: var(--ink-mute);
  font-size: 11px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.vault-toc a:hover span { color: var(--blue); }

@media print {
  .vault-startpath { display: none; }
}

/* ============================================================
   Category-themed article heros (escapes uniform lime hero)
   ============================================================ */

/* HHN: dark with blood-orange accent */
.theme-hhn .article__header {
  background: #0a0510;
  color: var(--white);
  background-image:
    radial-gradient(circle at 80% 12%, rgba(255, 80, 30, 0.35), transparent 36rem),
    radial-gradient(circle at 16% 88%, rgba(133, 0, 255, 0.22), transparent 28rem),
    linear-gradient(180deg, #0a0510, #14091e);
  border: 1px solid rgba(255, 80, 30, 0.18);
}
.theme-hhn .article__header h1,
.theme-hhn .article__header .lede {
  color: var(--white);
}
.theme-hhn .article__header .lede { color: rgba(255, 255, 255, 0.78); }
.theme-hhn .article__header .eyebrow {
  background: rgba(255, 80, 30, 0.12);
  border-color: rgba(255, 80, 30, 0.32);
  color: #ffaa88;
}
.theme-hhn .article__header .eyebrow::before { background: #ff5a1e; box-shadow: 0 0 0 3px rgba(255, 80, 30, 0.18); }
.theme-hhn .article__header .button--primary {
  background: linear-gradient(180deg, #ff7038, #ff4a14);
  color: #0a0510;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 14px 30px -8px rgba(255, 80, 30, 0.55);
}
.theme-hhn .article__header .button--secondary,
.theme-hhn .article__header .button--quiet {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.16);
  color: var(--white);
}

/* Christmas / Holiday: warm cream + holly green + warm-red */
.theme-christmas .article__header {
  background: #fdf4e2;
  background-image:
    radial-gradient(circle at 86% 14%, rgba(0, 92, 50, 0.18), transparent 30rem),
    radial-gradient(circle at 12% 90%, rgba(193, 41, 46, 0.16), transparent 26rem);
  border: 1px solid rgba(0, 92, 50, 0.14);
}
.theme-christmas .article__header .eyebrow {
  background: #fff;
  border-color: rgba(0, 92, 50, 0.2);
  color: #064a2b;
}
.theme-christmas .article__header .eyebrow::before { background: #c1292e; box-shadow: 0 0 0 3px rgba(193,41,46,0.18); }
.theme-christmas .article__header .button--primary {
  background: linear-gradient(180deg, #0a7142, #064a2b);
}

/* Epic Universe: cosmic, deep navy with magenta + cyan accents */
.theme-epic .article__header {
  background: #050a1c;
  color: var(--white);
  background-image:
    radial-gradient(circle at 88% 20%, rgba(255, 60, 200, 0.32), transparent 30rem),
    radial-gradient(circle at 10% 80%, rgba(0, 200, 255, 0.28), transparent 26rem),
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 80% 40%, rgba(255,255,255,0.5), transparent),
    linear-gradient(180deg, #050a1c, #0a1430);
  border: 1px solid rgba(255, 60, 200, 0.16);
}
.theme-epic .article__header h1,
.theme-epic .article__header .lede { color: var(--white); }
.theme-epic .article__header .lede { color: rgba(255, 255, 255, 0.78); }
.theme-epic .article__header .eyebrow {
  background: rgba(0, 200, 255, 0.1);
  border-color: rgba(0, 200, 255, 0.32);
  color: #84e8ff;
}
.theme-epic .article__header .eyebrow::before { background: #ff3cc8; box-shadow: 0 0 0 3px rgba(255,60,200,0.18); }
.theme-epic .article__header .button--primary {
  background: linear-gradient(180deg, #ff3cc8, #c41fa6);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 14px 30px -8px rgba(255, 60, 200, 0.55);
}
.theme-epic .article__header .button--secondary,
.theme-epic .article__header .button--quiet {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.16);
  color: var(--white);
}

/* Volcano Bay / water: bright cyan + lime accent */
.theme-water .article__header {
  background: #d8f4ff;
  background-image:
    radial-gradient(circle at 84% 16%, rgba(0, 140, 200, 0.22), transparent 30rem),
    radial-gradient(circle at 14% 86%, rgba(0, 80, 160, 0.16), transparent 26rem),
    linear-gradient(180deg, #e3f6ff, #c4eaff);
  border: 1px solid rgba(0, 100, 180, 0.12);
}
.theme-water .article__header .eyebrow {
  background: #fff;
  border-color: rgba(0, 100, 180, 0.18);
  color: #044a78;
}
.theme-water .article__header .eyebrow::before { background: #0094d6; box-shadow: 0 0 0 3px rgba(0,148,214,0.18); }
.theme-water .article__header .button--primary { background: linear-gradient(180deg, #066ba8, #033b5e); }

/* Summer: warm sunset peach + amber */
.theme-summer .article__header {
  background: #ffeed1;
  background-image:
    radial-gradient(circle at 84% 14%, rgba(255, 122, 26, 0.32), transparent 30rem),
    radial-gradient(circle at 12% 88%, rgba(255, 200, 50, 0.28), transparent 26rem),
    linear-gradient(180deg, #fff1d6, #ffd9a0);
  border: 1px solid rgba(255, 122, 26, 0.16);
}
.theme-summer .article__header .eyebrow {
  background: #fff;
  border-color: rgba(255, 122, 26, 0.24);
  color: #8a3a00;
}
.theme-summer .article__header .eyebrow::before { background: #ff7a1a; box-shadow: 0 0 0 3px rgba(255,122,26,0.2); }
.theme-summer .article__header .button--primary { background: linear-gradient(180deg, #b13800, #6e2200); }

/* ============================================================
   2026-05-23 conversion/design pass
   Make the Vault feel like a useful product, not a motion demo.
   ============================================================ */

.cursor-dot,
.cursor-ring,
.hero-orbs,
.hero-orb,
.marquee-band {
  display: none !important;
}

html,
body,
a,
button {
  cursor: auto !important;
}

.hero,
.vault-hero {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.24), transparent 28rem),
    linear-gradient(180deg, var(--lime), #cbfa00 72%, #bdf000);
}

.site-nav {
  position: sticky;
  top: 14px;
  transform: none !important;
  opacity: 1 !important;
}

.button--secondary {
  border: 2px solid rgba(16, 43, 20, 0.18);
  background: var(--lime-soft);
  color: var(--ink);
  box-shadow: 0 8px 20px -16px rgba(7, 30, 12, 0.35);
}

.button--secondary:hover {
  border-color: rgba(16, 43, 20, 0.35);
  background: var(--lime);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__copy,
.vault-hero__copy {
  transform: none !important;
  opacity: 1 !important;
}

.home-page .hero {
  min-height: auto;
  padding-bottom: clamp(64px, 8vw, 96px);
}

.home-page .hero__inner {
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
  padding-top: clamp(62px, 8vw, 104px);
}

.home-page .hero__copy {
  position: sticky;
  top: 116px;
}

.home-page .hero__copy h1 {
  max-width: 650px;
  font-size: clamp(58px, 7.2vw, 86px);
}

.home-page .lede {
  max-width: 610px;
  font-size: clamp(19px, 1.7vw, 23px);
}

.mobile-route-chips {
  display: none;
}

.hero-decision-panel {
  position: relative;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(16, 43, 20, 0.1);
  border-radius: 42px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(12px);
}

.hero-decision-panel__media {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  border-radius: 30px;
  background: var(--lime-soft);
}

.hero-decision-panel__media::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 38%;
  height: 34%;
  border-radius: 24px;
  background: var(--blue);
  transform: rotate(-4deg);
  z-index: 0;
}

.hero-decision-panel__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: 58% center;
}

.hero-decision-panel__intro {
  display: grid;
  gap: 8px;
  padding: 4px 4px 0;
}

.hero-decision-panel__intro p {
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-decision-panel__intro h2 {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.018em;
}

.hero-routes {
  display: grid;
  gap: 10px;
}

.hero-routes a {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(16, 43, 20, 0.11);
  border-radius: 24px;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    transform 200ms var(--ease-spring);
}

.hero-routes a:first-child {
  border-color: rgba(16, 43, 20, 0.18);
  background: var(--ink);
  color: var(--white);
}

.hero-routes a:hover {
  border-color: rgba(6, 72, 199, 0.34);
  transform: translateY(-2px);
}

.hero-routes strong {
  color: currentColor;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.16;
  letter-spacing: -0.005em;
}

.hero-routes span {
  color: currentColor;
  opacity: 0.68;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.38;
}

.hero-visual::after,
.vault-cover::after {
  opacity: 0.65;
}

.guide-panel {
  padding: clamp(76px, 9vw, 118px) 0;
}

.guide-panel__heading p:not(.eyebrow),
.vault-section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
}

.guide-link {
  min-height: 92px;
  align-items: center;
}

.guide-link::after {
  right: 22px;
}

.guide-link em {
  padding-right: 36px;
}

.start-paths {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: start;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) 0 24px;
}

.start-paths__copy {
  position: sticky;
  top: 116px;
}

.start-paths__copy h2 {
  color: var(--ink);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.022em;
}

.start-paths__copy p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

.start-paths__grid {
  display: grid;
  gap: 14px;
}

.start-path-card {
  display: grid;
  gap: 10px;
  min-height: 180px;
  border: 1px solid rgba(16, 43, 20, 0.1);
  border-radius: 32px;
  padding: 26px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition:
    border-color 220ms ease,
    transform 220ms var(--ease-spring),
    box-shadow 220ms ease;
}

.start-path-card:nth-child(2) {
  margin-left: clamp(0px, 4vw, 48px);
  background: var(--ink);
  color: var(--white);
}

.start-path-card:nth-child(3) {
  margin-left: clamp(0px, 8vw, 96px);
  background: var(--lime);
}

.start-path-card:hover {
  border-color: rgba(6, 72, 199, 0.28);
  transform: translateY(-3px);
}

.start-path-card span {
  color: currentColor;
  opacity: 0.64;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.start-path-card strong {
  color: currentColor;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.016em;
}

.start-path-card em {
  max-width: 58ch;
  color: currentColor;
  opacity: 0.72;
  font-size: 16px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.5;
}

.home-page .guide-panel[aria-labelledby="guide-title"] .guide-list .guide-link:nth-child(n+9) {
  display: none;
}

.vault-proof__body {
  min-width: 0;
}

.vault-toc {
  top: 10px;
  align-items: center;
  border-radius: 28px;
}

.vault-toc a {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid transparent;
}

.vault-toc a.is-active {
  background: var(--ink);
  color: var(--white);
}

.vault-toc a.is-active span {
  color: var(--lime);
}

.vault-module {
  scroll-margin-top: 98px;
}

.vault-module:hover,
.toolkit-panel:hover {
  transform: none;
}

.worksheet-table {
  overflow-x: auto;
}

.download-grid a {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: auto;
  top: auto;
  z-index: 60;
  display: block;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.sticky-cta .button {
  min-height: 54px;
  width: auto;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 24px 50px -12px rgba(7, 30, 12, 0.6);
}

.guide-hub-page {
  background: var(--cream);
}

.guide-hub-page .hub {
  width: min(1160px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 42px 0 110px;
}

.guide-hub-page .hub__intro {
  max-width: 850px;
  margin: 0 0 42px;
  text-align: left;
}

.guide-hub-page .hub__intro h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -0.022em;
}

.guide-hub-page .hub__intro p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.5;
}

.guide-hub-page .hub__controls {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 30px;
  border: 1px solid rgba(16, 43, 20, 0.1);
  border-radius: 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.guide-hub-page .hub__search {
  display: grid;
  gap: 10px;
}

.guide-hub-page .hub__search span,
.guide-hub-page .hub__filter-label {
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-hub-page .hub__search input {
  min-height: 58px;
  width: 100%;
  border: 2px solid rgba(16, 43, 20, 0.14);
  border-radius: 999px;
  padding: 0 20px;
  background: var(--white);
  color: var(--ink);
  font: 850 16px/1 var(--font-sans);
  outline: none;
}

.guide-hub-page .hub__search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(6, 72, 199, 0.12);
}

.guide-hub-page .hub__filters {
  display: grid;
  gap: 18px;
  margin: 0;
}

.guide-hub-page .hub__filter-group {
  margin: 0;
}

.guide-hub-page .hub__filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.guide-hub-page .hub__chip {
  min-height: 38px;
  border: 1px solid rgba(16, 43, 20, 0.16);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--white);
  color: var(--ink);
  font: 850 14px/1 var(--font-sans);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.guide-hub-page .hub__chip:hover {
  border-color: rgba(16, 43, 20, 0.4);
  transform: translateY(-1px);
}

.guide-hub-page .hub__chip.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--lime);
}

.guide-hub-page .hub__count {
  margin: 0 0 18px;
  color: var(--ink-mute);
  font-size: 15px;
  font-weight: 850;
}

.guide-hub-page .hub__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.guide-hub-page .hub__card {
  grid-column: span 4;
  display: flex;
  min-height: 208px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(16, 43, 20, 0.1);
  border-radius: 28px;
  padding: 22px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-spring);
}

.guide-hub-page .hub__card:nth-child(7n + 1) {
  grid-column: span 6;
}

.guide-hub-page .hub__card:nth-child(11n + 4) {
  background: var(--ink);
  color: var(--white);
}

.guide-hub-page .hub__card:hover {
  border-color: rgba(6, 72, 199, 0.28);
  transform: translateY(-3px);
}

.guide-hub-page .hub__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.guide-hub-page .hub__card-tag {
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--lime-soft);
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-hub-page .hub__card:nth-child(11n + 4) .hub__card-tag {
  background: rgba(215, 255, 0, 0.16);
  color: var(--lime);
}

.guide-hub-page .hub__card-title {
  margin: 0 0 10px;
  color: inherit;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.012em;
}

.guide-hub-page .hub__card-desc {
  margin: 0;
  color: currentColor;
  opacity: 0.72;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.48;
}

.guide-hub-page .hub__empty {
  border: 2px dashed var(--line);
  border-radius: 28px;
  padding: 42px 24px;
  background: var(--white);
  color: var(--ink-soft);
  text-align: center;
  font-weight: 850;
}

.article {
  width: min(1180px, calc(100% - 48px));
}

.article__header {
  min-height: 520px;
  padding: clamp(42px, 6vw, 70px);
  padding-right: min(48%, 540px);
}

.article__header::after {
  content: "";
  position: absolute;
  top: clamp(28px, 4vw, 54px);
  right: clamp(24px, 5vw, 64px);
  bottom: clamp(28px, 4vw, 54px);
  width: min(38%, 430px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(215, 255, 0, 0.02), rgba(16, 43, 20, 0.08)),
    url("./assets/uor-bold-trip-planning-hero.png") center / cover;
  box-shadow: var(--shadow-deep);
}

.article__header::before {
  content: "";
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: clamp(22px, 4vw, 46px);
  width: min(28%, 330px);
  height: 32%;
  border-radius: 30px;
  background: var(--blue);
  transform: rotate(-4deg);
  opacity: 0.9;
}

.article__header > * {
  position: relative;
  z-index: 1;
}

.article__header h1 {
  font-size: clamp(48px, 6vw, 70px);
}

.article__header .lede {
  max-width: 620px;
  font-size: clamp(18px, 2vw, 23px);
}

.article-route-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 18px 0 0;
  border: 1px solid rgba(16, 43, 20, 0.1);
  border-radius: 30px;
  padding: 20px 22px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.article-route-strip__copy {
  display: grid;
  gap: 5px;
}

.article-route-strip__copy strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
}

.article-route-strip__copy span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.article-route-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.article-route-strip__actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(16, 43, 20, 0.14);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--lime-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.article__body {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.article__body p,
.article__body li {
  font-size: 19px;
  line-height: 1.72;
}

.article__body h2 {
  position: relative;
  margin-top: 58px;
  border-top: 2px solid rgba(16, 43, 20, 0.12);
  padding-top: 34px;
}

.article__body h3 {
  margin-top: 28px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 950;
  line-height: 1.12;
}

.article__body ol,
.article__body ul {
  border: 1px solid rgba(16, 43, 20, 0.1);
  box-shadow: 0 12px 32px -24px rgba(7, 30, 12, 0.24);
}

.article__body a:not(.button) {
  color: var(--blue);
  font-weight: 850;
  text-decoration-thickness: 2px;
}

.article-tldr {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background: var(--ink);
  color: var(--white);
}

.article-tldr::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: var(--lime);
  opacity: 0.16;
}

.article-tldr p:first-child {
  color: var(--lime);
}

.article-tldr p + p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

.article-jump-nav {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(16, 43, 20, 0.1);
  border-radius: 28px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.article-jump-nav p {
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.article-jump-nav div {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.article-jump-nav a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.3;
  text-decoration: none;
}

.article-jump-nav a span {
  color: var(--ink-mute);
  font-size: 12px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.article-guide-visual {
  display: grid;
  gap: 10px;
  margin: 0;
}

.article-guide-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}

.article-guide-visual figcaption {
  color: var(--ink-mute);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .guide-hub-page .hub__controls,
  .guide-hub-page .hub__grid {
    grid-template-columns: 1fr;
  }

  .start-paths {
    grid-template-columns: 1fr;
  }

  .start-paths__copy {
    position: static;
  }

  .guide-hub-page .hub__card,
  .guide-hub-page .hub__card:nth-child(7n + 1) {
    grid-column: auto;
  }

  .home-page .hero__inner {
    grid-template-columns: 1fr;
  }

  .home-page .hero__copy {
    position: static;
  }

  .hero-routes a {
    grid-template-columns: 1fr;
  }

  .article__header {
    min-height: auto;
    padding-right: clamp(42px, 6vw, 70px);
  }

  .article__header::before,
  .article__header::after {
    display: none;
  }

  .article-route-strip {
    grid-template-columns: 1fr;
  }

  .article-route-strip__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-nav {
    top: 10px;
  }

  .home-page .hero {
    padding-bottom: 52px;
  }

  .home-page .hero__inner {
    width: min(100% - 28px, 1160px);
    gap: 30px;
    padding-top: 40px;
  }

  .home-page .hero__copy h1 {
    font-size: clamp(44px, 13vw, 56px);
    line-height: 0.94;
  }

  .home-page .lede {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.4;
  }

  .mobile-route-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .mobile-route-chips a {
    display: grid;
    min-height: 76px;
    align-content: start;
    gap: 5px;
    border: 1px solid rgba(16, 43, 20, 0.12);
    border-radius: 18px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    text-decoration: none;
    box-shadow: 0 10px 24px -22px rgba(7, 30, 12, 0.45);
  }

  .mobile-route-chips a:first-child {
    border-color: rgba(16, 43, 20, 0.2);
    background: var(--ink);
    color: var(--white);
  }

  .mobile-route-chips strong {
    color: currentColor;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.08;
  }

  .mobile-route-chips span {
    color: currentColor;
    opacity: 0.68;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.24;
  }

  .home-page .hero__actions {
    margin-top: 18px;
  }

  .home-page .hero__actions .button--quiet {
    display: none;
  }

  .home-page .reassurance {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.42;
  }

  .hero,
  .vault-hero {
    min-height: auto;
  }

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

  .guide-link::after {
    display: none;
  }

  .guide-link em {
    padding-right: 0;
  }

  .start-paths {
    width: min(100% - 28px, 1160px);
    padding-top: 58px;
  }

  .start-path-card,
  .start-path-card:nth-child(2),
  .start-path-card:nth-child(3) {
    margin-left: 0;
  }

  .vault-toc {
    top: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .hero-decision-panel {
    border-radius: 32px;
    padding: 12px;
  }

  .hero-decision-panel__media {
    min-height: 170px;
    border-radius: 24px;
  }

  .hero-decision-panel__media img {
    min-height: 170px;
  }

  .hero-routes a {
    border-radius: 20px;
    padding: 16px;
  }

  .article {
    width: min(100% - 28px, 960px);
  }

  .article-route-strip {
    padding: 18px;
    border-radius: 24px;
  }

  .article-route-strip__actions a {
    flex: 1;
    justify-content: center;
  }

  .article__body {
    padding-top: 34px;
  }

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

  .article-jump-nav,
  .article-guide-visual img {
    border-radius: 24px;
  }

  .vault-toc::-webkit-scrollbar {
    display: none;
  }

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

  .sticky-cta .button {
    flex: 1;
    width: auto;
    min-height: 50px;
  }

  .guide-hub-page .hub {
    width: min(100% - 28px, 1160px);
    padding-top: 28px;
  }

  .guide-hub-page .hub__intro h1 {
    font-size: 44px;
  }

  .guide-hub-page .hub__intro p:not(.eyebrow) {
    font-size: 17px;
  }

  .guide-hub-page .hub__controls {
    padding: 18px;
    border-radius: 28px;
  }
}

/* ============================================================
   RAINBOW OVERRIDE — full design pivot
   Vibrant dreamscape palette. SF Pro Rounded. Reduced type scale.
   Generous whitespace. Inset white shadows. Soft gradients.
   This block is intentionally at end-of-file so cascade wins.
   ============================================================ */

html, body {
  background: var(--cloudburst);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { background: var(--cloudburst); }
.home-page,
.vault-page,
.vault-access-page,
body.theme-hhn,
body.theme-christmas,
body.theme-epic,
body.theme-water,
body.theme-summer { background: var(--cloudburst); }

/* ----- Type scale (reduced from old 78px) ----- */
h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}

.hero h1,
.vault-hero h1,
.vault-workbook__header h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.article__header h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  font-weight: 800;
}

h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

.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: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 800;
}

h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.promise-grid h3,
.module-grid h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  opacity: 0.78;
  max-width: 56ch;
  letter-spacing: -0.005em;
}

.reassurance {
  font-size: 14px;
  font-weight: 500;
  color: var(--whisper-gray);
  line-height: 1.55;
  max-width: 56ch;
}

/* ----- Eyebrow: simpler, pill, no dot ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--line);
  background: var(--cloudburst);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow::before { display: none; }
.eyebrow--dark {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--cloudburst);
}

/* ----- Hero: full-bleed rainbow burst ----- */
.hero,
.vault-hero {
  position: relative;
  min-height: auto;
  padding: 32px 0 100px;
  background: var(--gradient-rainbow-burst);
  border-radius: 0;
  overflow: hidden;
}
.hero::after,
.vault-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 100%, rgba(140, 100, 255, 0.12), transparent 70%);
  pointer-events: none;
}
.hero__inner,
.vault-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(40px, 9vw, 120px);
  padding-bottom: clamp(24px, 4vw, 56px);
}
.hero__copy,
.vault-hero__copy { max-width: 560px; }
.hero__actions,
.vault-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ----- Site nav: pill, refined, no glass ----- */
.site-nav {
  width: min(1200px, calc(100% - 48px));
  min-height: 64px;
  padding: 8px 8px 8px 24px;
  background: var(--cloudburst);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  border-radius: 50px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.brand {
  font-family: var(--font-sans);
  padding-left: 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand::after {
  font-size: 22px;
  color: var(--sunset-orange);
}
.site-nav__links a {
  color: var(--whisper-gray);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 8px 14px;
  border-radius: 50px;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav__links a::after { display: none; }
.site-nav__links a:hover {
  color: var(--ink);
  background: var(--pale-mist);
}

/* ----- Buttons: Rainbow palette, 40px radius ----- */
.nav-cta,
.button {
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-cta,
.button--primary {
  background: var(--sunset-orange);
  color: var(--ink);
  box-shadow:
    rgba(255, 138, 0, 0.32) 0px 8px 24px -6px,
    rgba(255, 255, 255, 0.4) 0px 1px 0px 0px inset;
}
.nav-cta::before,
.button--primary::before { display: none; }
.nav-cta::after,
.button--primary::after { display: none; }
.nav-cta:hover,
.button--primary:hover {
  background: #ff9a1f;
  transform: translateY(-1px);
  box-shadow:
    rgba(255, 138, 0, 0.4) 0px 12px 30px -6px,
    rgba(255, 255, 255, 0.5) 0px 1px 0px 0px inset;
}
.button--secondary {
  background: var(--neon-pink);
  color: var(--ink);
  box-shadow:
    rgba(255, 84, 187, 0.32) 0px 8px 24px -6px,
    rgba(255, 255, 255, 0.4) 0px 1px 0px 0px inset;
}
.button--secondary:hover {
  background: #ff6ac6;
  transform: translateY(-1px);
}
.button--quiet {
  background: var(--cloudburst);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.button--quiet:hover {
  background: var(--pale-mist);
  border-color: rgba(15, 16, 26, 0.18);
}

/* ----- Hero visual: cleaner mounting, no rotated blue chip ----- */
.hero-visual,
.vault-cover {
  position: relative;
}
.hero-visual::before,
.hero-visual::after,
.vault-cover::before,
.vault-cover::after { display: none; }
.hero-visual img,
.vault-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow:
    rgba(15, 16, 26, 0.1) 0px 24px 48px -16px,
    rgba(255, 255, 255, 0.6) 0px 1px 0px 0px inset;
}

/* ----- Dark band repurposed: light pale-mist card, ink text ----- */
.dark-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: clamp(32px, 4vw, 60px);
  width: min(1200px, calc(100% - 48px));
  margin: 60px auto;
  border-radius: 32px;
  padding: clamp(40px, 5vw, 64px);
  background: var(--gradient-ethereal-aqua);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.dark-band::before { display: none; }
.dark-band h2 { color: var(--ink); }
.eyebrow--dark {
  background: rgba(15, 16, 26, 0.08);
  border-color: rgba(15, 16, 26, 0.1);
  color: var(--ink);
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.promise-grid article {
  position: relative;
  min-height: 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--cloudburst);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-inset);
  color: var(--ink);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promise-grid article:hover {
  transform: translateY(-3px);
  background: var(--cloudburst);
  border-color: rgba(15, 16, 26, 0.1);
}
.promise-grid article::after { display: none; }
.promise-grid h3 {
  margin-top: 24px;
  color: var(--ink);
}
.promise-grid p {
  margin-top: 8px;
  color: var(--whisper-gray);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
.promise-grid span,
.guide-link span {
  width: 32px;
  height: 32px;
  background: var(--sunset-orange);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-inset);
}
.promise-grid article:nth-child(2) span { background: var(--neon-pink); }
.promise-grid article:nth-child(3) span { background: var(--radiant-violet); color: var(--cloudburst); }

/* ----- Guide panel + list ----- */
.guide-panel {
  width: min(1200px, calc(100% - 48px));
  padding: clamp(48px, 8vw, 96px) 0;
}
.guide-panel:first-of-type { padding-top: clamp(40px, 6vw, 64px); }
.guide-panel__heading { max-width: 720px; }
.guide-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.guide-link {
  border-bottom: 1px solid var(--line);
  padding: 22px 16px;
  gap: 24px;
  align-items: center;
}
.guide-link strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.guide-link em {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--whisper-gray);
}
.guide-link:hover {
  background: var(--pale-mist);
  padding-left: 22px;
}
.guide-link:hover strong { color: var(--ink); }
.guide-link:hover span {
  background: var(--neon-pink);
  color: var(--ink);
}

/* ----- Final CTA ----- */
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  width: min(1200px, calc(100% - 48px));
  margin: 60px auto;
  border-radius: 32px;
  padding: clamp(36px, 5vw, 56px);
  background: var(--gradient-pink-sunset);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-inset);
}
.final-cta::before { display: none; }
.final-cta h2 { color: var(--ink); }
.final-cta p:not(.eyebrow) {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(15, 16, 26, 0.78);
  max-width: 58ch;
  margin-top: 14px;
}
.final-cta .eyebrow {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}
.final-cta .button--primary {
  background: var(--ink);
  color: var(--cloudburst);
  box-shadow:
    rgba(15, 16, 26, 0.4) 0px 8px 24px -6px,
    rgba(255, 255, 255, 0.1) 0px 1px 0px 0px inset;
}
.final-cta .button--primary:hover { background: #1a1b28; }

/* ----- Vault proof ----- */
.vault-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  width: min(1200px, calc(100% - 48px));
  margin: 60px auto;
  border-radius: 32px;
  padding: clamp(36px, 5vw, 60px);
  background: var(--gradient-ethereal-aqua);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.vault-proof h2 { color: var(--ink); }
.vault-proof .eyebrow {
  background: rgba(15, 16, 26, 0.06);
  color: var(--ink);
  border-color: rgba(15, 16, 26, 0.1);
}
.vault-proof__statement {
  color: var(--ink);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
}
.vault-proof__detail {
  color: var(--whisper-gray);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  max-width: 58ch;
  margin-bottom: 32px;
}
.vault-proof__list {
  border-top: 1px solid rgba(15, 16, 26, 0.1);
}
.vault-proof__list li {
  border-bottom: 1px solid rgba(15, 16, 26, 0.08);
  padding: 16px 0;
}
.vault-proof__list li:last-child {
  border-bottom: 1px solid var(--sunset-orange);
}
.vault-proof__list li:last-child span { color: var(--sunset-orange); }
.vault-proof__list span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}
.vault-proof__list em {
  color: var(--whisper-gray);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

/* ----- Module grid (bento, lighter cards) ----- */
.module-grid article {
  background: var(--cloudburst);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.module-grid article:hover {
  border-color: rgba(15, 16, 26, 0.12);
  box-shadow:
    rgba(15, 16, 26, 0.1) 0px 18px 40px -12px,
    rgba(255, 255, 255, 0.6) 0px 1px 0px 0px inset;
}
.module-grid article p {
  color: var(--whisper-gray);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  margin-top: 8px;
}
.module-grid article span {
  background: var(--sunset-orange);
  color: var(--ink);
  width: 32px;
  height: 32px;
  box-shadow: var(--shadow-inset);
}
.module-grid article:nth-child(5) {
  background: var(--gradient-pink-sunset);
  color: var(--ink);
  border: 0;
}
.module-grid article:nth-child(5) h3 { color: var(--ink); }
.module-grid article:nth-child(5) p { color: rgba(15, 16, 26, 0.72); }
.module-grid article:nth-child(5) span {
  background: var(--cloudburst);
  color: var(--neon-pink);
}
.module-grid article:nth-child(9) {
  background: var(--gradient-ethereal-aqua);
  border: 0;
}
.module-grid article:nth-child(9) span {
  background: var(--radiant-violet);
  color: var(--cloudburst);
}

/* ----- Vault stack ----- */
.stack-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 16px !important;
  margin-top: 32px !important;
  border-top: 0 !important;
}
.stack-list div {
  display: block !important;
  grid-template-columns: none !important;
  background: var(--cloudburst) !important;
  border-radius: 20px !important;
  padding: 22px 24px !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-soft) !important;
  gap: 0 !important;
}
.stack-list strong {
  display: block !important;
  margin-bottom: 8px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: -0.012em !important;
  color: var(--ink) !important;
}
.stack-list span {
  display: block !important;
  color: var(--whisper-gray) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

/* ----- Email strip ----- */
.vault-email-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  width: min(1200px, calc(100% - 48px));
  margin: 60px auto;
  padding: clamp(36px, 5vw, 60px);
  border-radius: 32px;
  background: var(--ink);
  color: var(--cloudburst);
  border: 0;
  box-shadow: var(--shadow);
}
.vault-email-strip h2 { color: var(--cloudburst); }
.vault-email-strip .eyebrow--dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--cloudburst);
}
.email-steps li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.email-steps li:last-child { border-bottom: 0; }
.email-steps strong { color: var(--cloudburst); font-weight: 700; }

/* ----- Sticky CTA ----- */
.sticky-cta { bottom: 20px; right: 20px; }
.sticky-cta .button { box-shadow:
  rgba(255, 138, 0, 0.5) 0px 12px 32px -8px,
  rgba(255, 255, 255, 0.4) 0px 1px 0px 0px inset; }

/* ----- Article body type tighten ----- */
.article__body p,
.article__body li {
  color: var(--ink);
  opacity: 0.88;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}
.article__body h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin-top: 40px;
  color: var(--ink);
}
.article__body ul {
  background: var(--pale-mist);
  border-radius: 20px;
  padding: 18px 22px 18px 40px;
}
.article__header {
  background: var(--gradient-rainbow-burst);
  color: var(--ink);
  border-radius: 32px;
  padding: clamp(40px, 5vw, 64px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

/* ----- Voice block (homepage editorial moment) ----- */
.voice-block {
  background: var(--cloudburst);
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.voice-block::before { color: var(--sunset-orange); }
.voice-block__quote {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.018em;
}

/* ----- Disable bans introduced earlier ----- */
.marquee-band { display: none; }
.cursor-dot,
.cursor-ring { display: none !important; }
.grain-overlay { display: none; }
body { cursor: auto !important; }
a, button, input, textarea, [role="button"] { cursor: pointer; }
.scroll-progress__fill { background: var(--gradient-pink-sunset); animation: none; }
.hero-orb { display: none; }

/* ----- Themed article heros revert to clean rainbow burst ----- */
.theme-hhn .article__header,
.theme-christmas .article__header,
.theme-epic .article__header,
.theme-water .article__header,
.theme-summer .article__header {
  background: var(--gradient-rainbow-burst);
  color: var(--ink);
  border: 1px solid var(--line);
}
.theme-hhn .article__header h1,
.theme-christmas .article__header h1,
.theme-epic .article__header h1,
.theme-water .article__header h1,
.theme-summer .article__header h1 { color: var(--ink); }
.theme-hhn .article__header .lede,
.theme-christmas .article__header .lede,
.theme-epic .article__header .lede,
.theme-water .article__header .lede,
.theme-summer .article__header .lede { color: var(--ink); opacity: 0.78; }
.theme-hhn .article__header .button--primary,
.theme-christmas .article__header .button--primary,
.theme-epic .article__header .button--primary,
.theme-water .article__header .button--primary,
.theme-summer .article__header .button--primary {
  background: var(--sunset-orange);
  color: var(--ink);
}

/* ----- Mobile ----- */
@media (max-width: 760px) {
  .hero__inner,
  .vault-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 64px;
    gap: 40px;
  }
  .promise-grid { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; gap: 24px; }
  .vault-proof,
  .vault-email-strip { grid-template-columns: 1fr; }
  .site-nav { width: calc(100% - 24px); padding: 8px 8px 8px 16px; }
  .site-nav__links { display: none; }
}

/* ----- Rainbow override: mobile-route-chips ----- */
.mobile-route-chips {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 0;
  max-width: 560px;
}
.mobile-route-chips a {
  display: block;
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--cloudburst);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.mobile-route-chips a:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 16, 26, 0.14);
  box-shadow:
    rgba(15, 16, 26, 0.1) 0px 14px 32px -10px,
    rgba(255, 255, 255, 0.6) 0px 1px 0px 0px inset;
}
.mobile-route-chips a:nth-child(1) { background: linear-gradient(180deg, #fff, #fff5e0); }
.mobile-route-chips a:nth-child(2) { background: linear-gradient(180deg, #fff, #ffe9f6); }
.mobile-route-chips a:nth-child(3) { background: linear-gradient(180deg, #fff, #eaf6ff); }
.mobile-route-chips a:nth-child(4) { background: linear-gradient(180deg, #fff, #efeaff); }
.mobile-route-chips strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 4px;
}
.mobile-route-chips span {
  font-size: 13px;
  font-weight: 500;
  color: var(--whisper-gray);
  line-height: 1.4;
}
@media (max-width: 520px) {
  .mobile-route-chips { grid-template-columns: 1fr; }
}

/* ----- Improve article jump nav with rainbow accents ----- */
.article-jump-nav {
  background: var(--gradient-ethereal-aqua);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  margin: 32px 0;
}
.article-jump-nav p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--whisper-gray);
  margin: 0 0 12px;
}
.article-jump-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin: 4px 6px 4px 0;
  background: var(--cloudburst);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.article-jump-nav a:hover {
  background: var(--sunset-orange);
  border-color: var(--sunset-orange);
}
.article-jump-nav a span {
  font-size: 11px;
  font-weight: 800;
  color: var(--whisper-gray);
  font-variant-numeric: tabular-nums;
}
.article-jump-nav a:hover span { color: var(--ink); }

/* ----- Article TLDR + Route strip ----- */
.article-tldr {
  background: var(--pale-mist);
  border-radius: 20px;
  padding: 22px 26px;
  margin: 24px 0;
  border-left: 0;
}
.article-tldr p:first-child {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunset-orange);
  margin-bottom: 8px;
}
.article-tldr p + p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.88;
}

.article-route-strip {
  background: var(--gradient-pink-sunset);
  border-radius: 24px;
  padding: 28px 32px;
  margin: 32px 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-inset);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.article-route-strip__copy strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
}
.article-route-strip__copy span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(15, 16, 26, 0.72);
  line-height: 1.5;
}
.article-route-strip__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.article-route-strip__actions a {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--cloudburst);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.article-route-strip__actions a:hover {
  transform: translateY(-1px);
  background: #1a1b28;
}
@media (max-width: 640px) {
  .article-route-strip { grid-template-columns: 1fr; }
}

.article-guide-visual {
  margin: 32px 0;
}
.article-guide-visual img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.article-guide-visual figcaption {
  font-size: 13px;
  font-weight: 500;
  color: var(--whisper-gray);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ----- Related guides ----- */
.related-guides {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.related-guides__heading {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
}
.related-guides__sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--whisper-gray);
  margin-bottom: 20px;
}
.related-guides a {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: padding-left 0.25s ease, background 0.25s ease;
}
.related-guides a:hover {
  padding-left: 12px;
  background: var(--pale-mist);
}
.related-guides strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.012em;
}
.related-guides em {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: var(--whisper-gray);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .related-guides a { grid-template-columns: 1fr; gap: 4px; }
}

/* ----- Rainbow override: hero decision panel ----- */
.hero-decision-panel {
  background: var(--cloudburst) !important;
  border-radius: 32px !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-soft) !important;
  padding: 24px !important;
  display: grid;
  gap: 20px;
}
.hero-decision-panel__media {
  border-radius: 24px;
  overflow: hidden;
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 10;
}
.hero-decision-panel__media::before,
.hero-decision-panel__media::after { display: none !important; }
.hero-decision-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: none;
}
.hero-decision-panel__intro p {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--whisper-gray) !important;
  margin-bottom: 6px !important;
}
.hero-decision-panel__intro h2 {
  font-size: 24px !important;
  font-weight: 700 !important;
  letter-spacing: -0.018em !important;
  line-height: 1.15 !important;
  color: var(--ink) !important;
  margin: 0 !important;
}
.hero-routes {
  display: grid;
  gap: 10px;
}
.hero-routes a {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--pale-mist);
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.hero-routes a:hover {
  transform: translateY(-1px);
  background: var(--cloudburst);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.hero-routes a:first-child {
  background: var(--gradient-pink-sunset) !important;
  color: var(--ink);
}
.hero-routes a:first-child:hover {
  background: var(--gradient-pink-sunset) !important;
  filter: brightness(1.03);
}
.hero-routes a strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}
.hero-routes a span {
  font-size: 13px;
  font-weight: 500;
  color: var(--whisper-gray);
  line-height: 1.45;
}
.hero-routes a:first-child span { color: rgba(15, 16, 26, 0.72); }

/* ----- Rainbow override: home-page background ----- */
.home-page { background: var(--cloudburst) !important; }

/* On home, the rainbow burst lives in hero only, then cream below */
.home-page .hero { background: var(--gradient-rainbow-burst); }
.home-page main > section:not(.hero) { background: var(--cloudburst); }

/* ============================================================
   QA FIXES — vault-access hero, motion-letter pills, startpath
   ============================================================ */

/* Bug 1: vault-workbook__header was solid orange. Use rainbow burst. */
.vault-workbook__header {
  background: var(--gradient-rainbow-burst) !important;
  border: 1px solid var(--line) !important;
  border-radius: 32px !important;
  padding: clamp(40px, 5vw, 64px) !important;
  box-shadow: var(--shadow-soft) !important;
  overflow: hidden;
}
.vault-workbook__header h1 {
  font-size: clamp(36px, 5vw, 56px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.022em !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
  color: var(--ink) !important;
}
.vault-workbook__header p:not(.eyebrow) {
  font-size: clamp(16px, 1.4vw, 18px) !important;
  color: rgba(15, 16, 26, 0.74) !important;
  font-weight: 500;
}
.vault-workbook__header .brand {
  margin-bottom: 24px !important;
}

/* Bug 2: motion-letter spans inside split H2s/H1s were getting
   the orange-pill treatment from `.module-title span` (descendant).
   Scope the pill to direct children only. */
.module-title > span,
.module-grid > article > span,
.promise-grid > article > span,
.guide-link > span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--sunset-orange);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-inset);
}

/* Defensively reset motion-word/motion-letter so they never look
   like pills, no matter which parent they're inside. */
.motion-word,
.motion-letter {
  background: transparent !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  display: inline-block !important;
  box-shadow: none !important;
  color: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}
.motion-word__inner {
  background: transparent !important;
  display: inline-flex !important;
  box-shadow: none !important;
}

/* Bug 3: vault-startpath list — anchor and em were collapsing
   into the 32px counter column. Use grid-template-areas. */
.vault-startpath__list li {
  display: grid !important;
  grid-template-columns: 32px 1fr !important;
  grid-template-rows: auto auto;
  column-gap: 14px !important;
  row-gap: 4px;
  align-items: start !important;
}
.vault-startpath__list li::before {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 1px;
}
.vault-startpath__list a {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
}
.vault-startpath__list em {
  grid-column: 2 !important;
  grid-row: 2 !important;
  display: block !important;
}

/* Bug 4: action buttons on rainbow hero — give the secondary
   ("Share the signup page") proper contrast. The primary
   "Print the worksheets" stays orange and sits well on the
   pale parts of the rainbow gradient. */
.vault-workbook__header .button--quiet {
  background: var(--cloudburst) !important;
  color: var(--ink) !important;
  border: 1px solid var(--line) !important;
}
.vault-workbook__header .button--primary {
  background: var(--ink) !important;
  color: var(--cloudburst) !important;
  box-shadow:
    rgba(15, 16, 26, 0.32) 0px 8px 24px -6px,
    rgba(255, 255, 255, 0.1) 0px 1px 0px 0px inset !important;
}
.vault-workbook__header .button--primary:hover {
  background: #1a1b28 !important;
}

/* Soften the orange pill startpath inside the rainbow hero */
.vault-startpath {
  background: var(--ink) !important;
  border-radius: 24px !important;
  padding: 24px 28px !important;
  margin-top: 28px !important;
}
.vault-startpath::before { display: none !important; }
.vault-startpath__list li::before {
  background: var(--sunset-orange) !important;
  box-shadow: var(--shadow-inset);
}
.vault-startpath__list a {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--cloudburst) !important;
  letter-spacing: -0.01em;
}
.vault-startpath__list a:hover { color: var(--sunset-orange) !important; }
.vault-startpath__list em {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 0 !important;
}
.vault-startpath__kicker {
  color: var(--sunset-orange) !important;
}

/* ============================================================
   List bullets + final touch
   ============================================================ */
/* Checklist with sunset-orange checkmarks instead of square bullets */
.check-grid {
  list-style: none !important;
  padding-left: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 10px 24px !important;
  margin: 16px 0 0 !important;
}
.check-grid li {
  position: relative;
  padding-left: 28px;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.check-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--sunset-orange);
  background-image: linear-gradient(135deg, var(--sunset-orange), var(--neon-pink));
  box-shadow: var(--shadow-inset);
}
.check-grid li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--cloudburst);
  border-bottom: 2px solid var(--cloudburst);
  transform: rotate(-45deg);
}

/* Decision-grid + park-cards + itinerary-grid cards: cloudburst surfaces */
.decision-grid article,
.park-cards article,
.itinerary-grid article {
  background: var(--cloudburst) !important;
  border: 1px solid var(--line) !important;
  border-radius: 24px !important;
  box-shadow: var(--shadow-soft) !important;
  padding: 24px !important;
}
.decision-grid article h3,
.park-cards article h3,
.itinerary-grid article h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: -0.012em !important;
  color: var(--ink) !important;
  margin-bottom: 10px;
}
.decision-grid article p,
.park-cards article p,
.itinerary-grid article p {
  color: var(--whisper-gray) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
}
.park-cards article ul,
.itinerary-grid article ol {
  list-style: disc;
  margin: 12px 0 0;
  padding-left: 22px;
}
.park-cards article ul li,
.itinerary-grid article ol li {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.85;
  line-height: 1.55;
  margin: 4px 0;
}

/* Worksheet card */
.worksheet {
  background: var(--pale-mist) !important;
  border-radius: 24px !important;
  padding: 24px 28px !important;
  margin: 18px 0 !important;
  border: 1px solid var(--line) !important;
}
.worksheet h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: -0.012em !important;
  color: var(--ink) !important;
  margin-bottom: 12px;
}

/* Module title spacing */
.module-title {
  display: flex !important;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.module-title h2 {
  font-size: clamp(24px, 2.6vw, 32px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.018em !important;
  line-height: 1.15 !important;
  color: var(--ink) !important;
  margin: 0;
}
.module-lede {
  color: var(--whisper-gray) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  margin-bottom: 24px !important;
  max-width: 64ch;
}

/* Vault module section spacing */
.vault-module {
  margin: 48px 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Sticky TOC clean */
.vault-toc {
  background: var(--cloudburst) !important;
  border: 1px solid var(--line) !important;
  border-radius: 50px !important;
  padding: 8px 12px !important;
  margin: 24px 0 !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 4px;
  box-shadow: var(--shadow-soft) !important;
}
.vault-toc a {
  padding: 8px 14px !important;
  border-radius: 50px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--whisper-gray) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vault-toc a:hover {
  color: var(--ink) !important;
  background: var(--pale-mist) !important;
}
.vault-toc a span {
  font-size: 10px !important;
  color: var(--whisper-gray) !important;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  display: inline !important;
  box-shadow: none !important;
}

/* Workbook width */
.vault-workbook {
  width: min(960px, calc(100% - 48px));
  margin: 24px auto;
  padding: 0;
}

/* ================================================================
   RAINBOW DESIGN SYSTEM v2 — 2026-05-23
   Inspired by rainbow.me. This block is the canonical surface layer.
   It overrides earlier rules so the whole site reads as one system.

   Architecture:
   1. Token foundation (palette, gradients, surfaces, type, motion)
   2. Page surfaces (hero, vault-hero, article header, dark sections)
   3. Components (nav, buttons, cards, guide rows, sticky CTA)
   4. Section accent classes for color rotation
   5. Responsive refinements
   ================================================================ */

:root {
  /* ---- Rainbow palette (cinematic pastels + saturated accents) ---- */
  --r-blossom:   #ff9bd2;   /* hot pink           */
  --r-sunrise:   #ffa463;   /* warm orange        */
  --r-canary:    #ffd84d;   /* bright yellow      */
  --r-spring:    #7cf1b5;   /* mint green         */
  --r-pacific:   #6cc1ff;   /* sky blue           */
  --r-violet:    #a98bff;   /* lavender violet    */
  --r-coral:     #ff6f6f;   /* coral red          */
  --r-nightshade:#1a1240;   /* deep cosmic ink    */
  --r-midnight:  #0c0826;   /* near-black violet  */

  /* ---- Soft pastel surfaces (use behind text) ---- */
  --r-pastel-blush:   #fff0f7;
  --r-pastel-peach:   #fff3e6;
  --r-pastel-cream:   #fffbeb;
  --r-pastel-mint:    #ecfff5;
  --r-pastel-sky:     #ecf5ff;
  --r-pastel-lilac:   #f3edff;

  /* ---- Cool, consistent text greys (replace legacy green-tinted greys) ---- */
  --r-ink:       #11132a;
  --r-ink-soft:  rgba(17, 19, 42, 0.78);
  --r-ink-mute:  rgba(17, 19, 42, 0.58);
  --r-ink-quiet: rgba(17, 19, 42, 0.42);
  --r-line:      rgba(17, 19, 42, 0.08);
  --r-line-strong: rgba(17, 19, 42, 0.14);

  /* ---- Signature multi-color gradients ---- */
  --r-gradient-hero:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 155, 210, 0.55), transparent 55%),
    radial-gradient(120% 80% at 100% 10%, rgba(108, 193, 255, 0.55), transparent 55%),
    radial-gradient(140% 90% at 50% 100%, rgba(169, 139, 255, 0.45), transparent 60%),
    linear-gradient(180deg, #fff5ee 0%, #fff0fb 35%, #f0f5ff 70%, #ecfff5 100%);
  --r-gradient-spectrum:
    linear-gradient(90deg, #ff9bd2 0%, #ffa463 22%, #ffd84d 42%, #7cf1b5 62%, #6cc1ff 80%, #a98bff 100%);
  --r-gradient-cosmic:
    radial-gradient(80% 60% at 12% 14%, rgba(169, 139, 255, 0.28), transparent 60%),
    radial-gradient(70% 60% at 88% 86%, rgba(108, 193, 255, 0.22), transparent 55%),
    radial-gradient(50% 50% at 60% 30%, rgba(255, 155, 210, 0.18), transparent 60%),
    linear-gradient(180deg, var(--r-midnight) 0%, var(--r-nightshade) 100%);
  --r-gradient-rim-blush:
    linear-gradient(180deg, var(--r-pastel-blush) 0%, #fff0fb 60%, #fff8e8 100%);
  --r-gradient-rim-mint:
    linear-gradient(180deg, var(--r-pastel-mint) 0%, #f0fff7 60%, #ecf5ff 100%);
  --r-gradient-rim-sky:
    linear-gradient(180deg, var(--r-pastel-sky) 0%, #eaf2ff 60%, #f3edff 100%);
  --r-gradient-rim-canary:
    linear-gradient(180deg, var(--r-pastel-cream) 0%, #fff8d6 60%, #fff0e0 100%);
  --r-gradient-rim-lilac:
    linear-gradient(180deg, var(--r-pastel-lilac) 0%, #f0e8ff 60%, #fff0fb 100%);

  /* ---- Tinted shadows (replace pure-black drop shadows) ---- */
  --r-shadow-soft:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 8px 24px -12px rgba(26, 18, 64, 0.18),
    0 4px 10px -6px rgba(26, 18, 64, 0.12);
  --r-shadow-card:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 18px 40px -16px rgba(26, 18, 64, 0.28),
    0 6px 14px -8px rgba(26, 18, 64, 0.16);
  --r-shadow-float:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 36px 70px -22px rgba(26, 18, 64, 0.32),
    0 14px 28px -14px rgba(26, 18, 64, 0.18);
  --r-shadow-press:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 4px 10px -4px rgba(26, 18, 64, 0.5);
  --r-glow-blossom: 0 12px 32px -10px rgba(255, 111, 175, 0.45);
  --r-glow-spring:  0 12px 32px -10px rgba(60, 200, 140, 0.4);
  --r-glow-pacific: 0 12px 32px -10px rgba(78, 145, 235, 0.45);
  --r-glow-violet:  0 12px 32px -10px rgba(140, 110, 235, 0.45);

  /* ---- Radius scale ---- */
  --r-radius-xs:  10px;
  --r-radius-sm:  16px;
  --r-radius-md:  22px;
  --r-radius-lg:  32px;
  --r-radius-xl:  44px;
  --r-radius-2xl: 56px;
  --r-radius-pill: 999px;

  /* ---- Type scale (fluid clamp-based) ---- */
  --r-type-display:  clamp(54px, 7.6vw, 96px);
  --r-type-h1:       clamp(46px, 6.2vw, 78px);
  --r-type-h2:       clamp(34px, 4.4vw, 56px);
  --r-type-h3:       clamp(22px, 2.2vw, 28px);
  --r-type-lede:     clamp(18px, 1.55vw, 22px);
  --r-type-body:     17px;
  --r-type-small:    14px;
  --r-type-eyebrow:  12px;

  /* ---- Section rhythm ---- */
  --r-section-y:        clamp(72px, 9vw, 132px);
  --r-section-y-tight:  clamp(48px, 6vw, 88px);
  --r-container:        min(1180px, calc(100% - 40px));
  --r-container-narrow: min(960px, calc(100% - 40px));

  /* ---- Motion ---- */
  --r-ease-out:    cubic-bezier(0.22, 1.0, 0.36, 1.0);
  --r-ease-spring: cubic-bezier(0.22, 1.2, 0.36, 1.0);
  --r-dur-fast:    160ms;
  --r-dur-med:     280ms;
  --r-dur-slow:    480ms;

  /* ---- Re-anchor legacy aliases so old rules drift toward Rainbow palette ---- */
  --ink:        var(--r-ink);
  --ink-2:      var(--r-midnight);
  --ink-soft:   var(--r-ink-soft);
  --ink-mute:   var(--r-ink-mute);
  --whisper-gray: var(--r-ink-mute);
  --line:       var(--r-line);
  --cream:      #ffffff;
  --white:      #ffffff;
  --cloudburst: #ffffff;
  --mist:       var(--r-pastel-cream);
  --pale-mist:  var(--r-pastel-cream);
  --lime-soft:  var(--r-pastel-blush);
}

/* Repaint legacy bright orange/lime surfaces to the pastel rainbow wash.
   Hits every page that uses .vault-workbook__header. */
.vault-workbook__header {
  background: var(--r-gradient-hero) !important;
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius-2xl) !important;
  box-shadow: var(--r-shadow-soft);
  color: var(--r-ink) !important;
}
.vault-workbook__header h1 { color: var(--r-ink) !important; letter-spacing: -0.025em; }
.vault-workbook__header p:not(.eyebrow) { color: var(--r-ink-soft) !important; }

/* Article actions row — ensure the CTA buttons inside .article__header
   have proper spacing instead of stacking on top of the lede */
.article__header .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 2.4vw, 28px);
}

/* Section spacing breathing room after the article header */
.article__body { padding-block: clamp(40px, 5vw, 64px) 20px; }

/* Article TLDR — soft canary panel with a violet accent rule on the left */
.article-tldr {
  background: var(--r-pastel-cream) !important;
  border: 1px solid var(--r-line) !important;
  border-left: 4px solid var(--r-violet) !important;
  border-radius: var(--r-radius-md) !important;
  color: var(--r-ink) !important;
}

/* Make sure the second small hero image on the home aside doesn't blow out the layout */
.hero-decision-panel__media img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-decision-panel__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r-radius-xl) var(--r-radius-xl) 0 0;
}

/* Decorative drop-shadow chip behind the hero image — recolor from blue to violet */
.hero-visual::before,
.vault-cover::before {
  background: linear-gradient(135deg, var(--r-violet) 0%, var(--r-pacific) 100%) !important;
  box-shadow: 0 28px 60px -22px rgba(108, 80, 220, 0.4) !important;
}
.hero-visual::after,
.vault-cover::after {
  background: var(--r-pastel-canary, var(--r-pastel-cream)) !important;
}

/* Trip planner / tools / popular starting points — wrap the headings
   in a soft white panel so they feel like considered sections, not loose text */
.guide-panel {
  padding-block: clamp(72px, 9vw, 120px);
}
.guide-panel__heading {
  max-width: 760px;
}
.guide-panel h2 {
  font-size: var(--r-type-h2);
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--r-ink);
}
.guide-panel__heading p { color: var(--r-ink-soft); }

/* ----------------------------------------------------------------
   ARTICLE HEADER FINAL CLEANUP — neutralize legacy chip/image overlays
   that fight the new pastel rainbow gradient
   ---------------------------------------------------------------- */

.article__header {
  min-height: 0 !important;
  padding: clamp(40px, 6vw, 72px) !important;
  padding-right: clamp(40px, 6vw, 72px) !important;
}
.article__header::before,
.article__header::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
/* Restore a contained bloom (cleaner than the legacy ones above) */
.article__header {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.article__header > * { position: relative; z-index: 1; }
.article__header h1 {
  font-size: clamp(40px, 5.4vw, 60px) !important;
  letter-spacing: -0.025em !important;
  line-height: 1.0 !important;
  margin-top: 8px !important;
  max-width: 24ch;
}

/* Article body separation from header — and reset the dark TLDR */
.article__body { padding-top: clamp(36px, 5vw, 56px); }
.article__body h2 {
  border-top: 1px solid var(--r-line) !important;
  padding-top: clamp(28px, 3.5vw, 40px) !important;
  margin-top: clamp(40px, 5vw, 60px) !important;
}
.article-tldr {
  background: var(--r-pastel-cream) !important;
  color: var(--r-ink) !important;
  border: 1px solid var(--r-line) !important;
  border-left: 4px solid var(--r-violet) !important;
  border-radius: var(--r-radius-md) !important;
  padding: clamp(22px, 2.4vw, 28px) !important;
  box-shadow: none !important;
}
.article-tldr::before,
.article-tldr::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
.article-tldr p:first-child {
  color: var(--r-ink) !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px !important;
  margin-bottom: 8px;
}
.article-tldr p + p { color: var(--r-ink-soft) !important; font-size: 17px !important; }

/* Article route strip — used on some pages — soften */
.article-route-strip {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid var(--r-line) !important;
  border-radius: var(--r-radius-md) !important;
  box-shadow: var(--r-shadow-soft) !important;
}
.article-route-strip__actions a {
  background: var(--r-pastel-sky) !important;
  border: 1px solid var(--r-line) !important;
  color: var(--r-ink) !important;
}

/* Article body lists — soft cream panel */
.article__body ul,
.article__body ol {
  background: var(--r-pastel-cream) !important;
  border: 1px solid var(--r-line) !important;
  border-radius: var(--r-radius-md) !important;
  box-shadow: none !important;
}
.article__body a:not(.button) { color: var(--r-violet) !important; font-weight: 700 !important; }

/* Vault startpath inside vault-workbook header — keep dark, retint accent */
.vault-startpath { background: var(--r-midnight) !important; border-radius: var(--r-radius-lg); }
.vault-startpath::before { background: var(--r-violet) !important; }
.vault-startpath__kicker { color: var(--r-canary) !important; }
.vault-startpath__list li::before { background: var(--r-canary) !important; color: var(--r-ink) !important; }
.vault-startpath__list a:hover { color: var(--r-canary) !important; }

/* Hub card tags (guides index) — soft lilac instead of bright orange */
.guide-hub-page .hub__card-tag,
.hub__card-tag {
  background: var(--r-pastel-lilac) !important;
  color: var(--r-ink) !important;
  border: 1px solid var(--r-line);
}

/* ----------------------------------------------------------------
   PAGE SURFACES
   ---------------------------------------------------------------- */

html, body {
  background: #ffffff;
  color: var(--r-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.home-page,
.vault-page,
.vault-access-page,
body:not(.home-page):not(.vault-page):not(.vault-access-page) {
  background: #ffffff;
}

/* Default selection — rainbow violet on white */
::selection {
  background: var(--r-violet);
  color: #fff;
}

/* Default link underline rhythm */
a {
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* ----------------------------------------------------------------
   HERO — the signature pastel rainbow wash
   ---------------------------------------------------------------- */

.hero,
.vault-hero {
  background: var(--r-gradient-hero) !important;
  padding-block: 40px clamp(80px, 9vw, 124px);
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

/* Soft chromatic bloom behind the hero text — gives the page a "light source" */
.hero::before,
.vault-hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% auto -5%;
  height: 60%;
  pointer-events: none;
  background:
    radial-gradient(50% 60% at 20% 30%, rgba(255, 155, 210, 0.5), transparent 70%),
    radial-gradient(40% 60% at 80% 35%, rgba(124, 241, 181, 0.45), transparent 70%),
    radial-gradient(35% 55% at 55% 80%, rgba(108, 193, 255, 0.4), transparent 75%);
  filter: blur(40px);
  opacity: 0.85;
  z-index: 0;
}

.hero > *,
.vault-hero > * { position: relative; z-index: 1; }

/* Headlines on light hero stay near-black for contrast */
.hero h1,
.vault-hero h1 {
  color: var(--r-ink);
  font-size: var(--r-type-h1);
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-wrap: balance;
}

.hero .lede,
.vault-hero .lede {
  color: var(--r-ink-soft);
  font-size: var(--r-type-lede);
  line-height: 1.5;
  font-weight: 600;
}

/* ----------------------------------------------------------------
   NAV CAPSULE — frosted glass with rainbow hairline on hover/scroll
   ---------------------------------------------------------------- */

.site-nav {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 28px -14px rgba(26, 18, 64, 0.16),
    0 2px 6px -3px rgba(26, 18, 64, 0.08);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
}

.brand {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--r-ink);
}
.brand::after { color: var(--r-violet); }

.site-nav__links a {
  color: var(--r-ink-soft);
  font-weight: 700;
  letter-spacing: -0.005em;
}
.site-nav__links a:hover { color: var(--r-ink); }
.site-nav__links a:hover::after { background: var(--r-violet) !important; }

/* ----------------------------------------------------------------
   BUTTONS — three flavors: primary (ink), rainbow (spectrum), quiet (ghost)
   Primary stays dark for legibility, spectrum is the marquee CTA moment.
   ---------------------------------------------------------------- */

.button,
.nav-cta {
  border-radius: var(--r-radius-pill);
  font-weight: 800;
  letter-spacing: -0.005em;
  transition:
    transform var(--r-dur-med) var(--r-ease-spring),
    box-shadow var(--r-dur-med) var(--r-ease-out),
    background var(--r-dur-med) var(--r-ease-out);
  isolation: isolate;
}

.button--primary,
.nav-cta {
  background: linear-gradient(180deg, #20204a 0%, var(--r-midnight) 100%) !important;
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 14px 32px -12px rgba(26, 18, 64, 0.55),
    0 4px 10px -4px rgba(26, 18, 64, 0.35);
}
.button--primary:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 22px 44px -14px rgba(26, 18, 64, 0.6),
    0 0 0 4px rgba(169, 139, 255, 0.28);
}
.button--primary:active,
.nav-cta:active {
  transform: translateY(1px) scale(0.985);
  box-shadow: var(--r-shadow-press);
}
.button--primary::before,
.nav-cta::before {
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%) !important;
}

.button--quiet {
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1.5px solid var(--r-line-strong);
  color: var(--r-ink);
}
.button--quiet:hover {
  background: #fff !important;
  border-color: var(--r-ink);
  transform: translateY(-1px);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid var(--r-line-strong);
  color: var(--r-ink);
}

/* New: rainbow spectrum CTA — use for moments that need joy */
.button--rainbow {
  position: relative;
  color: #fff;
  background: var(--r-gradient-spectrum);
  background-size: 200% 100%;
  background-position: 0% 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 16px 40px -14px rgba(26, 18, 64, 0.4);
  transition: background-position 600ms var(--r-ease-out), transform var(--r-dur-med) var(--r-ease-spring);
}
.button--rainbow:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
}

/* ----------------------------------------------------------------
   EYEBROW — small uppercase chip with dot
   ---------------------------------------------------------------- */

.eyebrow {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--r-line);
  color: var(--r-ink);
  letter-spacing: 0.14em;
  font-size: var(--r-type-eyebrow);
  font-weight: 800;
}
.eyebrow::before { background: var(--r-violet); }
.eyebrow--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.eyebrow--dark::before { background: var(--r-canary); }

/* ----------------------------------------------------------------
   DARK BAND — cosmic violet, not pure ink
   ---------------------------------------------------------------- */

.dark-band {
  background: var(--r-gradient-cosmic) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 80px -28px rgba(12, 8, 38, 0.6);
  border-radius: var(--r-radius-2xl);
}
.dark-band h2 { color: #fff; letter-spacing: -0.025em; }
.promise-grid article {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-radius-lg);
}
.promise-grid article:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(169, 139, 255, 0.45);
}
.promise-grid article::after {
  background: radial-gradient(circle, rgba(169, 139, 255, 0.25), transparent 60%) !important;
}
.promise-grid span {
  background: linear-gradient(135deg, var(--r-violet) 0%, var(--r-pacific) 100%) !important;
  color: #fff !important;
  box-shadow: var(--r-glow-violet) !important;
}
.promise-grid h3 { color: #fff; letter-spacing: -0.018em; }
.promise-grid p  { color: rgba(255, 255, 255, 0.78); }

/* ----------------------------------------------------------------
   VOICE BLOCK — soft cream surface
   ---------------------------------------------------------------- */

.voice-block {
  background: var(--r-pastel-cream) !important;
  border-radius: var(--r-radius-xl);
  box-shadow: var(--r-shadow-soft);
  border: 1px solid var(--r-line);
}

/* ----------------------------------------------------------------
   START PATHS — three colorful pastel cards
   ---------------------------------------------------------------- */

.start-paths { width: var(--r-container); margin-inline: auto; padding-block: var(--r-section-y); }
.start-paths__grid { gap: 20px; }
.start-path-card {
  border-radius: var(--r-radius-lg);
  background: var(--r-pastel-blush);
  color: var(--r-ink);
  padding: 28px 28px 30px;
  border: 1px solid var(--r-line);
  box-shadow: var(--r-shadow-soft);
  transition: transform var(--r-dur-med) var(--r-ease-spring), box-shadow var(--r-dur-med) var(--r-ease-out);
}
.start-path-card:nth-child(2) { background: var(--r-pastel-sky); }
.start-path-card:nth-child(3) { background: var(--r-pastel-mint); }
.start-path-card:hover { transform: translateY(-3px); box-shadow: var(--r-shadow-card); }
.start-path-card span {
  color: var(--r-ink-soft); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
}
.start-path-card strong { color: var(--r-ink); }

/* ----------------------------------------------------------------
   GUIDE LIST ROWS — clean dashed dividers, pacific accent on hover
   ---------------------------------------------------------------- */

.guide-link { border-radius: var(--r-radius-sm); }
.guide-link:hover { background: var(--r-pastel-sky); }
.guide-link:hover strong { color: var(--r-pacific); }
.guide-link:hover span {
  background: linear-gradient(135deg, var(--r-pacific) 0%, var(--r-violet) 100%) !important;
  color: #fff !important;
}
.guide-link span {
  background: rgba(17, 19, 42, 0.06);
  color: var(--r-ink);
}

/* ----------------------------------------------------------------
   FINAL CTA — warm bloom card
   ---------------------------------------------------------------- */

.final-cta {
  background:
    radial-gradient(70% 80% at 100% 0%, rgba(255, 155, 210, 0.18), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(124, 241, 181, 0.18), transparent 60%),
    #ffffff !important;
  border-radius: var(--r-radius-2xl);
  border: 1px solid var(--r-line);
  box-shadow: var(--r-shadow-card);
}
.final-cta h2 { color: var(--r-ink); letter-spacing: -0.022em; }
.final-cta p:not(.eyebrow) { color: var(--r-ink-soft); }

/* ----------------------------------------------------------------
   ARTICLE HEADER — soft pastel rainbow with violet eyebrow accent
   Per-page tone via [data-tone=…] on body
   ---------------------------------------------------------------- */

.article { width: var(--r-container-narrow); padding-block: 56px clamp(72px, 8vw, 120px); }

.article__header {
  background: var(--r-gradient-rim-blush) !important;
  color: var(--r-ink);
  border-radius: var(--r-radius-xl);
  border: 1px solid var(--r-line);
  box-shadow: var(--r-shadow-soft);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.article__header::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 60%; height: 60%;
  background:
    radial-gradient(circle at 80% 80%, rgba(169, 139, 255, 0.35), transparent 60%),
    radial-gradient(circle at 50% 30%, rgba(108, 193, 255, 0.3), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}
.article__header h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--r-ink);
  text-wrap: balance;
}

/* Tone rotation — add data-tone to body or article to pick one */
body[data-tone="mint"]    .article__header { background: var(--r-gradient-rim-mint) !important; }
body[data-tone="sky"]     .article__header { background: var(--r-gradient-rim-sky) !important; }
body[data-tone="canary"]  .article__header { background: var(--r-gradient-rim-canary) !important; }
body[data-tone="lilac"]   .article__header { background: var(--r-gradient-rim-lilac) !important; }
body[data-tone="blossom"] .article__header { background: var(--r-gradient-rim-blush) !important; }

/* Auto-rotate tones across pages without needing per-page markup.
   Each subdirectory inherits one tone via :has() on the canonical link. */
body:not([data-tone])                                       .article__header { background: var(--r-gradient-rim-blush) !important; }

.article-cta {
  background: var(--r-gradient-cosmic) !important;
  border-radius: var(--r-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--r-shadow-card);
}
.article-cta .button { background: var(--r-canary) !important; color: var(--r-ink) !important; }

/* Article body refinements */
.article__body p,
.article__body li { color: var(--r-ink-soft); font-weight: 500; line-height: 1.7; }
.article__body h2 { color: var(--r-ink); letter-spacing: -0.022em; }
.article__body ul {
  background: var(--r-pastel-cream);
  border-radius: var(--r-radius-md);
  border: 1px solid var(--r-line);
}

/* TLDR */
.article-tldr {
  background: var(--r-pastel-lilac) !important;
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius-md);
}

/* ----------------------------------------------------------------
   VAULT — module + worksheet cards
   ---------------------------------------------------------------- */

.module-grid article {
  background: #ffffff !important;
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius-lg);
  box-shadow: var(--r-shadow-soft);
}
.module-grid article:hover {
  border-color: var(--r-violet);
  box-shadow: var(--r-shadow-card), var(--r-glow-violet);
}
.module-grid article span {
  background: linear-gradient(135deg, var(--r-violet) 0%, var(--r-pacific) 100%) !important;
  color: #fff !important;
  box-shadow: var(--r-glow-violet) !important;
}

.worksheet {
  background: var(--r-pastel-cream) !important;
  border-radius: var(--r-radius-md) !important;
  border: 1px solid var(--r-line) !important;
}

/* Vault TOC: pill chip rail */
.vault-toc {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid var(--r-line) !important;
  box-shadow: var(--r-shadow-soft) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.vault-toc a:hover { background: var(--r-pastel-lilac) !important; color: var(--r-ink) !important; }
.vault-toc a.is-active {
  background: var(--r-ink) !important;
  color: #fff !important;
}

/* ----------------------------------------------------------------
   HERO DECISION PANEL (home aside) — bright white card with rainbow rim
   ---------------------------------------------------------------- */

.hero-decision-panel {
  background: #ffffff !important;
  border-radius: var(--r-radius-xl);
  border: 1px solid var(--r-line);
  box-shadow: var(--r-shadow-float);
  overflow: hidden;
}
.hero-decision-panel__media::after {
  background: linear-gradient(180deg, transparent 60%, rgba(17, 19, 42, 0.18) 100%) !important;
}
.hero-routes a {
  border-top: 1px solid var(--r-line);
  transition: background var(--r-dur-fast) var(--r-ease-out);
}
.hero-routes a:hover { background: var(--r-pastel-sky); }
.hero-routes strong { color: var(--r-ink); }
.hero-routes span   { color: var(--r-ink-soft); }

/* Mobile hero route chips */
.mobile-route-chips a {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid var(--r-line);
  border-radius: var(--r-radius-md);
  color: var(--r-ink) !important;
}
.mobile-route-chips a strong { color: var(--r-ink); }
.mobile-route-chips a span   { color: var(--r-ink-soft); }

/* ----------------------------------------------------------------
   STICKY CTA — rainbow ring on hover
   ---------------------------------------------------------------- */

.sticky-cta .button {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 28px 60px -16px rgba(26, 18, 64, 0.5),
    0 6px 14px -6px rgba(26, 18, 64, 0.35);
}
.sticky-cta .button:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 36px 70px -18px rgba(26, 18, 64, 0.6),
    0 0 0 5px rgba(169, 139, 255, 0.3);
}

@media (max-width: 680px) {
  .sticky-cta {
    background: rgba(255, 255, 255, 0.96) !important;
    border-top: 1px solid var(--r-line) !important;
  }
}

/* ----------------------------------------------------------------
   FOCUS RING — rainbow violet halo
   ---------------------------------------------------------------- */

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none !important;
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 0 4px var(--r-violet) !important;
  border-radius: 8px;
}

/* ----------------------------------------------------------------
   GLOBAL TYPE LIFT — apply across pages, defer to existing sizes for
   surfaces that already use clamp().
   ---------------------------------------------------------------- */

body, p, li { font-feature-settings: "ss01", "cv11"; }
strong { font-weight: 800; }

/* Tabular numerals everywhere numbers carry meaning */
.proof-stats strong,
.cal__month-summary,
.calc__total,
.calc__line,
.hex__total-label,
.hex__money,
.hhnkit__money,
.htl__card-price {
  font-variant-numeric: tabular-nums;
}

/* ----------------------------------------------------------------
   FOOTER (if any) — keep neutral
   ---------------------------------------------------------------- */

footer { color: var(--r-ink-mute); }

/* ----------------------------------------------------------------
   RESPONSIVE FINE-TUNING
   ---------------------------------------------------------------- */

@media (max-width: 920px) {
  .hero, .vault-hero {
    padding-block: 24px clamp(56px, 12vw, 96px);
  }
  .hero h1, .vault-hero h1 {
    font-size: clamp(40px, 9vw, 60px);
  }
  .dark-band, .final-cta {
    border-radius: var(--r-radius-xl);
  }
}

@media (max-width: 680px) {
  .article__header { padding: 32px 24px; border-radius: var(--r-radius-lg); }
  .article__header h1 { font-size: clamp(32px, 9vw, 44px); }
  .start-path-card { padding: 22px 22px 24px; }
}

/* Reduced motion — kill all transform/shadow transitions */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* ================================================================
   END RAINBOW DESIGN SYSTEM v2
   ================================================================ */
