:root {
  --navy: #0a2231;
  --navy-deep: #04121a;
  --navy-highlight: #1f4d68;
  --cream: #f4ecd8;
  --mist: #eef3f4;
  --gold: #e8c87d;
  --gold-highlight: #fff4d0;
  --gold-mid: #d4b06a;
  --gold-low: #8a6c3a;
  --ink: #071923;
  --muted: #5e6a6f;
  --white: #fbfaf7;
  --line: rgba(10, 34, 49, 0.16);
  --container: min(1160px, calc(100vw - 40px));
  --sans: "Inter", Arial, sans-serif;
  --mono: "JetBrains Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-deep);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 18, 26, 0.1), rgba(4, 18, 26, 0.52)),
    url("assets/hero-vision-texture.png") center top / cover fixed;
  mask-image: linear-gradient(180deg, black, transparent 82%);
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 18px max(20px, calc((100vw - 1160px) / 2));
  color: var(--gold-highlight);
  border: 0;
  background: rgba(10, 34, 49, 0.94);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(10, 34, 49, 0.98);
  box-shadow: 0 18px 50px rgba(4, 18, 26, 0.28);
}

.brand,
.footer-brand {
  display: flex;
  width: 184px;
  height: 42px;
  align-items: center;
  overflow: hidden;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav a,
.site-nav button {
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 244, 208, 0.78);
  cursor: pointer;
  font: inherit;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav button:hover {
  background: rgba(255, 244, 208, 0.08);
  color: var(--gold-highlight);
}

.site-nav .language-toggle {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 5px;
  border: 1px solid rgba(232, 200, 125, 0.28);
  background: rgba(255, 244, 208, 0.06);
}

.language-toggle span {
  min-width: 32px;
  padding: 5px 8px;
  border-radius: 999px;
  text-align: center;
}

.language-toggle span:first-child {
  background: var(--gold);
  color: var(--navy-deep);
}

body[data-language="nl"] .language-toggle span:first-child {
  background: transparent;
  color: rgba(255, 244, 208, 0.78);
}

body[data-language="nl"] .language-toggle span:last-child {
  background: var(--gold);
  color: var(--navy-deep);
}

.site-nav a:last-child,
.site-nav button:last-child {
  background: rgba(232, 200, 125, 0.14);
  color: var(--gold-highlight);
}

.site-nav a:last-child:hover,
.site-nav button:last-child:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(232, 200, 125, 0.34);
  background: rgba(10, 34, 49, 0.64);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--gold);
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-navy {
  background:
    linear-gradient(180deg, rgba(10, 34, 49, 0.98), rgba(4, 18, 26, 0.96)),
    var(--navy);
  color: var(--gold-highlight);
}

.section-cream {
  background:
    linear-gradient(180deg, rgba(238, 243, 244, 0.92), rgba(238, 243, 244, 0.96)),
    url("assets/hero-vision-texture.png") center / cover;
  color: var(--ink);
}

.section-white {
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.94), rgba(251, 250, 247, 0.98)),
    url("assets/hero-vision-texture.png") center / cover;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(320px, 410px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(42px, 7vw, 112px);
  padding: 136px max(24px, calc((100vw - 1160px) / 2)) 78px;
  overflow: hidden;
  background-image: url("assets/hero-dark-luxury.png");
  background-position: 62% center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 26, 0.86) 0%, rgba(4, 18, 26, 0.56) 44%, rgba(4, 18, 26, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 34, 49, 0.12) 0%, rgba(4, 18, 26, 0) 42%, rgba(4, 18, 26, 0.78) 100%),
    radial-gradient(circle at 76% 40%, rgba(232, 200, 125, 0.08), transparent 24rem);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - 1160px) / 2));
  right: max(20px, calc((100vw - 1160px) / 2));
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(4, 18, 26, 0.95));
  pointer-events: none;
}

.hero-copy,
.hero-proof {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 650px;
  text-shadow: 0 3px 24px rgba(4, 18, 26, 0.54);
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
  color: var(--gold-low, #8a6c3a);
}

h1,
h2 {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  margin-top: 18px;
  color: var(--gold-highlight);
  font-size: clamp(4.2rem, 7vw, 6.15rem);
  font-weight: 500;
}

h2 {
  max-width: 980px;
  font-size: 4.1rem;
}

h3 {
  color: inherit;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero-lede {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 244, 208, 0.8);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 400;
  line-height: 1.55;
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-self: end;
  width: 100%;
  max-width: 410px;
  margin: 0 0 6px;
  overflow: hidden;
  border: 1px solid rgba(232, 200, 125, 0.18);
  border-radius: 26px;
  background: rgba(4, 18, 26, 0.36);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.hero-proof div {
  position: relative;
  min-height: auto;
  padding: 24px 26px;
  background: linear-gradient(180deg, rgba(255, 244, 208, 0.02), rgba(255, 244, 208, 0.006));
}

.hero-proof div + div {
  border-top: 1px solid rgba(232, 200, 125, 0.12);
}

.hero-proof span {
  display: block;
  color: rgba(232, 200, 125, 0.84);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  margin-top: 11px;
  color: rgba(255, 244, 208, 0.8);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.button:focus-visible,
.site-nav a:focus-visible,
.site-nav button:focus-visible,
.nav-toggle:focus-visible,
.modal-close:focus-visible,
.community-form input:focus-visible,
.community-form textarea:focus-visible {
  outline: 3px solid rgba(232, 200, 125, 0.58);
  outline-offset: 3px;
}

.button-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
}

.button-secondary {
  border-color: rgba(255, 244, 208, 0.38);
  color: var(--gold-highlight);
}

.button-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.inline-modal-link {
  display: inline;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(232, 200, 125, 0.72);
  background: transparent;
  color: var(--gold-highlight);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.inline-modal-link:hover,
.inline-modal-link:focus-visible {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

section:not(.hero) {
  padding: clamp(78px, 10vw, 132px) max(20px, calc((100vw - 1160px) / 2));
}

.scroll-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.28), 0 -1px rgba(10, 34, 49, 0.08);
}

.scroll-panel.is-visible {
  opacity: 1;
}

.section-cream.scroll-panel::before,
.section-white.scroll-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 200, 125, 0.08), transparent 18rem),
    linear-gradient(135deg, rgba(10, 34, 49, 0.035), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), transparent 34%);
  box-shadow: inset 0 1px rgba(10, 34, 49, 0.08);
}

.section-navy.scroll-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 18, 26, 0.18), rgba(4, 18, 26, 0.7)),
    url("assets/hero-vision-texture.png") center / cover,
    radial-gradient(circle at 10% 8%, rgba(31, 77, 104, 0.32), transparent 18rem),
    linear-gradient(135deg, rgba(255, 244, 208, 0.04), transparent 40%);
  opacity: 0.82;
}

.scroll-panel > * {
  position: relative;
  z-index: 1;
}

.scroll-panel h2,
.scroll-panel .eyebrow,
.scroll-panel .section-kicker,
.scroll-panel .section-lede,
.scroll-panel .copy-stack,
.scroll-panel .not-grid article,
.scroll-panel .steps article,
.scroll-panel .principles article,
.scroll-panel .outcome-card,
.scroll-panel .area-list span,
.scroll-panel .quote-mark,
.scroll-panel .community-form label,
.scroll-panel .button {
  transform: translateY(14px);
  opacity: 0.82;
  transition: transform 760ms cubic-bezier(0.2, 0.72, 0.18, 1), opacity 620ms ease;
}

.scroll-panel.is-visible h2,
.scroll-panel.is-visible .eyebrow,
.scroll-panel.is-visible .section-kicker,
.scroll-panel.is-visible .section-lede,
.scroll-panel.is-visible .copy-stack,
.scroll-panel.is-visible .not-grid article,
.scroll-panel.is-visible .steps article,
.scroll-panel.is-visible .principles article,
.scroll-panel.is-visible .outcome-card,
.scroll-panel.is-visible .area-list span,
.scroll-panel.is-visible .quote-mark,
.scroll-panel.is-visible .community-form label,
.scroll-panel.is-visible .button {
  transform: translateY(0);
  opacity: 1;
}

.scroll-panel.is-visible .not-grid article:nth-child(2),
.scroll-panel.is-visible .steps article:nth-child(2),
.scroll-panel.is-visible .principles article:nth-child(2),
.scroll-panel.is-visible .outcome-card:nth-child(2),
.scroll-panel.is-visible .area-list span:nth-child(2) {
  transition-delay: 90ms;
}

.scroll-panel.is-visible .not-grid article:nth-child(3),
.scroll-panel.is-visible .steps article:nth-child(3),
.scroll-panel.is-visible .principles article:nth-child(3),
.scroll-panel.is-visible .outcome-card:nth-child(3),
.scroll-panel.is-visible .area-list span:nth-child(3) {
  transition-delay: 160ms;
}

.scroll-panel.is-visible .principles article:nth-child(4),
.scroll-panel.is-visible .outcome-card:nth-child(4),
.scroll-panel.is-visible .area-list span:nth-child(4) {
  transition-delay: 230ms;
}

.scroll-panel.is-visible .principles article:nth-child(5),
.scroll-panel.is-visible .area-list span:nth-child(5) {
  transition-delay: 300ms;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.problem h2,
.fit h2,
.community h2 {
  color: var(--navy);
}

.section-kicker {
  margin-bottom: 18px;
}

.copy-stack {
  display: grid;
  gap: 20px;
  color: rgba(7, 25, 35, 0.78);
  font-size: 18px;
  max-width: 680px;
}

.quiet-line {
  color: var(--navy);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.positioning {
  padding-top: 110px;
  padding-bottom: 110px;
}

.positioning-inner {
  width: var(--container);
  margin: 0 auto;
}

.positioning h2 {
  max-width: 900px;
  margin-top: 16px;
  color: var(--navy);
}

.not-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
  background: transparent;
  border: 0;
}

.not-grid article {
  min-height: 210px;
  padding: 32px;
  border: 1px solid rgba(10, 34, 49, 0.08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 34, 49, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.not-grid article:hover,
.principles article:hover,
.steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 200, 125, 0.28);
  box-shadow: 0 24px 62px rgba(10, 34, 49, 0.1);
}

.not-grid span {
  color: var(--gold-low, #8a6c3a);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.not-grid p,
.doctor-note {
  margin-top: 18px;
  color: rgba(7, 25, 35, 0.72);
}

.doctor-note {
  max-width: 850px;
  font-size: 23px;
  line-height: 1.45;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section-head h2 {
  margin-top: 14px;
}

.section-lede {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 244, 208, 0.74);
  font-size: 18px;
}

.how .section-head h2,
.areas h2,
.final-cta h2 {
  color: var(--gold-highlight);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 42px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.steps article {
  min-height: 340px;
  padding: 34px;
  border: 1px solid rgba(232, 200, 125, 0.14);
  border-radius: 18px;
  background: var(--navy);
  box-shadow: inset 0 1px rgba(255, 244, 208, 0.06), 0 20px 58px rgba(4, 18, 26, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-number {
  margin-bottom: 52px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.steps p {
  margin-top: 18px;
  color: rgba(255, 244, 208, 0.72);
}

.principles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  border-top: 0;
}

.principles article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(10, 34, 49, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 244, 208, 0.58), transparent 38%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(10, 34, 49, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.principles article:last-child {
  border-right: 1px solid rgba(10, 34, 49, 0.08);
}

.principle-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(232, 200, 125, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 244, 208, 0.2), transparent 46%),
    var(--navy);
  box-shadow: inset 0 1px rgba(255, 244, 208, 0.12), 0 14px 32px rgba(10, 34, 49, 0.12);
}

.principle-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.principles article:hover .principle-icon {
  border-color: rgba(232, 200, 125, 0.62);
  box-shadow: inset 0 1px rgba(255, 244, 208, 0.16), 0 18px 38px rgba(10, 34, 49, 0.16);
}

.principles h3 {
  color: var(--navy);
  font-size: 22px;
}

.principles p {
  margin-top: 16px;
  color: rgba(7, 25, 35, 0.76);
  font-size: 15px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 20px 22px 20px 50px;
  border: 1px solid rgba(10, 34, 49, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(232, 200, 125, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 42px rgba(10, 34, 49, 0.045);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-mid);
  box-shadow: 0 0 0 7px rgba(232, 200, 125, 0.14);
}

.check-list strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
}

.check-list span {
  display: block;
  max-width: 710px;
  margin-top: 9px;
  color: rgba(7, 25, 35, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(232, 200, 125, 0.22);
  background: rgba(4, 18, 26, 0.2);
  box-shadow: inset 0 1px rgba(255, 244, 208, 0.05);
  color: rgba(255, 244, 208, 0.86);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.area-list span:hover {
  border-color: rgba(232, 200, 125, 0.44);
  background: rgba(232, 200, 125, 0.1);
}

.areas {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.areas::after {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 26, 0.96), rgba(4, 18, 26, 0.72)),
    url("assets/hero-vision-texture.png") center / cover;
  opacity: 0.34;
  transform: scale(1.08);
  animation: vision-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.areas::before {
  z-index: 0;
}

.areas > * {
  position: relative;
  z-index: 1;
}

@keyframes vision-drift {
  from {
    transform: scale(1.08) translate3d(-1.2%, -1%, 0);
  }

  to {
    transform: scale(1.15) translate3d(1.8%, 1.2%, 0);
  }
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  perspective: 1400px;
}

.outcome-card {
  position: relative;
  display: grid;
  min-height: 330px;
  padding: 0;
  border: 1px solid rgba(232, 200, 125, 0.16);
  border-radius: 24px;
  background: transparent;
  box-shadow: inset 0 1px rgba(255, 244, 208, 0.05), 0 22px 54px rgba(4, 18, 26, 0.2);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transform-style: preserve-3d;
  transition: transform 240ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.outcome-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 200, 125, 0.36);
  box-shadow: inset 0 1px rgba(255, 244, 208, 0.06), 0 28px 68px rgba(4, 18, 26, 0.28);
}

.outcome-card:focus-visible {
  outline: 3px solid rgba(232, 200, 125, 0.58);
  outline-offset: 4px;
}

.outcome-card.is-flipped .outcome-front {
  transform: rotateY(180deg);
}

.outcome-card.is-flipped .outcome-back {
  transform: rotateY(0);
}

.outcome-face {
  grid-area: 1 / 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border-radius: 24px;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.outcome-front {
  background:
    linear-gradient(145deg, rgba(232, 200, 125, 0.1), transparent 46%),
    rgba(4, 18, 26, 0.62);
  backdrop-filter: blur(16px);
}

.outcome-back {
  background:
    linear-gradient(145deg, rgba(232, 200, 125, 0.18), transparent 54%),
    rgba(10, 34, 49, 0.9);
  transform: rotateY(-180deg);
}

.outcome-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.outcome-number,
.outcome-label,
.outcome-hint {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.outcome-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(232, 200, 125, 0.28);
  border-radius: 999px;
  background: rgba(232, 200, 125, 0.08);
  box-shadow: inset 0 1px rgba(255, 244, 208, 0.08);
}

.outcome-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.outcome-title {
  display: block;
  color: var(--gold-highlight);
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.12;
}

.outcome-summary,
.outcome-detail,
.outcome-result {
  display: block;
  margin-top: 16px;
  color: rgba(255, 244, 208, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.outcome-hint {
  margin-top: auto;
  padding-top: 24px;
  color: rgba(232, 200, 125, 0.72);
}

.outcome-label {
  margin-bottom: 28px;
}

.outcome-detail {
  color: rgba(255, 244, 208, 0.86);
}

.outcome-result {
  margin-top: auto;
  padding-top: 22px;
  color: var(--gold-highlight);
  font-weight: 600;
}

.proof {
  display: grid;
  grid-template-columns: minmax(200px, 360px) minmax(0, 780px);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.quote-mark {
  opacity: 0.22;
  filter: drop-shadow(0 22px 44px rgba(10, 34, 49, 0.16));
}

.proof-copy h2 {
  margin-top: 14px;
  color: var(--navy);
}

.proof-copy p:last-child {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(7, 25, 35, 0.74);
  font-size: 20px;
}

.community {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 18, 26, 0.68) 0%, rgba(4, 18, 26, 0.54) 46%, rgba(4, 18, 26, 0.42) 100%),
    linear-gradient(180deg, rgba(4, 18, 26, 0.42), rgba(4, 18, 26, 0.78)),
    url("assets/harbour-community-background.png") 58% center / cover;
  color: var(--gold-highlight);
}

.community.scroll-panel::before {
  background:
    linear-gradient(180deg, rgba(4, 18, 26, 0.24), rgba(4, 18, 26, 0.56)),
    radial-gradient(circle at 76% 35%, rgba(232, 200, 125, 0.08), transparent 22rem);
  box-shadow: inset 0 1px rgba(232, 200, 125, 0.08);
}

.community::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 18, 26, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(4, 18, 26, 0.2), transparent 66%);
  pointer-events: none;
}

.community-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.community-layout h2 {
  color: var(--gold-highlight);
}

.community .copy-stack {
  color: rgba(255, 244, 208, 0.82);
  padding: 30px;
  border: 1px solid rgba(232, 200, 125, 0.18);
  border-radius: 26px;
  background: rgba(4, 18, 26, 0.34);
  box-shadow: 0 22px 60px rgba(4, 18, 26, 0.28);
  backdrop-filter: blur(14px);
}

.text-link {
  width: fit-content;
  border-bottom: 1px solid var(--gold-mid);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.community-form {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.community-form label {
  display: grid;
  gap: 8px;
}

.community-form span {
  color: var(--gold-low);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.community-form input,
.community-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 34, 49, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  outline: 0;
  padding: 15px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.community-form textarea {
  resize: vertical;
}

.community-form input:focus,
.community-form textarea:focus {
  border-color: var(--gold-mid);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 200, 125, 0.2);
}

.community-form .button {
  width: fit-content;
  margin-top: 6px;
  cursor: pointer;
}

.form-privacy {
  margin: 2px 0;
  color: rgba(7, 25, 35, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.consent-check {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px !important;
  align-items: start;
  color: rgba(7, 25, 35, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--navy);
}

.consent-check span {
  color: inherit;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.simple-page {
  min-height: 100vh;
  padding: 144px max(24px, calc((100vw - 960px) / 2)) 82px;
  background:
    linear-gradient(90deg, rgba(4, 18, 26, 0.9), rgba(4, 18, 26, 0.46)),
    url("assets/hero-dark-luxury.png") 62% center / cover fixed;
  color: var(--gold-highlight);
}

.simple-page-card {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(232, 200, 125, 0.24);
  border-radius: 28px;
  background: rgba(4, 18, 26, 0.5);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.simple-page-card h1 {
  margin: 14px 0 18px;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 1;
}

.simple-page-card h2 {
  margin: 26px 0 10px;
  color: var(--gold-highlight);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.1;
}

.simple-page-card p,
.simple-page-card li {
  color: rgba(255, 244, 208, 0.82);
  font-size: 17px;
  line-height: 1.65;
}

.simple-page-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.simple-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 26, 0.76);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 36px;
  border: 1px solid rgba(232, 200, 125, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), transparent 42%),
    var(--mist);
  box-shadow: 0 34px 90px rgba(4, 18, 26, 0.42);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

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

  .scroll-panel,
  .scroll-panel h2,
  .scroll-panel .copy-stack,
  .scroll-panel .not-grid article,
  .scroll-panel .steps article,
  .scroll-panel .principles article,
  .scroll-panel .outcome-card,
  .scroll-panel .area-list span,
  .scroll-panel .community-form label,
  .scroll-panel .button {
    transform: none !important;
    opacity: 1 !important;
  }

  .areas::after {
    animation: none;
  }

  .outcome-face {
    transition-duration: 0.01ms !important;
  }
}

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

.modal-panel h2 {
  max-width: 520px;
  margin: 12px 0 24px;
  color: var(--navy);
  font-size: 2.65rem;
  line-height: 1.05;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(10, 34, 49, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: var(--navy);
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.final-cta {
  text-align: center;
}

.final-inner {
  max-width: 760px;
  margin: 0 auto;
}

.final-inner img {
  width: 96px;
  margin: 0 auto 22px;
}

.final-inner h2 {
  margin: 16px 0 28px;
  font-size: 3.25rem;
  line-height: 1.08;
}

.final-inner .button {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 28px max(20px, calc((100vw - 1160px) / 2));
  border-top: 1px solid rgba(232, 200, 125, 0.18);
  background: var(--navy-deep);
  color: rgba(255, 244, 208, 0.72);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

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

.community-widget {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(232, 200, 125, 0.42);
  border-radius: 999px;
  background: rgba(4, 18, 26, 0.94);
  box-shadow: 0 18px 48px rgba(4, 18, 26, 0.34), 0 0 0 7px rgba(10, 34, 49, 0.18);
  color: var(--gold-highlight);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  transition: width 200ms ease, transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(14px);
}

.community-widget:hover {
  width: 218px;
  gap: 10px;
  border-color: rgba(232, 200, 125, 0.72);
  background: rgba(4, 18, 26, 0.98);
  color: var(--gold-highlight);
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(4, 18, 26, 0.42);
}

.community-widget:focus-visible {
  outline: 3px solid rgba(232, 200, 125, 0.58);
  outline-offset: 4px;
}

.community-widget img {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.community-widget span {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 200ms ease, opacity 160ms ease;
}

.community-widget:hover span,
.community-widget:focus-visible span {
  max-width: 150px;
  opacity: 1;
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 72px;
    padding: 12px 20px;
    box-shadow: 0 10px 30px rgba(4, 18, 26, 0.22);
  }

  .site-header:not([data-header]) {
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-header.is-scrolled {
    padding: 10px 20px;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(232, 200, 125, 0.16);
    border-radius: 24px;
    background: var(--navy);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .site-header:not([data-header]) .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .site-nav button {
    min-height: 48px;
    padding: 13px 14px;
    border-radius: 16px;
    border-bottom: 1px solid rgba(232, 200, 125, 0.12);
    font-size: 15px;
    text-align: left;
  }

  .site-header:not([data-header]) .site-nav a,
  .site-header:not([data-header]) .site-nav button {
    min-height: 40px;
    padding: 8px 10px;
    border-bottom: 0;
    border-radius: 999px;
    font-size: 13px;
  }

  .site-nav a:last-child,
  .site-nav button:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 92px;
    background-position: 62% center;
  }

  .hero-proof {
    max-width: 760px;
    margin-top: 34px;
    align-self: auto;
  }

  .split,
  .proof {
    grid-template-columns: 1fr;
  }

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

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

  .steps article {
    min-height: auto;
  }

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

  .community {
    background-position: 62% center;
  }

  .community-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .principles article {
    padding-bottom: 24px;
  }

  .quote-mark {
    width: 220px;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3.5rem;
  }

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

  .community-widget {
    right: 16px;
    bottom: 16px;
    width: 68px;
    height: 68px;
    font-size: 12px;
  }

  .community-widget:hover {
    width: 196px;
    transform: translateY(-3px);
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    width: 150px;
    height: 36px;
  }

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

  .site-nav {
    left: 16px;
    right: 16px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 118px 20px 72px;
    background-position: 68% center;
  }

  h1 {
    max-width: 10ch;
    font-size: 3.75rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2.7rem;
    line-height: 1.05;
  }

  h3 {
    font-size: 22px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .hero-lede {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 26px;
    border-radius: 20px;
  }

  .hero-proof div {
    min-height: auto;
    padding: 18px;
  }

  .button {
    min-height: 54px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 14px;
    text-align: center;
  }

  section:not(.hero) {
    padding: 64px 20px;
  }

  .split {
    gap: 28px;
  }

  .community-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: none;
  }

  .community {
    background-position: 64% center;
  }

  .community::before {
    background:
      linear-gradient(180deg, rgba(4, 18, 26, 0.28), rgba(4, 18, 26, 0.74)),
      linear-gradient(90deg, rgba(4, 18, 26, 0.26), transparent 72%);
  }

  .community.scroll-panel::before {
    background:
      linear-gradient(180deg, rgba(4, 18, 26, 0.22), rgba(4, 18, 26, 0.5)),
      radial-gradient(circle at 72% 30%, rgba(232, 200, 125, 0.06), transparent 18rem);
  }

  .community .copy-stack {
    padding: 22px;
    border-radius: 22px;
  }

  .copy-stack,
  .proof-copy p:last-child {
    font-size: 17px;
  }

  .positioning {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .positioning-inner {
    width: 100%;
  }

  .not-grid {
    margin-top: 32px;
    gap: 12px;
    border: 0;
    background: transparent;
  }

  .not-grid article {
    min-height: 0;
    padding: 24px;
  }

  .doctor-note {
    margin-top: 28px;
    font-size: 18px;
  }

  .section-head {
    margin-bottom: 36px;
    text-align: left;
  }

  .steps {
    gap: 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .steps article {
    padding: 26px;
    border: 1px solid rgba(232, 200, 125, 0.16);
    border-radius: 22px;
  }

  .step-number {
    margin-bottom: 34px;
  }

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

  .principles article {
    min-height: 0;
    padding: 22px;
    border-right: 1px solid rgba(10, 34, 49, 0.08);
    border-bottom: 1px solid rgba(10, 34, 49, 0.08);
    border-radius: 18px;
  }

  .principles article:last-child {
    border-bottom: 1px solid rgba(10, 34, 49, 0.08);
  }

  .principle-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
  }

  .area-list {
    gap: 10px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .outcome-card {
    min-height: auto;
  }

  .outcome-face {
    padding: 24px;
  }

  .outcome-topline {
    margin-bottom: 34px;
  }

  .outcome-title {
    font-size: 23px;
  }

  .outcome-summary,
  .outcome-detail,
  .outcome-result {
    font-size: 15px;
  }

  .area-list span {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .proof {
    gap: 24px;
  }

  .quote-mark {
    width: 150px;
    opacity: 0.22;
  }

  .final-inner img {
    width: 78px;
  }

  .final-inner h2 {
    font-size: 2.2rem;
  }

  .final-inner .button {
    min-height: 48px;
    font-size: 13px;
  }

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

  .modal {
    padding: 16px;
    align-items: end;
  }

  .modal-panel {
    max-height: calc(100vh - 32px);
    padding: 28px 20px 22px;
    border-radius: 24px;
  }

  .modal-panel h2 {
    padding-right: 42px;
    font-size: 2rem;
  }

  .site-footer {
    gap: 18px;
    padding: 28px 20px 34px;
  }

  .footer-brand {
    width: 150px;
    height: 36px;
  }

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

@media (max-width: 380px) {
  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-lede {
    font-size: 16px;
  }

  .button {
    font-size: 13px;
  }
}
