:root {
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --font-body: Futura, "Futura PT", "Century Gothic", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --ink: #000000;
  --muted: #000000;
  --line: rgba(18, 20, 28, 0.13);
  --soft: #f7f7f4;
  --white: #ffffff;
  --brand-gold: #ae7d17;
  --brand-gold-dark: #7f5a0f;
  --brand-blue: #000000;
  --aqua: #8ff7e6;
  --violet: #b097ff;
  --rose: #ff9ad7;
  --gold: #ffe5a7;
  --green: #000000;
  --radius: 34px;
  --shadow: 0 30px 90px rgba(18, 20, 28, 0.12);
  --content-width: 1150px;
  --fit-width: 1050px;
  --full-card-width: none;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  line-height: 1.55;
  padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 100px;
  padding: 26px clamp(18px, 4vw, 54px) 18px;
  background: #fff;
  font-family: var(--font-body);
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, padding 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.site-nav.nav-scrolled {
  min-height: 74px;
  padding-top: 14px;
  padding-bottom: 10px;
  border-color: rgba(50, 48, 47, 0.08);
  box-shadow: 0 10px 30px rgba(50, 48, 47, 0.05);
}

.brand,
.nav-links,
.hero-actions,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  --brand-gradient: linear-gradient(135deg, #f3d06b 0%, #d9a330 42%, #ae7d17 100%);
  text-decoration: none;
}

.brand-icon {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(50, 48, 47, 0.14));
}

.brand-text {
  display: inline-block;
  padding-block: 0.14em 0.08em;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #ae7d17;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 700;
  font-synthesis: none;
  line-height: 1.16;
  white-space: nowrap;
}

.tm {
  margin-left: 1px;
  font-family: var(--font-body);
  font-size: 0.34em;
  font-weight: 400;
  vertical-align: super;
}

.site-nav.nav-scrolled .brand-icon {
  width: 30px;
  height: 30px;
}

.site-nav.nav-scrolled .brand-text {
  font-size: clamp(18px, 1.55vw, 24px);
}

.nav-links {
  gap: 28px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
}

.nav-dropdown {
  position: relative;
  margin-block: -10px;
  padding-block: 10px;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown__trigger::after {
  content: "\203A";
  display: inline-block;
  transform: rotate(90deg);
  color: var(--brand-gold);
  font-size: 1.08em;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 245px;
  padding: 10px;
  border: 1px solid rgba(174, 125, 23, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 50px rgba(18, 20, 28, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown__menu a {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover {
  background: rgba(174, 125, 23, 0.08);
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown__trigger {
  color: var(--brand-gold);
}

.nav-dropdown:hover .nav-dropdown__trigger::after {
  transform: rotate(90deg) translateX(2px);
}

.nav-links a,
.footer a {
  text-decoration: none;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--brand-gold);
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  overflow: hidden;
  border-radius: 4px;
  padding: 11px 24px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: min-height 220ms ease, padding 220ms ease, font-size 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, color 180ms ease, font-style 180ms ease;
}

.nav-toggle {
  display: none;
}

.site-nav.nav-scrolled .nav-cta {
  min-height: 36px;
  padding: 8px 18px;
  font-size: 14px;
}

.nav-cta,
.button-primary {
  border: 1px solid #805a10;
  color: #fff;
  background: linear-gradient(180deg, #cfa344 0%, #cfa344 50%, #a97818 50%, #a97818 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(63, 43, 9, 0.34),
    0 10px 24px rgba(18, 20, 28, 0.16);
  text-shadow: 0 1px 1px rgba(64, 38, 0, 0.34);
}

.button-green {
  border: 1px solid #476538;
  color: #fff;
  background: linear-gradient(180deg, #7f985d 0%, #7f985d 50%, #526c3f 50%, #526c3f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -1px 0 rgba(29, 52, 24, 0.34),
    0 10px 24px rgba(18, 20, 28, 0.14);
  text-shadow: 0 1px 1px rgba(24, 44, 18, 0.34);
}

.button-secondary {
  gap: 8px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  padding-inline: 4px;
  box-shadow: none;
}

.button-secondary::after {
  content: "\203A";
  display: inline-block;
  font-size: 1.25em;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-cta:hover,
.button-primary:hover,
.button-green:hover {
  color: #fff;
  box-shadow:
    inset 0 0 0 999px rgba(35, 33, 32, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(63, 43, 9, 0.38),
    0 10px 24px rgba(18, 20, 28, 0.2);
}

.button-secondary:hover {
  color: #f7d970;
  font-style: italic;
}

.button-secondary:hover::after {
  transform: translateX(6px);
}

.hero-shell {
  padding: 0 15px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 115px);
  overflow: hidden;
  border-radius: var(--radius);
  background: #232120;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 20%;
  background: url("assets/hero-woman-hand-heart.webp");
  background-size: cover;
  background-position: center;
}

.hero-image::before,
.hero-image::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-image::before {
  inset: 0 auto 0 0;
  width: 62%;
  background: linear-gradient(90deg, #232120 0%, #232120 18%, rgba(35, 33, 32, 0.94) 34%, rgba(35, 33, 32, 0.72) 54%, rgba(35, 33, 32, 0.38) 78%, rgba(35, 33, 32, 0) 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  mask-image: none;
  -webkit-mask-image: none;
}

.hero-image::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 33, 32, 0.32) 0%, rgba(35, 33, 32, 0.22) 38%, rgba(35, 33, 32, 0.1) 72%, rgba(35, 33, 32, 0) 100%),
    radial-gradient(circle at 0% 50%, rgba(35, 33, 32, 0.48), transparent 38rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: calc(100vh - 115px);
  max-width: 820px;
  padding: clamp(54px, 8vw, 110px) clamp(24px, 7vw, 94px) clamp(54px, 8vw, 110px) clamp(82px, 14vw, 190px);
  color: #fff;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gold-kicker {
  display: block;
  color: #f7d970;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin: 0;
  color: #f7d970;
}

.hero-brand-lockup {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #f7d970;
}

.hero-brand-title {
  --hero-brand-gradient: linear-gradient(135deg, #c18c12 0%, #d6971f 16%, #f8c74a 32%, #edb333 48%, #c18c12 58%, #d6971f 74%, #f8c74a 90%, #edb333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-brand-mark {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(248, 199, 74, 0.26));
}

.hero-brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-brand-gradient);
  background-size: 180% 180%;
  background-position: left center;
  mask: url("assets/sbt-logo-icon-gradient.svg") center / contain no-repeat;
  -webkit-mask: url("assets/sbt-logo-icon-gradient.svg") center / contain no-repeat;
  pointer-events: none;
}

.hero-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-brand-name {
  display: inline-block;
  padding: 0.08em 0.04em 0.16em;
  background: var(--hero-brand-gradient);
  background-size: 180% 180%;
  background-position: 18% center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  white-space: nowrap;
}

.reg-mark {
  font-size: 0.36em;
  line-height: 0;
  vertical-align: super;
}

.hero-modality {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 16px 0 20px;
  color: #fff;
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.hero-modality span {
  display: block;
}

.hero-modality-kicker {
  font-size: 0.92em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  color: var(--brand-blue);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.03;
}

.hero h1 {
  color: #fff;
  font-size: clamp(32px, 3.7vw, 48px);
}

.hero h1 span {
  display: block;
}

.hero h1 .hero-title-large {
  margin-top: 4px;
  margin-bottom: 40px;
  font-size: clamp(46px, 5.8vw, 72px);
  line-height: 0.96;
}

.hero h1 .hero-title-small {
  white-space: nowrap;
}

h2 {
  max-width: 720px;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

h3 {
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.15;
}

p {
  margin: 0;
  font-weight: 400;
}

.hero-content p:not(.eyebrow):not(.hero-modality),
.intro-copy p:not(.eyebrow),
.app-copy p:not(.eyebrow),
.cert-copy p:not(.eyebrow),
.final-inner p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(20px, 1.55vw, 22px);
  font-weight: 400;
}

.hero-content p:not(.eyebrow):not(.hero-modality) {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.intro-copy p:not(.eyebrow),
.app-copy p:not(.eyebrow),
.cert-copy p:not(.eyebrow) {
  color: var(--muted);
}

.hero-actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-content .hero-actions {
  width: min(320px, 100%);
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}

main > section:not(.hero-shell) {
  padding: clamp(74px, 10vw, 128px) clamp(22px, 7vw, 104px);
}

.intro,
.app-section,
.method,
.plan,
.proof,
.faq {
  background: #fff;
}

.intro,
.method,
.plan,
.proof,
.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 98px);
  align-items: start;
}

.intro {
  display: block;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-top: 0 !important;
  text-align: center;
}

.intro-inner {
  max-width: 1040px;
  margin-top: 50px;
  margin-inline: auto;
}

.intro-line {
  width: min(504px, 100%);
  margin: 0 auto clamp(34px, 5vw, 58px);
}

.intro-line svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.intro-path {
  fill: none;
  stroke: url(#introGoldLine);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 8px 14px rgba(174, 125, 23, 0.2));
}

.intro-line.is-visible .intro-path {
  animation: drawIntroPath 7.8s linear 1 forwards;
}

@keyframes drawIntroPath {
  from {
    stroke-dashoffset: 1;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.inline-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.inline-list p,
.flow-item,
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.inline-list p {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.inline-list img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.intro-copy .gold-kicker {
  margin-top: 22px;
  color: var(--brand-gold);
}

.intro-copy {
  max-width: 980px;
  margin: -40px auto 0;
}

.intro-copy h2 {
  max-width: none;
  margin-inline: auto;
}

.intro-copy h2 span {
  display: block;
}

.intro-strong {
  margin-top: 30px;
  margin-bottom: 30px;
  color: var(--brand-gold);
  font-size: clamp(28px, 2.35vw, 34px);
  font-weight: 700;
  line-height: 1.16;
}

.intro-copy p.intro-strong {
  color: var(--brand-gold);
  font-size: 26px;
  font-weight: 700;
}

.intro-copy .gold-kicker + p {
  margin-top: 18px;
}

.intro-copy p:not(.eyebrow):not(.gold-kicker):not(.intro-strong) {
  max-width: 860px;
  margin-inline: auto;
  line-height: 1.45;
}

.intro-copy p strong {
  font-weight: 700;
}

@media (min-width: 981px) {
  .intro-copy .intro-process {
    display: block;
  }
}

.intro-sbt {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: clamp(44px, 7vw, 82px);
}

.intro-logo-shine {
  position: relative;
  display: inline-grid;
  place-items: center;
  padding: 14px;
  overflow: hidden;
}

.intro-logo-shine::after {
  content: "";
  position: absolute;
  inset: 8px -70%;
  background: linear-gradient(100deg, transparent 42%, rgba(255, 255, 255, 0.82) 50%, transparent 58%);
  transform: translateX(-70%);
  animation: logoShine 8s ease-in-out infinite;
  pointer-events: none;
}

.intro-logo-shine img {
  width: 83px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(174, 125, 23, 0.16));
}

.intro-sbt .gold-kicker {
  color: var(--brand-gold);
}

.intro-sbt .gold-kicker strong,
.intro-sbt .gold-kicker span {
  display: block;
}

.intro-sbt .gold-kicker strong {
  font-weight: 700;
}

.intro-sbt .gold-kicker span {
  margin-top: 2px;
  text-transform: none;
  letter-spacing: 0.08em;
}

@keyframes logoShine {
  0%,
  42% {
    transform: translateX(-70%);
    opacity: 0;
  }
  52% {
    opacity: 0.9;
  }
  68%,
  100% {
    transform: translateX(70%);
    opacity: 0;
  }
}

.intro-bullets {
  border-top: 0;
  max-width: 880px;
  margin: clamp(26px, 4vw, 44px) auto 0;
}

.intro-bullets h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 42px);
}

.intro-bullets p {
  position: relative;
  display: block;
  padding: 12px 0;
  border-bottom: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.32;
  text-align: center;
}

.intro-bullets p::before {
  display: none;
}

.benefit-blur {
  opacity: 0;
  transition: opacity 720ms ease;
  will-change: opacity;
}

.benefit-blur.is-clear {
  opacity: 1;
}

.intro-alt {
  background:
    linear-gradient(180deg, rgba(174, 125, 23, 0.08), rgba(255, 255, 255, 0) 38%),
    #fff;
}

.intro-alt__inner {
  max-width: 1160px;
  margin-inline: auto;
}

.intro-alt__header {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.intro-alt__header .eyebrow,
.intro-alt .gold-kicker {
  color: var(--brand-gold);
}

.intro-alt__header h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.intro-alt__content {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: stretch;
}

.intro-alt__story,
.intro-alt__fit {
  min-width: 0;
}

.intro-alt__story {
  display: grid;
  align-content: center;
  gap: 18px;
  padding-left: clamp(22px, 4vw, 44px);
  border-left: 2px solid var(--brand-gold);
}

.intro-alt__story .gold-kicker {
  margin-bottom: 2px;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.intro-alt__story p:not(.gold-kicker) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.intro-alt__fit {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(174, 125, 23, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(247, 247, 244, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: 0 24px 70px rgba(50, 48, 47, 0.08);
}

.intro-alt__logo img {
  display: block;
  width: 54px;
  height: auto;
  margin-bottom: 22px;
}

.intro-alt__fit .gold-kicker {
  margin-bottom: 22px;
}

.intro-alt__fit .gold-kicker strong,
.intro-alt__fit .gold-kicker span {
  display: block;
}

.intro-alt__fit .gold-kicker span {
  margin-top: 3px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: none;
}

.intro-alt__fit ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-alt__fit li {
  position: relative;
  padding: 15px 0 15px 34px;
  border-top: 1px solid rgba(91, 89, 88, 0.12);
  color: var(--ink);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.42;
}

.intro-alt__fit li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(174, 125, 23, 0.7);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(174, 125, 23, 0.18), rgba(174, 125, 23, 0.03));
}

.intro-alt-two {
  background:
    linear-gradient(180deg, #fff 0%, rgba(247, 247, 244, 0.78) 100%),
    #fff;
}

.intro-alt-two__inner {
  max-width: 1160px;
  margin-inline: auto;
}

.intro-alt-two__top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: end;
  padding-bottom: clamp(30px, 5vw, 58px);
  border-bottom: 1px solid rgba(91, 89, 88, 0.14);
}

.intro-alt-two__top .eyebrow {
  color: var(--brand-gold);
}

.intro-alt-two__top h2 {
  max-width: 680px;
  font-size: clamp(36px, 4.4vw, 58px);
}

.intro-alt-two__top h2 span {
  display: block;
}

.intro-alt-two__problem {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(50, 48, 47, 0.07);
}

.intro-alt-two__problem .intro-strong {
  margin: 0;
}

.intro-alt-two__problem p:not(.intro-strong) {
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.48;
}

.intro-alt-two__bottom {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  padding-top: clamp(30px, 5vw, 58px);
}

.intro-alt-two__mark {
  position: sticky;
  top: 120px;
}

.intro-alt-two__mark img {
  display: block;
  width: 74px;
  height: auto;
  margin-bottom: 20px;
}

.intro-alt-two__mark .gold-kicker {
  color: var(--brand-gold);
}

.intro-alt-two__mark .gold-kicker strong,
.intro-alt-two__mark .gold-kicker span {
  display: block;
}

.intro-alt-two__mark .gold-kicker span {
  margin-top: 3px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: none;
}

.intro-alt-two__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.intro-alt-two__list p {
  min-height: 112px;
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(91, 89, 88, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.35;
}

.intro-alt-two__list p:last-child {
  grid-column: 1 / -1;
  min-height: 0;
}

.intro-alt-three {
  background: #fff;
  margin-bottom: 50px;
  padding-right: clamp(22px, 7vw, 104px) !important;
  padding-left: clamp(22px, 7vw, 104px) !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

main > section.intro-testimonial {
  display: grid;
  grid-template-columns: 96px minmax(0, 760px);
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 50px auto 34px;
  padding: 50px;
  border-radius: var(--radius);
  background: #f2efe6;
  box-shadow: 0 18px 52px rgba(18, 20, 28, 0.06);
}

.intro-testimonial__person {
  margin: 0;
  text-align: center;
}

.intro-testimonial__person img {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.intro-testimonial__copy {
  display: grid;
  gap: 8px;
}

.intro-testimonial blockquote {
  margin: 0;
  color: #000;
  font-size: clamp(21px, 1.65vw, 25px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
}

.intro-testimonial cite {
  display: block;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.intro-alt-three__inner {
  max-width: var(--fit-width);
  margin-inline: auto;
}

.intro-alt-three__headline {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.intro-alt-three__headline .eyebrow {
  color: var(--brand-gold);
}

.intro-alt-three__headline h2 {
  font-size: clamp(36px, 4.6vw, 62px);
}

.intro-alt-three__headline h2 span {
  display: block;
}

.intro-alt-three__statement {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(34px, 5vw, 58px);
  padding: clamp(24px, 3.5vw, 38px) 0;
  border-top: 1px solid rgba(174, 125, 23, 0.28);
  border-bottom: 1px solid rgba(174, 125, 23, 0.28);
}

.intro-alt-three__statement .intro-strong {
  margin: 0;
  color: var(--brand-gold);
}

.intro-alt-three__statement p:not(.intro-strong) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
}

.intro-alt-three__fit {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  margin-top: 0;
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid rgba(174, 125, 23, 0.28);
}

.intro-alt-three__kicker {
  position: sticky;
  top: 120px;
}

.intro-alt-three__kicker img {
  display: block;
  width: 68px;
  height: auto;
  margin-bottom: 20px;
}

.intro-alt-three__kicker .gold-kicker {
  color: var(--brand-gold);
}

.intro-alt-three__kicker .gold-kicker strong,
.intro-alt-three__kicker .gold-kicker span {
  display: block;
}

.intro-alt-three__kicker .gold-kicker strong {
  font-size: 18px;
}

.intro-alt-three__kicker .gold-kicker span {
  margin-top: 3px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: none;
}

.intro-alt-three__sequence {
  counter-reset: fit;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(91, 89, 88, 0.08);
}

.intro-alt-three__sequence p {
  counter-increment: fit;
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 19px 0;
  border-bottom: 1px solid rgba(91, 89, 88, 0.08);
  color: var(--ink);
  font-size: clamp(20px, 1.5vw, 22px);
  line-height: 1.32;
  opacity: 1;
}

.intro-alt-three__sequence p::before {
  content: "\2192";
  color: var(--brand-gold);
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1;
}

.app-section {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 760px;
  isolation: isolate;
}

.app-section::before {
  content: "";
  position: absolute;
  inset: 36px 15px;
  z-index: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 74% 44%, rgba(174, 125, 23, 0.12), transparent 22rem),
    radial-gradient(circle at 83% 20%, rgba(91, 89, 88, 0.12), transparent 20rem),
    var(--soft);
}

.app-copy {
  position: relative;
  min-width: 0;
}

.app-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
  margin-left: 100px;
  padding: 50px 0;
  color: #fff;
  text-shadow: 0 2px 18px rgba(50, 48, 47, 0.34);
}

.app-copy h2,
.app-copy p:not(.eyebrow) {
  color: #fff;
}

.app-copy p:not(.eyebrow) {
  font-size: 20px;
}

.app-copy .eyebrow {
  color: #f7d970;
}

.app-parallax-bg {
  position: absolute;
  inset: 36px 15px;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background-image: url("assets/app-phone-plants2.webp");
  background-size: auto calc(145% + var(--app-parallax-scale, 0%));
  background-position: calc(100% + var(--app-parallax-x, 0px)) calc(50% + var(--app-parallax-y, 0px));
  background-repeat: no-repeat;
  pointer-events: none;
}

.app-feature-list {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 25px 0 0 30px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.42;
}

.app-feature-list li {
  position: relative;
  padding-left: 24px;
}

.app-feature-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f7d970;
  box-shadow: 0 0 14px rgba(247, 217, 112, 0.42);
}

.app-copy .button {
  margin-top: 28px;
  margin-left: 30px;
}

.app-parallax-bg::before,
.app-parallax-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.app-parallax-bg::before {
  inset: 0 auto 0 0;
  width: 60%;
  background: linear-gradient(90deg, rgba(35, 33, 32, 0.6) 0%, rgba(35, 33, 32, 0.42) 54%, rgba(35, 33, 32, 0) 100%);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
}

.app-parallax-bg::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 33, 32, 0.38) 0%, rgba(35, 33, 32, 0.22) 34%, rgba(35, 33, 32, 0.06) 64%, rgba(35, 33, 32, 0) 100%),
    radial-gradient(circle at 18% 52%, rgba(35, 33, 32, 0.26), transparent 30rem);
}

.app-gallery {
  background: #fff;
  padding-top: 25px !important;
  padding-bottom: clamp(48px, 7vw, 84px) !important;
}

.app-gallery__inner {
  max-width: min(860px, var(--content-width));
  margin-inline: auto;
}

.app-gallery__viewer {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.app-gallery__image {
  display: block;
  width: min(100%, 360px);
  height: auto;
  max-height: min(720px, calc(100vh - 136px));
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(18, 20, 28, 0.16);
}

.app-gallery-lightbox,
.app-tools-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  padding: clamp(14px, 2.4vw, 28px);
  background: rgba(35, 33, 32, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.app-gallery-lightbox.is-open,
.app-tools-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.app-gallery-lightbox__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.84fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: min(1320px, calc(100vw - 40px));
  min-height: min(760px, calc(100vh - 48px));
  max-height: calc(100vh - 48px);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  overflow: auto;
  overscroll-behavior: contain;
}

.app-tools-lightbox__panel {
  position: relative;
  width: min(620px, calc(100vw - 40px));
  max-height: calc(100vh - 48px);
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  overflow: auto;
  overscroll-behavior: contain;
}

.app-tools-lightbox__header {
  max-width: 640px;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.app-tools-lightbox__header .eyebrow {
  color: var(--brand-gold);
}

.app-tools-lightbox__header h2 {
  margin: 6px 0 0;
  color: #000;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
}

.app-tools-lightbox__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vw, 24px);
  align-items: start;
}

.app-tools-group {
  padding-top: 18px;
  border-top: 1px solid rgba(174, 125, 23, 0.28);
}

.app-tools-group h3 {
  margin: 0 0 12px;
  color: var(--brand-gold);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.app-tools-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-tools-group--wide ul {
  grid-template-columns: 1fr;
}

.app-tools-group li {
  position: relative;
  padding-left: 16px;
  color: #171717;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.34;
}

.app-tools-group li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand-gold);
}

.app-gallery-lightbox__close,
.app-tools-lightbox__close {
  position: fixed;
  top: clamp(22px, 3.2vw, 42px);
  right: clamp(22px, 3.2vw, 42px);
  z-index: 1202;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.app-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(174, 125, 23, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-gold);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.app-gallery__arrow--prev {
  left: -26px;
}

.app-gallery__arrow--next {
  right: -26px;
}

.app-gallery__copy {
  max-width: 560px;
}

.app-gallery__copy .eyebrow {
  color: var(--brand-gold);
}

.app-gallery__copy p:not(.eyebrow) {
  margin-top: 18px;
  color: #000;
  font-size: clamp(20px, 1.5vw, 23px);
  font-weight: 400;
  line-height: 1.48;
}

.app-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(8, minmax(78px, 1fr));
  gap: 12px;
}

.app-gallery__tools-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.app-tools-trigger {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--brand-gold);
  cursor: pointer;
  font: 400 18px/1.2 var(--font-body);
  letter-spacing: 0;
  padding: 4px 0;
}

.app-tools-trigger::after {
  content: ">";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 180ms ease;
}

.app-tools-trigger:hover,
.app-tools-trigger:focus-visible {
  color: var(--brand-gold-dark);
  font-style: italic;
}

.app-tools-trigger:hover::after,
.app-tools-trigger:focus-visible::after {
  transform: translateX(5px);
}

.app-tools-trigger:focus-visible {
  outline: 2px solid rgba(174, 125, 23, 0.34);
  outline-offset: 4px;
}

.app-gallery__thumb {
  padding: 0;
  border: 1px solid rgba(174, 125, 23, 0.18);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.68;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.app-gallery__thumb:hover,
.app-gallery__thumb.is-active {
  border-color: rgba(174, 125, 23, 0.72);
  opacity: 1;
  transform: translateY(-2px);
}

.app-gallery__thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.split-copy {
  position: sticky;
  top: 124px;
}

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

.flow-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 680px);
  column-gap: 20px;
  row-gap: 10px;
}

.method .flow-item.reveal {
  opacity: 1;
  transform: none;
}

.flow-item span {
  grid-column: 1;
  grid-row: 1 / span 2;
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-size: 30px;
}

.method .flow-item span.method-check {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  place-items: center;
  border: 1px solid rgba(174, 125, 23, 0.58);
  border-radius: 7px;
  background: #fff;
  opacity: 1;
  overflow: hidden;
  transform: none;
}

.method .flow-item span.method-check::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--brand-gold);
  border-bottom: 2px solid var(--brand-gold);
  opacity: 0;
  transform: translate(-8px, 7px) rotate(-45deg) scale(0.35);
}

.method .flow-item.is-visible span.method-check {
  background: #fff;
}

.method .flow-item.is-visible span.method-check::before {
  opacity: 1;
  animation: checkPop 620ms cubic-bezier(0.16, 1, 0.3, 1) var(--check-delay, 420ms) both;
}

.method .flow-item:nth-child(2) {
  --check-delay: 680ms;
}

.method .flow-item:nth-child(3) {
  --check-delay: 940ms;
}

@keyframes checkPop {
  0% {
    opacity: 0;
    transform: translate(-8px, 7px) rotate(-45deg) scale(0.35);
  }

  55% {
    opacity: 1;
    transform: translateY(-1px) rotate(-45deg) scale(1.32);
  }

  78% {
    opacity: 1;
    transform: translateY(-1px) rotate(-45deg) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(-1px) rotate(-45deg) scale(1);
  }
}

.flow-item h3,
.flow-item p {
  grid-column: 2;
}

.flow-item p,
.faq p,
.proof-copy span {
  margin-top: 8px;
  color: var(--muted);
  max-width: 650px;
}

main > section.certification {
  position: relative;
  isolation: isolate;
  padding: 0 15px clamp(74px, 10vw, 128px);
}

.cert-copy,
.final-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(42px, 8vw, 92px);
  background:
    linear-gradient(90deg, rgba(50, 48, 47, 0.94), rgba(50, 48, 47, 0.68)),
    radial-gradient(circle at 78% 24%, rgba(174, 125, 23, 0.22), transparent 22rem),
    url("assets/leaf-background-compressed.webp"),
    linear-gradient(135deg, #32302f, #5b5958);
  background-size: cover;
  background-position: center;
  color: #fff;
}

.cert-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--full-card-width);
  margin-inline: auto;
  background: #f2efe6;
  color: var(--ink);
  padding-left: clamp(110px, 14vw, 180px);
  padding-right: max(42px, 48%);
  text-align: left;
  box-shadow: 0 22px 70px rgba(18, 20, 28, 0.08);
}

.cert-copy::before,
.final-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/leaf-background-compressed.webp") center / cover;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.final-inner::before {
  inset: -18% 0;
  background-position: center calc(50% + var(--final-parallax-y, 0px));
  background-size: cover;
  filter: blur(2px);
  opacity: 0.42;
  transform: scale(1.08);
}

.final-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 26%, rgba(247, 217, 112, 0.16), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(90deg, rgba(16, 18, 20, 0.2), transparent 28%, transparent 72%, rgba(16, 18, 20, 0.22));
  pointer-events: none;
}

.cert-copy::before {
  display: none;
}

.cert-copy::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 56%;
  background:
    linear-gradient(90deg, #f2efe6 0%, rgba(242, 239, 230, 0.86) 20%, rgba(242, 239, 230, 0.36) 46%, rgba(242, 239, 230, 0) 70%),
    url("assets/practitioner-phone-laptop-man.webp") center / cover no-repeat;
  opacity: 0.58;
  filter: blur(0.25px);
  pointer-events: none;
}

.cert-copy > *,
.final-inner > * {
  position: relative;
  z-index: 2;
}

.cert-copy p:not(.eyebrow) {
  max-width: 780px;
  margin-inline: 0;
  color: var(--muted);
}

.cert-copy h2 {
  font-size: 44px;
}

.cert-copy .hero-actions {
  justify-content: flex-start;
}

.cert-copy .button-secondary {
  color: var(--brand-gold);
}

.cert-copy .button-secondary:hover {
  color: var(--brand-gold-dark);
}

.cert-addendum {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: -78px auto 0;
  padding: clamp(102px, 8vw, 126px) clamp(30px, 5vw, 72px) clamp(28px, 3.4vw, 42px);
  border-radius: var(--radius);
  background: #dee5d2;
  box-shadow: 0 18px 50px rgba(18, 20, 28, 0.08);
  text-align: center;
}

.cert-addendum p {
  max-width: none;
  margin: 0 clamp(14px, 2.5vw, 38px);
  color: #000;
  font-size: clamp(20px, 1.45vw, 23px);
  font-weight: 400;
  line-height: 1.45;
}

.cert-addendum__underline {
  font-weight: 700;
}

.cert-trademark {
  display: grid;
  grid-template-columns: clamp(104px, 12vw, 142px) minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

.cert-trademark img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 110px;
  object-fit: contain;
}

.cert-trademark p {
  margin: 0;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
}

.cert-testimonials {
  margin-top: clamp(32px, 4vw, 48px);
}

.cert-testimonials h3 {
  margin: 0 0 20px;
  color: #000;
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.7vw, 38px);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

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

.cert-testimonials__cta {
  margin-top: 12px;
}

.cert-testimonials__cta-title {
  width: min(100%, 800px);
  margin: 35px auto 0;
  color: #000;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.08;
  text-align: center;
}

.cert-testimonial {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
  margin: 0;
  padding: clamp(8px, 1.5vw, 16px) clamp(18px, 2vw, 28px);
  text-align: left;
}

.cert-testimonial + .cert-testimonial {
  border-left: 1px solid rgba(0, 0, 0, 0.22);
}

.cert-testimonial img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 52% 32%;
}

.cert-testimonial img.testimonial-photo-rotate-right {
  transform: none;
}

.cert-testimonial__copy {
  min-width: 0;
}

.cert-testimonial blockquote {
  margin: 0;
  color: #000;
  font-size: clamp(20px, 1.45vw, 23px);
  line-height: 1.45;
}

.cert-testimonial figcaption {
  margin-top: 8px;
  color: #000;
  font-size: 13px;
  font-weight: 700;
}

.plan {
  display: block;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(247, 247, 244, 0.72) 14%, rgba(247, 247, 244, 0.78) 82%, rgba(255, 255, 255, 0) 100%),
    #fff;
  padding-top: 30px !important;
  padding-bottom: 100px !important;
  text-align: center;
}

.plan .split-copy {
  position: static;
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 58px);
}

.plan-icon {
  display: block;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.plan .split-copy h2 {
  margin-inline: auto;
  margin-bottom: -30px;
  text-align: center;
  color: var(--brand-gold);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.compact {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(91, 89, 88, 0.08);
  border-radius: 18px;
  max-width: 1180px;
  margin-inline: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 248, 245, 0.94)),
    #fff;
  box-shadow:
    0 28px 80px rgba(50, 48, 47, 0.08),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.compact::before {
  display: none;
}

.compact .flow-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 0;
  border-bottom: 0;
  padding: clamp(24px, 3vw, 34px) clamp(20px, 2.8vw, 32px) clamp(26px, 3vw, 36px);
  background: transparent;
  box-shadow: none;
  align-items: center;
}

.compact .flow-item + .flow-item {
  border-left: 1px solid rgba(91, 89, 88, 0.13);
}

.compact .flow-item h3,
.compact .flow-item p {
  grid-column: auto;
}

.compact .flow-item h3 {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(91, 89, 88, 0.13);
}

.compact .flow-item p {
  max-width: 280px;
  margin-inline: auto;
  margin-top: 0;
}

.plan-stack {
  text-align: left;
}

.compact .plan-stack {
  align-items: stretch;
}

.step-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.plan-stack h3 {
  text-align: center;
  color: var(--brand-gold);
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.feature-checklist {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  color: rgba(91, 89, 88, 0.64);
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.25;
  list-style: none;
}

.feature-checklist li {
  position: relative;
  min-height: 34px;
  padding: 8px 10px 8px 40px;
  border-bottom: 1px solid rgba(91, 89, 88, 0.09);
}

.feature-checklist li:nth-child(odd) {
  background: rgba(255, 255, 255, 0.54);
}

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

.feature-checklist li::before {
  content: "\2713";
  position: absolute;
  top: 7px;
  left: 10px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(174, 125, 23, 0.46);
  border-radius: 50%;
  color: var(--brand-gold);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.stack-button {
  align-self: center;
  min-height: 40px;
  margin-top: 28px;
  padding: 9px 20px;
  border-color: rgba(174, 125, 23, 0.74);
  color: var(--brand-gold);
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  text-shadow: none;
  white-space: nowrap;
}

.stack-button:hover {
  color: #fff;
  background: linear-gradient(180deg, #cfa344 0%, #cfa344 50%, #a97818 50%, #a97818 100%);
  box-shadow: 0 10px 24px rgba(18, 20, 28, 0.12);
}

.proof {
  align-items: stretch;
  background: #fff;
  width: 100%;
  max-width: var(--fit-width);
  margin-inline: auto;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.proof-panel {
  position: relative;
  display: grid;
  align-content: center;
  gap: clamp(18px, 2.5vw, 26px);
  min-height: 0;
  padding: clamp(20px, 4vw, 42px) 0 clamp(20px, 4vw, 42px) clamp(26px, 4vw, 48px);
  border-left: 2px solid var(--brand-gold);
  color: var(--ink);
}

.proof-panel::before,
.proof-panel::after {
  display: none;
}

.proof blockquote {
  position: relative;
  margin: 0;
  padding-bottom: clamp(18px, 2.5vw, 26px);
  border-bottom: 1px solid rgba(91, 89, 88, 0.12);
}

.proof blockquote:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.proof blockquote p {
  max-width: 520px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.16;
}

.proof cite {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.proof-copy {
  display: grid;
  align-content: center;
}

.proof-copy h2 {
  max-width: 620px;
  font-size: clamp(34px, 3.2vw, 40px);
}

.proof-copy .eyebrow {
  color: var(--brand-gold);
}

.proof-stats {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.proof-stats div {
  padding-top: 22px;
}

.proof-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
}

.app-store-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  font-size: clamp(34px, 3.6vw, 46px);
}

.app-store-rating .mini-stars {
  color: var(--brand-gold);
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 0.12em;
}

.proof-qr {
  display: flex;
  gap: 16px;
  align-items: center;
  width: fit-content;
  margin-top: 34px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(174, 125, 23, 0.22);
  border-radius: 16px;
  background: rgba(247, 247, 244, 0.72);
}

.proof-qr img {
  width: 92px;
  height: 92px;
  border-radius: 10px;
}

.proof-qr span {
  max-width: 150px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.media-logos {
  width: min(1120px, calc(100% - 30px));
  margin: 0 auto 50px;
  padding: 0 clamp(16px, 3vw, 44px);
  text-align: center;
}

.media-logos .eyebrow {
  margin: 0 0 22px;
  color: var(--brand-gold);
}

.media-logos__row {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(18px, 2.6vw, 34px);
  align-items: center;
  justify-content: center;
}

.media-logos__row a {
  display: grid;
  place-items: center;
  min-width: 96px;
  min-height: 42px;
  opacity: 0.78;
  transition:
    opacity 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.media-logos__row a:hover {
  opacity: 0.58;
  filter: brightness(1.18);
  transform: translateY(-1px);
}

.media-logos__row img {
  display: block;
  width: auto;
  max-width: clamp(88px, 10vw, 128px);
  max-height: 42px;
  filter: grayscale(1) brightness(0) contrast(1);
}

.media-logos__row a:nth-child(4) img {
  max-width: clamp(101px, 11.5vw, 147px);
  max-height: 48px;
}

.media-logos__row a:nth-child(5) img {
  max-width: clamp(114px, 13vw, 166px);
  max-height: 55px;
}

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

.faq {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.faq .split-copy h2 {
  font-size: 36px;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.faq-tab {
  appearance: none;
  min-height: 36px;
  border: 1px solid rgba(174, 125, 23, 0.74);
  border-radius: 4px;
  background: transparent;
  color: var(--brand-gold);
  box-shadow: none;
  cursor: pointer;
  font: 400 12px/1 var(--font-body);
  letter-spacing: 0;
  padding: 8px 14px;
  text-shadow: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.faq-tab:hover,
.faq-tab:focus-visible,
.faq-tab.is-active {
  border-color: rgba(174, 125, 23, 0.9);
  background: linear-gradient(180deg, #cfa344 0%, #cfa344 50%, #a97818 50%, #a97818 100%);
  box-shadow: 0 10px 24px rgba(18, 20, 28, 0.12);
  color: #fff;
}

.faq-tab:focus-visible {
  outline: 2px solid rgba(174, 125, 23, 0.34);
  outline-offset: 3px;
}

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

.faq-panels {
  min-width: 0;
}

.faq details {
  padding: 22px 0;
}

.faq p {
  font-size: 15px;
  line-height: 1.55;
}

.faq-cta {
  margin-top: 8px;
}

.faq-inline-list {
  display: grid;
  gap: 7px;
  max-width: 650px;
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.faq-table-wrap {
  max-width: 100%;
  margin-top: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.faq details > .faq-table-wrap:first-of-type {
  margin-top: 14px;
}

.faq-comparison {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.faq-comparison th,
.faq-comparison td {
  border: 0;
  padding: 7px 10px;
  text-align: left;
  vertical-align: middle;
}

.faq-comparison th {
  color: var(--brand-gold);
  font-weight: 700;
  background: transparent;
  line-height: 1.2;
}

.faq-comparison tbody tr:nth-child(even) {
  background: rgba(35, 33, 32, 0.045);
}

.faq-comparison th:nth-child(1),
.faq-comparison td:nth-child(1) {
  width: 52%;
}

.faq-comparison th:nth-child(2),
.faq-comparison td:nth-child(2) {
  width: 18%;
}

.faq-comparison td:nth-child(2),
.faq-comparison th:nth-child(2),
.faq-comparison td:nth-child(3),
.faq-comparison th:nth-child(3) {
  text-align: center;
}

.faq-comparison a,
.faq p a,
.faq-inline-list a {
  color: var(--brand-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq summary {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
  list-style: none;
}

.faq summary::before {
  content: "\25B8";
  display: inline-grid;
  width: 20px;
  flex: 0 0 20px;
  place-items: center;
  color: var(--brand-gold);
  font-size: 0.9em;
  line-height: 1;
  transform-origin: center;
  transition: transform 180ms ease;
}

.faq details[open] summary::before {
  transform: rotate(90deg);
}

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

main > section.final-cta {
  padding: clamp(74px, 10vw, 128px) 15px;
}

.final-inner {
  width: 100%;
  max-width: var(--full-card-width);
  margin-inline: auto;
  background:
    linear-gradient(90deg, rgba(33, 35, 34, 0.96), rgba(41, 44, 42, 0.78)),
    radial-gradient(circle at 72% 20%, rgba(174, 125, 23, 0.22), transparent 22rem),
    linear-gradient(135deg, #252725, #3f403d);
  background-position: center calc(50% + var(--final-parallax-y, 0px));
  box-shadow:
    0 30px 90px rgba(18, 20, 28, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(247, 217, 112, 0.12);
  text-align: center;
}

.final-inner h2 {
  margin-inline: auto;
}

.final-inner p {
  max-width: 800px;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, 0.76);
}

.final-inner .final-strong {
  max-width: 760px;
  color: #f7d970;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.final-inner .hero-actions {
  justify-content: center;
}

.footer {
  justify-content: center;
  width: 100%;
  padding: clamp(48px, 6vw, 72px) clamp(22px, 5vw, 64px) 38px;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 247, 244, 0.96)),
    #f7f7f4;
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(150px, 0.34fr) minmax(210px, 0.56fr) minmax(300px, 0.82fr);
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(174, 125, 23, 0.18);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-logo {
  width: fit-content;
}

.footer-logo .brand-icon {
  width: 30px;
  height: 30px;
}

.footer-logo .brand-text {
  font-size: clamp(21px, 1.9vw, 26px);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(91, 89, 88, 0.1);
  color: rgba(91, 89, 88, 0.68);
  font-size: 13px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--brand-gold);
  transition: color 180ms ease, transform 180ms ease;
}

.social-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-link[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.social-link:hover {
  color: var(--brand-gold-dark);
  transform: translateY(-1px);
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  width: 100%;
  max-width: 520px;
}

.footer-contact label {
  display: grid;
  gap: 7px;
  color: var(--brand-gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact input,
.footer-contact textarea {
  width: 100%;
  border: 1px solid rgba(91, 89, 88, 0.18);
  border-radius: 6px;
  padding: 9px 11px;
  color: var(--ink);
  background: rgba(247, 247, 244, 0.6);
  font: 400 15px/1.4 var(--font-body);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-contact textarea {
  resize: vertical;
}

.footer-contact input:focus,
.footer-contact textarea:focus {
  border-color: rgba(174, 125, 23, 0.64);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(174, 125, 23, 0.1);
}

.footer-contact__message,
.footer-contact__status,
.footer-contact .button {
  grid-column: 1 / -1;
}

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

.footer-contact__status {
  min-height: 20px;
  margin: 0;
  color: rgba(50, 48, 47, 0.7);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.footer-contact__status[data-state="success"] {
  color: #000;
}

.footer-contact__status[data-state="error"] {
  color: #9f332b;
}

.footer-contact .button {
  justify-self: start;
  min-height: 38px;
  border-color: rgba(174, 125, 23, 0.72);
  padding: 8px 18px;
  color: var(--brand-gold);
  background: transparent;
  box-shadow: none;
  text-shadow: none;
}

.footer-contact .button:hover {
  color: #fff;
  background: var(--brand-gold);
  box-shadow: none;
}

.footer-contact .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.footer-links {
  display: grid;
  gap: 11px;
  align-items: start;
  width: fit-content;
  padding-top: 0;
  border-top: 0;
}

.footer-links a {
  color: rgba(50, 48, 47, 0.78);
  line-height: 1.35;
}

.footer .footer-match-card {
  display: grid;
  gap: 9px;
  justify-items: start;
  width: 100%;
  max-width: 260px;
  border-radius: 8px;
  padding: 22px 18px 20px;
  color: #fff;
  background: var(--brand-gold);
  box-shadow: 0 16px 34px rgba(174, 125, 23, 0.2);
  text-decoration: none;
}

.footer-match-card__icon {
  display: block;
  width: 38px;
  height: 40px;
  margin-bottom: 3px;
  background: #fff;
  mask: url("assets/sbt-logo-icon-gradient.svg") center / contain no-repeat;
  -webkit-mask: url("assets/sbt-logo-icon-gradient.svg") center / contain no-repeat;
}

.footer-match-card strong {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.16;
}

.footer-match-card span {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.footer-match-card span:not(.footer-match-card__icon)::after {
  content: " \203A";
  display: inline-block;
  margin-left: 4px;
  font-size: 1.12em;
  line-height: 1;
}

.footer .footer-match-card:hover {
  color: #fff;
  background: #cfa344;
  transform: translateY(-1px);
}

.legal-main {
  padding: clamp(74px, 10vw, 128px) clamp(22px, 7vw, 104px);
}

.legal-shell {
  max-width: var(--content-width);
  margin-inline: auto;
}

.legal-hero {
  margin-bottom: clamp(36px, 6vw, 72px);
  padding-bottom: clamp(24px, 4vw, 44px);
  border-bottom: 1px solid rgba(174, 125, 23, 0.24);
}

.legal-hero h1 {
  max-width: none;
  color: #000;
  font-size: 36px;
}

.legal-hero .eyebrow {
  color: var(--brand-gold);
}

.legal-hero p {
  max-width: 780px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
}

.legal-content {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.legal-section {
  display: grid;
  gap: 12px;
}

.legal-section h2 {
  max-width: none;
  color: var(--ink);
  font-size: 22px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

body.modal-open {
  overflow: hidden;
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.download-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.download-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 23, 0.58);
}

.download-modal__panel {
  position: relative;
  width: min(100%, 430px);
  padding: clamp(30px, 5vw, 42px);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 246, 241, 0.96)),
    #fff;
  box-shadow: 0 30px 90px rgba(18, 20, 28, 0.26);
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.download-modal.is-open .download-modal__panel {
  transform: translateY(0) scale(1);
}

.download-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(50, 48, 47, 0.08);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.download-modal__close:hover {
  background: rgba(174, 125, 23, 0.16);
  color: var(--brand-gold);
}

.download-modal h2 {
  max-width: 320px;
  margin: 8px auto 20px;
  font-size: clamp(30px, 5vw, 42px);
}

.download-modal__qr {
  display: block;
  width: min(260px, 82vw);
  height: auto;
  margin: 0 auto 18px;
  border-radius: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .cert-testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-inline: auto;
  }

  .cert-testimonial {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
    padding: 24px 0;
  }

  .cert-testimonial + .cert-testimonial {
    border-top: 1px solid rgba(0, 0, 0, 0.22);
    border-left: 0;
  }

  .cert-testimonial__copy {
    max-width: 760px;
  }

  main > section.intro-testimonial {
    max-width: 900px;
  }
}

@media (max-width: 980px) {
  body {
    padding-top: 92px;
  }

  .site-nav {
    min-height: 92px;
    padding: 20px clamp(18px, 5vw, 42px) 14px;
  }

  .nav-links {
    display: none;
  }

  .intro,
  .intro-alt__content,
  .intro-alt-two__top,
  .intro-alt-two__bottom,
  .intro-alt-three__statement,
  .intro-alt-three__fit,
  .app-section,
  .method,
  .plan,
  .proof,
  .faq {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }

  .app-section::before {
    inset: 24px 15px;
  }

  .intro-alt__content {
    gap: 34px;
  }

  main > section.intro-testimonial {
    grid-template-columns: 96px minmax(0, 1fr);
    max-width: 820px;
  }

  .intro-alt__story {
    padding-left: 28px;
  }

  .intro-alt-two__mark {
    position: static;
  }

  .intro-alt-three__kicker {
    position: static;
  }

  .cert-copy {
    padding-left: clamp(42px, 8vw, 92px);
    padding-right: clamp(42px, 8vw, 92px);
  }

  .cert-copy::after {
    display: none;
  }

  .app-copy {
    margin-left: 0;
  }

  .app-parallax-bg {
    background-size: auto calc(140% + var(--app-parallax-scale, 0%));
    background-position: calc(100% + var(--app-parallax-x, 0px)) calc(50% + var(--app-parallax-y, 0px));
  }

  .proof,
  .faq {
    width: auto;
    max-width: 1180px;
    margin-inline: clamp(28px, 6vw, 54px);
    padding-inline: 0 !important;
  }

  .proof-qr {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .footer-brand,
  .footer-links,
  .footer-match-card {
    width: 100%;
  }

  .footer-match-card {
    max-width: none;
  }

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

  main > section:not(.hero-shell),
  .legal-main {
    padding-inline: clamp(28px, 6vw, 54px);
  }

  .hero-shell,
  main > section.certification,
  main > section.final-cta {
    padding-inline: clamp(18px, 4vw, 34px);
  }

  .faq {
    width: auto;
  }
}

@media (max-width: 680px) {
  p,
  .intro-copy p:not(.intro-strong),
  .intro-alt-two__problem p:not(.intro-strong),
  .intro-alt-three__statement p:not(.intro-strong),
  .intro-alt-three__sequence p,
  .benefit-blur {
    font-weight: 400;
  }

  .site-nav {
    min-height: 78px;
    padding: 16px 15px 12px;
  }

  body {
    padding-top: 78px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .brand-text {
    font-size: clamp(19px, 5.4vw, 24px);
  }

  .site-nav.nav-scrolled {
    min-height: 62px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--brand-gold);
    cursor: pointer;
    box-shadow: none;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .site-nav .nav-links {
    position: absolute;
    top: calc(100% - 1px);
    right: 15px;
    display: grid;
    width: min(250px, calc(100vw - 30px));
    max-height: 0;
    overflow: hidden;
    gap: 0;
    border: 1px solid rgba(174, 125, 23, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(18, 20, 28, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: max-height 180ms ease, opacity 180ms ease;
  }

  .site-nav.nav-open .nav-links {
    max-height: 480px;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-links > a,
  .site-nav .nav-dropdown__trigger {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 12px 14px;
    text-align: left;
  }

  .site-nav .nav-dropdown {
    margin: 0;
    padding: 0;
  }

  .site-nav .nav-dropdown__menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0 0 8px;
    border: 0;
    border-radius: 0;
    background: rgba(247, 247, 244, 0.72);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none !important;
    transition: opacity 180ms ease;
  }

  .site-nav .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }

  .site-nav .nav-dropdown__menu a {
    padding: 10px 14px;
    white-space: normal;
    transform: none !important;
    transition: background 180ms ease, color 180ms ease;
  }

  .site-nav .nav-dropdown__menu a:hover {
    transform: none !important;
  }

  .footer {
    padding-inline: 20px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    max-width: none;
    justify-self: stretch;
  }

  .footer-links {
    gap: 10px;
  }

  .faq {
    margin-inline: 20px;
    padding-inline: 0 !important;
  }

  .proof {
    margin-inline: 20px;
    padding-bottom: 0 !important;
    padding-inline: 0 !important;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    border-radius: 24px;
    background: #232120;
  }

  .hero-image {
    position: relative;
    inset: auto;
    height: clamp(230px, 40vh, 330px);
    margin-bottom: -72px;
    background: url("assets/hero-woman-hand-heart.webp") center top / cover;
  }

  .hero-image::before {
    inset: auto 0 0 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(35, 33, 32, 0) 0%, rgba(35, 33, 32, 0.04) 18%, rgba(35, 33, 32, 0.18) 36%, rgba(35, 33, 32, 0.52) 62%, rgba(35, 33, 32, 0.86) 82%, #232120 100%);
    opacity: 1;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-image::after {
    inset: 0;
    background: linear-gradient(180deg, rgba(35, 33, 32, 0.06) 0%, rgba(35, 33, 32, 0.16) 100%);
  }

  .hero-content {
    display: grid;
    justify-items: center;
    box-sizing: border-box;
    width: 100%;
    margin-top: 0;
    margin-inline: auto;
    min-height: 0;
    padding: 0 20px 30px;
    align-content: start;
    background: linear-gradient(180deg, rgba(35, 33, 32, 0) 0%, rgba(35, 33, 32, 0.84) 38px, #232120 82px);
    text-align: center;
  }

  .hero-brand-lockup {
    gap: 6px;
    margin-bottom: 18px;
    transform: translateY(-22px);
  }

  .hero-brand-title {
    gap: 8px;
  }

  .hero-brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-brand-name {
    font-size: 26px;
  }

  .hero-brand-lockup .hero-modality {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.2;
  }

  .hero-modality {
    padding: 12px 0 0;
  }

  .hero h1 {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(28px, 8vw, 34px);
    text-align: center;
  }

  .hero h1 .hero-title-small {
    margin-top: -15px;
    font-size: 24px;
    white-space: normal;
  }

  .hero h1 .hero-title-large {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .hero .eyebrow {
    margin: 0;
    font-size: 14px;
  }

  .hero-content p:not(.eyebrow):not(.hero-modality) {
    font-size: 14px;
  }

  .hero-actions {
    width: min(320px, 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  main > section:not(.hero-shell),
  .certification,
  .final-cta,
  .legal-main {
    padding: 68px 20px;
  }

  .intro-alt__content {
    display: block;
  }

  .intro-copy {
    padding-inline: 22px;
  }

  .intro-copy h2 {
    padding-top: 20px;
  }

  .intro-copy h2 span {
    display: block;
    padding-top: 20px;
    font-size: 28px;
  }

  .intro-copy p.intro-strong {
    width: min(300px, 100%);
    margin: 30px auto 0;
    font-size: 22px;
    text-align: center;
  }

  main > section.intro-testimonial {
    grid-template-columns: 1fr;
    justify-items: center;
    margin: 50px 20px 22px;
    padding: 30px 22px;
  }

  .intro-testimonial__person {
    text-align: center;
  }

  .intro-testimonial__person img {
    width: 64px;
    height: 64px;
  }

  .intro-testimonial blockquote {
    max-width: 620px;
    font-size: 19px;
    text-align: center;
  }

  .intro-testimonial cite {
    text-align: center;
  }

  .intro-alt__story {
    margin-bottom: 30px;
    padding-left: 22px;
  }

  .intro-alt__fit {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .intro-alt-two__top,
  .intro-alt-two__bottom,
  .intro-alt-two__list {
    grid-template-columns: 1fr;
  }

  .intro-alt-two__problem {
    padding: 24px 22px;
  }

  .intro-alt-two__list p,
  .intro-alt-two__list p:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .intro-alt-three__statement,
  .intro-alt-three__fit {
    grid-template-columns: 1fr;
  }

  .intro-alt-three {
    margin-bottom: 0;
    padding-bottom: 0 !important;
  }

  .intro-alt-three__sequence p {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .app-section {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin: 68px 20px;
    padding: 0 0 21px !important;
    border-radius: 24px;
    background: #332c25;
  }

  .app-section::before {
    inset: 0;
    border-radius: 24px;
    background: #332c25;
  }

  .app-parallax-bg {
    position: relative;
    inset: auto;
    height: clamp(210px, 38vh, 310px);
    flex: 0 0 auto;
    border-radius: 24px 24px 0 0;
    background-size: 351% auto;
    background-position: calc(100% + 50px) -80px;
  }

  .app-parallax-bg::before {
    display: none;
  }

  .app-parallax-bg::after {
    inset: auto 0 0;
    height: 100%;
    background:
      linear-gradient(180deg, rgba(51, 44, 37, 0) 0%, rgba(51, 44, 37, 0.12) 30%, rgba(51, 44, 37, 0.72) 68%, #332c25 100%);
  }

  .app-copy {
    margin-left: 0;
    padding: 4px 20px 40px;
  }

  .app-copy .eyebrow {
    margin-top: -30px;
  }

  .app-copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .app-copy .button,
  .app-feature-list {
    margin-left: 0;
  }

  .app-copy .button {
    display: flex;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }

  .app-gallery {
    margin-inline: 20px;
    padding: 25px 0 58px !important;
  }

  .app-gallery__inner {
    max-width: none;
  }

  .app-gallery__viewer {
    min-height: 0;
    padding-inline: 46px;
  }

  .app-gallery__image {
    width: min(100%, 260px);
    max-height: min(52vh, 540px);
    border-radius: 22px;
  }

  .app-gallery__arrow {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .app-gallery__arrow--prev {
    left: 0;
  }

  .app-gallery__arrow--next {
    right: 0;
  }

  .app-gallery__copy {
    max-width: none;
    text-align: center;
  }

  .app-gallery__copy p:not(.eyebrow) {
    font-size: 18px;
  }

  .app-gallery-lightbox,
  .app-tools-lightbox {
    padding: 56px 14px 18px;
  }

  .app-gallery-lightbox__panel {
    grid-template-columns: 1fr;
    gap: 20px;
    width: calc(100vw - 28px);
    min-height: calc(100vh - 74px);
    max-height: calc(100vh - 74px);
    padding: 20px 18px;
  }

  .app-tools-lightbox__panel {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 74px);
    padding: 22px 18px;
    border-radius: 22px;
  }

  .app-tools-lightbox__header {
    margin-bottom: 20px;
  }

  .app-tools-lightbox__header h2 {
    font-size: 34px;
    line-height: 1;
  }

  .app-tools-lightbox__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .app-tools-group {
    padding-top: 14px;
  }

  .app-tools-group h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .app-tools-group ul,
  .app-tools-group--wide ul {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .app-tools-group li {
    font-size: 15px;
    line-height: 1.3;
  }

  .app-gallery-lightbox__close,
  .app-tools-lightbox__close {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .app-gallery-lightbox .app-gallery__copy h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .app-gallery-lightbox .app-gallery__copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.4;
  }

  .app-gallery__thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 24px) / 3);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    margin-top: -50px;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .app-gallery__thumb {
    scroll-snap-align: start;
  }

  .proof-copy {
    order: 1;
  }

  .proof {
    padding-top: 0 !important;
  }

  .proof-panel {
    order: 2;
  }

  .flow-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .flow-item span {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 24px;
  }

  .flow-item h3,
  .flow-item p {
    grid-column: 2;
  }

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

  .compact::before {
    display: none;
  }

  .compact .flow-item {
    border-right: 0;
    border-bottom: 1px solid rgba(91, 89, 88, 0.12);
  }

  .compact .flow-item + .flow-item {
    border-left: 0;
  }

  .compact .flow-item:last-child {
    border-bottom: 0;
  }

  .compact .flow-item span {
    grid-column: auto;
    grid-row: auto;
    width: auto;
    height: auto;
  }

  .compact .flow-item h3,
  .compact .flow-item p {
    grid-column: auto;
  }

  .inline-list p {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .inline-list img {
    width: 42px;
    height: 42px;
  }

  .media-logos {
    width: auto;
    margin: 0 20px 42px;
    padding: 0;
  }

  .media-logos__row {
    flex-wrap: wrap;
    gap: 18px 22px;
  }

  .media-logos__row a {
    min-width: 86px;
  }

  .media-logos__row img {
    max-width: 104px;
    max-height: 34px;
  }

  .cert-copy,
  .final-inner {
    border-radius: 24px;
    padding: 38px 22px;
  }

  main > section.certification {
    padding-top: 0;
    padding-bottom: 0;
  }

  .cert-copy {
    padding-top: 336px;
    padding-bottom: 38px;
    background: #f2efe6;
  }

  .cert-copy h2 {
    margin-top: -50px;
  }

  .cert-copy::after {
    display: block;
    inset: -2px 0 auto 0;
    width: 100%;
    height: 372px;
    background:
      linear-gradient(180deg, rgba(242, 239, 230, 0) 0%, rgba(242, 239, 230, 0.08) 36%, rgba(242, 239, 230, 0.58) 72%, #f2efe6 100%),
      url("assets/practitioner-phone-laptop-man.webp") center top / cover no-repeat;
    opacity: 1;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .cert-addendum {
    width: 100%;
    margin-top: -56px;
    padding: 82px 20px 24px;
    border-radius: 24px;
  }

  .cert-addendum p {
    margin-inline: 0;
    font-size: 18px;
    line-height: 1.42;
    text-align: center;
    text-align-last: center;
  }

  .cert-trademark {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  .cert-trademark img {
    width: 112px;
    max-height: 82px;
    margin-inline: auto;
  }

  .cert-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .cert-testimonial + .cert-testimonial {
    border-top: 1px solid rgba(0, 0, 0, 0.22);
    border-left: 0;
  }

  .cert-testimonials h3 {
    text-align: center;
  }

  .cert-testimonial {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 18px 0;
  }

  .cert-testimonial img {
    width: 50px;
    height: 50px;
  }

  .cert-testimonial blockquote {
    font-size: 14px;
    line-height: 1.35;
  }

  .cert-testimonial figcaption {
    margin-top: 8px;
    font-size: 13px;
  }

  .plan {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .faq {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .faq .split-copy h2 {
    font-size: 28px;
  }

  .faq-tabs {
    gap: 8px;
    margin-top: 16px;
  }

  .faq-tab {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 11px;
  }

  .faq summary {
    font-size: 14px;
  }

  .faq details {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .faq-table-wrap {
    overflow-x: visible;
  }

  .faq-comparison {
    min-width: 0;
    font-size: 10px;
    line-height: 1.18;
  }

  .faq-comparison th,
  .faq-comparison td {
    padding: 4px 5px;
  }

  .faq-comparison th:nth-child(1),
  .faq-comparison td:nth-child(1) {
    width: 46%;
  }

  .faq-comparison th:nth-child(2),
  .faq-comparison td:nth-child(2) {
    width: 15%;
  }

  .faq-comparison th:nth-child(3),
  .faq-comparison td:nth-child(3) {
    width: 39%;
  }

  main > section.final-cta {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .final-inner .final-strong span {
    display: block;
  }
}
