:root {
  --site-accent: #000000;
  --dark: #000000;
  --light: #FDFCFC;
  --paper: #FFFFFF;
  --cream: #F5F3F1;
  --soft: #EBE8E4;
  --site-ink: #090909;
  --site-muted: #6E6E6E;
  --site-faint: #A59F97;
  --site-line: rgba(0, 0, 0, 0.1);
  --site-line-strong: rgba(0, 0, 0, 0.17);
  --white-line: rgba(255, 255, 255, 0.16);
  --display-xl: clamp(3.15rem, 5vw, 5rem);
  --display-lg: clamp(3rem, 6vw, 5.8rem);
  --heading-xl: clamp(2.4rem, 4.8vw, 4.8rem);
  --heading-lg: clamp(2rem, 3.8vw, 3.65rem);
  --heading-md: clamp(1.45rem, 2.35vw, 2rem);
  --body-lg: clamp(1.05rem, 1.5vw, 1.24rem);
  --body: 1rem;
  --body-sm: 0.875rem;
  --label: 0.72rem;
  --section-y: clamp(5.5rem, 10vw, 7.5rem);
  --section-y-tight: clamp(4.5rem, 8vw, 6.5rem);
  --section-y-large: clamp(6.5rem, 11vw, 8.5rem);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-card: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.035);
  --shadow-card-hover: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 18px 34px rgba(0, 0, 0, 0.1);
  --shadow-button: 0 0 0 1px #000, 0 7px 0 rgba(0, 0, 0, 0.18), 0 15px 28px rgba(0, 0, 0, 0.12);
  --site-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--light);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--light);
  color: var(--site-ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--body);
  line-height: 1.5;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--site-accent);
  color: #fff;
}

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

figure,
p,
h1,
h2,
h3,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

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

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--site-accent);
  outline-offset: 5px;
  border-radius: 5px;
}

main {
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--site-line);
  background: rgba(253, 252, 252, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 56px, 1216px);
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 9px;
  color: var(--site-ink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand-symbol {
  width: 21px;
  height: 20px;
  display: inline-flex;
  align-items: stretch;
  gap: 3px;
}

.brand-symbol i {
  display: block;
  width: 4px;
  border-radius: 1px;
  background: var(--site-accent);
}

.brand-symbol i:nth-child(1) {
  height: 14px;
  margin-top: 3px;
}

.brand-symbol i:nth-child(2) {
  height: 20px;
}

.brand-symbol i:nth-child(3) {
  height: 14px;
  margin-top: 3px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.35vw, 2rem);
  margin-left: 18px;
  color: #292929;
  font-size: 0.84rem;
}

.primary-nav a,
.nav-spotlight,
.footer-column a,
.footer-note-link,
.inline-link,
.card-link,
.footer-bottom a {
  transition: color 180ms ease, opacity 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.footer-column a:hover,
.footer-note-link:hover,
.footer-bottom a:hover {
  color: var(--site-muted);
}

.nav-spotlight {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-left: auto;
  padding: 0.56rem 0.95rem;
  border: 1px solid var(--site-line-strong);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
  font-size: 0.8rem;
  white-space: nowrap;
}

.nav-spotlight:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--site-line);
  background: var(--light);
}

.hero-shell {
  width: min(100% - 56px, 1216px);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.hero-left {
  max-width: 800px;
}

.hero-right {
  padding-top: 1.6rem;
}

.hero-showcase {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--soft);
  height: clamp(320px, 45vw, 460px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-module-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-footer {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  color: var(--site-muted);
  font-size: var(--label);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #58534e;
}

.hero h1 {
  max-width: 850px;
  margin: 0.75rem 0 1.5rem;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 650;
  color: var(--site-ink);
}

.hero h1 em {
  font-style: normal;
}

.hero-subhead {
  max-width: 610px;
  font-size: var(--body-lg);
  line-height: 1.42;
  letter-spacing: -0.012em;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem clamp(3rem, 7vw, 6rem);
  margin: 0 0 1.5rem;
  padding-top: 2rem;
}

.trust-stats li {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.trust-stats strong {
  color: var(--site-ink);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
}

.trust-stats span {
  max-width: 145px;
  color: #625d58;
  font-size: 0.78rem;
  line-height: 1.35;
}

a[href="/go"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-button);
  transition: transform 200ms var(--site-ease), background-color 180ms ease, box-shadow 200ms var(--site-ease);
}

a[href="/go"]:hover {
  background: var(--site-accent);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px #000, 0 9px 0 rgba(0, 0, 0, 0.18), 0 20px 34px rgba(0, 0, 0, 0.16);
}

a[href="/go"]:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 1px #000, 0 3px 0 rgba(0, 0, 0, 0.18), 0 8px 17px rgba(0, 0, 0, 0.12);
}

.cta-arrow {
  font-size: 1.1em;
  line-height: 1;
  transition: transform 180ms ease;
}

a[href="/go"]:hover .cta-arrow {
  transform: translate(2px, -2px);
}

.hero-microcopy {
  margin-top: 1.3rem;
  color: #6c665f;
  font-size: 0.78rem;
}

.section {
  position: relative;
  padding: var(--section-y) 0;
}

.section-white {
  background: var(--light);
}

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

.section-dark {
  background: var(--dark);
  color: #fff;
}

/* The sub-pages wrap their content in `class="shell"`, which this stylesheet never defined — only
   the -shell suffixed variants existed, so ten wrappers per sub-page had no width, no max-width
   and no padding and every line started at x=0. Same gutter as .section-shell. */
.shell {
  width: min(100% - 56px, 1160px);
  margin: 0 auto;
}

.section-shell {
  width: min(100% - 56px, 1160px);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  align-items: end;
  gap: clamp(2.25rem, 7vw, 8rem);
  margin-bottom: clamp(3rem, 6vw, 5.8rem);
}

.section-head h2,
.split-copy h2,
.faq-intro h2,
.final-shell h2 {
  max-width: 740px;
  margin-top: 1.15rem;
  color: var(--site-ink);
  font-size: var(--heading-xl);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 450;
}

.section-head > p {
  max-width: 510px;
  justify-self: end;
  color: var(--site-muted);
  font-size: var(--body-lg);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.section-dark .eyebrow,
.section-dark .section-head > p {
  color: rgba(255, 255, 255, 0.62);
}

.section-dark .section-head h2 {
  color: #fff;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.split-copy h2 {
  max-width: 600px;
  font-size: var(--heading-lg);
}

.split-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 1.6rem;
  color: var(--site-muted);
  font-size: var(--body-lg);
  line-height: 1.48;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  color: var(--site-ink);
  font-size: 0.9rem;
  font-weight: 650;
}

.inline-link:hover {
  color: var(--site-muted);
}

.inline-link span {
  transition: transform 180ms ease;
}

.inline-link:hover span {
  transform: translate(2px, -2px);
}

.media-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: var(--radius-xl);
  background: #ddd;
  box-shadow: var(--shadow-card);
}

.media-card::after,
.showcase-panel::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.media-card figcaption,
.showcase-panel figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 5rem 1.5rem 1.45rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
  font-size: 0.94rem;
  line-height: 1.35;
}

.caption-label,
.comparison-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.feature-card,
.use-card,
.step-card,
.assurance-item {
  transition: transform 220ms var(--site-ease), box-shadow 220ms var(--site-ease), border-color 180ms ease, background-color 180ms ease;
}

.feature-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border: 1px solid var(--site-line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-index,
.use-index {
  color: var(--site-faint);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.icon-tile {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 12px;
  background: var(--site-ink);
  color: #fff;
}

.icon-tile svg {
  width: 22px;
  height: 22px;
}

.feature-card h3,
.use-card h3,
.step-card h3,
.assurance-item h3 {
  margin-top: 2rem;
  color: var(--site-ink);
  font-size: var(--heading-md);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 550;
}

.feature-card p,
.use-card p,
.step-card p,
.assurance-item p {
  margin-top: 0.8rem;
  color: var(--site-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 1.6rem;
  color: var(--site-ink);
  font-size: 0.82rem;
  font-weight: 650;
}

.card-link:hover {
  color: var(--site-muted);
}

.card-link span {
  transition: transform 180ms ease;
}

.card-link:hover span {
  transform: translateX(3px);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(260px, 0.66fr);
  grid-template-rows: minmax(250px, 0.92fr) minmax(210px, 0.62fr);
  gap: 16px;
}

.showcase-panel {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-card);
}

.showcase-panel:hover {
  box-shadow: var(--shadow-card-hover);
}

.showcase-panel-wide {
  grid-row: 1 / span 2;
}

.showcase-panel-side {
  min-height: 270px;
}

.showcase-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms var(--site-ease);
}

.showcase-panel:hover img {
  transform: scale(1.035);
}

.showcase-note {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.7rem;
  border: 1px solid var(--site-line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-card);
}

.note-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--site-line-strong);
  border-radius: 12px;
  background: var(--paper);
  color: var(--site-ink);
  font-size: 1.25rem;
}

.showcase-note p {
  max-width: 340px;
  color: var(--site-ink);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

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

.step-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.65rem;
  border: 1px solid var(--white-line);
  border-radius: var(--radius-lg);
  background: #111;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 16px 34px rgba(0, 0, 0, 0.22);
}

.step-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: #171717;
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 22px 42px rgba(0, 0, 0, 0.3);
}

.step-number {
  color: rgba(255, 255, 255, 0.52);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 450;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.step-card h3 {
  margin-top: 0;
  color: #fff;
}

.step-card p {
  color: rgba(255, 255, 255, 0.62);
}

.step-line {
  width: 100%;
  height: 1px;
  display: block;
  margin-top: 1.8rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
}

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

.use-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  border: 1px solid var(--site-line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.use-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: var(--shadow-card-hover);
}

.use-card::before {
  width: 42px;
  height: 3px;
  display: block;
  content: "";
  background: var(--site-accent);
}

.use-card h3 {
  margin-top: 1.65rem;
  font-size: 1.42rem;
}

.use-card p {
  max-width: 280px;
}

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

.comparison-card {
  overflow: hidden;
  border: 1px solid var(--site-line);
  border-radius: var(--radius-xl);
  background: var(--cream);
  box-shadow: var(--shadow-card);
  transition: transform 220ms var(--site-ease), box-shadow 220ms var(--site-ease);
}

.comparison-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.comparison-card-dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--dark);
}

.comparison-image {
  height: 285px;
  overflow: hidden;
  background: #d7d4d0;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--site-ease);
}

.comparison-card:hover .comparison-image img {
  transform: scale(1.035);
}

.comparison-body {
  padding: 1.75rem;
}

.comparison-label {
  display: block;
  color: var(--site-muted);
}

.comparison-card-dark .comparison-label {
  color: rgba(255, 255, 255, 0.56);
}

.comparison-body h3 {
  margin-top: 0.85rem;
  color: var(--site-ink);
  font-size: var(--heading-md);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 550;
}

.comparison-card-dark .comparison-body h3,
.comparison-card-dark .comparison-body > p,
.comparison-card-dark .comparison-list li,
.comparison-card-dark .inline-link {
  color: #fff;
}

.comparison-body > p {
  max-width: 460px;
  margin-top: 0.9rem;
  color: var(--site-muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.comparison-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.55rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--site-line);
}

.comparison-card-dark .comparison-list {
  border-top-color: var(--white-line);
}

.comparison-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--site-ink);
  font-size: 0.88rem;
}

.comparison-list li::before {
  position: absolute;
  top: 0.47rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--site-accent);
  content: "";
}

.comparison-card-dark .comparison-list li::before {
  background: #fff;
}

.comparison-body .inline-link {
  margin-top: 1.6rem;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 1rem;
  border-top: 1px solid var(--site-line-strong);
}

.assurance-item {
  min-height: 240px;
  padding: 1.5rem 1.5rem 1.75rem;
  border-bottom: 1px solid var(--site-line-strong);
}

.assurance-item:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-3px);
}

.assurance-symbol {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--site-line-strong);
  border-radius: 12px;
  background: var(--paper);
  color: var(--site-ink);
  font-size: 1.25rem;
}

.assurance-item h3 {
  margin-top: 2.3rem;
  font-size: 1.35rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: start;
}

.faq-intro h2 {
  font-size: var(--heading-lg);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 370px;
  margin-top: 1.4rem;
  color: var(--site-muted);
  font-size: var(--body-lg);
  line-height: 1.45;
}

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

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

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 1.1rem 3rem 1.1rem 0;
  cursor: pointer;
  list-style: none;
  color: var(--site-ink);
  font-size: 1rem;
  font-weight: 550;
  letter-spacing: -0.02em;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--site-ink);
  content: "+";
  font-size: 1.4rem;
  font-weight: 350;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 200ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 3rem 1.45rem 0;
  color: var(--site-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(6rem, 11vw, 9rem) 0;
  background: var(--dark);
  color: #fff;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  z-index: -1;
  display: block;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.final-cta::before {
  top: -55%;
  right: -8%;
  width: 62vw;
  height: 62vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 68%);
}

.final-cta::after {
  bottom: -65%;
  left: -10%;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 70%);
}

.final-shell {
  width: min(100% - 56px, 1160px);
  margin: 0 auto;
  text-align: center;
}

.final-shell .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.final-shell h2 {
  max-width: 800px;
  margin: 1.25rem auto 0;
  color: #fff;
  font-size: var(--display-lg);
}

.final-shell > p:not(.eyebrow) {
  max-width: 510px;
  margin: 1.5rem auto 2.3rem;
  color: rgba(255, 255, 255, 0.67);
  font-size: var(--body-lg);
  line-height: 1.45;
}

.final-cta a[href="/go"] {
  background: #fff;
  color: #000;
  box-shadow: 0 0 0 1px #fff, 0 7px 0 rgba(255, 255, 255, 0.18), 0 16px 30px rgba(0, 0, 0, 0.22);
}

.final-cta a[href="/go"]:hover {
  background: #f0eeec;
  box-shadow: 0 0 0 1px #fff, 0 9px 0 rgba(255, 255, 255, 0.18), 0 20px 36px rgba(0, 0, 0, 0.3);
}

.site-footer {
  padding: clamp(4.5rem, 8vw, 7rem) 0 2rem;
  background: var(--light);
  border-top: 1px solid var(--site-line);
}

.footer-shell {
  width: min(100% - 56px, 1160px);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.7fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.footer-brand p {
  max-width: 210px;
  margin-top: 1.25rem;
  color: var(--site-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-note-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 2rem;
  color: var(--site-ink);
  font-size: 0.84rem;
  font-weight: 650;
}

.footer-note-link:hover {
  color: var(--site-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-column h3 {
  margin-bottom: 0.5rem;
  color: var(--site-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--site-ink);
  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 6.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--site-line);
  color: var(--site-muted);
  font-size: 0.76rem;
}

.footer-bottom a {
  margin-left: auto;
  color: var(--site-ink);
  font-weight: 650;
}

.footer-bottom a:hover {
  color: var(--site-muted);
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 1.15rem;
    margin-left: 4px;
  }

  .nav-shell,
  .hero-shell,
  .section-shell,
  .final-shell,
  .footer-shell {
    width: min(100% - 48px, 1160px);
  }

  .section-head {
    gap: 3rem;
  }

  .split-layout {
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  .primary-nav {
    display: none;
  }

  .nav-spotlight {
    margin-left: auto;
  }


  .section-head,
  .split-layout,
  .hero-split,
  .faq-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 1.5rem;
    margin-bottom: 3.2rem;
  }

  .section-head > p {
    justify-self: start;
  }

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

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

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

  .step-card {
    min-height: 260px;
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(300px, 1fr) minmax(210px, auto);
  }

  .showcase-panel-wide {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  .showcase-panel-side,
  .showcase-note {
    min-height: 250px;
  }

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

  .assurance-grid {
    gap: 0;
  }

  .footer-links {
    max-width: 720px;
  }

  .footer-bottom {
    margin-top: 4.5rem;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .hero-shell,
  .section-shell,
  .final-shell,
  .footer-shell {
    width: min(100% - 32px, 1160px);
  }

  .nav-spotlight {
    min-height: 34px;
    padding: 0.45rem 0.72rem;
    font-size: 0.72rem;
  }


  .hero h1 {
    margin-top: 1rem;
    font-size: clamp(3.35rem, 17vw, 5rem);
    line-height: 0.94;
  }

  .hero-subhead {
    max-width: 430px;
    font-size: 1rem;
  }

  .trust-stats {
    gap: 1.45rem 1.25rem;
    margin-top: 2.7rem;
  }

  .trust-stats li {
    min-width: 92px;
    flex: 1 1 28%;
  }

  .trust-stats strong {
    font-size: 1.65rem;
  }

  .trust-stats span {
    max-width: 108px;
    font-size: 0.72rem;
  }

  .section {
    padding: var(--section-y-tight) 0;
  }

  .section-head h2,
  .split-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .media-card,
  .media-card img {
    min-height: 360px;
  }

  .feature-grid,
  .use-case-grid,
  .showcase-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-rows: auto;
  }

  .showcase-panel-wide {
    grid-column: auto;
  }

  .showcase-panel,
  .showcase-panel-side,
  .showcase-note {
    min-height: 290px;
  }

  .feature-card {
    min-height: 280px;
  }

  .use-card {
    min-height: 240px;
  }

  .comparison-image {
    height: 230px;
  }

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

  .assurance-item {
    min-height: 190px;
  }

  .footer-top {
    gap: 3.5rem;
  }

  .footer-links {
    gap: 2.2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
  }

  .footer-bottom a {
    width: 100%;
    margin-left: 0;
    margin-top: 0.55rem;
  }
}

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

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