:root {
  --purple-950: #1d1530;
  --purple-900: #261a3d;
  --purple-800: #3f275e;
  --purple-700: #5f368c;
  --purple-600: #7c4ab4;
  --purple-500: #9363c8;
  --purple-300: #c7a9e4;
  --purple-200: #dfcfef;
  --purple-100: #eee5f7;
  --purple-50: #f8f4fb;
  --ink: #1c1a28;
  --ink-soft: #4d4859;
  --muted: #716b7d;
  --line: #e6deec;
  --white: #ffffff;
  --cream: #fcfaf7;
  --sage: #71847a;
  --success: #4f8a68;
  --shadow-sm: 0 8px 28px rgba(38, 26, 61, .08);
  --shadow-md: 0 20px 60px rgba(38, 26, 61, .14);
  --shadow-lg: 0 34px 90px rgba(38, 26, 61, .2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1240px;
  --font-sans: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--purple-600);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

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

.announcement {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(124, 74, 180, .08);
  background: #fbf7f1;
}

.announcement__inner {
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}

.announcement__inner > span {
  color: var(--ink-soft);
}

.announcement__inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--purple-700);
}

.announcement__inner a:hover {
  color: var(--purple-950);
}

.site-header {
  position: sticky;
  z-index: 35;
  top: 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(38, 26, 61, .07);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 30px rgba(38, 26, 61, .08);
}

.site-header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 170px;
  height: auto;
}

.brand__product {
  min-width: 42px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--white);
  background: var(--purple-600);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.desktop-nav a,
.text-link {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--purple-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--purple-700);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--purple-600);
  border: 1px solid var(--purple-600);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(124, 74, 180, .2);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
  color: var(--white);
  background: var(--purple-700);
  border-color: var(--purple-700);
  box-shadow: 0 14px 30px rgba(95, 54, 140, .28);
  transform: translateY(-2px);
}

.button:focus-visible,
.menu-button:focus-visible,
.role-tab:focus-visible,
.role-choice__button:focus-visible,
summary:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(147, 99, 200, .38);
  outline-offset: 3px;
}

.button svg {
  transition: transform .2s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

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

.button--large {
  min-height: 58px;
  padding-inline: 26px;
}

.button--ghost {
  color: var(--purple-950);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(38, 26, 61, .16);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  color: var(--purple-700);
  background: var(--white);
  border-color: var(--purple-300);
  box-shadow: var(--shadow-sm);
}

.button--light {
  color: var(--purple-950);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 16px 34px rgba(17, 10, 29, .18);
}

.button--light:hover {
  color: var(--purple-700);
  background: var(--purple-50);
  border-color: var(--purple-50);
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--purple-950);
  background: var(--purple-50);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.menu-button .close-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-button[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-menu {
  padding: 12px 20px 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu:not([hidden]) {
  display: grid;
  gap: 4px;
}

.mobile-menu a:not(.button) {
  padding: 13px 4px;
  color: var(--ink-soft);
  font-weight: 600;
  border-bottom: 1px solid var(--purple-50);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  isolation: isolate;
  overflow: hidden;
  background: #eee6f4;
}

.hero__media,
.hero__shade,
.hero__content {
  grid-area: 1 / 1;
}

.hero__media {
  z-index: -3;
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(248, 244, 251, .98) 0%, rgba(248, 244, 251, .96) 27%, rgba(248, 244, 251, .65) 47%, rgba(248, 244, 251, .04) 68%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(38,26,61,.05));
}

.hero__content {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding-block: 78px 94px;
}

.hero__copy {
  width: min(610px, 51%);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple-700);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .105em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(124, 74, 180, .13);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.eyebrow svg {
  color: var(--purple-500);
}

.hero h1,
.section-heading h2,
.audience-section h2,
.language-copy h2,
.ecosystem h2,
.faq-intro h2,
.signup h2 {
  margin: 0;
  color: var(--purple-950);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 700;
  letter-spacing: -.052em;
  line-height: .99;
}

.hero h1 {
  max-width: 640px;
  margin-top: 20px;
}

.hero h1 em {
  color: var(--purple-600);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.035em;
}

.hero__copy > p {
  max-width: 600px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 23px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero__trust svg {
  width: 17px;
  height: 17px;
  padding: 2px;
  color: var(--white);
  background: var(--purple-600);
  border-radius: 50%;
  stroke-width: 2.2;
}

.profile-preview {
  position: absolute;
  right: 8px;
  bottom: 48px;
  width: 326px;
  padding: 20px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.profile-preview__top,
.profile-preview__person,
.profile-preview__meta,
.profile-preview__match {
  display: flex;
  align-items: center;
}

.profile-preview__top {
  justify-content: space-between;
  gap: 12px;
}

.profile-preview__label {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.profile-preview__status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
}

.profile-preview__status i {
  width: 7px;
  height: 7px;
  background: #5ca879;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(92, 168, 121, .14);
}

.profile-preview__person {
  gap: 12px;
  margin-top: 18px;
}

.profile-preview__avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-500), var(--purple-800));
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(95, 54, 140, .24);
}

.profile-preview__person strong,
.profile-preview__person span {
  display: block;
}

.profile-preview__person strong {
  font-size: 15px;
}

.profile-preview__person span {
  color: var(--muted);
  font-size: 12px;
}

.profile-preview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 15px;
}

.profile-preview__tags span {
  padding: 5px 9px;
  color: var(--purple-700);
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.profile-preview__meta {
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 15px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
}

.profile-preview__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.profile-preview__meta svg {
  width: 14px;
  height: 14px;
  color: var(--purple-600);
}

.profile-preview__match {
  justify-content: space-between;
  gap: 14px;
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
}

.match-bar {
  width: 96px;
  height: 6px;
  overflow: hidden;
  background: var(--purple-100);
  border-radius: 999px;
}

.match-bar i {
  width: 82%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-700));
  border-radius: inherit;
}

.segment-strip {
  overflow: hidden;
  color: var(--white);
  background: var(--purple-600);
}

.segment-strip__track {
  min-width: max-content;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding-inline: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.segment-strip__track i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
}

.section {
  padding-block: 120px;
}

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

.section--intro::before {
  position: absolute;
  top: -240px;
  right: -220px;
  width: 560px;
  height: 560px;
  content: "";
  background: radial-gradient(circle, rgba(199, 169, 228, .26), rgba(199, 169, 228, 0) 68%);
  pointer-events: none;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 54px;
}

.section-heading--wide {
  max-width: 980px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.audience-section h2,
.language-copy h2,
.faq-intro h2,
.signup h2,
.ecosystem h2 {
  margin-top: 13px;
  font-size: clamp(36px, 4.25vw, 58px);
  line-height: 1.08;
}

.section-heading p,
.faq-intro > p,
.language-copy > p,
.ecosystem__copy > p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading--center p {
  margin-inline: auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pain-card {
  position: relative;
  min-height: 310px;
  padding: 32px;
  overflow: hidden;
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  border-radius: var(--radius-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pain-card:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.pain-card::after {
  position: absolute;
  right: -35px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  content: "";
  background: radial-gradient(circle, rgba(147, 99, 200, .17), rgba(147, 99, 200, 0) 70%);
  border-radius: 50%;
}

.icon-box,
.feature-card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--purple-700);
  background: var(--white);
  border: 1px solid var(--purple-100);
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(38, 26, 61, .06);
}

.icon-box svg,
.feature-card__icon svg {
  width: 23px;
  height: 23px;
}

.pain-card__number {
  position: absolute;
  top: 34px;
  right: 32px;
  color: var(--purple-300);
  font-family: var(--font-mono);
  font-size: 12px;
}

.pain-card h3,
.feature-card h3,
.step-list h3 {
  margin: 45px 0 0;
  color: var(--purple-950);
  font-size: 22px;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.pain-card p,
.feature-card p,
.step-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.section--how {
  background:
    linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,.2)),
    var(--purple-50);
  border-block: 1px solid var(--purple-100);
}

.role-tabs {
  width: max-content;
  max-width: 100%;
  display: flex;
  gap: 6px;
  margin: 0 auto 42px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--purple-100);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.role-tab {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.role-tab svg {
  width: 19px;
  height: 19px;
}

.role-tab.is-active {
  color: var(--white);
  background: var(--purple-600);
  box-shadow: 0 8px 18px rgba(124, 74, 180, .22);
}

.how-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  align-items: center;
  gap: clamp(44px, 6vw, 82px);
}

.how-panel[hidden] {
  display: none;
}

.how-panel__image {
  position: relative;
}

.how-panel__image picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.how-panel__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  right: -22px;
  bottom: 25px;
  max-width: 310px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 17px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.image-badge > svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--purple-600);
  border-radius: 12px;
}

.image-badge strong,
.image-badge span {
  display: block;
}

.image-badge strong {
  color: var(--purple-950);
  font-size: 13px;
}

.image-badge span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--purple-200);
}

.step-list li:first-child {
  padding-top: 0;
}

.step-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.step-list li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--purple-700);
  background: var(--white);
  border: 1px solid var(--purple-200);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
}

.step-list h3 {
  margin: 0;
  font-size: 19px;
}

.step-list p {
  margin-top: 6px;
  font-size: 14px;
}

.section--features {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 21px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-card h3 {
  margin-top: 28px;
  font-size: 19px;
}

.feature-card p {
  font-size: 14px;
}

.audience-section {
  padding-block: 100px;
  overflow: hidden;
  background: var(--cream);
}

.audience-section--reverse {
  background: var(--white);
}

.audience-section__grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: clamp(54px, 7vw, 94px);
}

.audience-section--reverse .audience-section__grid {
  grid-template-columns: .94fr 1.06fr;
}

.audience-section__media {
  position: relative;
}

.audience-section__media picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.audience-section__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.audience-section .lead {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.check-list li > svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  color: var(--white);
  background: var(--purple-600);
  border-radius: 50%;
  stroke-width: 2.3;
}

.check-list strong {
  color: var(--ink);
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 17px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.floating-note--top {
  top: 24px;
  left: -24px;
}

.floating-note--bottom {
  right: -24px;
  bottom: 24px;
}

.floating-note__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--purple-600);
  border-radius: 12px;
}

.floating-note__icon svg {
  width: 19px;
  height: 19px;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: 13px;
}

.floating-note div span {
  color: var(--muted);
  font-size: 10px;
}

.section--language {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(147, 99, 200, .35), transparent 34%),
    var(--purple-950);
}

.language-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.language-copy h2 {
  color: var(--white);
}

.language-copy > p {
  color: rgba(255,255,255,.7);
}

.section--language .kicker {
  color: var(--purple-300);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 35px;
}

.outcome-list div {
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.outcome-list strong,
.outcome-list span {
  display: block;
}

.outcome-list strong {
  color: var(--white);
  font-size: 15px;
}

.outcome-list span {
  margin-top: 3px;
  color: rgba(255,255,255,.52);
  font-size: 11px;
}

.specialty-cloud {
  min-height: 470px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  padding: 50px 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.specialty {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  color: var(--purple-950);
  background: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
  transform: rotate(-1deg);
}

.specialty:nth-child(2n) {
  transform: rotate(1.5deg);
}

.specialty:nth-child(3n) {
  transform: rotate(-2deg);
}

.specialty--lg {
  padding: 14px 19px;
  font-size: 15px;
}

.specialty--xl {
  padding: 16px 22px;
  font-size: 17px;
}

.specialty--dark {
  color: var(--white);
  background: var(--purple-800);
}

.specialty--accent {
  color: var(--purple-950);
  background: var(--purple-300);
}

.ecosystem {
  padding-block: 78px;
  color: var(--white);
  background: linear-gradient(112deg, var(--purple-700), var(--purple-600) 56%, #8b5bc1);
}

.ecosystem__inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 50px;
}

.ecosystem__brand {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(29,21,48,.22);
}

.ecosystem__brand img {
  width: 150px;
  height: auto;
}

.ecosystem__brand > span {
  min-width: 39px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--purple-600);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.kicker--light {
  color: rgba(255,255,255,.72);
}

.ecosystem h2 {
  color: var(--white);
  font-size: clamp(32px, 3.6vw, 48px);
}

.ecosystem__copy > p {
  color: rgba(255,255,255,.76);
  font-size: 15px;
}

.section--faq {
  background: var(--purple-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(60px, 8vw, 110px);
}

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

.faq-intro h2 {
  font-size: clamp(36px, 4vw, 52px);
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--purple-700);
  font-size: 14px;
  font-weight: 700;
}

.text-arrow svg {
  transition: transform .2s ease;
}

.text-arrow:hover svg {
  transform: translateX(4px);
}

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

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

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: var(--purple-950);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--purple-700);
  background: var(--white);
  border: 1px solid var(--purple-200);
  border-radius: 50%;
}

.faq-list summary svg {
  width: 17px;
  height: 17px;
  transition: transform .25s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -2px 54px 24px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.signup {
  position: relative;
  padding-block: 112px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(199,169,228,.25), transparent 30%),
    radial-gradient(circle at 88% 85%, rgba(147,99,200,.22), transparent 32%),
    var(--purple-950);
}

.signup::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
  pointer-events: none;
}

.signup__grid {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: clamp(60px, 8vw, 105px);
}

.signup h2 {
  color: var(--white);
  font-size: clamp(42px, 5vw, 66px);
}

.signup__copy > p {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 18px;
}

.signup__copy > ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.signup__copy > ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
}

.signup__copy > ul svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  color: var(--purple-950);
  background: var(--purple-300);
  border-radius: 50%;
  stroke-width: 2.3;
}

.signup-card {
  padding: 34px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.signup-card__heading > span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signup-card__heading h3 {
  margin: 4px 0 0;
  color: var(--purple-950);
  font-size: 24px;
  letter-spacing: -.03em;
}

.role-choice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.role-choice__button {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  text-align: left;
  color: var(--ink-soft);
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.role-choice__button:hover {
  border-color: var(--purple-300);
  transform: translateY(-2px);
}

.role-choice__button > svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  flex: 0 0 auto;
  color: var(--purple-700);
  background: var(--white);
  border-radius: 12px;
}

.role-choice__button strong,
.role-choice__button small {
  display: block;
}

.role-choice__button strong {
  color: var(--purple-950);
  font-size: 14px;
}

.role-choice__button small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.role-choice__button.is-active {
  background: var(--purple-100);
  border-color: var(--purple-500);
  box-shadow: inset 0 0 0 1px var(--purple-500);
}

.role-choice__button.is-active > svg {
  color: var(--white);
  background: var(--purple-600);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 23px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full,
.button--submit,
.form-note,
.form-success {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.field input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input::placeholder {
  color: #aaa4b1;
}

.field input:focus {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 4px rgba(147,99,200,.12);
}

.field.is-invalid input {
  border-color: #c95c6c;
}

.field__error {
  display: none;
  color: #b64052;
  font-size: 10px;
}

.field.is-invalid .field__error {
  display: block;
}

.button--submit {
  width: 100%;
  margin-top: 3px;
  border-radius: 13px;
}

.form-note {
  margin: 0;
  color: #898390;
  font-size: 10px;
  line-height: 1.5;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  color: #245c3b;
  background: #edf8f1;
  border: 1px solid #cfe8d8;
  border-radius: 14px;
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
}

.form-success > span svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.form-success strong,
.form-success p {
  display: block;
}

.form-success strong {
  font-size: 13px;
}

.form-success p {
  margin: 1px 0 0;
  font-size: 11px;
}

.site-footer {
  color: rgba(255,255,255,.72);
  background: #15101f;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 55px;
  padding-block: 70px 55px;
}

.brand--footer {
  gap: 9px;
}

.footer-wordmark {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.footer-brand p {
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  line-height: 1.7;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 13px;
}

.footer-column strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 13px;
}

.footer-column a,
.footer-column span {
  color: rgba(255,255,255,.52);
}

.footer-column a:hover {
  color: var(--purple-300);
}

.site-footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: 11px;
}

.site-footer__bottom div {
  display: flex;
  gap: 20px;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.reveal--delay-sm {
  transition-delay: .08s;
}

.reveal--delay {
  transition-delay: .16s;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .text-link {
    display: none;
  }

  .hero__copy {
    width: min(600px, 57%);
  }

  .profile-preview {
    right: 0;
    width: 300px;
  }

  .ecosystem__inner {
    grid-template-columns: 190px 1fr;
  }

  .ecosystem__inner > .button {
    grid-column: 2;
    justify-self: start;
  }
}

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

  .announcement {
    display: none;
  }

  .site-header__inner {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
  }

  .brand img {
    width: 155px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    grid-column: 3;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: var(--purple-50);
  }

  .hero__shade {
    display: none;
  }

  .hero__content {
    min-height: auto;
    order: 1;
    padding-block: 68px 52px;
  }

  .hero__copy {
    width: 100%;
    max-width: 720px;
  }

  .hero__media {
    order: 2;
    height: min(66vw, 580px);
  }

  .hero__media img {
    object-position: 69% center;
  }

  .profile-preview {
    display: none;
  }

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

  .pain-card:last-child {
    grid-column: 1 / -1;
  }

  .how-panel {
    grid-template-columns: 1fr;
  }

  .how-panel__image {
    max-width: 760px;
    margin-inline: auto;
  }

  .image-badge {
    right: 18px;
  }

  .audience-section__grid,
  .audience-section--reverse .audience-section__grid {
    grid-template-columns: 1fr;
  }

  .audience-section--reverse .audience-section__copy {
    order: 2;
  }

  .audience-section--reverse .audience-section__media {
    order: 1;
  }

  .audience-section__copy {
    max-width: 760px;
  }

  .language-grid,
  .faq-grid,
  .signup__grid {
    grid-template-columns: 1fr;
  }

  .language-copy {
    max-width: 760px;
  }

  .specialty-cloud {
    min-height: 380px;
  }

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

  .faq-intro {
    position: static;
    max-width: 700px;
  }

  .signup__copy {
    max-width: 680px;
  }

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

  .footer-column:last-child {
    grid-column: 2;
  }
}

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

  .brand img {
    width: 140px;
  }

  .brand__product {
    min-width: 36px;
    height: 27px;
    padding-inline: 8px;
    font-size: 11px;
  }

  .hero__content {
    padding-block: 54px 42px;
  }

  .hero h1 {
    font-size: clamp(40px, 12.4vw, 58px);
  }

  .hero__copy > p {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__trust {
    display: grid;
    gap: 9px;
  }

  .hero__media {
    height: 75vw;
    min-height: 330px;
  }

  .hero__media img {
    object-position: 65% center;
  }

  .segment-strip__track {
    justify-content: flex-start;
    animation: marquee 30s linear infinite;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .audience-section h2,
  .language-copy h2,
  .faq-intro h2,
  .ecosystem h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .section-heading p,
  .faq-intro > p,
  .language-copy > p {
    font-size: 15px;
  }

  .pain-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .pain-card:last-child {
    grid-column: auto;
  }

  .pain-card {
    min-height: 270px;
    padding: 26px;
  }

  .role-tabs {
    width: 100%;
  }

  .role-tab {
    flex: 1 1 50%;
    padding-inline: 10px;
    font-size: 13px;
  }

  .how-panel {
    gap: 46px;
  }

  .how-panel__image picture,
  .audience-section__media picture {
    border-radius: 24px;
  }

  .image-badge {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .step-list li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .step-list li > span {
    width: 38px;
    height: 38px;
  }

  .audience-section {
    padding-block: 76px;
  }

  .audience-section__grid {
    gap: 48px;
  }

  .audience-section .lead {
    font-size: 16px;
  }

  .floating-note {
    right: 12px;
    bottom: 12px;
    left: 12px;
    top: auto;
  }

  .outcome-list {
    grid-template-columns: 1fr;
  }

  .specialty-cloud {
    min-height: 330px;
    padding: 34px 18px;
  }

  .specialty,
  .specialty--lg,
  .specialty--xl {
    padding: 10px 14px;
    font-size: 12px;
  }

  .ecosystem {
    padding-block: 68px;
  }

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

  .ecosystem__brand {
    width: 210px;
    min-height: 110px;
  }

  .ecosystem__inner > .button {
    grid-column: auto;
  }

  .faq-list summary {
    min-height: 70px;
    font-size: 15px;
  }

  .faq-list details p {
    margin-right: 0;
    font-size: 14px;
  }

  .signup {
    padding-block: 80px;
  }

  .signup h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .signup-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .role-choice {
    grid-template-columns: 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .field,
  .field--full,
  .button--submit,
  .form-note,
  .form-success {
    grid-column: 1;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 126px;
  }

  .site-header__inner {
    gap: 10px;
  }

  .menu-button {
    width: 43px;
    height: 43px;
  }

  .eyebrow {
    max-width: 100%;
    padding-inline: 10px;
    font-size: 10px;
  }

  .role-tab svg {
    display: none;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }
}

@keyframes marquee {
  to { transform: translateX(-45%); }
}

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

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

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