:root {
  --paper: #f7f6f3;
  --paper-strong: #e8edf2;
  --ink: #171b23;
  --ink-soft: #5c6470;
  --forest: #42678f;
  --forest-deep: #17283f;
  --acid: #e28a72;
  --white: #fffefd;
  --line: rgba(23, 40, 63, 0.14);
  --shadow: 0 28px 85px rgba(23, 40, 63, 0.16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 78px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(247, 246, 243, 0.92);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(23, 40, 63, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 26px;
  height: 26px;
  overflow: hidden;
  place-items: center;
  border-radius: 8px;
  background: var(--forest-deep);
}

.brand-mark::before,
.brand-mark span {
  position: absolute;
  width: 5px;
  height: 15px;
  border-radius: 1px;
  background: var(--acid);
  content: "";
  transform: rotate(-35deg) translate(-3px, 0);
}

.brand-mark span {
  height: 20px;
  transform: rotate(-35deg) translate(4px, 2px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 14px;
  font-weight: 600;
}


.main-nav > a {
  position: relative;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(66, 103, 143, 0.28);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 0 17px;
}

.button-primary,
.button-accent {
  color: var(--forest-deep);
  background: var(--acid);
  box-shadow: 0 13px 28px rgba(122, 66, 51, 0.14);
}

.button-primary:hover,
.button-accent:hover {
  background: #eda089;
  box-shadow: 0 16px 32px rgba(122, 66, 51, 0.2);
}

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

.button-dark:hover {
  background: var(--forest);
  box-shadow: 0 14px 30px rgba(23, 40, 63, 0.18);
}

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

.button-outline {
  border-color: var(--line);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.hero {
  position: relative;
  display: block;
  overflow: visible;
  min-height: 680px;
  padding-top: clamp(96px, 10vw, 140px);
  padding-bottom: clamp(72px, 8vw, 112px);
  isolation: isolate;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 21px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
}

.eyebrow-light {
  color: var(--acid);
}

.eyebrow-light > span {
  background: var(--acid);
}

.hero h1,
.section-heading h2,
.included h2,
.final-cta h2,
.dialog-shell h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(48px, 5.55vw, 74px);
}

.hero h1 em {
  position: relative;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 em::after {
  position: absolute;
  right: 1px;
  bottom: -5px;
  left: 6px;
  height: 4px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
  transform: rotate(-1deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-intro {
  max-width: 520px;
  margin: 29px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

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

.text-link {
  padding-block: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 31px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 13px;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-notes li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--forest);
  content: "";
}

.hero-showcase {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  margin: 0;
  background: #e8e5df;
}

.hero-showcase::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 246, 243, 0.18) 0%, rgba(247, 246, 243, 0.02) 55%, rgba(23, 27, 35, 0.04) 100%);
  content: "";
}

.hero-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trust-strip {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--ink);
}

.trust-strip > p {
  margin: 0;
  color: #c7cdd6;
  font-size: 13px;
}

.trust-strip > div {
  display: flex;
  gap: clamp(25px, 4vw, 60px);
}

.trust-strip span {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.trust-strip i {
  margin-right: 8px;
  color: var(--acid);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.transformation {
  padding-top: 128px;
  padding-bottom: 35px;
}

.transformation-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
}

.transformation-heading h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.transformation-heading h2 em {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.transformation-heading > p {
  max-width: 510px;
  margin: 0 0 3px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.transformation-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
  gap: 16px;
  margin-top: 62px;
}

.comparison-demo {
  padding: 18px;
  border: 1px solid rgba(66, 103, 143, 0.12);
  border-radius: 24px;
  background: var(--paper-strong);
}

.preview-tabs {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 14px;
  padding: 4px;
  border: 1px solid rgba(23, 40, 63, 0.1);
  border-radius: 10px;
  background: rgba(255, 254, 253, 0.75);
}

.preview-tab {
  min-width: 74px;
  min-height: 36px;
  padding: 0 15px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  color: var(--ink-soft);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.preview-tab.is-active {
  color: var(--white);
  background: var(--forest-deep);
  box-shadow: 0 5px 14px rgba(23, 40, 63, 0.14);
}

.comparison-window {
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(23, 40, 63, 0.13);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 40, 63, 0.1);
}

.comparison-bar {
  display: grid;
  height: 38px;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding-inline: 13px;
  border-bottom: 1px solid #dfe3e7;
  color: #7b8490;
  background: #f6f7f8;
  font-size: 8px;
  text-align: center;
}

.comparison-bar span {
  display: flex;
  gap: 4px;
}

.comparison-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c4cbd3;
}

.comparison-bar p {
  margin: 0;
  padding: 5px 11px;
  border-radius: 4px;
  background: #e8ebef;
}

.preview-panel {
  min-height: 0;
  aspect-ratio: 1800 / 1189;
  overflow: hidden;
  animation: preview-in 300ms ease both;
}

.preview-panel[hidden] {
  display: none;
}

.comparison-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@keyframes preview-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.preview-before {
  position: relative;
  color: #333;
  background: #efede5;
  font-family: Arial, sans-serif;
}

.old-nav {
  display: flex;
  min-height: 73px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  border-bottom: 4px solid #8a1f24;
  color: #fff;
  background: #3c3c3c;
  font-size: 10px;
}

.old-nav b {
  font-size: 15px;
}

.old-content {
  width: 76%;
  margin: 36px auto;
  padding: 27px;
  border: 1px solid #c2beb2;
  background: #fff;
  box-shadow: 4px 4px 0 #d4d0c4;
}

.old-kicker {
  margin: 0;
  color: #777;
  font-size: 11px;
  text-transform: uppercase;
}

.old-content h3 {
  margin: 11px 0 12px;
  color: #8a1f24;
  font-family: "Times New Roman", serif;
  font-size: 30px;
}

.old-content p:not(.old-kicker) {
  max-width: 480px;
  margin: 0 0 22px;
  font-size: 12px;
  line-height: 1.6;
}

.old-content a {
  display: inline-block;
  padding: 8px 14px;
  color: #fff;
  background: #8a1f24;
  font-size: 10px;
  text-decoration: underline;
}

.old-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 25px;
  color: #ddd;
  background: #3c3c3c;
  font-size: 9px;
  text-align: center;
}

.preview-after {
  color: #f9f7f2;
  background: #1b2c44;
}

.new-nav {
  display: flex;
  min-height: 73px;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 9px;
}

.new-nav b {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.new-nav b span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-family: Georgia, serif;
}

.new-content {
  padding: 72px 35px 61px;
  text-align: center;
}

.new-content > p {
  margin: 0 0 13px;
  color: #c7d0dc;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.new-content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.new-content a {
  display: inline-flex;
  min-width: 130px;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 0 14px;
  color: var(--forest-deep);
  background: var(--acid);
  font-size: 8px;
  font-weight: 700;
}

.new-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #bbc6d2;
  font-size: 7px;
  text-align: center;
}

.new-footer span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.new-footer b {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
}

.transformation-points {
  display: grid;
  align-content: stretch;
  margin: 0;
  padding: 7px 29px;
  border-radius: 24px;
  color: var(--white);
  background: var(--forest-deep);
  list-style: none;
}

.transformation-points li {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-content: center;
  gap: 9px;
  padding: 20px 0;
}

.transformation-points li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.transformation-points li > span {
  padding-top: 4px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 700;
}

.transformation-points h3 {
  margin: 0 0 6px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.case-study {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 100px);
  margin-top: 18px;
  padding: 42px;
  border: 1px solid rgba(66, 103, 143, 0.18);
  border-radius: 24px;
  background: var(--white);
}

.case-study .eyebrow {
  margin-bottom: 15px;
}

.case-study h3 {
  max-width: 410px;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.case-study-copy {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.case-study-copy p {
  margin: 0;
}

.case-study-copy p + p {
  margin-top: 16px;
}

.transformation-points p {
  margin: 0;
  color: #c8d0db;
  font-size: 12px;
  line-height: 1.55;
}

.styles {
  padding-top: 128px;
  padding-bottom: 128px;
}

.styles-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
}

.styles-heading h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.styles-heading h2 em {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.styles-heading > p {
  max-width: 510px;
  margin: 0 0 3px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
}

.design-approach {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 62px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.design-approach li {
  min-height: 216px;
  padding: 28px;
}

.design-approach li + li {
  border-left: 1px solid var(--line);
}

.design-approach > li > span {
  display: block;
  margin-bottom: 44px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.design-approach h3 {
  margin: 0 0 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.design-approach p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.style-card {
  --style-bg: #f3f4f5;
  --style-fg: #17283f;
  --style-accent: #e28a72;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  background: var(--white);
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.style-card:hover {
  border-color: rgba(66, 103, 143, 0.45);
  box-shadow: 0 16px 38px rgba(23, 40, 63, 0.1);
  transform: translateY(-3px);
}

.style-card.is-selected {
  border-color: var(--forest);
  box-shadow: 0 0 0 2px var(--forest), 0 18px 42px rgba(23, 40, 63, 0.13);
}

.style-preview {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  padding: 20px 22px 25px;
  color: var(--style-fg);
  background: var(--style-bg);
}

.style-preview:hover .style-mini-content i {
  transform: translateX(4px);
}

.style-mini-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  font-size: 7px;
  opacity: 0.82;
}

.style-mini-nav b {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: -0.02em;
}

.style-mini-nav i {
  font-style: normal;
}

.style-mini-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 16px;
}

.style-mini-content small {
  margin-bottom: 10px;
  color: var(--style-accent);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.style-mini-content strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 29px;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.style-mini-content i {
  margin-top: 18px;
  padding: 7px 10px;
  color: var(--style-bg);
  background: var(--style-fg);
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
}

.style-card-copy {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 21px;
  border-top: 1px solid var(--line);
}

.style-card-copy > span {
  display: grid;
  gap: 3px;
}

.style-card-copy strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.style-card-copy small {
  color: var(--ink-soft);
  font-size: 12px;
}

.style-card-copy > i {
  color: var(--forest);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.style-card-actions {
  display: grid;
  justify-items: end;
  gap: 6px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.style-card-actions a {
  color: var(--ink-soft);
}

.style-card-actions a:hover {
  color: var(--forest);
}

.style-card-actions button {
  padding: 0;
  border: 0;
  cursor: pointer;
  color: var(--forest);
  background: transparent;
  font: inherit;
  font-weight: 800;
}

.style-mini-content i {
  transition: transform 180ms ease;
}

.style-classic {
  --style-bg: #ddd9c4;
  --style-fg: #203632;
  --style-accent: #7d463c;
}

.style-classic .style-mini-content strong,
.style-warm .style-mini-content strong,
.style-exclusive .style-mini-content strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.style-modern {
  --style-bg: #eef2f5;
  --style-fg: #17314d;
  --style-accent: #d76f55;
}

.style-exclusive {
  --style-bg: #131b18;
  --style-fg: #f5f0e5;
  --style-accent: #d2ae67;
}

.style-warm {
  --style-bg: #f0e2ce;
  --style-fg: #4c342b;
  --style-accent: #a34f3e;
}

.style-minimal {
  --style-bg: #f3f3ef;
  --style-fg: #111111;
  --style-accent: #666666;
}

.style-minimal .style-preview {
  padding-inline: 28px;
}

.style-minimal .style-mini-content strong {
  font-size: 33px;
  font-weight: 500;
}

.style-custom {
  --style-bg: #17283f;
  --style-fg: #fffdf8;
  --style-accent: #d6b56f;
  border: 2px solid #b88930;
}

.style-custom .style-preview {
  background-image: linear-gradient(90deg, transparent 49.8%, rgba(214, 181, 111, 0.18) 50%, transparent 50.2%);
}

.style-gold-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  padding: 6px 10px;
  border-radius: 30px;
  color: #fffdf8;
  background: #9a7026;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.style-custom .style-mini-nav {
  padding-right: 82px;
}

.style-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 25px;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.style-selection p {
  display: flex;
  align-items: baseline;
  gap: 8px 14px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.style-selection strong {
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
}

.style-selection p span {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  font-size: 12px;
}

.process,
.pricing,
.faq {
  padding-top: 128px;
  padding-bottom: 128px;
}

.section-heading {
  max-width: 670px;
}

.section-heading h2,
.included h2,
.final-cta h2 {
  font-size: clamp(40px, 5vw, 62px);
}

.section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.process-list {
  display: grid;
  margin: 68px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-item {
  display: grid;
  grid-template-columns: 85px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 150px;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

.process-item h3 {
  margin: 0 0 7px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.process-item p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
}

.step-mark {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.process-item:hover .step-mark {
  color: var(--ink);
  background: var(--acid);
  transform: rotate(8deg);
}

.included {
  color: var(--white);
  background: var(--forest-deep);
}

.included-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(60px, 9vw, 130px);
  padding-top: 125px;
  padding-bottom: 125px;
}

.included-copy {
  align-self: center;
}

.included-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 28px 0 34px;
  color: #c8d0db;
  font-size: 17px;
}

.included h2 {
  max-width: 680px;
  font-size: clamp(42px, 4vw, 56px);
}

.included-copy h2 + .button {
  margin-top: 32px;
}

.included-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  list-style: none;
}

.included-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.included-list li > span {
  padding-top: 4px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 700;
}

.included-list h3 {
  margin: 0 0 5px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.included-list p {
  margin: 0;
  color: #c8d0db;
  font-size: 14px;
}

.pricing {
  width: min(1240px, calc(100% - 48px));
}

.pricing-heading {
  margin-inline: auto;
  text-align: center;
}

.pricing-heading .eyebrow {
  justify-content: center;
}

.agentic-note {
  display: grid;
  max-width: 980px;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin: 38px auto 0;
  padding: 20px 22px;
  border: 1px solid rgba(184, 137, 48, 0.34);
  border-radius: 16px;
  background: rgba(255, 250, 237, 0.78);
}

.agentic-note-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fffdf8;
  background: #9a7026;
  font-size: 15px;
}

.agentic-note h3 {
  margin: 0 0 4px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.agentic-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.agentic-comparison {
  display: grid;
  grid-template-columns: minmax(145px, 0.8fr) 1fr 1fr;
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(154, 112, 38, 0.2);
  border-radius: 10px;
  background: rgba(154, 112, 38, 0.2);
}

.agentic-comparison > div {
  padding: 17px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
  background: rgba(255, 254, 253, 0.78);
}

.agentic-comparison .agentic-table-head {
  color: #79551d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agentic-comparison .agentic-table-label {
  color: var(--ink);
  font-weight: 700;
}

.agentic-comparison .agentic-table-special {
  background: rgba(255, 249, 229, 0.92);
}

.agentic-explanation {
  margin-top: 17px;
}

.agentic-explanation .agentic-label {
  margin-bottom: 6px;
  color: #79551d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agentic-result {
  margin-top: 17px !important;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 66px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 548px;
  flex-direction: column;
  padding: 37px 32px 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 253, 0.74);
}

.price-card-silver {
  border: 2px solid #9ba4ad;
  background: linear-gradient(180deg, #ffffff 0%, #edf0f2 100%);
  box-shadow: 0 22px 54px rgba(61, 72, 84, 0.16);
  transform: translateY(-12px);
}

.price-card-gold {
  border: 2px solid #b88930;
  background: linear-gradient(180deg, #fffdf7 0%, #fff9e9 100%);
  box-shadow: 0 20px 48px rgba(129, 91, 23, 0.14);
}

.silver-label {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 7px 12px;
  border-radius: 30px;
  color: #ffffff;
  background: #737d87;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gold-label {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 7px 13px;
  border-radius: 30px;
  color: #fffdf8;
  background: #9a7026;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-name {
  margin: 0 0 23px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card-silver .plan-name {
  color: #66717b;
}

.price-card-gold .plan-name {
  color: #8a6423;
}

.price {
  margin: 0;
  font-size: 16px;
}

.price strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(38px, 4vw, 52px);
  letter-spacing: -0.065em;
  line-height: 1;
}

.price span {
  color: var(--ink-soft);
  font-size: 13px;
}

.price-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.price-card ul {
  display: grid;
  gap: 15px;
  margin: 35px 0 32px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
}

.price-card li::before {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: rgba(66, 103, 143, 0.1);
  content: "✓";
  font-size: 9px;
  font-weight: 800;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.button-gold {
  color: #fffdf8;
  background: #8a6423;
  box-shadow: 0 12px 26px rgba(129, 91, 23, 0.18);
}

.button-gold:hover {
  background: #6f4e17;
  box-shadow: 0 16px 30px rgba(129, 91, 23, 0.24);
}

.button-silver {
  color: #ffffff;
  background: #66717b;
  box-shadow: 0 12px 26px rgba(61, 72, 84, 0.16);
}

.button-silver:hover {
  background: #4f5962;
  box-shadow: 0 16px 30px rgba(61, 72, 84, 0.22);
}

.pricing-footnote {
  max-width: 680px;
  margin: 31px auto 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(55px, 8vw, 120px);
  border-top: 1px solid var(--line);
}

.faq-heading {
  align-self: start;
}

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

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

.faq summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

.faq details[open] summary span {
  background: var(--acid);
  transform: rotate(45deg);
}

.faq details p {
  max-width: 660px;
  margin: -4px 45px 28px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.final-cta {
  display: flex;
  min-height: 335px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 32px;
  padding: 65px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--ink);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  display: grid;
  width: var(--shell);
  min-height: 190px;
  grid-template-columns: 1fr 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 20px 40px;
  margin-inline: auto;
  padding: 42px 0 25px;
  color: var(--ink-soft);
  font-size: 13px;
}

.brand-footer {
  color: var(--ink);
}

.footer-links {
  display: flex;
  gap: 25px;
  justify-self: end;
  font-weight: 600;
}

.link-button {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: inherit;
  background: none;
  font-weight: 600;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.contact-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 100px rgba(12, 21, 34, 0.38);
}

.contact-dialog::backdrop {
  background: rgba(15, 24, 38, 0.76);
  backdrop-filter: blur(7px);
}

.dialog-shell {
  position: relative;
  padding: 46px;
}

.dialog-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  font-size: 23px;
  line-height: 1;
}

.dialog-shell h2 {
  font-size: clamp(33px, 5vw, 48px);
}

.dialog-intro {
  margin: 15px 0 29px;
  color: var(--ink-soft);
  font-size: 14px;
}

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

#contact-form {
  display: grid;
  gap: 14px;
}

#contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

#contact-form label i {
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 400;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f7f8fa;
  font-size: 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

#contact-form textarea {
  min-height: 98px;
  resize: vertical;
}

#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(66, 103, 143, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  text-align: center;
}

.form-note a {
  color: var(--ink);
  font-weight: 700;
}

.policy-page {
  min-height: 100vh;
  background: #f7f6f3;
}

.policy-header {
  position: relative;
  width: var(--shell);
  margin-inline: auto;
}

.policy-back {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.policy-shell {
  display: grid;
  width: var(--shell);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 9vw, 150px);
  margin: clamp(65px, 10vw, 145px) auto clamp(80px, 12vw, 170px);
}

.policy-intro {
  align-self: start;
  position: sticky;
  top: 42px;
}

.policy-intro h1 {
  max-width: 540px;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.policy-intro > p:not(.eyebrow):not(.policy-updated) {
  max-width: 475px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.policy-updated {
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.policy-content {
  border-top: 1px solid var(--line);
}

.policy-content section {
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 13px;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.policy-content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.policy-content p + p {
  margin-top: 14px;
}

.policy-content a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: var(--forest);
  text-underline-offset: 3px;
}

.policy-footer {
  border-top: 1px solid var(--line);
}

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

.reveal-delay {
  transition-delay: 120ms;
}

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

/* Keep the page focused on its main messages. The Birdiemaker case copy is
   intentionally excluded, as it explains the work behind that project. */
.eyebrow,
.hero-intro,
.hero-notes,
.hero-actions .text-link,
.trust-strip,
.transformation-heading > p,
.comparison-bar,
.transformation-points p,
.styles-heading > p,
.design-approach p,
.section-heading > p:last-child,
.process-item p,
.included-copy > p:not(.eyebrow),
.included-list p,
.pricing-heading > p:last-child,
.pricing-footnote,
.final-cta .eyebrow,
.site-footer > p {
  display: none;
}

.site-footer.policy-footer > p {
  display: block;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card-silver {
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .site-header {
    padding-inline: 20px;
  }

  .hero {
    min-height: 640px;
    padding-top: 78px;
    padding-bottom: 75px;
  }

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

  .trust-strip {
    display: grid;
    gap: 22px;
    padding-block: 26px;
    padding-inline: 20px;
  }

  .trust-strip > div {
    justify-content: space-between;
  }

  .included-inner,
  .faq,
  .styles-heading,
  .transformation-heading,
  .transformation-stage,
  .case-study {
    grid-template-columns: 1fr;
  }

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

  .design-approach {
    grid-template-columns: 1fr;
  }

  .design-approach li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .transformation-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .transformation-points li + li {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 22px;
  }

  .included-copy {
    max-width: 680px;
  }

  .pricing {
    width: var(--shell);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .price-card-silver {
    transform: none;
  }

  .price-card .button {
    margin-top: 15px;
  }

  .final-cta {
    min-height: 390px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 50px;
  }

  .policy-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .policy-intro {
    position: static;
  }
}

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

  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .menu-button {
    position: relative;
    z-index: 52;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0 10px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: transparent;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    z-index: 51;
    top: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 70px 32px 32px;
    opacity: 0;
    background: var(--paper);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 28px;
    letter-spacing: -0.04em;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav .button {
    width: 100%;
    margin-top: 14px;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 14px;
  }

  .hero {
    min-height: 780px;
    padding-top: 55px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.5vw, 62px);
  }

  .hero h1 em {
    display: block;
  }

  .hero-intro {
    margin-top: 23px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
    margin-top: 28px;
  }

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

  .hero-notes {
    gap: 9px 15px;
    margin-top: 25px;
  }

  .hero-showcase {
    margin: 0;
  }

  .hero-showcase::after {
    background: linear-gradient(180deg, rgba(247, 246, 243, 0.96) 0%, rgba(247, 246, 243, 0.9) 48%, rgba(247, 246, 243, 0.38) 78%, rgba(247, 246, 243, 0.12) 100%);
  }

  .hero-showcase img {
    object-position: 65% center;
  }

  .trust-strip > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .process,
  .styles,
  .pricing,
  .faq,
  .transformation {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .transformation {
    padding-bottom: 10px;
  }

  .transformation-heading {
    gap: 25px;
  }

  .transformation-heading h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .transformation-heading > p {
    font-size: 15px;
  }

  .styles-heading {
    gap: 25px;
  }

  .styles-heading h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .styles-heading > p {
    font-size: 15px;
  }

  .style-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 42px;
  }

  .design-approach {
    margin-top: 42px;
  }

  .design-approach li {
    min-height: auto;
    padding: 25px 0;
  }

  .design-approach > li > span {
    margin-bottom: 18px;
  }

  .style-preview {
    min-height: 220px;
  }

  .style-selection {
    align-items: stretch;
    flex-direction: column;
  }

  .style-selection p {
    align-items: flex-start;
    flex-direction: column;
  }

  .style-selection p span {
    padding-left: 0;
    border-left: 0;
  }

  .style-selection .button {
    width: 100%;
  }

  .agentic-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .agentic-comparison {
    grid-template-columns: 1fr 1fr;
  }

  .agentic-comparison .agentic-table-label {
    grid-column: 1 / -1;
  }

  .transformation-stage {
    margin-top: 42px;
  }

  .case-study {
    gap: 24px;
    margin-top: 14px;
    padding: 28px 24px;
  }

  .comparison-demo {
    padding: 10px;
    border-radius: 18px;
  }

  .comparison-window {
    min-height: 0;
    border-radius: 12px;
  }

  .preview-panel {
    min-height: 0;
  }

  .old-nav,
  .new-nav {
    min-height: 58px;
    padding-inline: 16px;
  }

  .old-nav span,
  .new-nav > div {
    display: none;
  }

  .old-content {
    width: 86%;
    margin-top: 27px;
    padding: 20px;
  }

  .old-content h3 {
    font-size: 25px;
  }

  .new-content {
    padding: 48px 18px 38px;
  }

  .new-content h3 {
    font-size: 32px;
  }

  .new-footer {
    padding-inline: 8px;
  }

  .transformation-points {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 24px;
  }

  .transformation-points li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
    padding-left: 0;
  }

  .section-heading h2,
  .included h2,
  .final-cta h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .process-list {
    margin-top: 45px;
  }

  .process-item {
    grid-template-columns: 35px 1fr;
    gap: 13px;
    padding: 25px 0;
  }

  .process-item h3 {
    font-size: 22px;
  }

  .process-item p {
    font-size: 14px;
  }

  .step-mark {
    display: none;
  }

  .included-inner {
    gap: 65px;
    padding-top: 88px;
    padding-bottom: 88px;
  }

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

  .pricing-grid {
    margin-top: 52px;
  }

  .price-card {
    padding: 32px 24px 25px;
  }

  .faq {
    gap: 45px;
  }

  .faq summary {
    min-height: 80px;
    font-size: 16px;
  }

  .final-cta {
    width: calc(100% - 20px);
    min-height: 440px;
    gap: 35px;
    margin-bottom: 20px;
    padding: 43px 24px 28px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    min-height: 270px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: start;
    gap: 16px;
    padding-top: 48px;
  }

  .site-footer > p {
    margin: 0;
  }

  .footer-links {
    justify-self: start;
    margin: 13px 0;
  }

  .copyright {
    grid-column: auto;
  }

  .dialog-shell {
    padding: 42px 21px 25px;
  }

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

  .policy-header {
    width: var(--shell);
    padding-inline: 0;
  }

  .policy-shell {
    margin-top: 58px;
    margin-bottom: 80px;
  }

  .policy-intro h1 {
    font-size: clamp(40px, 12vw, 55px);
  }

  .policy-intro > p:not(.eyebrow):not(.policy-updated) {
    font-size: 16px;
  }

  .policy-content section {
    padding: 25px 0 29px;
  }
}

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

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

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