:root {
  --bg: #f5efe7;
  --bg-soft: #efe6db;
  --bg-strong: #fffaf4;
  --surface: rgba(255, 250, 244, 0.9);
  --surface-solid: #fffaf4;
  --ink: #181512;
  --ink-soft: #5a5249;
  --ink-inverse: #f6f0e8;
  --ink-inverse-soft: rgba(246, 240, 232, 0.76);
  --line: rgba(24, 21, 18, 0.1);
  --line-strong: rgba(24, 21, 18, 0.16);
  --line-inverse: rgba(246, 240, 232, 0.12);
  --accent: #d66f3c;
  --accent-strong: #bf5726;
  --accent-glow: rgba(214, 111, 60, 0.18);
  --hero-dark: #0f1215;
  --hero-mid: #1a2025;
  --footer-dark: #111418;
  --success: #1f6347;
  --danger: #b6422a;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --shadow-lg: 0 30px 80px rgba(8, 10, 12, 0.15);
  --shadow-md: 0 24px 50px rgba(8, 10, 12, 0.1);
  --shell: min(1200px, calc(100vw - 48px));
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: "Onest", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: linear-gradient(180deg, #f2ece3 0%, #fbf7f2 100%);
  text-rendering: optimizeLegibility;
}

body[data-menu-open="true"] {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.shell,
.header-inner {
  width: var(--shell);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 2000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface-solid);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transform: translateY(-160%);
  transition: transform 0.24s ease;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 18px 0;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0.76) 0%, rgba(8, 10, 12, 0.28) 74%, rgba(8, 10, 12, 0) 100%);
  backdrop-filter: blur(12px);
  transition: background 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.is-scrolled::before,
.site-header--solid::before,
body[data-menu-open="true"] .site-header::before {
  background: rgba(17, 20, 24, 0.74);
  backdrop-filter: blur(20px);
}

.header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 20, 24, 0.34);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled .header-inner,
.site-header--solid .header-inner,
body[data-menu-open="true"] .header-inner {
  background: rgba(17, 20, 24, 0.76);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 248px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.site-nav a {
  font-size: 0.96rem;
  color: rgba(246, 240, 232, 0.92);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ec8a58 100%);
  color: #fff6f0;
  box-shadow: 0 18px 35px rgba(214, 111, 60, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, var(--accent-strong) 0%, #e07a47 100%);
}

.button--ghost {
  border-color: rgba(246, 240, 232, 0.24);
  background: rgba(246, 240, 232, 0.12);
  color: var(--ink-inverse);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(246, 240, 232, 0.3);
  background: rgba(246, 240, 232, 0.14);
}

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

.button--primary-on-dark {
  width: fit-content;
  margin-top: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  color: var(--ink-inverse);
  font-weight: 500;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(6px);
}

.text-link--dark {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(246, 240, 232, 0.18);
  border-radius: 50%;
  background: rgba(246, 240, 232, 0.08);
}

.nav-toggle__line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-inverse);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body[data-menu-open="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body[data-menu-open="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

body[data-menu-open="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(56px + var(--header-height)) 0 64px;
  background:
    radial-gradient(circle at 88% 12%, rgba(214, 111, 60, 0.34), transparent 0 28%),
    linear-gradient(135deg, #161b20 0%, #0c0f12 46%, #20262b 100%);
  color: var(--ink-inverse);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 0 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 128px 128px, 128px 128px;
  opacity: 0.32;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 56px;
  align-items: center;
}

.hero-copy h1,
.section-head h2,
.format-copy h2,
.urgency-layout h2,
.lead-copy h2,
.thanks-card h1 {
  margin: 0;
  font-family: "Prata", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.hero-lead {
  max-width: 34rem;
  margin: 26px 0 0;
  font-size: clamp(1.06rem, 1.9vw, 1.32rem);
  color: var(--ink-inverse-soft);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(246, 240, 232, 0.66);
}

.eyebrow--dark {
  color: rgba(24, 21, 18, 0.48);
}

.hero-trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 42px 0 24px;
  padding: 0;
}

.hero-trust li {
  padding-top: 18px;
  border-top: 1px solid rgba(246, 240, 232, 0.16);
}

.hero-trust strong {
  display: block;
  font-size: 1.06rem;
}

.hero-trust span {
  display: block;
  margin-top: 8px;
  font-size: 0.94rem;
  color: var(--ink-inverse-soft);
}

.hero-note {
  max-width: 28rem;
  margin: 0 0 32px;
  color: rgba(246, 240, 232, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(246, 240, 232, 0.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 16, 0.02) 10%, rgba(11, 13, 16, 0.42) 100%),
    linear-gradient(120deg, rgba(214, 111, 60, 0.18), transparent 44%);
}

.hero-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) brightness(0.9);
}

.hero-frame figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 20rem;
  font-size: 0.95rem;
  color: rgba(246, 240, 232, 0.82);
}

.hero-route {
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: min(220px, 34vw);
  opacity: 0.95;
}

.section {
  padding: 118px 0;
  scroll-margin-top: calc(var(--header-height) + 26px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(260px, 0.72fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.format-copy h2,
.urgency-layout h2,
.lead-copy h2,
.thanks-card h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.section-head p,
.format-copy p,
.lead-copy p,
.urgency-note,
.footer-copy,
.footer-meta,
.thanks-text {
  margin: 0;
  color: var(--ink-soft);
}

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

.photo-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.84);
  box-shadow: var(--shadow-md);
}

.photo-card__media {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #d9d0c3;
}

.photo-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0) 20%, rgba(12, 12, 12, 0.12) 100%),
    linear-gradient(125deg, rgba(214, 111, 60, 0.2), transparent 45%);
}

.photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.03);
}

.photo-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 24px 26px;
}

.card-kicker,
.step-badge {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(24, 21, 18, 0.45);
}

.photo-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.18;
}

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

.photo-card--step {
  background: rgba(255, 252, 248, 0.92);
}

.step-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214, 111, 60, 0.08);
  color: var(--accent-strong);
}

.audience {
  background: linear-gradient(180deg, #f5efe7 0%, #fbf8f4 100%);
}

.approach {
  background: linear-gradient(180deg, #fbf8f4 0%, #efe7dc 100%);
}

.results {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 111, 60, 0.18), transparent 0 22%),
    linear-gradient(135deg, #171c20 0%, #111418 48%, #1f252b 100%);
  color: var(--ink-inverse);
}

.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 240, 232, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(246, 240, 232, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.26;
  pointer-events: none;
}

.results .section-head,
.results .photo-grid,
.urgency-layout {
  position: relative;
  z-index: 1;
}

.results .section-head p,
.urgency-note {
  color: rgba(246, 240, 232, 0.72);
}

.results .photo-card--light {
  background: rgba(255, 249, 242, 0.92);
  color: var(--ink);
}

.format-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.98fr);
  gap: 42px;
  align-items: start;
}

.format-copy {
  display: grid;
  gap: 20px;
}

.format-sheet {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(214, 111, 60, 0.16), transparent 0 34%),
    linear-gradient(150deg, rgba(255, 252, 247, 0.94), rgba(239, 230, 219, 0.94));
  box-shadow: var(--shadow-lg);
}

.format-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 21, 18, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(24, 21, 18, 0.04) 1px, transparent 1px);
  background-size: 110px 110px;
  opacity: 0.2;
  pointer-events: none;
}

.feature-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: minmax(94px, 120px) 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

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

.feature-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(24, 21, 18, 0.48);
}

.feature-value {
  font-size: 1.14rem;
  font-weight: 600;
}

.urgency {
  background:
    radial-gradient(circle at 84% 14%, rgba(214, 111, 60, 0.16), transparent 0 22%),
    linear-gradient(135deg, #171c20 0%, #0f1215 100%);
  color: var(--ink-inverse);
}

.urgency-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 44px;
  align-items: start;
}

.urgency-reasons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.urgency-reasons li {
  position: relative;
  padding: 22px 22px 22px 58px;
  border-top: 1px solid var(--line-inverse);
  color: rgba(246, 240, 232, 0.82);
}

.urgency-reasons li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 26px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #f0a07a 100%);
  box-shadow: 0 0 0 6px rgba(214, 111, 60, 0.1);
}

.lead {
  background: linear-gradient(180deg, #f5efe7 0%, #fcf8f2 100%);
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr);
  gap: 38px;
  align-items: start;
}

.lead-copy {
  display: grid;
  gap: 18px;
}

.lead-points {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.lead-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.lead-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.lead-note {
  max-width: 28rem;
}

.lead-panel {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(214, 111, 60, 0.18), transparent 0 28%),
    linear-gradient(150deg, rgba(255, 252, 247, 0.96), rgba(239, 230, 219, 0.96));
  box-shadow: var(--shadow-lg);
}

.lead-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 0.93rem;
  font-weight: 600;
}

.field input {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(24, 21, 18, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input::placeholder {
  color: rgba(24, 21, 18, 0.35);
}

.field input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px var(--accent-glow);
  outline: none;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form-disclaimer {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(24, 21, 18, 0.52);
}

.site-footer {
  padding: 32px 0 52px;
  background: var(--footer-dark);
  color: var(--ink-inverse);
}

.footer-inner {
  display: grid;
  gap: 26px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 240, 232, 0.12);
}

.footer-brand img {
  width: 240px;
}

.footer-copy {
  max-width: 34rem;
  color: rgba(246, 240, 232, 0.66);
}

.footer-meta {
  display: grid;
  gap: 8px;
  color: rgba(246, 240, 232, 0.72);
  font-size: 0.92rem;
}

.page-thanks {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 111, 60, 0.24), transparent 0 22%),
    linear-gradient(135deg, #15191d 0%, #0d1013 48%, #1f252a 100%);
  color: var(--ink-inverse);
}

.thanks-main {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 220px);
  padding: calc(var(--header-height) + 56px) 0 82px;
}

.thanks-section {
  width: 100%;
}

.thanks-card {
  max-width: 760px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(246, 240, 232, 0.1);
  background:
    radial-gradient(circle at top right, rgba(214, 111, 60, 0.16), transparent 0 30%),
    rgba(255, 250, 244, 0.94);
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.thanks-mark {
  width: 88px;
  margin-bottom: 24px;
}

.thanks-text {
  max-width: 36rem;
  margin-top: 22px;
  font-size: 1.04rem;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .hero-grid,
  .section-head,
  .format-layout,
  .urgency-layout,
  .lead-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .lead-panel {
    position: static;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100vw - 32px, 1200px);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  body[data-menu-open="true"] .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    gap: 2px;
    padding: 16px;
    border: 1px solid rgba(246, 240, 232, 0.08);
    border-radius: 28px;
    background: rgba(17, 20, 24, 0.94);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26);
  }

  body[data-menu-open="true"] .site-nav a {
    padding: 14px 12px;
    border-radius: 16px;
  }

  body[data-menu-open="true"] .site-nav a:hover,
  body[data-menu-open="true"] .site-nav a:focus-visible {
    background: rgba(246, 240, 232, 0.06);
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 80px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 16px);
  }

  .site-header {
    padding: 12px 0;
  }

  .header-inner {
    padding: 12px 14px;
  }

  .brand img,
  .footer-brand img {
    width: 200px;
  }

  .hero {
    padding: calc(34px + var(--header-height)) 0 52px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

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

  .hero-frame img {
    aspect-ratio: 4 / 5;
  }

  .section {
    padding: 84px 0;
  }

  .section-head,
  .format-layout,
  .urgency-layout,
  .lead-layout,
  .footer-top {
    gap: 24px;
  }

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

  .feature-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lead-panel,
  .format-sheet,
  .thanks-card {
    padding: 24px;
  }

  .thanks-actions,
  .hero-actions {
    align-items: stretch;
  }

  .button,
  .text-link {
    width: 100%;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
