:root {
  --cream: #fdf7ee;
  --paper: #fffdf8;
  --navy: #1b2845;
  --green: #0b5a38;
  --green-dark: #073d28;
  --oxblood: #6e2f2a;
  --gold: #c19953;
  --sage: #93a58a;
  --ink-soft: #4f586c;
  --line: rgba(27, 40, 69, 0.18);
  --shadow: 0 20px 60px rgba(17, 34, 28, 0.14);
  --font-display: "Bodoni Moda", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --shell: 76rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--cream);
  color: var(--navy);
  font: 400 1rem/1.65 var(--font-body);
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

p,
h1,
h2,
h3,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.85rem, 11vw, 6.8rem);
}

h2 {
  font-size: clamp(2.15rem, 7vw, 4.6rem);
}

h3 {
  font-size: clamp(1.45rem, 4vw, 2rem);
}

p {
  max-width: 68ch;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--navy);
  transform: translateY(-180%);
}

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

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 48rem);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  color: var(--paper);
  background: var(--green-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.header-inner {
  min-height: 5.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border: 1px solid rgba(193, 153, 83, 0.55);
  border-radius: 50%;
}

.header-inner .brand img {
  width: clamp(3.5rem, 16vw, 4.25rem);
  height: clamp(3.5rem, 16vw, 4.25rem);
}

.brand span {
  max-width: 14rem;
  text-wrap: balance;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.desktop-nav a:not(.button):hover {
  color: #eed8ab;
}

.mobile-menu {
  position: relative;
}

.mobile-menu summary {
  min-width: 4.25rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--paper);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu[open] summary {
  color: var(--green-dark);
  background: var(--gold);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  width: min(18rem, calc(100vw - 2rem));
  padding: 0.6rem;
  background: var(--paper);
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-menu-panel a {
  min-height: 3rem;
  display: flex;
  align-items: center;
  padding-inline: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu-panel a + a {
  border-top: 1px solid var(--line);
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid var(--navy);
  border-radius: 0.18rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green-dark);
}

.button.paper {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--green-dark);
}

.button.outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button.compact {
  min-height: 2.75rem;
  padding: 0.65rem 0.95rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--oxblood);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.on-dark .eyebrow,
.hero .eyebrow {
  color: #e4c98f;
}

.lede {
  font-size: clamp(1.08rem, 2.1vw, 1.34rem);
  line-height: 1.55;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 8vw, 7.5rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 10%, rgba(193, 153, 83, 0.18), transparent 30rem),
    var(--green-dark);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(193, 153, 83, 0.28);
  border-radius: 50%;
}

.hero h1,
.hero h2,
.on-dark h2,
.on-dark h3,
.site-footer h2 {
  color: inherit;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 1.15rem;
}

.hero-home h1 {
  max-width: 14ch;
  font-size: clamp(2.85rem, 8vw, 5.2rem);
  overflow-wrap: normal;
}

.hero .lede {
  max-width: 38rem;
  color: rgba(255, 253, 248, 0.83);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 2rem;
}

.hero-art {
  position: relative;
  max-width: 37rem;
  margin: 0 auto;
}

.hero-art.product-frame {
  padding: clamp(0.6rem, 2vw, 1rem);
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-art.product-frame img {
  width: 100%;
}

.hero-mascot-stage {
  position: relative;
  order: -1;
  width: min(100%, 21rem);
  margin: 0 auto;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: var(--gold);
  box-shadow: 1.25rem 1.25rem 0 rgba(2, 33, 21, 0.68);
  transform: rotate(-0.7deg);
}

.hero-mascot-stage picture,
.hero-mascot-stage img {
  width: 100%;
}

.hero-mascot-stage figcaption {
  position: absolute;
  right: -0.65rem;
  bottom: 1.5rem;
  max-width: 12rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--green-dark);
  background: var(--paper);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  transform: rotate(2deg);
}

.trust-rail {
  color: var(--navy);
  background: var(--gold);
}

.trust-grid {
  display: grid;
}

.trust-item {
  min-height: 6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-block: 1rem;
  font-size: 0.9rem;
  font-weight: 750;
}

.trust-item + .trust-item {
  border-top: 1px solid rgba(27, 40, 69, 0.3);
}

.trust-number {
  flex: 0 0 auto;
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(3.75rem, 8vw, 7.5rem);
}

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

.section.sage {
  background: #e2e8dc;
}

.section.dark {
  color: var(--paper);
  background: var(--navy);
}

.section.green {
  color: var(--paper);
  background: var(--green-dark);
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.section-head h2,
.section-head p {
  margin-bottom: 0;
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.product-stage {
  position: relative;
  padding: clamp(0.65rem, 2vw, 1rem);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-stage img {
  width: 100%;
}

.product-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1rem -0.65rem -0.65rem 1rem;
  background: var(--gold);
}

.featured-visual {
  position: relative;
  isolation: isolate;
  min-height: clamp(29rem, 122vw, 37rem);
  overflow: hidden;
  background: #e2e8dc;
  border: 1px solid var(--line);
}

.featured-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 31%;
  left: 28%;
  height: 34%;
  border-left: 1px dashed rgba(110, 47, 42, 0.52);
  transform: rotate(13deg);
  transform-origin: top;
}

.featured-parachute {
  position: absolute;
  z-index: 2;
  top: clamp(0.75rem, 3vw, 1.5rem);
  left: clamp(0.6rem, 4vw, 2rem);
  width: min(48%, 17rem);
  height: auto;
  filter: drop-shadow(0 1rem 1.4rem rgba(17, 34, 28, 0.18));
  transform: rotate(-4deg);
}

.featured-product-stage {
  position: absolute;
  z-index: 1;
  right: clamp(1rem, 5vw, 2rem);
  bottom: clamp(1.4rem, 5vw, 2.5rem);
  width: min(78%, 28rem);
  margin: 0;
  transform: rotate(1deg);
}

.fact-list {
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
  border-top: 1px solid currentColor;
}

.fact-list li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid color-mix(in srgb, currentColor 28%, transparent);
}

.fact-list strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.dark .fact-list strong,
.green .fact-list strong {
  color: var(--gold);
}

.shelf-grid,
.guide-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

.shelf,
.guide-card,
.feature-card {
  position: relative;
  min-width: 0;
  padding: clamp(1.35rem, 4vw, 2.3rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.shelf {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.shelf::after,
.guide-card::after {
  content: "↗";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--oxblood);
  font-size: 1.4rem;
  font-weight: 800;
}

.shelf:hover,
.guide-card:hover {
  border-color: var(--green);
}

.shelf strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--green);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shelf h3 {
  max-width: 10ch;
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 6vw, 3.5rem);
}

.guide-card {
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: inherit;
  text-decoration: none;
}

.guide-card .card-index {
  position: absolute;
  top: 1.15rem;
  left: 1.25rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-card h3 {
  max-width: 15ch;
  margin-bottom: 0.6rem;
}

.guide-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.feature-card {
  background: transparent;
}

.feature-card h3 {
  margin-bottom: 0.55rem;
}

.feature-card p {
  margin-bottom: 0;
}

.freebie-band {
  overflow: hidden;
}

.mascot-layout {
  display: grid;
  align-items: end;
  gap: 1.5rem;
}

.mascot-layout img {
  width: min(100%, 22rem);
  margin-inline: auto;
}

.request-grid {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.request-note {
  position: sticky;
  top: 1.5rem;
}

.request-note img {
  width: min(100%, 15rem);
  margin-top: 1.5rem;
}

.request-form {
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
}

.request-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-weight: 750;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 3rem;
  margin-top: 0.4rem;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(27, 40, 69, 0.45);
  border-radius: 0;
  background: #fff;
  color: var(--navy);
  font-size: 1rem;
}

.request-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-status {
  min-height: 1.6em;
  margin: 0.75rem 0 0;
  font-weight: 650;
}

.form-help {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.form-help a {
  color: var(--green-dark);
  font-weight: 800;
}

.proof-grid {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.proof-copy {
  padding-block: 1rem;
}

.zone-list,
.method-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: zones;
  border-top: 1px solid var(--line);
}

.zone-list li,
.method-steps li {
  position: relative;
  padding: 1.15rem 0 1.15rem 3.4rem;
  border-bottom: 1px solid var(--line);
  counter-increment: zones;
}

.zone-list li::before,
.method-steps li::before {
  content: counter(zones, decimal-leading-zero);
  position: absolute;
  top: 1.05rem;
  left: 0;
  color: var(--oxblood);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
}

.zone-list strong,
.method-steps strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy);
  font-size: 1.02rem;
}

.zone-list p,
.method-steps p {
  margin: 0;
  color: var(--ink-soft);
}

.file-contract {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.file-card {
  min-height: 9rem;
  padding: 1.35rem;
  color: var(--paper);
  background: var(--green);
}

.file-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: 2rem;
}

.price-lockup {
  padding: clamp(1.4rem, 5vw, 2.5rem);
  color: var(--navy);
  background: var(--gold);
}

.price {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
}

.article-hero h1 {
  max-width: 13ch;
}

.article-body {
  font-size: 1.05rem;
}

.article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.article-body h3 {
  margin-top: 2rem;
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem;
  border-left: 0.4rem solid var(--gold);
  background: var(--paper);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
}

.callout {
  margin-block: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: #e2e8dc;
}

.cta-band {
  padding-block: clamp(3rem, 7vw, 6rem);
  color: var(--paper);
  background: var(--oxblood);
}

.cta-grid {
  display: grid;
  align-items: center;
  gap: 2rem;
}

.cta-grid h2 {
  color: inherit;
  margin-bottom: 0.8rem;
}

.cta-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-grid .product-stage {
  max-width: 31rem;
  margin-inline: auto;
}

.site-footer {
  padding-block: 2.5rem;
  color: var(--paper);
  background: #061f16;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.2rem;
}

.footer-links a {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.printable-body {
  background: #dce3dd;
}

.print-toolbar {
  position: relative;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem;
  color: var(--paper);
  background: var(--green-dark);
}

.printable-wrap {
  width: min(calc(100% - 1rem), 55rem);
  margin: 1rem auto;
}

.printable-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 8.5 / 11;
  overflow: hidden;
  padding: clamp(1rem, 6vw, 4.5rem);
  background:
    linear-gradient(90deg, transparent 95%, rgba(11, 90, 56, 0.08) 95%),
    linear-gradient(rgba(11, 90, 56, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 100%, 100% clamp(1.6rem, 4vw, 2.8rem), auto;
  border: 1px solid rgba(27, 40, 69, 0.15);
  box-shadow: var(--shadow);
}

.printable-mark {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1rem);
}

.printable-mark img {
  width: clamp(2rem, 9vw, 5rem);
  height: clamp(2rem, 9vw, 5rem);
  border-radius: 50%;
}

.printable-mark strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 3vw, 1.45rem);
  line-height: 1.1;
}

.printable-mark span {
  display: block;
  color: var(--green);
  font-size: clamp(0.48rem, 1.8vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.printable-title {
  max-width: 10ch;
  margin: clamp(2rem, 9vw, 7rem) 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 10vw, 6.5rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.printable-caption {
  position: absolute;
  right: clamp(1rem, 6vw, 4.5rem);
  bottom: clamp(1rem, 6vw, 4.5rem);
  left: clamp(1rem, 6vw, 4.5rem);
  padding-top: 0.8rem;
  border-top: 2px solid var(--green);
  color: var(--oxblood);
  font-size: clamp(0.55rem, 2vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.freebie-grid {
  display: grid;
  gap: 1rem;
}

.freebie-card {
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.35rem, 4vw, 2.2rem);
  border: 1px solid var(--line);
  background: var(--paper);
  color: inherit;
  text-decoration: none;
}

.freebie-card:hover {
  border-color: var(--green);
}

.freebie-card h2 {
  max-width: 12ch;
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 6vw, 3.25rem);
}

.freebie-card p {
  color: var(--ink-soft);
}

.freebie-card strong {
  color: var(--green);
}

.worksheet {
  width: min(calc(100% - 1rem), 55rem);
  min-height: min(71rem, calc(100vw * 1.294));
  margin: 1rem auto;
  padding: clamp(1rem, 6vw, 4rem);
  background: var(--paper);
  border: 1px solid rgba(27, 40, 69, 0.15);
  box-shadow: var(--shadow);
}

.worksheet-brand {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 0.9rem);
  margin-bottom: clamp(1.2rem, 4vw, 2.25rem);
}

.worksheet-brand img {
  width: clamp(2.4rem, 8vw, 4.5rem);
  height: clamp(2.4rem, 8vw, 4.5rem);
  border-radius: 50%;
}

.worksheet-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 3vw, 1.45rem);
  line-height: 1.1;
}

.worksheet-brand span {
  display: block;
  color: var(--green);
  font-size: clamp(0.5rem, 1.7vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.worksheet h1 {
  margin-bottom: 0.5rem;
  color: var(--green-dark);
  font-size: clamp(2rem, 7vw, 4.2rem);
}

.worksheet-intro {
  margin-bottom: clamp(1.25rem, 4vw, 2.25rem);
  color: var(--ink-soft);
  font-size: clamp(0.78rem, 2.2vw, 1rem);
}

.worksheet-grid {
  display: grid;
  gap: 0.75rem;
}

.worksheet-box,
.worksheet-notes {
  min-height: clamp(7.5rem, 25vw, 11rem);
  padding: clamp(0.7rem, 2.5vw, 1.1rem);
  border: 1px solid rgba(11, 90, 56, 0.28);
  background: #fffaf0;
}

.worksheet-box h2,
.worksheet-notes h2 {
  margin-bottom: 0.5rem;
  color: var(--green);
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 2vw, 0.9rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.worksheet-line {
  height: clamp(1.35rem, 4vw, 1.9rem);
  border-bottom: 1px solid rgba(11, 90, 56, 0.25);
}

.worksheet-footer {
  margin-top: 1.2rem;
  color: var(--oxblood);
  font-size: clamp(0.52rem, 1.6vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.tracker-scroll {
  width: 100%;
  overflow: hidden;
}

.tracker-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: #fffaf0;
}

.tracker-table th,
.tracker-table td {
  height: clamp(2.2rem, 6vw, 3.4rem);
  padding: clamp(0.15rem, 0.8vw, 0.55rem);
  border: 1px solid rgba(11, 90, 56, 0.28);
  text-align: center;
}

.tracker-table th {
  color: var(--green);
  font-size: clamp(0.48rem, 1.45vw, 0.74rem);
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tracker-table th:first-child,
.tracker-table td:first-child {
  width: 27%;
  text-align: left;
}

.worksheet-notes {
  min-height: clamp(6rem, 18vw, 8.5rem);
  margin-top: 1rem;
}

@media (min-width: 40rem) {
  .shell,
  .narrow {
    width: min(calc(100% - 3rem), var(--shell));
  }

  .narrow {
    max-width: 48rem;
  }

  .button-row .button {
    width: auto;
  }

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

  .trust-item {
    padding-inline: 1.2rem;
  }

  .trust-item + .trust-item {
    border-top: 0;
    border-left: 1px solid rgba(27, 40, 69, 0.3);
  }

  .shelf-grid,
  .guide-grid,
  .feature-grid,
  .file-contract,
  .freebie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .worksheet-box.full {
    grid-column: 1 / -1;
  }

  .mascot-layout {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.55fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
    align-items: center;
  }
}

@media (min-width: 52rem) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .hero-grid,
  .split,
  .proof-grid,
  .cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(26rem, 1.15fr);
    gap: clamp(3rem, 7vw, 7rem);
  }

  .hero-mascot-stage {
    order: 0;
    width: min(100%, 34rem);
  }

  .section-head {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    align-items: end;
  }

  .section-head > :last-child {
    justify-self: end;
  }

  .request-grid {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  }

  .guide-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .guide-card:first-child {
    min-height: 23rem;
  }

  .cta-grid .product-stage {
    margin-inline: 0;
  }
}

@media (min-width: 70rem) {
  .header-inner {
    min-height: 6.5rem;
  }

  .header-inner .brand img {
    width: 5rem;
    height: 5rem;
  }

  .hero-home {
    min-height: 48rem;
    display: grid;
    align-items: center;
  }

  .shelf {
    min-height: 21rem;
  }

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

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

@media (max-width: 28rem) {
  .header-inner {
    gap: 0.5rem;
  }

  .brand span {
    max-width: 7.8rem;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .hero {
    padding-block: 2.75rem 4rem;
  }
}

@media (hover: hover) {
  .shelf,
  .guide-card,
  .product-stage {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .shelf:hover,
  .guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
}

@media (pointer: coarse) {
  .desktop-nav a,
  .footer-links a,
  .mobile-menu-panel a {
    min-height: 3rem;
  }
}

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

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

@media print {
  @page {
    size: letter portrait;
    margin: 0;
  }

  .print-toolbar {
    display: none;
  }

  .printable-body,
  .printable-wrap {
    margin: 0;
    background: #fff;
  }

  .printable-wrap,
  .printable-canvas,
  .worksheet {
    width: 8.5in;
    height: 11in;
    min-height: 11in;
    aspect-ratio: auto;
    margin: 0;
    border: 0;
    box-shadow: none;
  }

  .worksheet {
    padding: 0.55in;
  }

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

  .worksheet-box.full {
    grid-column: 1 / -1;
  }
}
