:root {
  --ink: #071c16;
  --ink-soft: #12352a;
  --lime: #baff38;
  --lime-soft: #e5ff9d;
  --orange: #ff6a2a;
  --cream: #f3f1e9;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(7, 28, 22, 0.18);
  --shadow: 0 20px 60px rgba(7, 28, 22, 0.17);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 8px var(--ink) !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
}

.brand span,
.footer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong,
.footer-brand strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand small,
.footer-brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  margin-left: auto;
  gap: 28px;
}

.site-header nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--lime);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-small {
  min-height: 46px;
  padding: 11px 18px;
  font-size: 0.88rem;
}

.button-large {
  min-height: 66px;
  padding-inline: 30px;
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(186, 255, 56, 0.16);
}

.button-lime:hover {
  background: #c9ff66;
  box-shadow: 0 16px 34px rgba(186, 255, 56, 0.25);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ink-soft);
  box-shadow: 0 15px 35px rgba(7, 28, 22, 0.23);
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(186, 255, 56, 0.14), transparent 25%),
    radial-gradient(circle at 12% 88%, rgba(255, 106, 42, 0.15), transparent 23%),
    var(--ink);
}

.hero::after {
  position: absolute;
  right: -180px;
  bottom: -330px;
  width: 650px;
  height: 650px;
  border: 110px solid rgba(186, 255, 56, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-word {
  position: absolute;
  z-index: 0;
  bottom: -0.22em;
  left: -0.035em;
  color: transparent;
  font-size: clamp(7rem, 19vw, 18rem);
  font-weight: 1000;
  letter-spacing: -0.08em;
  line-height: 0.72;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  user-select: none;
  white-space: nowrap;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 790px;
  align-items: center;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(45px, 6vw, 90px);
  padding-top: 120px;
  padding-bottom: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #417400;
}

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

h1,
h2 {
  margin: 0;
  font-weight: 1000;
  letter-spacing: -0.062em;
  line-height: 0.93;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.45rem, 6.3vw, 6.7rem);
}

h1 span {
  color: var(--lime);
}

h2 {
  font-size: clamp(2.65rem, 5vw, 5.35rem);
}

h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.text-link {
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  margin-left: 5px;
  color: var(--lime);
}

.quick-facts {
  display: grid;
  margin: 42px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quick-facts li {
  display: flex;
  flex-direction: column;
}

.quick-facts strong {
  font-size: 0.95rem;
  line-height: 1.3;
}

.quick-facts span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  line-height: 1.4;
}

.hero-media {
  position: relative;
  padding: 20px 20px 64px;
}

.hero-media::before {
  position: absolute;
  inset: 0 0 44px 42px;
  border: 1px solid rgba(186, 255, 56, 0.45);
  border-radius: 44% 56% 47% 53% / 54% 43% 57% 46%;
  content: "";
  transform: rotate(4deg);
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.95;
  border-radius: 48% 52% 42% 58% / 52% 42% 58% 48%;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  transform: rotate(-2deg);
}

.impact-badge {
  position: absolute;
  z-index: 3;
  right: -12px;
  bottom: 15px;
  display: grid;
  width: 150px;
  height: 150px;
  place-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  text-align: center;
  transform: rotate(8deg);
}

.impact-badge strong {
  font-size: 2.7rem;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.impact-badge span {
  max-width: 90px;
  margin: 7px auto 0;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.photo-note {
  position: absolute;
  z-index: 3;
  bottom: 4px;
  left: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 800;
}

.signal-bar {
  position: relative;
  z-index: 3;
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-1.2deg) scale(1.03);
  transform-origin: center;
}

.signal-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 17px 24px;
  font-size: 0.9rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.signal-track i {
  font-style: normal;
}

.section {
  padding-block: clamp(90px, 10vw, 145px);
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 9vw, 130px);
}

.intro-copy {
  padding-top: 30px;
}

.intro-copy p {
  margin: 0 0 20px;
  font-size: 1.08rem;
}

.inline-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 5px;
  color: #315d00;
  font-weight: 900;
}

.steps {
  display: grid;
  margin-top: clamp(65px, 9vw, 110px);
  margin-bottom: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.steps > li {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps > li > span,
.step-cta a > span {
  display: block;
  margin-bottom: 52px;
  color: #315d00;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
}

.steps h3 {
  margin-bottom: 14px;
}

.steps p {
  margin: 0;
  color: #496057;
  font-size: 0.9rem;
}

.steps .step-cta {
  padding: 0;
  color: var(--ink);
  background: var(--lime);
}

.step-cta a {
  display: flex;
  height: 100%;
  min-height: 250px;
  flex-direction: column;
  padding: 28px;
  text-decoration: none;
}

.step-cta a > span {
  color: #315d00;
}

.step-cta b {
  margin-top: auto;
  font-size: 0.9rem;
}

.audience-section {
  color: var(--white);
  background: var(--ink);
}

.section-head {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.section-head > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1.05rem;
}

.audience-grid {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.audience-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.kids-card {
  color: var(--ink);
  background: var(--cream);
}

.adult-card {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: #0e2b22;
}

.audience-photo {
  position: relative;
  overflow: hidden;
  height: 310px;
}

.audience-photo::after {
  position: absolute;
  inset: 46% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(7, 28, 22, 0.82));
  content: "";
}

.audience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-photo span,
.adult-label {
  position: absolute;
  bottom: -0.17em;
  left: 20px;
  color: var(--lime);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 1000;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.audience-photo span {
  z-index: 2;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.8);
}

.adult-art {
  position: relative;
  display: flex;
  height: 310px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 34%, var(--orange) 0 13%, transparent 13.5%),
    radial-gradient(circle at 82% 64%, var(--lime) 0 18%, transparent 18.5%),
    #153e32;
}

.adult-art::before,
.adult-art::after {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.adult-art::before {
  top: -80px;
  right: 12%;
}

.adult-art::after {
  bottom: -100px;
  left: 8%;
}

.adult-art p {
  position: relative;
  z-index: 2;
  max-width: 310px;
  margin: 0;
  padding: 25px;
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.adult-label {
  z-index: 3;
  color: rgba(255, 255, 255, 0.58);
}

.audience-body {
  padding: 36px;
}

.card-kicker {
  margin: 0 0 13px;
  color: #487900;
  font-size: 0.75rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.adult-card .card-kicker {
  color: var(--lime);
}

.audience-body h3 {
  font-size: 2.2rem;
}

.audience-body > p:not(.card-kicker):not(.price) {
  max-width: 520px;
  margin: 18px 0;
  color: #496057;
}

.adult-card .audience-body > p:not(.card-kicker):not(.price) {
  color: rgba(255, 255, 255, 0.66);
}

.price {
  margin: 20px 0 26px;
}

.price strong {
  font-size: 1.5rem;
}

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

.place-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(55px, 9vw, 120px);
}

.place-media {
  position: relative;
}

.place-media img {
  width: 100%;
  max-height: 710px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.place-stamp {
  position: absolute;
  right: -35px;
  bottom: 42px;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 1rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-9deg);
}

.place-copy > p:not(.eyebrow):not(.fine-print) {
  margin: 26px 0;
  color: #3f564e;
  font-size: 1.05rem;
}

.surface-list {
  display: grid;
  margin-block: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.surface-list > div {
  position: relative;
  padding: 27px 26px 24px 58px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.surface-list > div::before {
  position: absolute;
  top: 28px;
  left: 25px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 1000;
  line-height: 22px;
  text-align: center;
}

.surface-list .yes::before {
  background: var(--lime);
  content: "✓";
}

.surface-list .no::before {
  color: var(--ink);
  background: var(--orange);
  content: "×";
}

.surface-list h3 {
  font-size: 1.05rem;
}

.surface-list p {
  margin: 8px 0 0;
  color: #52665f;
  font-size: 0.86rem;
}

.fine-print {
  margin: 0 0 30px;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
  color: #52665f;
  font-size: 0.88rem;
}

.faq-section {
  color: var(--white);
  background: #0c2920;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(55px, 10vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 50px;
}

.faq-heading h2 {
  font-size: clamp(2.7rem, 4.7vw, 5rem);
}

.faq-heading > p:last-child {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.65);
}

.faq-heading a {
  color: var(--lime);
  font-weight: 850;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-list summary {
  position: relative;
  padding: 27px 50px 27px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: -5px 0 27px;
  color: rgba(255, 255, 255, 0.67);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--lime);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(7, 28, 22, 0.2);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -210px;
  left: -140px;
  width: 430px;
  height: 430px;
}

.final-cta::after {
  right: -100px;
  bottom: -260px;
  width: 520px;
  height: 520px;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(90px, 12vw, 145px);
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin-inline: auto;
}

.final-cta .button {
  margin-top: 40px;
}

.site-footer {
  padding-block: 60px 28px;
  color: var(--white);
  background: #05130f;
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 60px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
}

.footer-grid > p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.87rem;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.76rem;
}

.mobile-book {
  display: none;
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .header-inner > .button {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

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

  .hero-media {
    width: min(620px, 90%);
    margin-inline: auto;
  }

  .intro-grid,
  .section-head,
  .place-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 760px;
    padding-top: 0;
  }

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

  .section-head > p {
    max-width: 760px;
  }

  .place-media {
    width: min(600px, 88%);
    margin-inline: auto;
  }

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

  .faq-heading {
    position: static;
    max-width: 720px;
  }

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

@media (max-width: 720px) {
  :root {
    --shell: min(calc(100% - 28px), 1180px);
    --radius: 22px;
  }

  html {
    scroll-padding-top: 20px;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .header-inner {
    min-height: 78px;
  }

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

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.75rem;
  }

  .header-inner > .button {
    display: none;
  }

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

  .hero-grid {
    gap: 45px;
    padding-top: 120px;
    padding-bottom: 65px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 5.3rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4.4rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .quick-facts li {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .quick-facts span {
    margin: 0;
  }

  .hero-media {
    width: 94%;
    padding: 10px 10px 55px;
  }

  .impact-badge {
    right: -5px;
    width: 122px;
    height: 122px;
  }

  .impact-badge strong {
    font-size: 2.2rem;
  }

  .signal-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 14px;
    font-size: 0.75rem;
    white-space: normal;
  }

  .signal-bar {
    transform: none;
  }

  .section {
    padding-block: 85px;
  }

  .intro-grid,
  .section-head,
  .faq-grid {
    gap: 35px;
  }

  .steps,
  .audience-grid,
  .surface-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps > li,
  .step-cta a {
    min-height: 210px;
  }

  .steps > li > span,
  .step-cta a > span {
    margin-bottom: 35px;
  }

  .audience-grid {
    margin-top: 45px;
  }

  .audience-photo,
  .adult-art {
    height: 260px;
  }

  .audience-body {
    padding: 28px;
  }

  .audience-body .button {
    width: 100%;
  }

  .place-grid {
    gap: 60px;
  }

  .place-media {
    width: 88%;
  }

  .place-stamp {
    right: -32px;
    bottom: 28px;
    width: 120px;
    height: 120px;
    font-size: 0.8rem;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-book {
    position: fixed;
    z-index: 100;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 14px 35px rgba(7, 28, 22, 0.3);
    font-weight: 1000;
    text-decoration: none;
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 22px);
  }

  h1 {
    font-size: 3rem;
    letter-spacing: -0.07em;
  }

  h2 {
    font-size: 2.55rem;
  }

  .brand strong {
    font-size: 0.8rem;
  }

  .brand small {
    letter-spacing: 0.04em;
  }

  .quick-facts li {
    grid-template-columns: 1.2fr 1fr;
  }

  .impact-badge {
    width: 110px;
    height: 110px;
  }

  .audience-body {
    padding: 24px;
  }

  .surface-list > div {
    padding-right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .mobile-book,
  .signal-bar {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .audience-section,
  .faq-section,
  .site-footer {
    color: #000;
    background: #fff;
  }
}
