:root {
  --purple: #392248;
  --purple-deep: #281532;
  --purple-soft: #5a376a;
  --mint: #63d4bd;
  --mint-bright: #8ee4d2;
  --mint-pale: #dff7f1;
  --cream: #faf7f0;
  --lilac: #f1ecf4;
  --white: #ffffff;
  --ink: #2f2234;
  --muted: #6f6573;
  --line: rgba(57, 34, 72, 0.16);
  --display: "Fraunces", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 96px));
  --header-height: 90px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--purple-deep);
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

::selection {
  background: var(--mint);
  color: var(--purple-deep);
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding-block: clamp(96px, 10vw, 156px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--purple-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  line-height: 0.98;
}

h2 em {
  color: var(--purple-soft);
  font-style: italic;
  font-weight: 600;
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: var(--shell);
  height: var(--header-height);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  color: var(--purple-deep);
}

.site-header.is-scrolled {
  position: fixed;
  top: 12px;
  width: min(1180px, calc(100vw - 32px));
  height: 68px;
  padding-inline: 24px;
  border: 1px solid rgba(57, 34, 72, 0.08);
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.98);
  box-shadow: 0 10px 35px rgba(40, 21, 50, 0.08);
  color: var(--purple);
  animation: header-in 350ms ease both;
}

@keyframes header-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.site-header > .brand {
  z-index: 102;
}

.brand em {
  font-style: normal;
  font-weight: 400;
  opacity: 0.82;
}

.brand-mark {
  width: 40px;
  height: 40px;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand-mark .brand-seed {
  fill: currentColor;
  stroke: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a:not(.nav-cta):not(.nav-whatsapp) {
  position: relative;
}

.site-nav a:not(.nav-cta):not(.nav-whatsapp)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:not(.nav-cta):not(.nav-whatsapp):hover::after,
.site-nav a:not(.nav-cta):not(.nav-whatsapp):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-whatsapp {
  display: none;
}

.nav-cta {
  --cta-x: 50%;
  --cta-y: 50%;
  --cta-size: 290px;
  position: relative;
  isolation: isolate;
  display: inline-grid;
  min-width: 126px;
  padding: 11px 18px;
  overflow: hidden;
  border: 1px solid rgba(40, 21, 50, 0.42);
  border-radius: 999px;
  place-items: center;
  transition:
    border-color 350ms ease,
    color 350ms ease;
}

.nav-cta::before {
  position: absolute;
  z-index: -1;
  top: var(--cta-y);
  left: var(--cta-x);
  width: var(--cta-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--purple);
  content: "";
  transform: translate3d(-50%, -50%, 0) scale(0);
  transition: transform 650ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.nav-cta-label {
  position: relative;
  z-index: 1;
}

.is-scrolled .nav-cta {
  border-color: var(--purple);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--purple);
  color: var(--white);
}

.nav-cta:hover::before,
.nav-cta:focus-visible::before {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
}

/* Keep the full navigation balanced on compact laptops and split-screen windows. */

@media (min-width: 841px) and (max-width: 1220px) {
  :root {
    --shell: min(calc(100vw - 48px), 1100px);
    --header-height: 82px;
  }

  .site-header.is-scrolled {
    width: min(1100px, calc(100vw - 32px));
    height: 64px;
    padding-inline: clamp(18px, 2vw, 22px);
  }

  .site-header .brand {
    gap: 8px;
    font-size: clamp(1.08rem, 1.7vw, 1.22rem);
    white-space: nowrap;
  }

  .site-header .brand-mark {
    width: clamp(34px, 3.4vw, 38px);
    height: clamp(34px, 3.4vw, 38px);
    flex: 0 0 auto;
  }

  .site-nav {
    gap: clamp(14px, 2vw, 24px);
    font-size: clamp(0.78rem, 1.15vw, 0.88rem);
    white-space: nowrap;
  }

  .nav-cta {
    min-width: clamp(108px, 11vw, 122px);
    padding: 10px clamp(14px, 1.6vw, 17px);
  }
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--mint);
  color: var(--purple-deep);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' width='1024' height='1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' x='0' y='0' width='100%25' height='100%25' filterRes='1024'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.42' numOctaves='4' seed='8' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  background-size: 512px 512px;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(40, 21, 50, 0.15);
  border-radius: 50%;
}

.hero-orbit-one {
  top: -37vw;
  right: -13vw;
  width: 78vw;
  height: 78vw;
}

.hero-orbit-two {
  right: 5vw;
  bottom: -32vw;
  width: 58vw;
  height: 58vw;
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 740px;
  padding-top: 130px;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  align-items: center;
  gap: 22px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding-bottom: 60px;
}

.hero-eyebrow {
  margin-bottom: 24px;
  color: var(--purple-soft);
  animation: rise-in 700ms 100ms ease both;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 36px;
  font-size: clamp(4rem, 6.4vw, 7.7rem);
  letter-spacing: -0.035em;
  line-height: 0.94;
  animation: rise-in 850ms 170ms cubic-bezier(.2, .7, .2, 1) both;
}

.hero-title-main,
.hero-title-accent {
  display: block;
}

.hero-title-accent {
  color: var(--cream);
  font-style: italic;
}

.hero-intro {
  max-width: 570px;
  margin-bottom: 38px;
  color: rgba(40, 21, 50, 0.76);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  animation: rise-in 800ms 280ms ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  animation: rise-in 800ms 380ms ease both;
}

.action-label-short {
  display: none;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.action-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button .action-icon {
  transition: transform 180ms ease;
}

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

.button:hover .action-icon,
.button:focus-visible .action-icon {
  transform: translate(2px, -2px);
}

.button-mint {
  background: var(--mint);
  color: var(--purple-deep);
  box-shadow: 0 14px 40px rgba(8, 28, 24, 0.16);
}

.button-mint:hover,
.button-mint:focus-visible {
  background: var(--mint-bright);
}

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

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

.text-link {
  display: inline-flex;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-weight: 700;
  line-height: 1.3;
}

.text-link .action-icon {
  transition: transform 180ms ease;
}

.text-link:hover .action-icon,
.text-link:focus-visible .action-icon {
  transform: translateY(3px);
}

.text-link-light {
  color: var(--white);
}

.hero-art {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  justify-self: end;
  transform: translateY(15px);
  animation: art-in 1100ms 260ms cubic-bezier(.2, .7, .2, 1) both;
  will-change: transform;
}

@keyframes art-in {
  from { opacity: 0; transform: translate(30px, 45px) scale(.96); }
  to { opacity: 1; transform: translate(0, 15px) scale(1); }
}

.hero-blob {
  fill: var(--purple);
}

.hero-path {
  fill: none;
  stroke: rgba(142, 228, 210, 0.42);
  stroke-dasharray: 3 15;
  stroke-linecap: round;
  stroke-width: 5;
}

.plant path,
.plant circle,
.hero-house path,
.hero-house circle {
  fill: none;
  stroke: var(--mint-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.hero-house path:first-child {
  fill: var(--cream);
  stroke: none;
}

.hero-house path:nth-child(2) {
  stroke-width: 9;
}

.hero-stars {
  fill: var(--cream);
}

.plant-one {
  transform-origin: 251px 469px;
  animation: sway 4s ease-in-out infinite alternate;
}

.plant-two {
  transform-origin: 410px 324px;
  animation: sway 3.6s 400ms ease-in-out infinite alternate-reverse;
}

@keyframes sway {
  from { transform: rotate(-1.3deg); }
  to { transform: rotate(1.8deg); }
}

.hero-stars > * {
  transform-box: fill-box;
  transform-origin: center;
  animation: star-twinkle 4.4s ease-in-out infinite;
}

.hero-stars > :nth-child(2) { animation-delay: -1.6s; }

.hero-stars > :nth-child(3) { animation-delay: -2.7s; }

.hero-stars > :nth-child(4) { animation-delay: -3.5s; }

@keyframes star-twinkle {
  0%, 100% { opacity: 0.78; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero-note {
  position: absolute;
  padding: 10px 16px;
  border: 1px solid rgba(57, 34, 72, 0.14);
  border-radius: 999px;
  background: var(--cream);
  box-shadow: 0 12px 32px rgba(57, 34, 72, 0.13);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-note-one {
  top: 27%;
  left: -3%;
  transform: rotate(-7deg);
}

.hero-note-two {
  right: -3%;
  bottom: 21%;
  transform: rotate(6deg);
}

.intro {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(70px, 11vw, 170px);
}

.section-heading h2 {
  max-width: 720px;
}

.intro-lead {
  max-width: 560px;
  margin-bottom: 0;
}

.intro .section-heading h2 em {
  white-space: nowrap;
}

html[data-site-version="2"] .intro-title-line {
  display: block;
}

.intro-content {
  padding-top: 0;
}

.recognition-list,
.check-list {
  padding: 0;
  list-style: none;
}

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

.recognition-list li {
  position: relative;
  padding: 17px 8px 17px 28px;
  border-bottom: 1px solid var(--line);
}

.recognition-list li::before {
  position: absolute;
  top: 27px;
  left: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.offer {
  overflow: hidden;
  background: var(--lilac);
}

.offer.section,
.method.section {
  padding-block: clamp(100px, 8vw, 144px);
}

.offer-header {
  display: grid;
  margin-bottom: clamp(52px, 6vw, 76px);
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.offer-header h2 {
  margin-bottom: 0;
}

.offer-header > p {
  max-width: 420px;
  margin-bottom: 8px;
  color: var(--muted);
}

.offer-pillar {
  position: relative;
  display: grid;
  padding: 52px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1fr);
  gap: clamp(64px, 8vw, 112px);
}

.offer-pillar + .offer-pillar {
  margin-top: 24px;
}

.offer-growth {
  border-radius: 120px 30px 30px 30px;
  background: var(--purple);
  color: var(--white);
}

.offer-learning {
  border-radius: 30px 30px 120px 30px;
  background: var(--mint);
  color: var(--purple-deep);
}

.pillar-number {
  padding-top: 8px;
  color: var(--mint-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.offer-learning .pillar-number {
  color: var(--purple-soft);
}

html[data-site-version="2"] .pillar-number {
  display: none;
}

.pillar-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  place-items: center;
}

.offer-learning .pillar-icon {
  border-color: rgba(57, 34, 72, 0.2);
}

.pillar-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.pillar-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pillar-title > p {
  margin-bottom: 7px;
  color: var(--mint-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-learning .pillar-title > p {
  color: var(--purple-soft);
}

.pillar-title h3 {
  max-width: 350px;
  margin: 0;
  font-size: clamp(2.4rem, 3.7vw, 4.4rem);
  line-height: 0.98;
}

.pillar-copy {
  align-self: end;
}

.pillar-copy > p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.offer-learning .pillar-copy > p {
  color: rgba(40, 21, 50, 0.72);
}

.check-list {
  margin: 0;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-learning .check-list li {
  border-top-color: rgba(57, 34, 72, 0.14);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--mint-bright);
  content: "✓";
  font-weight: 700;
}

.offer-learning .check-list li::before {
  color: var(--purple);
}

.rates {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 7vw, 104px);
  background: var(--lilac);
}

.rates-orb {
  position: absolute;
  top: -210px;
  right: -110px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(99, 212, 189, 0.45);
  border-radius: 50%;
  box-shadow: inset 0 0 0 48px rgba(223, 247, 241, 0.72);
}

.rates-compact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(52px, 8vw, 120px);
}

.rates-heading {
  margin: 0;
}

.rates-heading .eyebrow {
  margin-bottom: 20px;
}

.rates-heading h2 {
  max-width: 430px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 3.5vw, 3.8rem);
  line-height: 1;
}

.rates-heading > p:last-child {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
}

.rate-panel {
  padding-bottom: 30px;
}

.rate-list {
  border-top: 1px solid rgba(57, 34, 72, 0.1);
}

.rate-row {
  display: grid;
  min-height: 106px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.rate-row span {
  color: var(--purple-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rate-row h3 {
  margin: 4px 0 4px;
  font-family: var(--body);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.025em;
}

.rate-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.rate-row > strong {
  font-family: var(--display);
  color: var(--purple);
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  letter-spacing: -0.04em;
}

.rate-featured > strong {
  color: var(--purple-soft);
}

.rate-footnote {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.rate-footnote p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.rate-cta {
  display: inline-flex;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(57, 34, 72, 0.2);
  border-radius: 999px;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.rate-cta .action-icon {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.rate-cta:hover,
.rate-cta:focus-visible {
  border-color: rgba(57, 34, 72, 0.42);
  background: rgba(57, 34, 72, 0.05);
}

.rate-cta:hover .action-icon,
.rate-cta:focus-visible .action-icon {
  transform: translate(2px, -2px);
}

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

.method-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px 90px;
}

.method-intro .eyebrow {
  grid-column: 1 / -1;
}

.method-intro h2 {
  max-width: 760px;
  font-size: clamp(2.8rem, 4.2vw, 4.7rem);
  line-height: 1;
}

.method-intro > p:last-child {
  max-width: 420px;
  padding-top: 14px;
  color: var(--muted);
}

.method-path {
  --dot-size: 16px;
  --timeline-gap: 36px;
  position: relative;
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--timeline-gap);
}

.method-step {
  position: relative;
  min-width: 0;
}

.method-step:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: calc(20px + 24px + (var(--dot-size) / 2) - 1px);
  left: calc(var(--dot-size) / 2);
  width: calc(100% + var(--timeline-gap));
  height: 2px;
  border-radius: 999px;
  content: "";
}

.method-step:not(:last-child)::after {
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 650ms cubic-bezier(.2, .75, .2, 1) var(--line-delay, 0ms);
}

.method-step.is-connected::after {
  transform: scaleX(1);
}

.method-step:nth-child(1) { --line-delay: 100ms; }

.method-step:nth-child(2) { --line-delay: 180ms; }

.method-step:nth-child(3) { --line-delay: 260ms; }

.method-step > span,
.method-step h3,
.method-step p {
  position: relative;
  z-index: 1;
}

.method-step > span {
  display: block;
  height: 20px;
  color: var(--purple-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 20px;
}

.step-dot {
  position: relative;
  z-index: 2;
  width: var(--dot-size);
  height: var(--dot-size);
  margin: 24px 0 30px;
  border: 2px solid var(--mint);
  border-radius: 50%;
  background: var(--white);
}

.step-dot::after {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  transform: scale(0);
  transition: transform 260ms ease;
}

.method-step.is-reached .step-dot::after {
  transform: scale(1);
}

.method-step.reveal-delay-one .step-dot::after { transition-delay: 100ms; }

.method-step.reveal-delay-two .step-dot::after { transition-delay: 180ms; }

.method-step.reveal-delay-three .step-dot::after { transition-delay: 260ms; }

.method-step h3 {
  margin-bottom: 12px;
  font-family: var(--body);
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.method-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.boundaries {
  display: grid;
  margin-top: 72px;
  padding: 36px 44px;
  border-radius: 28px 100px 28px 28px;
  background: var(--lilac);
  grid-template-columns: 70px 1fr 0.8fr;
  align-items: center;
  gap: 36px;
}

.boundaries-mark {
  display: grid;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--mint);
  place-items: center;
  color: var(--purple);
  font-size: 1.5rem;
}

.boundaries .eyebrow {
  margin-bottom: 8px;
}

.boundaries h3 {
  max-width: 450px;
  margin: 0;
  font-family: var(--body);
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.boundaries > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--purple);
  color: var(--white);
}

.about-shape {
  position: absolute;
  right: -18vw;
  bottom: -35vw;
  width: 75vw;
  height: 75vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8vw rgba(255, 255, 255, 0.015);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(70px, 10vw, 140px);
}

.about-art {
  position: relative;
  max-width: 590px;
}

.about-photo-outline {
  fill: none;
  stroke: rgba(142, 228, 210, 0.55);
  stroke-width: 3;
}

.about-caption {
  position: absolute;
  right: 0;
  bottom: 9%;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--cream);
  box-shadow: 0 12px 28px rgba(40, 21, 50, 0.18);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.about .eyebrow {
  color: var(--mint-bright);
}

.about-copy h2 {
  color: var(--mint-bright);
}

.about-copy .lead {
  color: var(--white);
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: rgba(255, 255, 255, 0.71);
}

.about-copy .button {
  margin-top: 20px;
}

.faq {
  background: var(--lilac);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(70px, 11vw, 160px);
}

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

.faq-heading h2 {
  font-size: clamp(2.55rem, 3.6vw, 4.15rem);
  line-height: 1.03;
}

.faq-heading p:not(.eyebrow) {
  max-width: 350px;
  color: var(--muted);
}

.faq-heading .text-link {
  margin-top: 22px;
}

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

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

.accordion summary {
  display: flex;
  padding: 28px 0;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
  transition: color 180ms ease, padding-left 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .accordion summary:hover {
    padding-left: 8px;
    color: var(--purple-soft);
  }
}

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

.accordion summary span {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--purple);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 360ms cubic-bezier(.2, .7, .2, 1);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
  max-width: 660px;
  padding: 0 50px 28px 0;
  margin-bottom: 0;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 300ms ease,
    transform 380ms cubic-bezier(.2, .7, .2, 1);
}

.accordion details[open]:not(.is-opening):not(.is-closing) p {
  opacity: 1;
  transform: translateY(0);
}

.accordion details.is-closing p {
  opacity: 0;
  transform: translateY(-5px);
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--mint);
}

.contact-decoration span {
  position: absolute;
  border: 1px solid rgba(57, 34, 72, 0.15);
  border-radius: 50%;
}

.contact-decoration span:nth-child(1) {
  top: -190px;
  left: -180px;
  width: 480px;
  height: 480px;
}

.contact-decoration span:nth-child(2) {
  top: -120px;
  left: -110px;
  width: 340px;
  height: 340px;
}

.contact-decoration span:nth-child(3) {
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(500px, 1fr);
  gap: clamp(70px, 10vw, 140px);
}

.contact-copy h2 {
  max-width: 530px;
}

.contact-copy h2 em {
  color: var(--purple);
}

.contact-copy .lead {
  max-width: 520px;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

address {
  display: flex;
  margin-top: 54px;
  flex-direction: column;
  align-items: flex-start;
  font-style: normal;
}

address a:not(.contact-whatsapp) {
  padding-block: 2px;
  border-bottom: 1px solid transparent;
  font-weight: 700;
}

address a:not(.contact-whatsapp):hover,
address a:not(.contact-whatsapp):focus-visible {
  border-color: currentColor;
}

.contact-whatsapp {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 14px 19px;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  box-shadow: 0 12px 28px rgba(40, 21, 50, 0.14);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-whatsapp:hover,
.contact-whatsapp:focus-visible {
  background: var(--purple-deep);
  transform: translateY(-2px);
}

.contact-whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

address span {
  margin-top: 15px;
  color: rgba(40, 21, 50, 0.68);
}

.contact-form {
  padding: clamp(28px, 4vw, 52px);
  border-radius: 30px 110px 30px 30px;
  background: var(--cream);
  box-shadow: 0 30px 70px rgba(40, 21, 50, 0.1);
}

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

.contact-form label {
  display: block;
  margin-bottom: 22px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--purple-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(57, 34, 72, 0.3);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input {
  height: 46px;
}

.contact-form textarea {
  padding-block: 10px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 1px 0 var(--purple);
}

.form-footer {
  display: flex;
  margin-top: 10px;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--purple-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #267665;
}

.form-status.is-error {
  color: #a33a55;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

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

.site-footer {
  padding: 54px 0 34px;
  padding-bottom: calc(34px + env(safe-area-inset-bottom));
  background: var(--purple-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 52px;
}

.footer-brand {
  justify-self: start;
}

.footer-grid > p:not(.footer-meta) {
  margin: 0;
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid nav {
  display: flex;
  gap: 28px;
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-grid nav a:hover,
.footer-grid nav a:focus-visible {
  color: var(--mint-bright);
}

.footer-meta {
  margin: 0;
  justify-self: end;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(.2, .7, .2, 1);
}

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

.reveal-delay,
.reveal-delay-one { transition-delay: 100ms; }

.reveal-delay-two { transition-delay: 180ms; }

.reveal-delay-three { transition-delay: 260ms; }

:focus-visible {
  outline: 3px solid var(--mint-bright);
  outline-offset: 4px;
}

@media (min-width: 841px) {
  .method-path .method-step:nth-child(1) {
    --line-delay: 350ms;
    transition-delay: 0ms;
  }

  .method-path .method-step:nth-child(2) {
    --line-delay: 850ms;
    transition-delay: 350ms;
  }

  .method-path .method-step:nth-child(3) {
    --line-delay: 1350ms;
    transition-delay: 850ms;
  }

  .method-path .method-step:nth-child(4) {
    transition-delay: 1350ms;
  }

  .method-path .method-step:nth-child(2) .step-dot::after {
    transition-delay: 350ms;
  }

  .method-path .method-step:nth-child(3) .step-dot::after {
    transition-delay: 850ms;
  }

  .method-path .method-step:nth-child(4) .step-dot::after {
    transition-delay: 1350ms;
  }
}

@media (min-width: 1081px) {
  :root {
    --shell: min(1180px, calc(100vw - 144px));
  }

  .section {
    padding-block: clamp(132px, 10vw, 176px);
  }

  .hero,
  .hero-inner {
    min-height: max(880px, 100svh);
  }

  .hero-inner {
    padding-top: clamp(155px, 10vh, 190px);
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: clamp(80px, 8vw, 120px);
  }

  .hero-copy {
    max-width: 570px;
    padding-bottom: 0;
  }

  .hero-eyebrow {
    margin-bottom: 30px;
  }

  .hero h1 {
    margin-bottom: 44px;
    line-height: 0.97;
  }

  .hero-intro {
    max-width: 520px;
    margin-bottom: 44px;
    line-height: 1.7;
  }

  .hero-actions {
    gap: 32px;
  }

  .hero-art {
    width: min(100%, 550px);
  }

  .about-copy h2 {
    font-size: clamp(2.9rem, 4vw, 4.35rem);
    white-space: nowrap;
  }

  .intro-grid {
    gap: clamp(120px, 12vw, 190px);
  }

  .offer-header,
  .method-intro {
    gap: 110px;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 56px, 1000px);
  }

  .site-nav { gap: 22px; }

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

  .hero h1 {
    font-size: clamp(4rem, 7.7vw, 6.1rem);
  }

  .hero-note-two { right: 1%; }

  .offer-pillar {
    padding: 55px 48px;
    grid-template-columns: minmax(240px, 0.82fr) minmax(300px, 1.18fr);
    gap: 44px;
  }

  .boundaries {
    grid-template-columns: 60px 1fr;
  }

  .boundaries > p {
    grid-column: 2;
  }

  .contact-grid {
    grid-template-columns: minmax(280px, 0.7fr) 1fr;
    gap: 60px;
  }
}

@media (min-width: 841px) and (max-width: 1080px) {
  html[data-site-version="1"] .offer-pillar {
    grid-template-columns: 48px minmax(240px, 0.8fr) 1fr;
    gap: 30px;
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    top: env(safe-area-inset-top);
    width: calc(100vw - clamp(32px, 6vw, 48px));
  }

  .site-header.is-scrolled {
    top: max(8px, env(safe-area-inset-top));
    width: calc(100vw - 24px);
    height: 62px;
    padding-inline: 18px;
  }

  body.menu-open .site-header {
    position: fixed;
    top: env(safe-area-inset-top);
    width: 100vw;
    height: var(--header-height);
    margin: 0;
    padding-inline: 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.menu-open .site-header .nav-cta {
    border-color: rgba(255, 255, 255, 0.5);
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 12px 8px;
    align-content: center;
    gap: 7px;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 27px;
    height: 2px;
    background: currentColor;
    transition: transform 220ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100svh;
    padding:
      max(112px, calc(env(safe-area-inset-top) + 82px))
      max(32px, calc(env(safe-area-inset-right) + 24px))
      max(38px, calc(env(safe-area-inset-bottom) + 24px))
      max(32px, calc(env(safe-area-inset-left) + 24px));
    overflow-y: auto;
    background: var(--purple-deep);
    color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 0s linear 220ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav a {
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 3.7rem);
    letter-spacing: -0.04em;
  }

  .site-nav a:not(.nav-cta):not(.nav-whatsapp)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 0;
    min-width: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 3.7rem);
  }

  .site-nav .nav-cta::before {
    display: none;
  }

  .site-nav .nav-cta:hover,
  .site-nav .nav-cta:focus-visible {
    border: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
    transform: none;
  }

  .site-nav .nav-whatsapp {
    display: inline-flex;
    margin-top: 56px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    align-items: center;
    gap: 10px;
    background: var(--mint);
    box-shadow: 0 12px 30px rgba(20, 9, 26, 0.2);
    color: var(--purple-deep);
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .nav-whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .hero {
    min-height: 940px;
  }

  .hero-inner {
    min-height: 860px;
    padding-top: calc(120px + env(safe-area-inset-top));
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
  }

  .hero-copy {
    max-width: 660px;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(4rem, 13vw, 6.3rem);
  }

  .hero-intro {
    max-width: 540px;
  }

  .hero-art {
    width: 460px;
    margin-top: -100px;
    margin-right: -50px;
  }

  .hero-note-one { left: 5%; }

  .intro-grid,
  .offer-header,
  .method-intro,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-content {
    max-width: 630px;
    padding-top: 0;
  }

  .offer-header { gap: 28px; }

  .offer-pillar {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pillar-copy {
    grid-column: auto;
  }

  .rates-compact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rates-heading {
    max-width: 620px;
  }

  .method-intro { gap: 0; }

  .method-intro .eyebrow { grid-column: auto; }

  .method-intro > p:last-child { padding-top: 0; }

  .method-path {
    --timeline-gap: 0px;
    margin-top: 54px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .method-step {
    padding: 0 0 62px 44px;
  }

  .method-step:last-child {
    padding-bottom: 0;
  }

  .method-step:not(:last-child)::after {
    top: 52px;
    left: calc((var(--dot-size) / 2) - 1px);
    width: 2px;
    height: 100%;
  }

  .method-step:not(:last-child)::after {
    transform: scaleY(0);
    transform-origin: center top;
  }

  .method-step.is-connected::after {
    transform: scaleY(1);
  }

  .step-dot {
    position: absolute;
    top: 44px;
    left: 0;
    margin: 0;
  }

  .method-step > span {
    position: absolute;
    top: 42px;
    left: 44px;
  }

  .method-step h3 {
    margin-top: 0;
    padding-top: 92px;
  }

  .about-grid {
    gap: 70px;
  }

  .about-art {
    width: min(580px, 90%);
  }

  .about-copy {
    max-width: 620px;
  }

  .faq-heading {
    max-width: 580px;
  }

  .contact-grid {
    gap: 65px;
  }

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

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 40px);
    --header-height: 70px;
  }

  .site-header {
    top: env(safe-area-inset-top);
    width: calc(100vw - 36px);
    height: var(--header-height);
    padding-inline: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--purple-deep);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    top: max(8px, env(safe-area-inset-top));
    width: calc(100vw - 16px);
    height: 58px;
    padding-inline: 14px;
    border: 1px solid rgba(57, 34, 72, 0.08);
    border-radius: 999px;
    background: rgba(250, 247, 240, 0.96);
    box-shadow: 0 10px 35px rgba(40, 21, 50, 0.08);
    color: var(--purple);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    position: fixed;
    top: env(safe-area-inset-top);
    width: 100vw;
    height: var(--header-height);
    margin: 0;
    padding-inline: 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .section {
    padding-block: 88px;
  }

  .offer.section,
  .method.section {
    padding-block: 76px;
  }

  .rates.section {
    padding-block: 70px;
  }

  .rates-heading h2,
  .faq-heading h2 {
    font-size: 2.3rem;
    line-height: 1.06;
  }

  .method-intro h2 {
    font-size: 2.5rem;
    line-height: 1.04;
  }

  .site-header .brand {
    gap: 8px;
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .site-header .brand-mark {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 10px 7px;
    justify-items: end;
    gap: 6px;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 25px;
  }

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

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

  .hero {
    min-height: 800px;
  }

  .hero-inner {
    min-height: 800px;
    padding-top: calc(98px + env(safe-area-inset-top));
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(2.25rem, 10.8vw, 3rem);
    letter-spacing: -0.04em;
    line-height: 0.98;
  }

  .hero-title-main,
  .hero-title-accent {
    white-space: nowrap;
  }

  .hero-title-accent {
    margin-top: 2px;
  }

  .hero-intro {
    margin-bottom: 25px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    max-width: 360px;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    min-height: 50px;
    padding: 12px clamp(11px, 3.5vw, 16px);
    border-radius: 999px;
    justify-content: center;
    gap: 8px;
    font-size: clamp(0.82rem, 3.55vw, 0.9rem);
    white-space: nowrap;
  }

  .hero-actions .text-link {
    border: 1px solid rgba(40, 21, 50, 0.36);
    background: rgba(250, 247, 240, 0.1);
  }

  .hero-actions .action-icon {
    width: 16px;
    height: 16px;
  }

  .action-label-long {
    display: none;
  }

  .action-label-short {
    display: inline;
  }

  .hero-art {
    width: 340px;
    margin-top: 22px;
    margin-right: -75px;
  }

  .hero-note {
    padding: 7px 11px;
    font-size: 0.58rem;
  }

  .hero-note-one {
    top: 30%;
    left: 6%;
  }

  .hero-note-two {
    right: 1%;
    bottom: 19%;
  }

  .intro-grid,
  .faq-grid {
    gap: 55px;
  }

  .intro-grid {
    gap: 30px;
  }

  .offer-pillar {
    padding: 38px 25px;
    border-radius: 25px 70px 25px 25px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .offer-learning {
    border-radius: 25px 25px 70px 25px;
  }

  .pillar-copy {
    grid-column: 1;
  }

  .pillar-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
  }

  .pillar-title h3 {
    font-size: 2.65rem;
  }

  .rate-row {
    min-height: 0;
    padding-block: 22px;
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .rate-row > strong {
    font-size: 1.75rem;
  }

  .rate-footnote {
    flex-direction: column;
    gap: 25px;
  }

  .boundaries {
    margin-top: 56px;
    padding: 28px 25px;
    border-radius: 24px 70px 24px 24px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .boundaries > p {
    grid-column: auto;
  }

  .about-grid { gap: 50px; }

  .about-art {
    width: 110%;
    margin-left: -7%;
  }

  .accordion summary {
    padding-block: 23px;
    font-size: 1rem;
  }

  .accordion details p {
    padding-right: 22px;
  }

  .contact-form {
    margin-inline: -5px;
    border-radius: 25px 70px 25px 25px;
  }

  address {
    margin-top: 40px;
  }

  .contact-whatsapp {
    margin-bottom: 32px;
    align-self: flex-start;
  }

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

  .form-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid > p:not(.footer-meta),
  .footer-meta {
    justify-self: start;
  }

  .footer-grid nav {
    flex-wrap: wrap;
  }
}

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

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

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

  .nav-cta::before {
    display: none;
  }

  .nav-cta:hover,
  .nav-cta:focus-visible {
    background: var(--mint);
    transform: none;
  }

}

[data-version-copy] {
  display: none;
}

html[data-site-version="1"] [data-version-copy="1"],
html[data-site-version="2"] [data-version-copy="2"] {
  display: contents;
}

html[data-site-version="1"] .site-header:not(.is-scrolled) {
  color: var(--white);
}

html[data-site-version="1"] .site-header:not(.is-scrolled) .nav-cta {
  border-color: rgba(255, 255, 255, 0.45);
}

html[data-site-version="1"] .nav-cta::before {
  background: var(--mint);
}

html[data-site-version="1"] .nav-cta:hover,
html[data-site-version="1"] .nav-cta:focus-visible {
  border-color: var(--mint);
  color: var(--purple-deep);
}

html[data-site-version="1"] .site-header:not(.is-scrolled) .version-switcher {
  border-color: rgba(255, 255, 255, 0.4);
}

html[data-site-version="1"] .site-header:not(.is-scrolled) .version-option {
  color: var(--white);
}

html[data-site-version="1"] .site-header:not(.is-scrolled) .version-option:hover,
html[data-site-version="1"] .site-header:not(.is-scrolled) .version-option:focus-visible {
  background: rgba(255, 255, 255, 0.13);
}

html[data-site-version="1"] .site-header:not(.is-scrolled) .version-option.is-active {
  background: var(--mint);
  color: var(--purple-deep);
}

html[data-site-version="1"] .site-header.is-scrolled .version-option.is-active {
  background: var(--purple);
  color: var(--white);
}

html[data-site-version="1"] .hero {
  background: var(--purple);
  color: var(--white);
}

html[data-site-version="1"] .hero-orbit {
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-site-version="1"] .hero-eyebrow,
html[data-site-version="1"] .hero-title-accent {
  color: var(--mint-bright);
}

html[data-site-version="1"] .hero-intro {
  color: rgba(255, 255, 255, 0.8);
}

html[data-site-version="1"] .hero .button-purple {
  background: var(--mint);
  color: var(--purple-deep);
}

html[data-site-version="1"] .hero .button-purple:hover,
html[data-site-version="1"] .hero .button-purple:focus-visible {
  background: var(--mint-bright);
}

html[data-site-version="1"] .hero .text-link {
  color: var(--white);
}

html[data-site-version="1"] .hero-blob {
  fill: var(--mint);
}

html[data-site-version="1"] .hero-path {
  stroke: rgba(57, 34, 72, 0.28);
}

html[data-site-version="1"] .plant path,
html[data-site-version="1"] .plant circle,
html[data-site-version="1"] .hero-house path,
html[data-site-version="1"] .hero-house circle {
  stroke: var(--purple);
}

html[data-site-version="1"] .intro-content {
  padding-top: 45px;
}

html[data-site-version="1"] .intro-lead {
  max-width: none;
}

html[data-site-version="1"] .recognition-list {
  margin-top: 40px;
}

html[data-site-version="1"] .offer-pillar {
  grid-template-columns: 72px minmax(280px, 0.9fr) minmax(340px, 1fr);
  gap: 48px;
}

html[data-site-version="1"] .rate-cta {
  min-height: 0;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  gap: 10px;
  font-size: inherit;
  line-height: 1.3;
  white-space: normal;
}

html[data-site-version="1"] .rate-cta .action-icon {
  width: 18px;
  height: 18px;
}

html[data-site-version="1"] .rate-cta:hover,
html[data-site-version="1"] .rate-cta:focus-visible {
  border-color: currentColor;
  background: transparent;
}

html[data-site-version="1"] .rates {
  padding-block: clamp(100px, 8vw, 144px);
  background: var(--cream);
}

html[data-site-version="1"] .rates-orb {
  top: -160px;
  right: -170px;
  width: 430px;
  height: 430px;
  border-color: rgba(99, 212, 189, 0.5);
  box-shadow:
    inset 0 0 0 62px var(--mint-pale),
    inset 0 0 0 63px rgba(99, 212, 189, 0.5);
}

html[data-site-version="1"] .rates-compact {
  display: block;
}

html[data-site-version="1"] .rates-heading {
  margin-bottom: 44px;
}

html[data-site-version="1"] .rates-heading .eyebrow {
  margin-bottom: 0;
}

html[data-site-version="1"] .rates-heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 3.6vw, 4.15rem);
  line-height: 1.03;
}

html[data-site-version="1"] .rates-heading > p:last-child {
  max-width: 420px;
  align-self: end;
}

html[data-site-version="1"] .rate-panel {
  padding-bottom: 0;
}

html[data-site-version="1"] .rate-list {
  border-top: 1px solid var(--line);
}

html[data-site-version="1"] .rate-row {
  min-height: 126px;
  padding: 22px 8px;
  gap: 30px;
  transition: padding 220ms ease, background 220ms ease;
}

html[data-site-version="1"] .rate-row:hover {
  padding-inline: 28px;
  background: var(--mint-pale);
}

html[data-site-version="1"] .rate-row > strong {
  color: var(--purple);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

html[data-site-version="1"] .rate-featured > strong {
  color: var(--purple-soft);
}

html[data-site-version="1"] .rate-footnote {
  margin-top: 26px;
  gap: 60px;
}

@media (min-width: 841px) {
  html[data-site-version="1"] .intro-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    gap: clamp(70px, 11vw, 170px);
  }

  html[data-site-version="1"] .rates-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 80px;
  }

  html[data-site-version="1"] .rates-heading .eyebrow {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1081px) {
  html[data-site-version="1"] .hero,
  html[data-site-version="1"] .hero-inner {
    min-height: max(840px, 100svh);
  }

  html[data-site-version="1"] .hero-inner {
    padding-top: 145px;
    grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
    gap: 72px;
  }

  html[data-site-version="1"] .hero-copy {
    max-width: 650px;
    padding-bottom: 30px;
  }

  html[data-site-version="1"] .hero-intro {
    max-width: 570px;
  }

  html[data-site-version="1"] .hero-art {
    width: min(100%, 580px);
  }

  html[data-site-version="1"] .intro-grid {
    gap: clamp(120px, 12vw, 190px);
  }

  html[data-site-version="1"] .rates-heading {
    gap: 110px;
  }
}

@media (max-width: 840px) {
  html[data-site-version="1"] .site-header:not(.is-scrolled) .version-switcher {
    border-color: rgba(255, 255, 255, 0.28);
  }

  html[data-site-version="1"] .site-header:not(.is-scrolled) .version-option.is-active {
    background: var(--mint);
    color: var(--purple-deep);
  }

  html[data-site-version="1"] .intro-content {
    padding-top: 0;
  }

  html[data-site-version="1"] .offer-pillar {
    grid-template-columns: 44px 1fr;
    gap: 30px;
  }

  html[data-site-version="1"] .pillar-copy {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  html[data-site-version="1"] .intro-grid {
    gap: 55px;
  }

  html[data-site-version="1"] .rates {
    padding-block: 76px;
  }

  html[data-site-version="1"] .offer-pillar {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  html[data-site-version="1"] .pillar-number {
    padding: 0;
  }

  html[data-site-version="1"] .pillar-copy {
    grid-column: 1;
  }

  html[data-site-version="1"] .rates-heading h2 {
    font-size: 2.3rem;
    line-height: 1.06;
  }

  html[data-site-version="1"] .rate-row {
    padding-block: 26px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  html[data-site-version="1"] .rate-row > strong {
    font-size: 2.6rem;
  }

  html[data-site-version="1"] .rate-row:hover {
    padding-inline: 14px;
  }

  html[data-site-version="1"] .rate-footnote {
    gap: 25px;
  }
}

/* V2: calmer visual rhythm while preserving the existing content and structure. */

html[data-site-version="2"] .hero-grain {
  opacity: 0.07;
}

html[data-site-version="2"] .hero-orbit {
  border-color: rgba(40, 21, 50, 0.09);
}

html[data-site-version="2"] .hero-orbit-two {
  opacity: 0.45;
}

html[data-site-version="2"] .hero-note {
  padding: 8px 13px;
  border-color: rgba(57, 34, 72, 0.11);
  box-shadow: none;
  font-size: 0.68rem;
}

html[data-site-version="2"] .hero-note-one {
  transform: rotate(-3deg);
}

html[data-site-version="2"] .hero-note-two {
  transform: rotate(3deg);
}

html[data-site-version="2"] .plant-one,
html[data-site-version="2"] .plant-two {
  animation-name: sway-calm;
}

html[data-site-version="2"] .hero-stars > * {
  animation-name: star-twinkle-calm;
}

@keyframes sway-calm {
  from { transform: rotate(-0.6deg); }
  to { transform: rotate(0.8deg); }
}

@keyframes star-twinkle-calm {
  0%, 100% { opacity: 0.84; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.03); }
}

html[data-site-version="2"] .reveal {
  transform: translateY(20px);
}

html[data-site-version="2"] .reveal.is-visible {
  transform: none;
}

html[data-site-version="2"] .button-mint,
html[data-site-version="2"] .contact-whatsapp {
  box-shadow: 0 10px 30px rgba(40, 21, 50, 0.08);
}

html[data-site-version="2"] .offer-header {
  margin-bottom: clamp(46px, 5vw, 64px);
}

html[data-site-version="2"] .offer-pillar {
  padding: clamp(38px, 4.4vw, 50px);
  border-top: 0;
  border-radius: 40px;
  gap: clamp(36px, 6vw, 80px);
}

html[data-site-version="2"] .offer-pillar + .offer-pillar {
  margin-top: 18px;
}

html[data-site-version="2"] .offer-learning {
  background: var(--mint);
}

html[data-site-version="2"] .pillar-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

html[data-site-version="2"] .pillar-title h3 {
  max-width: 390px;
  font-size: clamp(2.25rem, 3.2vw, 3.65rem);
  line-height: 1.02;
}

html[data-site-version="2"] .boundaries {
  margin-top: 62px;
  padding: 32px 38px;
  border-radius: 30px;
  gap: 28px;
}

html[data-site-version="2"] .rates-orb {
  opacity: 0.32;
}

html[data-site-version="2"] .about-shape {
  opacity: 0.5;
}

html[data-site-version="2"] .about-caption {
  border: 1px solid rgba(57, 34, 72, 0.1);
  box-shadow: none;
  transform: rotate(-2deg);
}

html[data-site-version="2"] .contact-decoration {
  opacity: 0.42;
}

html[data-site-version="2"] .contact-form {
  border-radius: 32px;
  box-shadow: 0 18px 54px rgba(40, 21, 50, 0.07);
}

@media (min-width: 841px) {
  html[data-site-version="2"] .intro .section-heading h2,
  html[data-site-version="2"] .offer-header h2 {
    font-size: clamp(3rem, 4.2vw, 4.7rem);
    line-height: 1;
  }
}

@media (min-width: 1081px) {
  html[data-site-version="2"] .section {
    padding-block: clamp(116px, 8.2vw, 148px);
  }

  html[data-site-version="2"] .intro.section {
    padding-block: clamp(190px, 12vw, 230px);
  }

  html[data-site-version="2"] .offer.section,
  html[data-site-version="2"] .method.section {
    padding-block: clamp(96px, 7.2vw, 128px);
  }

  html[data-site-version="2"] .hero-inner {
    gap: clamp(72px, 7vw, 104px);
  }

  html[data-site-version="2"] .hero-art {
    width: min(100%, 520px);
  }

  html[data-site-version="2"] .method-intro {
    column-gap: 110px;
    row-gap: 24px;
  }

  html[data-site-version="2"] .method-intro .eyebrow {
    margin-bottom: 0;
  }

  html[data-site-version="2"] .intro-grid {
    gap: clamp(100px, 10vw, 150px);
  }
}

@media (max-width: 840px) {
  html[data-site-version="2"] .hero {
    min-height: 900px;
  }

  html[data-site-version="2"] .hero-inner {
    min-height: 820px;
  }

  html[data-site-version="2"] .hero-art {
    width: 420px;
    margin-top: -70px;
    margin-right: -25px;
  }

  html[data-site-version="2"] .offer-pillar {
    padding: 38px 34px;
    border-radius: 30px;
    gap: 30px;
  }

  html[data-site-version="2"] .boundaries {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  html[data-site-version="2"] .hero {
    min-height: 860px;
  }

  html[data-site-version="2"] .hero-inner {
    min-height: 800px;
  }

  html[data-site-version="2"] .hero-art {
    width: 360px;
    margin-top: -10px;
    margin-right: -10px;
  }

  html[data-site-version="2"] .hero-note {
    padding: 7px 11px;
    font-size: 0.62rem;
  }

  html[data-site-version="2"] .offer-pillar {
    padding: 32px 26px;
    border-radius: 26px;
    gap: 26px;
  }

  html[data-site-version="2"] .contact-decoration {
    opacity: 0.3;
  }

  html[data-site-version="2"] .contact-form {
    border-radius: 26px;
  }
}

/* Shared Pluis refinement: keep the warmth of V1 with the calmer V2 rhythm. */

html[data-site-version] .site-header:not(.is-scrolled) {
  color: var(--white);
}

html[data-site-version] .site-header:not(.is-scrolled) .nav-cta {
  border-color: rgba(255, 255, 255, 0.45);
}

html[data-site-version] .site-header:not(.is-scrolled) .version-switcher {
  border-color: rgba(255, 255, 255, 0.4);
}

html[data-site-version] .site-header:not(.is-scrolled) .version-option {
  color: var(--white);
}

html[data-site-version] .site-header:not(.is-scrolled) .version-option:hover,
html[data-site-version] .site-header:not(.is-scrolled) .version-option:focus-visible {
  background: rgba(255, 255, 255, 0.13);
}

html[data-site-version] .site-header:not(.is-scrolled) .version-option.is-active {
  background: var(--mint);
  color: var(--purple-deep);
}

html[data-site-version] .site-header:not(.is-scrolled) .nav-cta::before {
  background: var(--mint);
}

html[data-site-version] .site-header:not(.is-scrolled) .nav-cta:hover,
html[data-site-version] .site-header:not(.is-scrolled) .nav-cta:focus-visible {
  border-color: var(--mint);
  color: var(--purple-deep);
}

html[data-site-version] .site-header.is-scrolled .nav-cta::before {
  background: var(--purple);
}

html[data-site-version] .site-header.is-scrolled .nav-cta:hover,
html[data-site-version] .site-header.is-scrolled .nav-cta:focus-visible {
  border-color: var(--purple);
  color: var(--white);
}

html[data-site-version] .hero {
  background: var(--purple);
  color: var(--white);
}

html[data-site-version] .hero-orbit {
  border-color: rgba(255, 255, 255, 0.12);
}

html[data-site-version] .hero-eyebrow,
html[data-site-version] .hero-title-accent {
  color: var(--mint-bright);
}

html[data-site-version] .hero-intro {
  color: rgba(255, 255, 255, 0.8);
}

html[data-site-version] .hero .button-purple {
  background: var(--mint);
  color: var(--purple-deep);
}

html[data-site-version] .hero .button-purple:hover,
html[data-site-version] .hero .button-purple:focus-visible {
  background: var(--mint-bright);
}

html[data-site-version] .hero .text-link {
  color: var(--white);
}

html[data-site-version] .hero-blob {
  fill: var(--mint);
}

html[data-site-version] .hero-path {
  stroke: rgba(57, 34, 72, 0.28);
}

html[data-site-version] .plant path,
html[data-site-version] .plant circle,
html[data-site-version] .hero-house path,
html[data-site-version] .hero-house circle {
  stroke: var(--purple);
}

html[data-site-version] .offer-growth {
  border-radius: 120px 30px 30px 30px;
}

html[data-site-version] .offer-learning {
  border-radius: 30px 30px 120px 30px;
}

html[data-site-version] .pillar-icon {
  width: 70px;
  height: 70px;
  padding: 8px;
  border-width: 2px;
}

html[data-site-version] .pillar-icon path {
  stroke-width: 3.55;
  vector-effect: non-scaling-stroke;
}

/* WebKit keeps non-scaling SVG strokes visibly heavier than Chromium.
   Let Safari scale the strokes with the icon instead, for a genuinely lighter result. */

html.is-safari[data-site-version] .pillar-icon path {
  stroke-width: 4.6;
  vector-effect: none;
}

/* Tablet and compact-desktop hero: keep the full promise and both actions in view. */

@media (min-width: 841px) and (max-width: 1366px) {
  html[data-site-version] .hero,
  html[data-site-version] .hero-inner {
    min-height: max(680px, 100svh);
  }

  html[data-site-version] .hero-inner {
    padding-top: clamp(96px, 12svh, 122px);
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    align-items: center;
    gap: clamp(28px, 4.5vw, 60px);
  }

  html[data-site-version] .hero-copy {
    max-width: 520px;
    padding-bottom: 0;
  }

  html[data-site-version] .hero-eyebrow {
    margin-bottom: clamp(14px, 2svh, 20px);
    font-size: 0.7rem;
  }

  html[data-site-version] .hero h1 {
    margin-bottom: clamp(22px, 3svh, 30px);
    font-size: clamp(3.45rem, 5.3vw, 4.7rem);
    line-height: 0.94;
  }

  html[data-site-version] .hero-intro {
    max-width: 500px;
    margin-bottom: clamp(22px, 3svh, 30px);
    font-size: clamp(0.98rem, 1.55vw, 1.08rem);
    line-height: 1.55;
  }

  html[data-site-version] .hero-actions {
    gap: clamp(20px, 2.4vw, 28px);
  }

  html[data-site-version] .hero-actions .button {
    min-height: 50px;
    padding: 13px 20px;
  }
}

@media (min-width: 841px) and (max-width: 960px) {
  html[data-site-version] .hero-actions {
    max-width: 390px;
  }

  html[data-site-version] .hero-actions .action-label-long {
    display: none;
  }

  html[data-site-version] .hero-actions .action-label-short {
    display: inline;
  }

  html[data-site-version] .hero-actions .button {
    min-width: 176px;
  }
}

/* Short laptops need the same complete first-view composition at a wider width. */

@media (min-width: 1367px) and (max-height: 960px) {
  html[data-site-version] .hero,
  html[data-site-version] .hero-inner {
    min-height: max(700px, 100svh);
  }

  html[data-site-version] .hero-inner {
    padding-top: clamp(104px, 12svh, 126px);
    gap: clamp(56px, 6vw, 84px);
  }

  html[data-site-version] .hero-copy {
    max-width: 560px;
  }

  html[data-site-version] .hero-eyebrow {
    margin-bottom: clamp(16px, 2svh, 22px);
  }

  html[data-site-version] .hero h1 {
    margin-bottom: clamp(22px, 3svh, 30px);
    font-size: clamp(4.2rem, 5.3vw, 5rem);
    line-height: 0.94;
  }

  html[data-site-version] .hero-intro {
    margin-bottom: clamp(22px, 3svh, 30px);
    font-size: 1.05rem;
    line-height: 1.58;
  }

  html[data-site-version] .hero-actions {
    gap: 26px;
  }
}

html[data-site-version] .boundaries {
  border-radius: 28px 100px 28px 28px;
}

html[data-site-version] .contact-form {
  border-radius: 32px 96px 32px 32px;
}

/* Werkwijze: the same scroll-led route and type scale as Hasselt van Boven. */

.method {
  overflow: hidden;
}

.method-intro {
  display: grid;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 25rem);
  align-items: end;
  gap: 1.75rem 4rem;
}

.method-intro .eyebrow {
  margin-bottom: 0;
  grid-column: 1 / -1;
}

.method-intro h2 {
  max-width: 10.5em;
  margin-bottom: 0;
  font-size: clamp(3rem, 4.2vw, 4.7rem);
  line-height: 0.95;
}

html[data-site-version="1"] .method-intro h2 {
  font-size: clamp(2.6rem, 5vw, 5.3rem);
}

.method-intro h2 em {
  color: var(--mint);
}

.method-intro > p:last-child {
  max-width: 25rem;
  padding-top: 0;
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.method-path {
  --route-length: 75%;
  --route-progress: 1;
  --route-start: 1.5rem;
  position: relative;
  display: grid;
  margin-top: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 3rem);
  isolation: isolate;
}

.method-path::before,
.method-path::after {
  position: absolute;
  top: 1.5rem;
  left: var(--route-start);
  width: var(--route-length);
  height: 2px;
  content: "";
  pointer-events: none;
  transform-origin: left center;
}

.method-path::before {
  background-image: linear-gradient(90deg, var(--purple) 45%, transparent 45%);
  background-size: 11px 2px;
  opacity: 0.22;
}

.method-path::after {
  z-index: 1;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 1px rgba(99, 212, 189, 0.08);
  transform: scaleX(var(--route-progress));
  transition: transform 90ms linear;
}

.method-step {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-top: 5rem;
}

.method-step:not(:last-child)::after {
  content: none;
}

.method-step .step-dot {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  width: 3rem;
  height: 3rem;
  margin: 0;
  border: 7px solid var(--white);
  border-radius: 50%;
  place-items: center;
  background: var(--purple);
  box-shadow: 0 0 0 1px var(--purple);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition:
    color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.method-step .step-dot::after {
  position: absolute;
  inset: -0.55rem;
  border: 1px solid rgba(90, 55, 106, 0.55);
  border-radius: inherit;
  background: transparent;
  content: "";
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.method-enhanced .method-step:not(.is-active):not(.is-complete) .step-dot {
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(57, 34, 72, 0.3);
  color: rgba(57, 34, 72, 0.38);
}

.method-step.is-active .step-dot {
  background: var(--mint);
  box-shadow: 0 0 0 1px var(--purple), 0 0 0 5px rgba(99, 212, 189, 0.16);
  color: var(--purple-deep);
  transform: scale(1.035);
}

.method-step.is-active .step-dot::after {
  opacity: 0.7;
  transform: scale(1);
}

.method-step.is-complete .step-dot {
  background: var(--purple);
  box-shadow: 0 0 0 1px var(--purple);
  color: var(--white);
}

.method-step .method-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 0.65rem;
  color: rgba(57, 34, 72, 0.52);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.method-step h3 {
  max-width: 9em;
  margin-bottom: 0.8rem;
  font-family: var(--body);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.method-step > p:last-child {
  max-width: 15rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.method-enhanced .method-step > :not(.step-dot) {
  opacity: 0.72;
  transform: translateY(1.25rem);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.method-enhanced .method-step.is-reached > :not(.step-dot) {
  opacity: 1;
  transform: translateY(0);
}

.method-enhanced .method-step.is-active > :not(.step-dot) {
  transform: translateY(-0.18rem);
}

/* Prices stay compact until requested, then open with the V1 scale. */

html[data-site-version] .rates {
  padding-block: clamp(100px, 8vw, 144px);
  background: var(--cream);
}

html[data-site-version] .rates-orb {
  top: -160px;
  right: -170px;
  width: 430px;
  height: 430px;
  border-color: rgba(99, 212, 189, 0.5);
  box-shadow:
    inset 0 0 0 62px var(--mint-pale),
    inset 0 0 0 63px rgba(99, 212, 189, 0.5);
  opacity: 1;
}

html[data-site-version] .rates-compact {
  display: block;
}

html[data-site-version] .rates-heading {
  margin-bottom: 0;
}

html[data-site-version] .rates-heading .eyebrow {
  margin-bottom: 0;
}

html[data-site-version] .rates-heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 3.6vw, 4.15rem);
  line-height: 1.03;
}

html[data-site-version] .rates-heading > p:last-of-type {
  max-width: 420px;
  margin-bottom: 0;
  align-self: end;
}

.rates-toggle {
  display: inline-flex;
  min-height: 50px;
  max-height: 56px;
  padding: 13px 18px 13px 22px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--purple);
  box-shadow: 0 12px 30px rgba(40, 21, 50, 0.12);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 240ms ease,
    box-shadow 180ms ease,
    min-height 480ms cubic-bezier(0.2, 0.7, 0.2, 1),
    max-height 480ms cubic-bezier(0.2, 0.7, 0.2, 1),
    padding-top 480ms cubic-bezier(0.2, 0.7, 0.2, 1),
    padding-bottom 480ms cubic-bezier(0.2, 0.7, 0.2, 1),
    margin-top 480ms cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0s linear 480ms;
}

.rates-toggle.is-dismissed {
  display: flex;
  min-height: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  visibility: hidden;
}

.rates-toggle:hover,
.rates-toggle:focus-visible {
  background: var(--mint);
  box-shadow: 0 14px 34px rgba(40, 21, 50, 0.16);
  color: var(--purple-deep);
  transform: translateY(-2px);
}

.rates-toggle-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.rates-toggle[aria-expanded="true"] .rates-toggle-icon {
  transform: rotate(180deg);
}

.rate-disclosure {
  display: grid;
  margin-top: 0;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 480ms cubic-bezier(0.2, 0.7, 0.2, 1),
    margin-top 480ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 240ms ease,
    visibility 0s linear 480ms;
}

.rate-disclosure.is-open {
  margin-top: clamp(44px, 6vw, 70px);
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition:
    grid-template-rows 480ms cubic-bezier(0.2, 0.7, 0.2, 1),
    margin-top 480ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 280ms 80ms ease,
    visibility 0s linear 0s;
}

.rate-disclosure-inner {
  min-height: 0;
  overflow: hidden;
}

html[data-site-version] .rate-panel {
  padding-bottom: 0;
}

html[data-site-version] .rate-row {
  min-height: 126px;
  padding: 22px 8px;
  gap: 30px;
  transition: padding 220ms ease, background 220ms ease;
}

html[data-site-version] .rate-row:hover {
  padding-inline: 28px;
  background: var(--mint-pale);
}

html[data-site-version] .rate-row > strong {
  color: var(--purple);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

html[data-site-version] .rate-featured > strong {
  color: var(--purple-soft);
}

html[data-site-version] .rate-footnote {
  margin-top: 26px;
  gap: 60px;
}

@media (min-width: 841px) {
  html[data-site-version] .rates-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 80px;
  }

  html[data-site-version] .rates-heading .eyebrow {
    grid-column: 1 / -1;
  }

  html[data-site-version] .rates-toggle {
    grid-column: 2;
    justify-self: start;
  }
}

@media (min-width: 1081px) {
  html[data-site-version] .rates-heading {
    column-gap: 110px;
  }
}

@media (max-width: 840px) {
  html[data-site-version] .offer-growth {
    border-radius: 80px 30px 30px 30px;
  }

  html[data-site-version] .offer-learning {
    border-radius: 30px 30px 80px 30px;
  }

  .method-intro {
    margin-bottom: 3.25rem;
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .method-intro .eyebrow {
    grid-column: auto;
  }

  .method-intro h2 {
    max-width: 10em;
    font-size: clamp(2.6rem, 5vw, 5.3rem);
  }

  .method-intro > p:last-child {
    max-width: 34rem;
    margin: 0;
  }

  .method-path {
    display: block;
    width: min(100%, 42rem);
  }

  .method-path::before,
  .method-path::after {
    top: var(--route-start);
    right: auto;
    bottom: auto;
    left: 1.5rem;
    width: 2px;
    height: var(--route-length);
    transform-origin: center top;
  }

  .method-path::before {
    background-image: linear-gradient(0deg, var(--purple) 45%, transparent 45%);
    background-size: 2px 11px;
  }

  .method-path::after {
    transform: scaleY(var(--route-progress));
  }

  .method-step {
    min-height: 12rem;
    padding: 0.25rem 0 3.5rem 5rem;
  }

  .method-step:last-child {
    min-height: 8.5rem;
    padding-bottom: 0;
  }

  .method-step .step-dot {
    top: 0;
    left: 0;
  }

  .method-step h3 {
    max-width: 11em;
    padding-top: 0;
    margin-top: 0;
  }

  html[data-site-version] .rates-heading h2 {
    max-width: 620px;
  }

  .rates-toggle {
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  html[data-site-version] .offer-growth {
    border-radius: 25px 70px 25px 25px;
  }

  html[data-site-version] .offer-learning {
    border-radius: 25px 25px 70px 25px;
  }

  html[data-site-version] .pillar-icon {
    width: 62px;
    height: 62px;
  }

  html[data-site-version] .boundaries,
  html[data-site-version] .contact-form {
    border-radius: 24px 70px 24px 24px;
  }

  .method-intro h2 {
    font-size: clamp(2.6rem, 5vw, 5.3rem);
    line-height: 1;
  }

  .method-step h3 {
    font-size: 1.9rem;
  }

  html[data-site-version] .rates {
    padding-block: 76px;
  }

  html[data-site-version] .rates-orb {
    border-color: rgba(99, 212, 189, 0.24);
    box-shadow:
      inset 0 0 0 62px rgba(223, 247, 241, 0.52),
      inset 0 0 0 63px rgba(99, 212, 189, 0.24);
    opacity: 0.64;
  }

  html[data-site-version] .rates-heading h2 {
    margin-top: 18px;
    margin-bottom: 24px;
    font-size: 2.3rem;
    line-height: 1.06;
  }

  html[data-site-version] .rates-heading > p:last-of-type {
    max-width: 31rem;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .rates-toggle {
    width: 100%;
    margin-top: 32px;
  }

  html[data-site-version] .rate-row {
    padding-block: 26px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  html[data-site-version] .rate-row > strong {
    font-size: 2.6rem;
  }

  html[data-site-version] .rate-row:hover {
    padding-inline: 14px;
  }

  html[data-site-version] .rate-footnote {
    align-items: stretch;
    gap: 25px;
  }

  html[data-site-version] .rate-cta {
    width: 100%;
    min-height: 58px;
    padding: 16px 22px;
    justify-content: center;
    gap: 12px;
    font-size: 1rem;
  }

  html[data-site-version] .rate-cta .action-icon {
    width: 18px;
    height: 18px;
  }
}

/* Asset 2 supplies the head; the independently drawn stem grows from the hero edge. */

html[data-site-version] .hero-inner {
  min-height: inherit;
}

html[data-site-version] .hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  animation: none;
  pointer-events: none;
  transform: none;
}

.hero-pluis-mascot {
  --pluis-rise: clamp(320px, 36vh, 410px);
  --pluis-head-drop: 14px;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-pluis-head-svg,
.hero-pluis-stem-svg {
  position: absolute;
  display: block;
  overflow: visible;
  pointer-events: none;
}

.hero-pluis-head-svg {
  z-index: 2;
  right: clamp(105px, 11vw, 158px);
  bottom: calc(var(--pluis-rise) - var(--pluis-head-drop));
  width: min(29vw, 380px);
  filter: drop-shadow(0 24px 30px rgba(20, 9, 26, 0.13));
  transform-origin: 50% 100%;
  animation: pluis-head-rise-in-desktop 2400ms 120ms cubic-bezier(.25, .5, .25, 1) both;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero-pluis-stem-svg {
  z-index: 1;
  right: clamp(150px, 13.4vw, 193px);
  bottom: -1px;
  width: 300px;
  height: calc(var(--pluis-rise) + 150px);
  filter: drop-shadow(0 18px 24px rgba(20, 9, 26, 0.08));
  animation: pluis-stem-grow-in 2400ms 120ms cubic-bezier(.25, .5, .25, 1) both;
}

.hero-pluis-head-outline,
.hero-pluis-face {
  fill: #f9ebe3;
}

.hero-pluis-head-shape {
  fill: var(--mint);
}

.hero-pluis-stem {
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 40;
}

.hero-pluis-eye {
  fill: #19131d;
  transform-box: fill-box;
  transform-origin: center;
  animation: pluis-eye-blink 5.6s ease-in-out infinite;
}

.hero-pluis-mouth {
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(.2, .75, .25, 1);
}

.hero-pluis-mouth-hover {
  opacity: 0;
  transform: scale(.72);
}

.hero-pluis-mascot.is-surprised .hero-pluis-mouth-default {
  opacity: 0;
  transform: scale(.78);
}

.hero-pluis-mascot.is-surprised .hero-pluis-mouth-hover {
  opacity: 1;
  transform: scale(1);
}

.hero-pluis-mascot.is-surprised .hero-pluis-head-rise {
  animation: pluis-surprise-pop 680ms cubic-bezier(.2, .8, .25, 1);
}

.hero-pluis-stem-grow,
.hero-pluis-stem-idle,
.hero-pluis-stem,
.hero-pluis-head-rise,
.hero-pluis-head-idle,
.hero-pluis-head,
.hero-pluis-eyes {
  transform-box: fill-box;
}

.hero-pluis-stem-idle {
  transform-origin: 50% 100%;
  animation: pluis-stem-idle 4.8s ease-in-out infinite alternate;
}

.hero-pluis-stem {
  transform-origin: 50% 100%;
  transform: rotate(var(--pluis-stem-rotate, 0deg));
  transition: transform 360ms cubic-bezier(.2, .7, .2, 1);
}

.hero-pluis-head-idle {
  transform-origin: 50% 82%;
  animation: pluis-head-idle 4.2s ease-in-out infinite;
}

.hero-pluis-head {
  transform-origin: 50% 82%;
  transform: translate(var(--pluis-head-x, 0), var(--pluis-head-y, 0))
    rotate(var(--pluis-head-rotate, 0deg));
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1);
}

.hero-pluis-eyes {
  transform-origin: center;
  animation: pluis-eyes-look 7.2s ease-in-out infinite;
}

.hero-pluis-mascot.is-pointer .hero-pluis-eyes {
  animation: none;
  transform: translate(var(--pluis-eye-x, 0), var(--pluis-eye-y, 0));
  transition: transform 90ms ease-out;
}

.hero-pluis-mascot.is-looking-down .hero-pluis-eyes {
  animation: none;
  transform: translate(0, var(--pluis-scroll-eye-y, 0));
  transition: transform 180ms cubic-bezier(.2, .7, .25, 1);
}

@keyframes pluis-stem-grow-in {
  0% {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: scaleX(.62);
  }
  18% { opacity: 1; }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: scaleX(1);
  }
}

@keyframes pluis-head-rise-in-desktop {
  0% {
    opacity: 1;
    transform: translateY(var(--pluis-rise)) scale(.82);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pluis-surprise-pop {
  0%, 100% { transform: translateY(0) scale(1); }
  38% { transform: translateY(-3px) scale(1.008); }
  72% { transform: translateY(.5px) scale(.998); }
}

@media (hover: hover) and (pointer: fine) {
  .hero-pluis-head-svg {
    cursor: pointer;
  }
}

@keyframes pluis-stem-idle {
  from { transform: rotate(-.75deg); }
  to { transform: rotate(1deg); }
}

@keyframes pluis-head-idle {
  0%, 100% { transform: translateY(0) rotate(-.35deg); }
  50% { transform: translateY(-4px) rotate(.5deg); }
}

@keyframes pluis-eyes-look {
  0%, 18%, 34%, 58%, 72%, 100% { transform: translate(0, 0); }
  22%, 30% { transform: translate(4px, 1px); }
  62%, 68% { transform: translate(-3px, 0); }
}

@keyframes pluis-eye-blink {
  0%, 41%, 45%, 74%, 78%, 100% { transform: scaleY(1); }
  43%, 76% { transform: scaleY(.08); }
}

@media (min-width: 1800px) {
  .hero-pluis-mascot {
    --pluis-rise: clamp(430px, 42vh, 620px);
  }
}

@media (max-width: 1080px) {
  .hero-pluis-mascot {
    --pluis-rise: clamp(300px, 36vh, 360px);
  }

  .hero-pluis-head-svg {
    right: 54px;
    bottom: var(--pluis-rise);
    width: 320px;
  }

  .hero-pluis-stem-svg {
    right: 92px;
    width: 250px;
  }
}

@media (max-width: 840px) {
  .hero-pluis-mascot {
    --pluis-rise: 165px;
    --pluis-head-drop: 0px;
  }

  .hero-pluis-head-svg {
    right: 20px;
    bottom: var(--pluis-rise);
    width: 280px;
  }

  .hero-pluis-stem-svg {
    right: 55px;
    width: 220px;
    height: auto;
  }

  .hero-pluis-stem {
    stroke-width: 45;
  }

  html.is-safari .brand-mark path:not(.brand-seed) {
    stroke-width: 1.65;
  }

  html.is-safari .menu-toggle > span:not(.sr-only) {
    height: 1.5px;
  }
}

@media (max-width: 600px) {
  .hero-pluis-mascot {
    --pluis-rise: 145px;
  }

  .hero-pluis-head-svg {
    right: 12px;
    bottom: var(--pluis-rise);
    width: min(220px, 62vw);
    filter: drop-shadow(0 16px 22px rgba(20, 9, 26, 0.11));
  }

  .hero-pluis-stem-svg {
    right: 34px;
    width: min(180px, 50vw);
    filter: drop-shadow(0 12px 18px rgba(20, 9, 26, 0.06));
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100vw - 28px);
  }

  .site-header.is-scrolled {
    width: calc(100vw - 12px);
    padding-inline: 12px;
  }

  .site-header .brand {
    gap: 7px;
    font-size: clamp(.98rem, 4.7vw, 1.05rem);
  }

  .site-header .brand-mark {
    width: 30px;
    height: 30px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    padding-inline: 6px;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 24px;
  }
}
