:root {
  --bg: #f7f9f6;
  --paper: #ffffff;
  --ink: #111715;
  --muted: #5c6862;
  --line: #d8e1da;
  --line-strong: #aebcb4;
  --green: #0f5c4c;
  --blue: #2457d6;
  --coral: #e65f45;
  --lime: #d8ef46;
  --black: #07110f;
  --shadow: 0 22px 70px rgba(18, 42, 36, 0.12);
  --display: "Bricolage Grotesque", "IBM Plex Sans", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 140px;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(15, 92, 76, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 92, 76, 0.07) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 249, 246, 0.82), rgba(247, 249, 246, 0.96));
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--black);
  color: var(--paper);
  padding: 10px 14px;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(216, 225, 218, 0.9);
  background: rgba(247, 249, 246, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  color: var(--black);
  font-family: var(--display);
  font-size: 1.875rem;
  font-weight: 800;
}

.brand > span {
  margin-left: -2px;
  letter-spacing: -0.055em;
  line-height: 1;
}

.logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(15, 92, 76, 0.18));
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.primary-nav a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.primary-nav a:hover {
  border-color: var(--green);
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  padding: 3px;
}

.language-button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
}

.language-button.is-active {
  background: var(--black);
  color: var(--paper);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  padding: 9px 14px;
  background: var(--black);
  color: var(--paper);
  font-size: 0.94rem;
}

.button {
  padding: 13px 18px;
  text-align: center;
}

.nav-cta svg,
.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.4;
}

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

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

.button-secondary {
  background: var(--paper);
  color: var(--black);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 44px;
  min-height: calc(100vh - 150px);
  padding: 44px 0 42px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.03;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 3.05rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  font-size: 3.35rem;
  font-weight: 800;
}

h3 {
  font-size: 1.42rem;
  font-weight: 800;
}

.lead {
  max-width: 660px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-list li {
  position: relative;
  padding-left: 26px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 12px;
  height: 12px;
  border: 3px solid var(--green);
  background: var(--lime);
}

.signal-board {
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 241, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.board-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 16px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
}

.status-pill {
  border: 1px solid rgba(15, 92, 76, 0.22);
  border-radius: 6px;
  background: rgba(216, 239, 70, 0.42);
  color: var(--green);
  padding: 4px 8px;
}

.board-grid {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 92, 76, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 92, 76, 0.09) 1px, transparent 1px);
  background-size: 30px 30px;
}

.board-direction {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-direction i {
  position: relative;
  width: 44px;
  height: 2px;
  background: var(--green);
}

.board-direction i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: rotate(45deg);
}

.maturity-path {
  position: absolute;
  inset: 66px 20px 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.maturity-stage {
  display: grid;
  align-content: start;
  min-height: 142px;
  border: 1px solid var(--black);
  border-radius: 6px;
  background: var(--paper);
  color: var(--black);
  padding: 12px;
  box-shadow: 7px 7px 0 rgba(15, 92, 76, 0.14);
}

.maturity-stage-accent {
  background: var(--lime);
  box-shadow: 7px 7px 0 rgba(15, 92, 76, 0.26);
}

.maturity-stage strong {
  margin: 0 0 7px;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1;
}

.maturity-stage small {
  color: var(--muted);
  font-size: clamp(0.68rem, 1.15vw, 0.78rem);
  font-weight: 600;
  line-height: 1.25;
}

.maturity-stage-accent small {
  color: rgba(7, 17, 15, 0.72);
}

.maturity-connector {
  position: relative;
  z-index: 3;
  display: block;
  height: 2px;
  background: var(--blue);
}

.maturity-connector i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(45deg);
}

figcaption {
  border-top: 1px solid var(--line);
  padding: 16px;
  color: var(--muted);
  font-size: 0.98rem;
}

.proof-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-block: 1px solid var(--line-strong);
  background: var(--line-strong);
}

.proof-band p {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  padding: 22px 32px;
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 700;
}

.services,
.website-build,
.method,
.conversion,
.faq,
.contact {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  margin-bottom: 40px;
}

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

.service-card,
.process-step,
.offer,
.faq details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.service-card {
  min-height: 265px;
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 18px 38px rgba(15, 92, 76, 0.12);
}

.service-card h3 {
  margin: 0 0 14px;
}

.service-card p,
.process-step p,
.offer p,
.faq p,
.method-intro p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.service-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: auto;
  border-color: var(--black);
  background: var(--black);
  color: var(--paper);
}

.service-card-featured h3,
.service-card-featured p {
  margin: 0;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.service-link {
  border-bottom: 2px solid var(--lime);
  color: var(--lime);
  font-weight: 800;
  white-space: nowrap;
}

.website-build {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(520px, 1.32fr);
  align-items: start;
  gap: 44px;
}

.website-intro {
  position: sticky;
  top: 110px;
}

.website-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
}

.website-lead {
  margin-bottom: 26px;
  color: var(--muted);
}

.website-blueprint {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: var(--black);
  box-shadow: 14px 14px 0 var(--lime), var(--shadow);
  color: var(--paper);
}

.blueprint-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 16px;
}

.blueprint-bar span {
  width: 9px;
  height: 9px;
  background: var(--coral);
}

.blueprint-bar span:nth-child(2) {
  background: var(--lime);
}

.blueprint-bar span:nth-child(3) {
  background: var(--blue);
}

.blueprint-bar b {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
}

.blueprint-screen {
  padding: 18px;
}

.blueprint-hero {
  display: flex;
  min-height: 170px;
  align-items: flex-end;
  padding: 22px;
  background:
    linear-gradient(135deg, transparent 45%, rgba(216, 239, 70, 0.16) 45% 55%, transparent 55%),
    var(--green);
}

.blueprint-hero span {
  max-width: 360px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 0.94;
}

.blueprint-modules {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  gap: 8px;
  margin: 8px 0 18px;
}

.blueprint-modules i {
  height: 9px;
  background: var(--lime);
}

.blueprint-modules i:nth-child(2) {
  background: var(--blue);
}

.blueprint-modules i:nth-child(3) {
  background: var(--coral);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.quality-grid article {
  min-height: 250px;
  padding: 18px;
  background: #0d1b18;
}

.quality-grid h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.quality-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.blueprint-note {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.method {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
}

.method-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.method-intro p {
  margin-top: 20px;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "title"
    "body";
  gap: 0;
  padding: 22px;
}

.process-step h3 {
  grid-area: title;
  margin-bottom: 8px;
}

.process-step p {
  grid-area: body;
  margin-bottom: 0;
}

.conversion {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.conversion-copy {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  margin-bottom: 24px;
}

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

.offer {
  padding: 24px;
  background: var(--black);
  color: var(--paper);
}

.offer:nth-child(2) {
  background: var(--green);
}

.offer:nth-child(3) {
  background: var(--blue);
}

.offer:nth-child(4) {
  background: var(--coral);
  color: var(--black);
}

.offer:nth-child(4) p {
  color: rgba(7, 17, 15, 0.76);
}

.offer p {
  color: rgba(255, 255, 255, 0.78);
}

.resource-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}

.resource-copy {
  max-width: 820px;
}

.resource-copy h2 {
  margin-bottom: 14px;
}

.resource-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 0 22px;
}

.faq summary {
  cursor: pointer;
  color: var(--black);
  font-family: var(--display);
  font-size: 1.24rem;
  font-weight: 800;
  padding: 20px 0;
}

.faq p {
  margin-bottom: 22px;
}

.contact {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy p {
  margin-top: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fbfdfb;
  color: var(--ink);
  padding: 12px 13px;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
}

.consent-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.privacy-note {
  margin: -4px 0 0 30px;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--green);
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status.is-success {
  color: var(--green);
  font-weight: 800;
}

.form-status.is-error {
  color: #b8321d;
  font-weight: 800;
}

.no-js .contact-form .requires-js {
  display: none;
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

.no-js-message a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 32px;
  background: var(--paper);
}

.footer-brand {
  margin-bottom: 8px;
}

.site-footer p {
  max-width: none;
  margin: 0;
  white-space: nowrap;
}

.site-footer > a {
  color: var(--green);
  font-weight: 800;
}

.thanks-page {
  min-height: calc(100vh - 220px);
  padding: 82px 0 96px;
}

.thanks-hero {
  max-width: 880px;
  margin-bottom: 82px;
}

.thanks-hero h1 {
  max-width: 820px;
}

.next-steps {
  border-top: 1px solid var(--line);
  padding-top: 72px;
}

.checklist-page {
  padding: 82px 0 96px;
}

.checklist-hero {
  max-width: 920px;
  margin-bottom: 56px;
}

.checklist-hero h1 {
  max-width: 880px;
}

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

.checklist-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 22px;
}

.checklist-card-accent {
  background: var(--black);
  color: var(--paper);
}

.checklist-card h2 {
  margin: 0 0 16px;
  font-size: 1.55rem;
}

.checklist-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.checklist-card-accent ul {
  color: rgba(255, 255, 255, 0.78);
}

.checklist-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--line);
  margin-top: 72px;
  padding-top: 52px;
}

.checklist-cta p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-top: 2px;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    flex: 0 0 auto;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero,
  .website-build,
  .method,
  .contact {
    grid-template-columns: 1fr;
  }

  .method-intro,
  .website-intro,
  .contact-copy {
    position: static;
  }

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

  .service-card-featured {
    grid-template-columns: auto minmax(0, 0.7fr) minmax(0, 1.3fr);
  }

  .service-card-featured .service-link {
    grid-column: 2 / -1;
    justify-self: start;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
    background-size: 36px 36px;
  }

  .site-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .brand span {
    display: inline;
  }

  .nav-cta {
    display: none;
  }

  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding: 34px 0 38px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .signal-board {
    display: none;
  }

  .proof-band,
  .section-heading,
  .conversion-copy,
  .offer-list,
  .resource-strip,
  .checklist-grid,
  .checklist-cta,
  .trust-list,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .proof-band p {
    padding: 18px 20px;
    font-size: 1.08rem;
  }

  .services,
  .website-build,
  .method,
  .conversion,
  .faq,
  .contact {
    padding: 66px 0;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 34px;
  }

  .service-card-featured {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card-featured h3 {
    margin: 18px 0 0;
  }

  .service-card-featured .service-link {
    grid-column: auto;
  }

  .website-build {
    gap: 38px;
  }

  .website-blueprint {
    box-shadow: 8px 8px 0 var(--lime), var(--shadow);
  }

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

  .quality-grid article {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 16px;
  }

  .site-footer p {
    white-space: normal;
  }

  .thanks-page {
    padding: 58px 0 66px;
  }

  .thanks-hero {
    margin-bottom: 58px;
  }

  .next-steps {
    padding-top: 54px;
  }

  .resource-strip {
    align-items: start;
    padding: 54px 0;
  }

  .checklist-page {
    padding: 58px 0 66px;
  }

  .checklist-card {
    min-height: auto;
  }

  .checklist-cta {
    align-items: start;
    margin-top: 54px;
    padding-top: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header {
    position: static;
  }
}
