:root {
  --violet: #28138a;
  --violet-deep: #190958;
  --violet-soft: #ded8f4;
  --cream: #fbf6ed;
  --paper: #fffdf8;
  --sand: #eee2d0;
  --sand-deep: #d6c2a5;
  --gold: #987126;
  --ink: #25212b;
  --muted: #665f69;
  --line: rgba(37, 33, 43, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --shell: 1180px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Arial, Helvetica, sans-serif;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--violet-soft);
  color: var(--violet-deep);
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

:focus-visible {
  outline: 3px solid #d3a841;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 2px;
  background: var(--paper);
  color: var(--violet-deep);
  padding: 10px 14px;
  font-weight: 700;
}

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

.shell {
  width: min(calc(100% - 36px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.section--violet {
  position: relative;
  overflow: hidden;
  background: var(--violet);
  color: #fff;
}

.section--violet::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 68%, rgba(255, 255, 255, 0.045) 68% 69%, transparent 69%),
    radial-gradient(circle at 90% 10%, rgba(210, 183, 112, 0.19), transparent 32%);
  content: "";
  pointer-events: none;
}

.section--violet > .shell {
  position: relative;
}

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

.section--ink {
  background: #201d25;
  color: #fff;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.275rem, 8.05vw, 5.18rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

h1 em {
  display: inline-block;
  color: var(--violet);
  font-weight: 400;
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.715rem, 4.41vw, 3.64rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.015rem, 2.1vw, 1.4rem);
  line-height: 1.12;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--violet);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: #dbc68d;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--violet);
  border-radius: 2px;
  background: var(--violet);
  color: #fff;
  padding: 13px 21px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--violet-deep);
  background: var(--violet-deep);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.71rem;
}

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

.button--outline:hover {
  color: #fff;
}

.button--disabled,
.button--disabled:hover {
  cursor: not-allowed;
  border-color: #cfc7bd;
  background: #d8d1c8;
  color: #625c63;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid currentColor;
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.large-copy {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.35;
}

.small-note {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.small-note--light {
  color: rgba(255, 255, 255, 0.62);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(40, 19, 138, 0.13);
  background: rgba(251, 246, 237, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(34, 21, 45, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: block;
  width: 64px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.menu-button {
  display: none;
  min-width: 54px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.js .menu-button {
  display: inline-flex;
}

.menu-button__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-button__icon {
  position: relative;
  width: 18px;
  height: 14px;
}

.menu-button__icon i {
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease;
}

.menu-button__icon i:first-child {
  top: 3px;
}

.menu-button__icon i:last-child {
  top: 10px;
}

.menu-button[aria-expanded="true"] .menu-button__icon i:first-child {
  top: 7px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon i:last-child {
  top: 7px;
  transform: rotate(-45deg);
}

.site-nav {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
}

.js .site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  visibility: hidden;
  transform: translateY(-8px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 32px rgba(34, 21, 45, 0.12);
  padding: 14px 18px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.js .site-nav.is-open {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav > a:not(.button) {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid rgba(37, 33, 43, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 8vw, 112px) 0 clamp(82px, 10vw, 138px);
}

.hero::after {
  position: absolute;
  right: -9vw;
  bottom: 8%;
  width: 34vw;
  height: 34vw;
  min-width: 280px;
  min-height: 280px;
  border: 1px solid rgba(40, 19, 138, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 52px;
}

.hero__copy {
  align-self: center;
}

.hero h1 {
  max-width: 10.5ch;
}

.hero__lead {
  max-width: 36rem;
  margin: 30px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.35;
}

.hero__intro {
  max-width: 38rem;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero__actions {
  display: grid;
  gap: 20px;
  align-items: center;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.hero__facts li:not(:last-child)::after {
  margin-left: 18px;
  color: var(--gold);
  content: "•";
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 62%;
  height: 60%;
  border: 1px solid rgba(40, 19, 138, 0.35);
  content: "";
}

.hero__figure {
  position: relative;
  margin: 0;
}

.hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 48%;
}

.hero__figure figcaption {
  position: relative;
  width: min(88%, 350px);
  margin: -28px 0 0 auto;
  border-left: 4px solid #b58c35;
  background: var(--violet);
  color: rgba(255, 255, 255, 0.78);
  padding: 17px 20px;
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero__figure figcaption span {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.hero__margin-note {
  display: none;
}

.recognition {
  background: var(--paper);
}

.recognition__grid {
  display: grid;
  gap: 50px;
}

.recognition__heading > p:last-child {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--muted);
}

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

.symptom-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
  line-height: 1.35;
}

.symptom-list span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pivot__grid {
  display: grid;
  gap: 42px;
}

.pivot h2 {
  color: #fff;
}

.pivot__copy > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  line-height: 1.45;
}

.takeaways {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--line-light);
}

.takeaways p {
  display: grid;
  gap: 4px;
  margin: 0;
  border-bottom: 1px solid var(--line-light);
  padding: 18px 0;
}

.takeaways strong {
  color: #dec889;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.takeaways span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

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

.objection__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.art-frame {
  position: relative;
  margin: 0;
  padding: 13px;
  border: 1px solid var(--sand-deep);
  background: var(--paper);
}

.art-frame::after {
  position: absolute;
  right: 32px;
  bottom: -23px;
  width: 1px;
  height: 72px;
  background: var(--gold);
  content: "";
}

.art-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.objection__copy h2 {
  margin-bottom: 30px;
}

.objection__copy > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
}

.line-list,
.check-list,
.dash-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

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

.line-list li {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-weight: 700;
}

.objection__copy .text-link {
  margin-top: 16px;
}

.section-heading {
  display: grid;
  gap: 26px;
  margin-bottom: 52px;
}

.fit__grid {
  display: grid;
  gap: 18px;
}

.fit__column {
  border-top: 3px solid var(--violet);
  background: rgba(255, 253, 248, 0.74);
  padding: 28px 24px;
}

.fit__column--quiet {
  border-top-color: #756d77;
  background: rgba(255, 253, 248, 0.42);
}

.fit__label {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.35;
}

.check-list,
.dash-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.check-list li,
.dash-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--violet);
  font-weight: 900;
  content: "✓";
}

.dash-list li::before {
  position: absolute;
  top: 0;
  left: 4px;
  color: #756d77;
  content: "—";
}

.fit__column .small-note {
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.method {
  background: var(--paper);
}

.method__intro {
  display: grid;
  gap: 25px;
  margin-bottom: 60px;
}

.method__intro > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.method__steps li {
  position: relative;
  min-height: 250px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.method__index {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.method__word {
  margin: 38px 0 3px;
  color: var(--violet);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.method__steps h3 {
  margin-bottom: 18px;
}

.method__steps li > p:last-child {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
}

.outcomes__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.outcomes__image {
  position: relative;
  width: min(80%, 430px);
  margin-inline: auto;
}

.outcomes__image::before {
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(211, 168, 65, 0.62);
  content: "";
}

.outcomes__image img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.85);
}

.outcomes h2 {
  margin-bottom: 42px;
}

.comparison {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison > div {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 17px 0;
}

.comparison span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.comparison strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 1.35;
}

.outcomes .small-note {
  margin: 23px 0 0;
}

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

.about__grid {
  display: grid;
  gap: 52px;
  align-items: center;
}

.about__copy h2 {
  margin-bottom: 32px;
}

.about__copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.about__copy .button {
  margin-top: 14px;
}

.about__portrait {
  position: relative;
  margin: 0;
  padding-left: 26px;
}

.about__portrait::before {
  position: absolute;
  top: 14%;
  bottom: 14%;
  left: 0;
  width: 1px;
  background: var(--gold);
  content: "";
}

.about__portrait img {
  width: 100%;
  max-height: 710px;
  object-fit: cover;
  object-position: center 25%;
}

.about__portrait figcaption {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.registration__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.registration__copy h2 {
  margin-bottom: 30px;
}

.registration__copy > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.registration__facts {
  display: grid;
  margin: 38px 0 0;
  border-top: 1px solid var(--line-light);
}

.registration__facts > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line-light);
  padding: 13px 0;
}

.registration__facts dt {
  color: #dec889;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.registration__facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.registration__mount {
  width: 100%;
  min-width: 0;
  max-width: 560px;
  justify-self: center;
}

.registration__mount iframe {
  display: block;
  width: 100%;
  max-width: 523px;
  min-height: 816px;
  margin-inline: auto;
  border: 0;
  background: #fff;
}

.webinaris-frame-shell {
  overflow: hidden;
  border-top: 5px solid #b58c35;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(15, 5, 55, 0.2);
  padding: 12px clamp(4px, 1.4vw, 12px) 4px;
}

.webinaris-frame {
  width: 100%;
  height: auto;
  margin: 0;
  text-align: center;
}

.registration__placeholder {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-top: 5px solid #b58c35;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 6vw, 54px);
}

.registration__placeholder::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(40, 19, 138, 0.15);
  border-radius: 50%;
  content: "";
}

.status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #b58c35;
}

.registration__kicker {
  display: inline;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.registration__placeholder h3 {
  max-width: 15ch;
  margin: 38px 0 20px;
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
}

.registration__placeholder > p:not(.registration__kicker) {
  max-width: 440px;
  color: var(--muted);
}

.registration__placeholder .button {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.site-footer {
  border-top: 1px solid rgba(40, 19, 138, 0.11);
  background: var(--paper);
  padding: 40px 0;
}

.footer__grid {
  display: grid;
  gap: 26px;
  align-items: end;
}

.footer__brand {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer__brand img {
  width: 66px;
  flex: 0 0 auto;
}

.footer__brand p,
.footer__copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 0.8rem;
  font-weight: 700;
}

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

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.legal-header__inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-header .brand {
  width: 62px;
}

.legal-back {
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-main {
  padding: clamp(62px, 10vw, 112px) 0;
}

.legal-main article {
  max-width: 800px;
}

.legal-main h1 {
  margin-bottom: 36px;
  font-size: clamp(2.1rem, 6.3vw, 4.2rem);
}

.legal-main h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.085rem, 2.8vw, 1.54rem);
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-notice {
  border-left: 5px solid var(--gold);
  background: var(--paper);
  padding: 24px;
}

.legal-notice strong {
  display: block;
  margin-bottom: 8px;
  color: var(--violet-deep);
}

.legal-placeholder {
  margin-top: 36px;
  border: 1px dashed rgba(40, 19, 138, 0.34);
  background: rgba(255, 255, 255, 0.42);
  padding: 24px;
}

.legal-placeholder ul {
  padding-left: 20px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease var(--delay, 0ms), transform 560ms ease var(--delay, 0ms);
}

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

@media (min-width: 640px) {
  .shell {
    width: min(calc(100% - 64px), var(--shell));
  }

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

  .fit__grid {
    grid-template-columns: 1.12fr 0.88fr;
  }

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

  .method__steps li {
    padding: 30px;
  }

  .method__steps li:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .comparison > div {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 30px;
  }

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

  .footer__copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .header-inner {
    min-height: 86px;
  }

  .brand {
    width: 72px;
  }

  .js .menu-button {
    display: none;
  }

  .site-nav,
  .js .site-nav,
  .js .site-nav.is-open {
    position: static;
    display: flex;
    visibility: visible;
    align-items: center;
    gap: 24px;
    transform: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a:not(.button) {
    min-height: 42px;
    border: 0;
    font-size: 0.76rem;
  }

  .site-nav > a:not(.button):hover {
    color: var(--violet);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.82fr);
    gap: 7vw;
    align-items: center;
  }

  .hero__visual {
    margin-top: 26px;
  }

  .hero__figure img {
    aspect-ratio: 0.92 / 1;
    object-position: 53% 50%;
  }

  .hero__margin-note {
    position: absolute;
    top: 10px;
    right: -42px;
    display: block;
    margin: 0;
    color: var(--violet);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(100%);
    transform-origin: right top;
  }

  .recognition__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 9vw;
  }

  .recognition__heading {
    position: sticky;
    top: 130px;
    align-self: start;
  }

  .pivot__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 9vw;
    align-items: start;
  }

  .objection__grid {
    grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1fr);
    gap: 8vw;
  }

  .section-heading {
    grid-template-columns: 0.5fr 1fr;
    align-items: start;
  }

  .section-heading .eyebrow {
    padding-top: 10px;
  }

  .fit__column {
    padding: 40px;
  }

  .method__intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    gap: 8vw;
    align-items: end;
  }

  .method__intro .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -8px;
  }

  .method__steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .method__steps li,
  .method__steps li:nth-child(odd) {
    min-height: 390px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 24px;
  }

  .method__steps li:last-child {
    border-right: 0;
  }

  .outcomes__grid {
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.1fr);
    gap: 9vw;
  }

  .about__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
    gap: 9vw;
  }

  .registration__grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 8vw;
  }

  .footer__grid {
    grid-template-columns: 1fr auto auto;
    gap: 48px;
  }

  .footer__copyright {
    grid-column: auto;
  }
}

@media (min-width: 1180px) {
  .hero__copy {
    margin-left: -18px;
  }

  .method__steps li {
    padding-inline: 32px;
  }
}

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

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

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