:root {
  color-scheme: light;
  --ink: #2f2a24;
  --brown: #5c402b;
  --muted: #6f655c;
  --paper: #fffdf8;
  --cream: #fff5df;
  --green: #25765f;
  --green-dark: #185746;
  --blue: #2e75a7;
  --rose: #c95674;
  --yellow: #f2bd3e;
  --line: #dfd6c8;
  --shadow: 0 18px 44px rgba(58, 43, 29, 0.16);
  font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
}

body,
button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid #f0b62b;
  outline-offset: 3px;
}

.page-width {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: flex;
  width: min(1160px, calc(100% - 40px));
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(70, 53, 37, 0.24);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: #473324;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.text-link {
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link:hover {
  text-decoration: underline;
}

.travel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.btn-travel {
  min-height: 52px;
  padding: 12px 22px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(31, 101, 80, 0.24);
}

.btn-travel:hover,
.btn-travel:focus-visible {
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 15px 30px rgba(31, 101, 80, 0.3);
}

.modal-link {
  width: fit-content;
  padding: 0;
  border: 0;
  color: #34291f;
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, 88svh);
  overflow: hidden;
  align-items: center;
  background: #dcebd0;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(255, 251, 239, 0.94) 0%, rgba(255, 251, 239, 0.76) 34%, rgba(255, 251, 239, 0.12) 64%, rgba(255, 251, 239, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  padding-top: 124px;
  padding-bottom: 64px;
}

.hero-content > * {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #65492f;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-top: 0;
  color: #37291f;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 1.01;
}

h2 {
  margin-bottom: 20px;
  font-size: 43px;
  line-height: 1.08;
}

.hero-copy {
  margin: 0;
  color: #493e34;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.text-link {
  color: #34291f;
}

.sample-note {
  margin-top: 22px;
  color: #5d5248;
  font-size: 14px;
  font-weight: 800;
}

.trust-strip {
  border-top: 1px solid rgba(101, 75, 50, 0.2);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.trust-item p {
  margin: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: #3b3027;
  font-size: 16px;
}

.trust-item span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.section-space {
  padding-block: 112px;
}

.inside-section {
  overflow: hidden;
  background: #f5faf7;
}

.inside-layout {
  --bs-gutter-x: 5rem;
}

.section-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.eyebrow-green {
  color: var(--green);
}

.eyebrow-blue {
  color: var(--blue);
}

.eyebrow-rose {
  color: var(--rose);
}

.activity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.activity-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #3f3933;
  font-weight: 800;
}

.activity-list .bi {
  width: 20px;
  flex: 0 0 20px;
  color: var(--green);
  font-size: 20px;
  line-height: 1;
}

.pack-preview {
  position: relative;
  min-height: 640px;
}

.preview-page {
  position: absolute;
  width: 320px;
  margin: 0;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.preview-page img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: top center;
}

.preview-page figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 4px;
  color: #453529;
  background: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
}

.preview-cover {
  top: 0;
  left: 2%;
  z-index: 3;
  transform: rotate(-5deg);
}

.preview-comic {
  top: 38px;
  right: -3%;
  z-index: 1;
  transform: rotate(6deg);
}

.preview-colour {
  right: 14%;
  bottom: 0;
  z-index: 2;
  transform: rotate(1deg);
}

.steps-section {
  background: #fffaf0;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading-row > div {
  max-width: 700px;
}

.steps-illustration {
  width: 170px;
  height: 150px;
  object-fit: contain;
}

.steps-list {
  --bs-gutter-x: 0;
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid #d9cdb9;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding: 34px 34px 0 0;
}

.steps-list li + li {
  padding-left: 34px;
  border-left: 1px solid #d9cdb9;
}

.steps-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.steps-list strong {
  color: #3b3027;
  font-size: 18px;
}

.steps-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.characters-section {
  padding-block: 92px 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.characters-copy h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 36px;
}

.character-hero {
  width: 100%;
  margin: 0;
  margin-top: 38px;
  overflow: hidden;
  background: #e9f3df;
}

.character-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.founder-note {
  display: flex;
  max-width: 900px;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.founder-note img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.founder-note p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.founder-note strong {
  color: #3b3027;
}

.waitlist-section {
  padding-block: 100px;
  color: #fff;
  background: #236b5a;
}

.waitlist-layout {
  --bs-gutter-x: 5.5rem;
}

.waitlist-copy .eyebrow,
.waitlist-copy h2,
.waitlist-copy p {
  color: #fff;
}

.waitlist-copy h2 {
  margin-bottom: 18px;
}

.waitlist-copy > p:last-child {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.waitlist-form-wrap {
  min-width: 0;
}

.newsletter-form .input-group {
  flex-wrap: nowrap;
}

.newsletter-form .input-group > .form-control {
  min-width: 0;
}

.newsletter-form .input-group > .btn {
  white-space: nowrap;
}

.waitlist-form label:first-child {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 900;
}

.waitlist-form .form-control {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  color: #2f2a24;
  background: #fff;
}

.waitlist-form .btn-warning {
  min-width: 150px;
  color: #34291f;
  background: var(--yellow);
  box-shadow: none;
}

.waitlist-form .btn-warning:hover {
  background: #ffd05a;
}

.newsletter-form .form-check {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-left: 0;
  line-height: 1.35;
}

.waitlist-form .form-check {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.newsletter-form .form-check-input {
  position: static;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  float: none;
  margin: 0;
  accent-color: var(--yellow);
}

.newsletter-form .form-check-input:checked {
  border-color: var(--yellow);
  background-color: var(--yellow);
}

.form-note,
.form-error {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.form-error {
  color: #fff2bd;
  border-color: rgba(255, 242, 189, 0.4);
  background: rgba(64, 36, 21, 0.28);
  font-weight: 800;
}

.waitlist-success {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 120px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.waitlist-success[hidden] {
  display: none;
}

.waitlist-success img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
}

.waitlist-success strong {
  font-size: 20px;
}

.waitlist-success p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-modal-dialog {
  width: calc(100% - 40px);
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.newsletter-modal {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(46, 37, 28, 0.28);
}

.newsletter-modal .modal-header {
  align-items: flex-start;
  gap: 24px;
  padding: 28px 28px 12px;
  border-bottom: 0;
}

.newsletter-modal .modal-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
}

.newsletter-modal .btn-close {
  flex: 0 0 auto;
  margin: 0;
}

.newsletter-modal .modal-body {
  padding: 0 28px 28px;
}

.modal-intro {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
}

.modal-newsletter-form .form-label {
  margin-bottom: 8px;
  color: #3b3027;
  font-size: 14px;
  font-weight: 900;
}

.modal-newsletter-form .form-check {
  color: #5d5248;
  font-size: 13px;
}

.modal-form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.modal-success {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-success img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.modal-success p {
  margin: 4px 0 0;
}

.newsletter-success[hidden],
.newsletter-error[hidden] {
  display: none;
}

.content-page {
  background: #f7f8f4;
}

.content-header {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.content-header .btn {
  flex: 0 0 auto;
  border-color: var(--green);
  border-radius: 6px;
  color: var(--green-dark);
}

.content-header .btn:hover,
.content-header .btn:focus-visible {
  border-color: var(--green-dark);
  color: #fff;
  background: var(--green-dark);
}

.content-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.content-hero {
  padding: 60px 0 68px;
  border-bottom: 1px solid var(--line);
}

.content-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.04;
}

.content-hero > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 0.66fr);
  gap: 72px;
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.content-section-wide {
  display: block;
}

.content-section-heading {
  position: sticky;
  top: 24px;
  align-self: start;
}

.content-section-heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
}

.prose {
  max-width: 790px;
  color: #493f36;
  font-size: 17px;
  line-height: 1.75;
}

.prose p {
  margin: 0 0 22px;
}

.prose a {
  color: var(--green-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.prose ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.prose li + li {
  margin-top: 8px;
}

.prose section + section {
  margin-top: 48px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.prose h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.content-lede {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.skill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  padding-left: 20px;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 30px;
  height: 30px;
  content: "+";
  transform: translateY(-50%);
  border: 1px solid #aebbb1;
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
}

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

.faq-list details p {
  max-width: 760px;
  margin: -4px 52px 24px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-list details a {
  color: var(--green-dark);
  font-weight: 800;
}

.prelaunch-notice {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid #e1bf72;
  color: #604817;
  background: #fff9e9;
  box-shadow: 50vw 0 0 #fff9e9, -50vw 0 0 #fff9e9;
}

.prelaunch-notice strong {
  font-size: 15px;
}

.prelaunch-notice p {
  margin: 0;
  line-height: 1.6;
}

.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 72px;
  padding: 68px 0 84px;
}

.legal-index {
  position: sticky;
  top: 24px;
  display: grid;
  align-self: start;
  border-top: 1px solid var(--line);
}

.legal-index a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #5f554c;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.legal-index a:hover {
  color: var(--green-dark);
}

.legal-content {
  min-width: 0;
}

.site-footer {
  display: grid;
  width: min(1160px, calc(100% - 40px));
  gap: 22px;
  margin: 30px auto;
  padding: 28px 36px;
  border: 1px solid rgba(106, 76, 45, 0.18);
  border-radius: 8px;
  color: #5f5148;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.9), rgba(255, 247, 232, 0.9)),
    radial-gradient(circle at 0 0, rgba(155, 215, 199, 0.16), transparent 34%);
  box-shadow: 0 12px 30px rgba(92, 63, 32, 0.08);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand-main {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.footer-logo-mark {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}

.footer-brand strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid rgba(106, 76, 45, 0.13);
  border-bottom: 1px solid rgba(106, 76, 45, 0.13);
}

.footer-link-group {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-heading {
  margin: 0 0 3px;
  color: #8d5b20;
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer a {
  color: #5c4129;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy {
  margin: 0;
}

.footer-top-link {
  flex: 0 0 auto;
  color: #7a5b3f;
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(255, 251, 239, 0.95) 0%, rgba(255, 251, 239, 0.8) 44%, rgba(255, 251, 239, 0.15) 78%, rgba(255, 251, 239, 0) 100%);
  }

  .hero-content > * {
    max-width: 540px;
  }

  .section-copy {
    max-width: 720px;
  }

  .pack-preview {
    width: min(700px, 100%);
    margin-inline: auto;
  }

  .characters-copy {
    max-width: 650px;
  }

  .waitlist-copy {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .page-width,
  .site-header,
  .content-shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header,
  .content-header {
    min-height: 72px;
  }

  .brand {
    font-size: 16px;
  }

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

  .content-hero {
    padding: 46px 0 52px;
  }

  .content-hero h1 {
    font-size: 43px;
  }

  .content-hero > p:last-child {
    font-size: 18px;
  }

  .content-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 0;
  }

  .content-section-heading {
    position: static;
  }

  .content-section-heading h2 {
    font-size: 32px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px 0 68px;
  }

  .legal-index {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .prelaunch-notice {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero {
    min-height: min(720px, 90svh);
    align-items: end;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(255, 251, 239, 0.97) 0%, rgba(255, 251, 239, 0.9) 48%, rgba(255, 251, 239, 0.08) 80%, rgba(255, 251, 239, 0) 100%);
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .trust-item {
    justify-content: flex-start;
    padding: 18px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-space {
    padding-block: 80px;
  }

  .pack-preview {
    min-height: 565px;
  }

  .preview-page {
    width: 280px;
  }

  .preview-cover {
    left: 0;
  }

  .preview-comic {
    right: 0;
  }

  .preview-colour {
    right: 16%;
  }

  .section-heading-row {
    align-items: center;
  }

  .steps-illustration {
    width: 120px;
    height: 120px;
  }

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

  .steps-list li,
  .steps-list li + li {
    padding: 26px 0;
    border-left: 0;
    border-bottom: 1px solid #d9cdb9;
  }

  .steps-list li:last-child {
    border-bottom: 0;
  }

  .characters-section {
    padding-block: 76px 64px;
  }

  .waitlist-section {
    padding-block: 80px;
  }

  .site-footer {
    width: min(100% - 28px, 1160px);
    gap: 16px;
    margin: 24px auto;
    padding: 24px 20px;
  }

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

  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 0;
  }
}

@media (max-width: 540px) {
  .newsletter-modal-dialog {
    width: calc(100% - 24px);
  }

  .newsletter-modal .modal-header {
    gap: 16px;
    padding: 22px 20px 10px;
  }

  .newsletter-modal .modal-title {
    font-size: 26px;
  }

  .newsletter-modal .modal-body {
    padding: 0 20px 22px;
  }

  .modal-newsletter-form .input-group {
    flex-direction: column;
    gap: 10px;
  }

  .modal-newsletter-form .input-group > .form-control,
  .modal-newsletter-form .input-group > .btn {
    width: 100%;
    min-height: 50px;
    flex: 0 0 auto;
    margin-left: 0 !important;
    border-radius: 6px !important;
  }

  .content-header {
    gap: 12px;
  }

  .content-header .btn {
    padding: 7px 10px;
    font-size: 13px;
  }

  .content-hero h1 {
    font-size: 36px;
  }

  .skill-list,
  .legal-index {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    padding-right: 44px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .hero {
    min-height: min(700px, 90svh);
  }

  .hero-content {
    padding-top: 104px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .text-link {
    width: fit-content;
  }

  .activity-list {
    grid-template-columns: 1fr;
  }

  .pack-preview {
    min-height: 480px;
  }

  .preview-page {
    width: 220px;
    border-width: 5px;
  }

  .preview-cover {
    top: 0;
    left: 1%;
  }

  .preview-comic {
    top: 34px;
    right: -2%;
  }

  .preview-colour {
    right: 12%;
  }

  .section-heading-row {
    align-items: flex-start;
  }

  .steps-illustration {
    width: 84px;
    height: 84px;
  }

  .steps-list li {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .steps-list li > span {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .waitlist-success {
    align-items: flex-start;
  }

  .founder-note {
    align-items: flex-start;
  }
}

@media (max-width: 540px) and (max-height: 650px) {
  .hero-content {
    padding-top: 92px;
    padding-bottom: 28px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 34px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .sample-note {
    margin-top: 14px;
    font-size: 12px;
  }
}

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

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