:root {
  --ink: #69118D;
  --magenta: #D80AE4;
  --cream: #FAF9F6;
  --lime: #F2FA9E;
  --cyan: #B9F7FB;
  --lilac: #DCCBE8;
  --pink: #F3CBF6;
  --bright-cyan: #02EEFA;
  --gold-ring: #D9B961;
  --border: #EFEFEF;
  --gray: #8A8A8A;
  --plum-1: #2B0A3A;
  --plum-2: #3A0F4D;

  --font-display: Outfit, sans-serif;
  --font-body: Urbanist, sans-serif;

  --pad-x: clamp(20px, 5vw, 80px);
  --container: 1280px;
}

* { box-sizing: border-box; }

html { overflow-x: clip; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

p { margin: 0; }

a {
  color: var(--ink);
  text-decoration: none;
}
a:hover { color: var(--magenta); }

::selection { background: #F7FF00; color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.icon { width: 24px; height: 24px; color: var(--ink); }
.icon-lg { width: 48px; height: 48px; }

.eyebrow {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
}
.eyebrow-center { text-align: center; }
.eyebrow-cyan { color: var(--bright-cyan); }

.ink-accent { color: var(--magenta); }

.text-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--magenta);
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  transition: background .3s ease-out, color .3s ease-out;
}
.btn-cyan { background: var(--cyan); color: var(--ink); }
.btn-cyan:hover { background: #111111; color: #FFFFFF; }
.btn-dark { background: #111111; color: #FFFFFF; }
.btn-magenta { background: var(--magenta); color: #FFFFFF; }
.btn-magenta:hover { background: var(--ink); color: #FFFFFF; }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--pink); }

.card-number {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-size: 11px;
  color: var(--ink);
  opacity: 0.6;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal][data-in] { animation: fadeUp .55s ease-out both; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover {
  border-bottom-color: var(--magenta);
  color: var(--magenta);
}

.nav-cta {
  display: inline-block;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .3s ease-out, color .3s ease-out;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease-out;
  background: var(--cream);
}
.nav-panel.is-open { max-height: 300px; }
.nav-panel-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px var(--pad-x) 24px;
  font-size: 17px;
  font-weight: 500;
}
.nav-panel-cta {
  align-self: flex-start;
  margin-top: 8px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 899px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* hero */

.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 104px) var(--pad-x) clamp(40px, 6vw, 72px);
}
.hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-end;
  justify-content: space-between;
}
.hero-title {
  flex: 1 1 420px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 61px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 620px;
}
.hero-side {
  flex: 0 1 300px;
  max-width: 340px;
}
.hero-side p { font-size: 15px; line-height: 1.6; }
.hero-side .btn { margin-top: 24px; }

/* members in motion */

.motion-strip { overflow: hidden; padding-bottom: clamp(48px, 7vw, 96px); }
.motion-track {
  display: flex;
  gap: 18px;
  padding: 0 0 32px var(--pad-x);
  overflow-x: auto;
  scrollbar-width: none;
  align-items: flex-start;
}
.motion-track::-webkit-scrollbar { display: none; }
.motion-tile {
  flex: 0 0 auto;
  width: clamp(240px, 26vw, 333px);
  height: clamp(320px, 34vw, 436px);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.motion-offset { margin-top: 32px; }
.motion-hatch-lilac { background: repeating-linear-gradient(135deg, var(--lilac) 0 8px, var(--cream) 8px 16px); }
.motion-hatch-pink { background: repeating-linear-gradient(135deg, var(--pink) 0 8px, var(--cream) 8px 16px); }
.motion-lime { background: var(--lime); }
.motion-cyan { background: var(--cyan); }
.motion-caption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.75;
}
.motif { position: absolute; color: var(--ink); }
.motif-streak-tr { top: 28px; right: -60px; width: 200px; height: 200px; }
.motif-curve-bl { left: -60px; bottom: -28px; width: 200px; height: 200px; }
.motion-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}
.motion-quote-text {
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.25;
}

/* problem */

.problem {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--pad-x);
}
.problem-copy {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.problem-copy p { font-size: clamp(17px, 2vw, 20px); line-height: 1.5; }

/* statement */

.statement {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: clamp(72px, 12vw, 160px) var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.statement-deco { position: absolute; color: var(--ink); z-index: 0; pointer-events: none; }
.statement-deco-1 { right: 4%; top: 10%; width: 120px; height: 120px; opacity: 0.2; }
.statement-deco-2 { left: 3%; bottom: 14%; width: 100px; height: 100px; opacity: 0.16; transform: rotate(180deg); }
.statement-deco-3 { right: 12%; bottom: 4%; width: 110px; height: 110px; opacity: 0.16; }
.statement-headline {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 1180px;
  text-align: center;
  text-wrap: balance;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 112px);
  line-height: 1.16;
  letter-spacing: -0.025em;
}
.swatch {
  display: inline-block;
  vertical-align: -0.18em;
  margin: 0 0.14em;
  position: relative;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1.3;
  text-align: center;
  color: transparent;
  overflow: hidden;
}
.swatch::before {
  content: attr(data-label);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  color: var(--ink);
}
.swatch-face {
  width: 0.78em;
  height: 0.98em;
  border-radius: 0.22em;
  background: repeating-linear-gradient(135deg, var(--lilac) 0 8px, var(--cream) 8px 16px);
}
.swatch-hands {
  width: 1.02em;
  height: 0.78em;
  border-radius: 0.22em;
  background: repeating-linear-gradient(135deg, var(--cyan) 0 8px, var(--cream) 8px 16px);
}
.pill-outline {
  display: inline-block;
  border: 4px solid var(--bright-cyan);
  border-radius: 999px;
  padding: 0.02em 0.34em 0.1em;
  margin: 0 0.06em;
}

/* beliefs */

.beliefs {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 120px) var(--pad-x);
}
.beliefs-head { text-align: center; max-width: 860px; margin: 0 auto 80px; }
.beliefs-lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 3.4vw, 31px);
  line-height: 1.25;
}
.pillar-row { display: flex; flex-wrap: wrap; gap: 24px; align-items: stretch; }
.pillar-card {
  flex: 1 1 272px;
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 428px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .3s ease-out;
}
.pillar-card:hover { transform: translateY(-2px); }
.pillar-lime { background: var(--lime); }
.pillar-cyan { background: var(--cyan); }
.pillar-lilac { background: var(--lilac); }
.pillar-icon {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 66%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: var(--ink);
}
.pillar-icon svg { width: 180px; height: 180px; }
.pillar-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.pillar-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  max-width: 30ch;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease-out, transform .35s ease-out;
}
.pillar-card:hover .pillar-desc { opacity: 1; transform: none; }

/* why built */

.why-built {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 88px) var(--pad-x) clamp(64px, 10vw, 140px);
}
.why-built-intro {
  margin: 0 0 clamp(48px, 7vw, 96px);
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
}
.why-built-quote { margin: 0; max-width: 980px; }
.why-built-quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(23px, 3.4vw, 31px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--magenta);
}
.quote-mark { font-size: 1.9em; line-height: 0; vertical-align: -0.28em; margin-right: 6px; }
.why-built-quote footer {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* system */

.system {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 120px) var(--pad-x);
}
.system-head { text-align: center; margin-bottom: 80px; }
.system-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 49px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.system-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 80px);
  align-items: flex-start;
}
.system-aside {
  flex: 1 1 220px;
  max-width: 300px;
  position: sticky;
  top: 120px;
}
.system-aside-lede {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
}
.system-aside p:not(.system-aside-lede) {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.85;
}
.system-aside .text-link { display: inline-block; margin-top: 12px; }
.system-steps {
  flex: 3 1 480px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.step-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: clamp(300px, 34vw, 462px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.step-lime { background: var(--lime); }
.step-cyan { background: var(--cyan); }
.step-lilac { background: var(--lilac); }
.step-pink { background: var(--pink); }
.step-motif-mask {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 58%;
  overflow: hidden;
  pointer-events: none;
}
.step-motif-mask .motif { top: 22px; right: -66px; width: 220px; height: 220px; }
.step-label { margin: 0 0 8px; font-size: 18px; font-weight: 500; }
.step-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.step-desc { margin: 0 0 20px; font-size: 15px; line-height: 1.6; }
.step-desc-pad { margin: 0; padding-right: 44px; }
.system-outro {
  margin: clamp(64px, 9vw, 120px) auto 0;
  text-align: center;
  max-width: 900px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.6vw, 49px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* categories */

.categories {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--pad-x);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.category p { font-size: 15px; line-height: 1.4; }

/* who it's for */

.who {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 140px) var(--pad-x);
}
.who-row { display: flex; flex-wrap: wrap; gap: clamp(32px, 6vw, 88px); align-items: flex-start; }
.who-media { flex: 1 1 280px; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.who-media-wide {
  aspect-ratio: 2 / 1;
  border-radius: 24px;
  background: repeating-linear-gradient(135deg, var(--lilac) 0 8px, var(--cream) 8px 16px);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
}
.who-media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.who-media-cyan {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: var(--cyan);
  position: relative;
  overflow: hidden;
}
.motif-cadence { inset: 0; width: 100%; height: 100%; transform: rotate(90deg); }
.who-media-hatch {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: repeating-linear-gradient(135deg, var(--pink) 0 8px, var(--cream) 8px 16px);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
}
.who-content { flex: 1.2 1 360px; min-width: 0; }
.who-lede { margin: 0 0 48px; font-size: clamp(17px, 2vw, 20px); line-height: 1.5; max-width: 36ch; }

.faq-item { border-top: 1px solid var(--border); }
.faq-item-last { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.3;
  color: var(--ink);
}
.faq-trigger .icon { flex: 0 0 auto; width: 20px; height: 20px; }
.faq-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .45s ease-out, opacity .35s ease-out;
}
.faq-panel p { padding: 0 0 20px; font-size: 15px; line-height: 1.6; max-width: 52ch; }
.faq-item.is-open .faq-panel { max-height: 220px; opacity: 1; }

/* members include */

.members-include {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--pad-x);
}
.members-row { display: flex; flex-wrap: wrap; gap: clamp(32px, 6vw, 88px); align-items: flex-start; }
.members-aside { flex: 1 1 220px; max-width: 300px; }
.members-aside p:not(.eyebrow) { margin: 0 0 16px; font-size: 15px; line-height: 1.6; }
.members-panel {
  flex: 2.4 1 420px;
  min-width: 0;
  background: var(--lilac);
  border-radius: 20px;
  padding: 8px clamp(16px, 3vw, 32px);
}
.members-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.member-type { position: relative; padding: 22px 0; }
.member-type p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
}
.member-tick {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 40px;
  height: 10px;
  overflow: hidden;
}
.member-tick svg {
  display: block;
  width: 40px;
  height: 40px;
  margin-top: -15px;
  color: var(--gray);
}

/* scale */

.scale {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 150px) var(--pad-x);
}
.scale-statement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 5.4vw, 61px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

/* testimonials */

.testimonials { padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 9vw, 120px); }
.testimonials-head {
  max-width: var(--container);
  margin: 0 auto 40px;
  padding: 0 var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
}
.testimonials-head > div:first-child { max-width: 420px; }
.testimonials-head p { font-size: 15px; line-height: 1.6; }
.testimonials-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
}
.carousel-controls { display: flex; gap: 12px; }
.carousel-btn {
  width: 59px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--border);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.carousel-btn:hover { background: var(--lilac); }
.carousel-btn .icon { width: 16px; height: 16px; }

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px var(--pad-x);
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 auto;
  width: min(796px, 86vw);
  min-height: 349px;
  border-radius: 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  gap: 24px;
  scroll-snap-align: start;
  flex-wrap: wrap;
}
.testimonial-portrait {
  flex: 0 0 auto;
  width: clamp(120px, 24vw, 300px);
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: repeating-linear-gradient(135deg, var(--lilac) 0 8px, var(--cream) 8px 16px);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
}
.testimonial-body { flex: 1 1 240px; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.testimonial-text {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
}
.testimonial-name { margin: 0; font-size: 15px; font-weight: 600; }
.testimonial-role { margin: 4px 0 0; font-size: 13px; opacity: 0.75; }

/* pricing */

.pricing {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 88px) var(--pad-x);
}
.pricing-card {
  position: relative;
  overflow: hidden;
  background: var(--cyan);
  border-radius: 28px;
  padding: clamp(32px, 5vw, 64px);
  min-height: 470px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.pricing-ring {
  position: absolute;
  left: -62px;
  bottom: -62px;
  width: 187px;
  height: 187px;
  color: var(--gold-ring);
}
.pricing-main { position: relative; flex: 1 1 320px; min-width: 0; }
.pricing-amount { margin: 0 0 32px; display: flex; align-items: baseline; gap: 10px; }
.pricing-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 12vw, 125px);
  line-height: 0.85;
  letter-spacing: -0.03em;
}
.pricing-period { font-size: 24px; font-weight: 600; }
.pricing-fine { margin: 20px 0 0; font-size: 13px; line-height: 1.5; }
.pricing-list {
  position: relative;
  flex: 1 1 300px;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pricing-list li { display: flex; gap: 14px; align-items: center; font-size: 18px; font-weight: 500; }
.check-badge {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-badge .icon { width: 20px; height: 20px; color: var(--cyan); }

/* why nine */

.why-nine { background: var(--ink); padding: clamp(64px, 10vw, 150px) 0; }
.why-nine-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.why-nine-lines { display: block; width: 100%; max-width: 560px; height: 56px; margin: 0 0 40px; }
.why-nine-copy {
  max-width: 560px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(23px, 3.4vw, 31px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

/* start */

.start {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 120px) var(--pad-x);
}
.start-card {
  background: var(--pink);
  border-radius: 28px;
  min-height: 470px;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}
.start-card h2 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5.6vw, 61px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.start-tick { display: block; width: 80px; height: 20px; overflow: hidden; }
.start-tick svg { display: block; width: 80px; height: 80px; margin-top: -30px; color: #FFFFFF; }
.start-card p { max-width: 56ch; font-size: clamp(17px, 2vw, 20px); line-height: 1.5; }
.start-actions { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }

/* footer */

.site-footer .logo { color: var(--ink); }

.newsletter {
  position: relative;
  min-height: 609px;
  display: flex;
  align-items: flex-end;
  background: repeating-linear-gradient(135deg, var(--plum-1) 0 8px, var(--plum-2) 8px 16px);
  overflow: hidden;
}
.newsletter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(105,17,141,0.88) 42%, rgba(105,17,141,0.25) 100%);
}
.newsletter-photo-note {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad-x) clamp(48px, 7vw, 80px);
}
.newsletter-inner > * { max-width: 520px; }
.newsletter-inner h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 49px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.newsletter-inner p {
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.newsletter-form { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.newsletter-form input {
  flex: 1 1 220px;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.7);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 2px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form button {
  background: #FFFFFF;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.newsletter-form button:hover { background: #F7FF00; }

.footer-links {
  position: relative;
  overflow: hidden;
  background: var(--pink);
  min-height: 400px;
  padding: clamp(48px, 7vw, 80px) 0;
}
.footer-ring {
  position: absolute;
  right: -116px;
  bottom: -116px;
  width: 187px;
  height: 187px;
  color: var(--ink);
  z-index: 0;
}
.footer-links-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer-cols { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 64px); justify-content: space-between; }
.footer-brand { flex: 1 1 260px; max-width: 320px; }
.footer-brand .logo { margin: 0 0 16px; font-size: 24px; letter-spacing: -0.02em; }
.footer-brand p:not(.logo) { font-size: 15px; line-height: 1.6; color: rgba(105,17,141,0.7); }
.footer-col { flex: 0 1 160px; display: flex; flex-direction: column; }
.footer-col .eyebrow { margin: 0 0 16px; }
.footer-col a { font-size: 15px; }
.footer-col a + a { margin-top: 10px; }
.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 24px;
  border-top: 1px solid rgba(105,17,141,0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 24px; }
