@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --paper: #f4f1eb;
  --paper-bright: #fffdf9;
  --ink: #18121a;
  --plum: #2b132e;
  --plum-soft: #46204b;
  --magenta: #d6006e;
  --magenta-dark: #a90057;
  --line: rgba(43, 19, 46, 0.16);
  --muted: #675d67;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 26px 70px rgba(43, 19, 46, 0.12);
  --container: 1200px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--plum);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

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

.section {
  padding: 96px 0;
}

.section-soft {
  background: #ebe5e9;
}

.section-plum {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(214, 0, 110, 0.24), transparent 28%),
    var(--plum);
}

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 20px;
  color: var(--white);
  background: var(--plum);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.announcement-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 5px rgba(214, 0, 110, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(244, 241, 235, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 25px rgba(43, 19, 46, 0.06);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 168px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a,
.footer-links a,
.footer-links span {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--magenta-dark);
}

.header-inner > .button {
  justify-self: end;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 23px;
  border: 2px solid var(--magenta);
  border-radius: 14px 14px 4px 14px;
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 10px 24px rgba(214, 0, 110, 0.2);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-small {
  min-height: 46px;
  padding: 10px 17px;
  font-size: 14px;
}

.button-light {
  color: var(--plum);
  border-color: var(--white);
  background: var(--white);
  box-shadow: none;
}

.button-light:hover {
  color: var(--white);
  border-color: var(--magenta);
  background: var(--magenta);
}

.hero {
  position: relative;
  padding: 72px 0 104px;
  background:
    linear-gradient(120deg, transparent 0 64%, rgba(214, 0, 110, 0.055) 64% 100%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  top: 84px;
  left: -160px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(214, 0, 110, 0.14);
  border-radius: 34% 66% 54% 46%;
  transform: rotate(18deg);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.eyebrow,
.section-number {
  margin: 0 0 18px;
  color: var(--magenta-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 740px;
  margin-bottom: 26px;
  font-size: clamp(3.45rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4vw, 3rem);
  font-weight: 780;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 780;
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 26px;
  color: #4f4650;
  font-size: 19px;
  line-height: 1.58;
}

.launch-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.launch-note > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 0, 110, 0.28);
  border-radius: 50%;
  color: var(--magenta-dark);
  font-size: 12px;
  font-weight: 800;
}

.launch-note p {
  margin: 0;
  color: #514752;
  font-size: 14px;
  line-height: 1.45;
}

.signup-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-bright);
  box-shadow: 0 15px 45px rgba(43, 19, 46, 0.08);
}

.signup-title {
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.gr-form-shell,
.gr-form-embed,
getresponse-form {
  display: block;
  width: 100%;
}

.gr-form-embed[hidden],
.gr-consent-gate[hidden] {
  display: none;
}

.gr-consent-gate {
  padding: 18px;
  border: 1px solid rgba(214, 0, 110, 0.22);
  border-radius: 14px;
  background: rgba(214, 0, 110, 0.055);
}

.gr-consent-gate p {
  margin-bottom: 14px;
  color: #514752;
  font-size: 14px;
  line-height: 1.45;
}

.gr-consent-gate .button {
  min-height: 46px;
  padding: 10px 17px;
  font-size: 14px;
}

.gr-loading {
  margin: 0;
  padding: 18px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(43, 19, 46, 0.045);
  font-size: 14px;
}

.gr-fallback {
  margin: 0;
  padding: 18px;
  border-left: 4px solid var(--magenta);
  border-radius: 0 12px 12px 0;
  color: var(--plum);
  background: rgba(214, 0, 110, 0.07);
  font-size: 14px;
}

.gr-fallback a {
  color: var(--magenta-dark);
  font-weight: 750;
}

.form-microcopy,
.privacy-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.privacy-note a {
  font-weight: 750;
}

.hero-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 32px 32px 8px 32px;
  background: var(--plum);
  box-shadow: var(--shadow);
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 58% center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(43, 19, 46, 0.74));
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-caption span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: var(--white);
  background: rgba(43, 19, 46, 0.45);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hex-marker {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 72px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--magenta);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  font-size: 13px;
  font-weight: 800;
}

.problem {
  background: var(--paper-bright);
}

.problem-grid,
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
  gap: 72px;
}

.section-intro h2,
.section-head h2 {
  margin-bottom: 0;
}

.problem-copy {
  padding-top: 36px;
  color: #4f4650;
}

.problem-copy p {
  font-size: 18px;
}

.truth-note,
.qualification-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 4px solid var(--magenta);
  border-radius: 0 12px 12px 0;
  color: var(--plum);
  background: rgba(214, 0, 110, 0.07);
  font-size: 14px;
  font-weight: 650;
}

.section-head {
  align-items: end;
  margin-bottom: 48px;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-head.light > p,
.section-plum .section-number,
.section-plum .eyebrow {
  color: #efb9d4;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 250px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px 22px 6px 22px;
  background: rgba(255, 255, 255, 0.045);
}

.steps span,
.pillar-card > span {
  display: inline-block;
  margin-bottom: 40px;
  color: #efb9d4;
  font-size: 12px;
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
  color: #d8ccd9;
  font-size: 15px;
}

.action-grid,
.home-grid,
.experts-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.action-media,
.home-media,
.experts-media {
  overflow: hidden;
  border-radius: 28px 28px 8px 28px;
  box-shadow: var(--shadow);
}

.action-media img,
.home-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.action-copy > p:not(.section-number),
.home-copy > p:not(.section-number),
.experts-copy > p:not(.section-number) {
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 4px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--magenta);
  transform: rotate(45deg);
}

.pillars {
  background: var(--paper-bright);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pillar-card {
  position: relative;
  min-height: 310px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px 22px 6px 22px;
  background: var(--paper);
}

.pillar-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -46px;
  width: 110px;
  height: 110px;
  border: 1px solid currentColor;
  opacity: 0.12;
  transform: rotate(45deg);
}

.pillar-card > span {
  margin-bottom: 52px;
  color: var(--magenta-dark);
}

.pillar-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.pillar-one {
  border-top: 4px solid var(--plum);
}

.pillar-two {
  border-top: 4px solid var(--magenta);
}

.pillar-three {
  border-top: 4px solid #a15082;
}

.pillar-four {
  border-top: 4px solid #56345a;
}

.experts-grid {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
}

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

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

.expert-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.expert-list h3,
.expert-list p {
  margin: 0;
}

.expert-list h3 {
  font-size: 16px;
}

.expert-list p {
  color: var(--muted);
  font-size: 14px;
}

.qualification-note {
  margin-bottom: 0;
}

.home-grid {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
}

.home-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.home-points article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-bright);
}

.home-points span {
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  padding: 68px 0;
  color: var(--white);
  background: var(--magenta);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 88px;
}

.contact-copy > p:not(.section-number) {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
}

.company-card {
  display: grid;
  gap: 3px;
  margin-top: 30px;
  padding: 22px;
  border-left: 4px solid var(--magenta);
  border-radius: 0 16px 16px 0;
  background: var(--paper-bright);
  font-size: 14px;
}

.company-card strong {
  margin-bottom: 7px;
  font-size: 16px;
}

.company-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--magenta-dark);
  font-weight: 750;
}

.contact-form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-bright);
  box-shadow: 0 15px 45px rgba(43, 19, 46, 0.07);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
}

.cta-band .eyebrow {
  color: var(--white);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.cta-band p:last-child {
  margin-bottom: 0;
  color: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 88px;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro > p:last-child {
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 20px 50px 20px 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--magenta-dark);
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 720px;
  padding: 0 54px 22px 0;
  color: var(--muted);
  font-size: 15px;
}

.final-grid {
  min-height: 440px;
}

.final-grid > div:first-child {
  max-width: 720px;
}

.final-grid p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: #d8ccd9;
}

.final-mark,
.thank-you-visual {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-self: end;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 34% 66% 40% 60%;
  background: linear-gradient(145deg, rgba(214, 0, 110, 0.36), rgba(255, 255, 255, 0.025));
  transform: rotate(-7deg);
}

.final-mark span,
.thank-you-visual span {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.final-mark strong,
.thank-you-visual strong {
  margin-top: -10px;
  color: #ff72b8;
  font-size: 92px;
  line-height: 1;
}

.site-footer {
  padding: 50px 0 110px;
  background: var(--paper-bright);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
}

.footer-grid > div:first-child img {
  width: 150px;
  height: auto;
  margin-bottom: 16px;
}

.footer-grid > div:first-child p,
.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid .company-details {
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.footer-link-button,
.inline-privacy-button,
.privacy-text-button,
.text-button-light {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-link-button {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-link-button:hover,
.inline-privacy-button:hover,
.privacy-text-button:hover {
  color: var(--magenta-dark);
}

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

.mobile-sticky-cta {
  display: none;
}

.mobile-sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}

.thank-you-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 0, 110, 0.26), transparent 30%),
    var(--plum);
}

.thank-you-header {
  padding: 30px 0;
}

.brand-light img {
  filter: invert(1);
}

.thank-you-main {
  min-height: calc(100vh - 98px);
  display: grid;
  align-items: center;
  padding: 48px 0 100px;
}

.thank-you-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: center;
  gap: 80px;
}

.thank-you-copy h1 {
  max-width: 790px;
}

.thank-you-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: #dfd3df;
  font-size: 18px;
}

.thank-you-copy .thank-you-lead {
  color: var(--white);
  font-size: 23px;
  font-weight: 700;
}

.trusted-note {
  padding-left: 18px;
  border-left: 4px solid var(--magenta);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.text-link-light {
  color: var(--white);
  font-weight: 750;
  text-underline-offset: 5px;
}

.text-button-light {
  color: var(--white);
  font-weight: 750;
}

.thank-you-visual {
  width: 420px;
  transform: none;
}

.thank-you-visual i {
  position: absolute;
  right: 12%;
  bottom: 12%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 12px rgba(214, 0, 110, 0.18);
}

.legal-page {
  background: var(--paper-bright);
}

.legal-main {
  padding: 90px 0 120px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.legal-content h2 {
  margin-top: 54px;
  font-size: 2rem;
}

.legal-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.legal-header-inner {
  grid-template-columns: 1fr auto;
}

.legal-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 42px 0 54px;
}

.legal-toc a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.legal-content section {
  scroll-margin-top: 110px;
}

.legal-content code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(43, 19, 46, 0.07);
  font-size: 0.88em;
}

.legal-content a {
  color: var(--magenta-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

.legal-table th,
.legal-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--plum);
  background: rgba(43, 19, 46, 0.055);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.inline-privacy-button {
  color: var(--magenta-dark);
  font-weight: 700;
}

.legal-footer {
  padding-bottom: 50px;
}

.privacy-dialog-open {
  overflow: hidden;
}

.privacy-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 100;
  max-width: 1160px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px 20px 6px 20px;
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 20px 60px rgba(24, 18, 26, 0.3);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner-copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
}

.privacy-banner-copy p {
  max-width: 720px;
  margin: 0;
  color: #dfd3df;
  font-size: 13px;
  line-height: 1.45;
}

.privacy-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-secondary,
.privacy-text-button {
  min-height: 44px;
  padding: 9px 13px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}

.privacy-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: transparent;
}

.privacy-banner .privacy-text-button {
  border: 0;
  color: #f1c5da;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(24, 18, 26, 0.66);
  backdrop-filter: blur(5px);
}

.privacy-dialog-backdrop[hidden] {
  display: none;
}

.privacy-dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  padding: 34px;
  border-radius: 24px 24px 8px 24px;
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.privacy-dialog h2 {
  padding-right: 34px;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.privacy-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--plum);
  background: var(--paper);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.privacy-choice-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.privacy-choice-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-choice-row > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.privacy-toggle-row {
  position: relative;
  cursor: pointer;
}

.privacy-toggle-row input {
  position: absolute;
  right: 0;
  width: 52px;
  height: 32px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.toggle-control {
  position: relative;
  width: 52px;
  height: 32px;
  border-radius: 999px;
  background: #9c929d;
  transition: background-color 0.2s ease;
}

.toggle-control::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.2s ease;
}

.privacy-toggle-row input:checked + .toggle-control {
  background: var(--magenta);
}

.privacy-toggle-row input:checked + .toggle-control::after {
  transform: translateX(20px);
}

.privacy-toggle-row input:focus-visible + .toggle-control {
  outline: 3px solid #ff72b8;
  outline-offset: 4px;
}

.privacy-dialog-link {
  font-size: 13px;
}

.legal-content li {
  margin-bottom: 10px;
}

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

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

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 42px;
  }

  .hero-media {
    min-height: 620px;
  }

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

  .action-grid,
  .experts-grid,
  .home-grid {
    gap: 44px;
  }

  .thank-you-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 44px;
  }

  .thank-you-visual {
    width: 350px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 94px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 52px 0 72px;
  }

  .hero-grid,
  .problem-grid,
  .section-head,
  .action-grid,
  .experts-grid,
  .home-grid,
  .faq-grid,
  .final-grid,
  .thank-you-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .privacy-banner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .hero-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-media img {
    object-position: center 42%;
  }

  .problem-grid,
  .section-head,
  .faq-grid {
    gap: 28px;
  }

  .problem-copy {
    padding-top: 0;
  }

  .expert-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .experts-media {
    max-height: 650px;
  }

  .experts-media img {
    object-position: center 38%;
  }

  .faq-intro {
    position: static;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .cta-band-inner .button {
    justify-self: start;
  }

  .final-mark {
    width: min(72vw, 360px);
    justify-self: center;
  }

  .thank-you-visual {
    width: min(72vw, 340px);
    justify-self: center;
    grid-row: 1;
  }

  .thank-you-copy {
    text-align: center;
  }

  .thank-you-copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .trusted-note {
    padding: 18px;
    border-top: 4px solid var(--magenta);
    border-left: 0;
    background: rgba(255, 255, 255, 0.05);
  }

  .thank-you-actions {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .announcement {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .header-inner {
    min-height: 68px;
    gap: 14px;
  }

  .brand {
    width: 136px;
    min-height: 44px;
  }

  .header-inner > .button {
    min-height: 44px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .eyebrow,
  .section-number,
  .launch-note > span,
  .launch-note p,
  .field-error,
  .form-status,
  .form-microcopy,
  .privacy-note,
  .hero-caption span,
  .hex-marker,
  .steps span,
  .steps p,
  .pillar-card > span,
  .pillar-card p,
  .expert-list p,
  .home-points span,
  .footer-grid > div:first-child p,
  .copyright {
    font-size: 14px;
  }

  h1 {
    font-size: clamp(2.38rem, 11vw, 2.62rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.12rem);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-media {
    aspect-ratio: 0.86;
    border-radius: 24px 24px 6px 24px;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .hex-marker {
    top: 16px;
    right: 16px;
  }

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

  .steps li,
  .pillar-card {
    min-height: 0;
  }

  .steps span,
  .pillar-card > span {
    margin-bottom: 26px;
  }

  .home-points article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .faq-list summary {
    min-height: 74px;
    padding-right: 46px;
    font-size: 15px;
  }

  .faq-list details p {
    padding-right: 0;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .privacy-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 18px;
  }

  .privacy-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .privacy-banner-actions .button,
  .privacy-secondary {
    width: 100%;
  }

  .privacy-banner .privacy-text-button {
    grid-column: 1 / -1;
  }

  .privacy-dialog {
    padding: 28px 20px 22px;
  }

  .privacy-choice-row {
    gap: 12px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .legal-header-actions .privacy-text-button {
    display: none;
  }

  .legal-toc a,
  .legal-content p a,
  .legal-content .inline-privacy-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
  }

  .privacy-note a,
  .footer-links a,
  .text-link-light {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .site-footer {
    padding-bottom: 106px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 16px;
    bottom: 14px;
    left: 16px;
    z-index: 45;
    display: inline-flex;
    min-height: 54px;
    box-shadow: 0 12px 28px rgba(43, 19, 46, 0.25);
  }

  .thank-you-main {
    padding-top: 30px;
  }

  .thank-you-actions {
    display: grid;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .legal-main {
    padding-top: 60px;
  }
}

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