:root {
  color-scheme: light;
  --paper: #fdfcf9;
  --surface: #f2efea;
  --surface-soft: #f7f5f1;
  --ink: #121018;
  --muted: #625d67;
  --line: rgba(18, 16, 24, 0.2);
  --line-soft: rgba(18, 16, 24, 0.1);
  --lavender: #7863a9;
  --header: rgba(253, 252, 249, 0.86);
  --page: min(calc(100% - 96px), 1320px);
  --serif: Cambria, Cochin, Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.72, 0.22, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #100d13;
  --surface: #19151d;
  --surface-soft: #141118;
  --ink: #faf7fc;
  --muted: #bcb5c0;
  --line: rgba(255, 255, 255, 0.2);
  --line-soft: rgba(255, 255, 255, 0.1);
  --lavender: #b29ae6;
  --header: rgba(16, 13, 19, 0.86);
}

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

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color 220ms ease, color 220ms ease;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

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

.theme-art-dark {
  display: none;
}

html[data-theme="dark"] .theme-art-light {
  display: none;
}

html[data-theme="dark"] .theme-art-dark {
  display: block;
}

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

button,
a,
summary {
  cursor: pointer;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: #fff;
  background: #7863a9;
}

:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 5px;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 92px;
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line-soft);
  background: var(--header);
  backdrop-filter: blur(16px) saturate(1.1);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 38px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 30px;
  height: 30px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.main-nav a,
.header-link,
.text-link,
.site-footer a {
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a:hover,
.header-link:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--lavender);
}

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

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 750;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.theme-toggle:hover {
  border-color: var(--lavender);
  color: var(--lavender);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .moon,
html[data-theme="dark"] .theme-toggle .sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle .moon {
  display: block;
}

.kicker,
.section-index {
  color: var(--lavender);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: max(920px, 100svh);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}

.hero-wash,
.closing-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-wash img,
.closing-wash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wash-dark,
html[data-theme="dark"] .wash-light {
  display: none;
}

html[data-theme="dark"] .wash-dark {
  display: block;
}

.hero-main {
  position: relative;
  z-index: 2;
  padding-bottom: 32px;
}

.hero-fold {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(92px, 10vh, 128px);
  padding-bottom: clamp(36px, 6vh, 72px);
}

.hero h1 {
  max-width: 1030px;
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(74px, 8.2vw, 124px);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.06em;
}

.hero h1 .hero-brand {
  display: block;
  color: var(--lavender);
  font-style: italic;
  font-weight: 400;
}

.hero-title-line {
  display: block;
  max-width: 100%;
  color: var(--ink);
  font-style: normal;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 960px;
  margin-top: 32px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.62;
  letter-spacing: -0.01em;
}

.hero-lead strong {
  color: var(--ink);
  font-weight: 700;
}

.hero-lead .free-offer {
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--lavender) 58%, transparent);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 750;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hero-button-primary {
  background: var(--ink);
  color: var(--paper);
}

.hero-button-primary:hover {
  border-color: var(--lavender);
  background: var(--lavender);
  color: #fff;
}

.hero-button-secondary {
  background: transparent;
  color: var(--ink);
}

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

.hero-cta-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.hero-cta-note i {
  margin-inline: 8px;
  color: var(--lavender);
  font-style: normal;
}

.hero-list {
  width: min(890px, 70vw);
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.hero-row {
  min-height: 67px;
  display: grid;
  grid-template-columns: 54px 126px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: clamp(15px, 1.4vw, 20px);
}

.hero-row svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-row strong {
  font-size: 0.76em;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-row span {
  color: var(--muted);
}

.hero-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 12px;
}

.hero-stats {
  width: min(890px, 70vw);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats p {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 26px 16px 0;
  border-right: 1px solid var(--line);
}

.hero-stats p + p {
  padding-left: 26px;
}

.hero-stats p:last-child {
  border-right: 0;
}

.hero-stats strong {
  font-family: var(--serif);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.hero-foot > div {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-auth {
  color: var(--muted);
  font-size: 13px;
}

.hero-foot i {
  margin-inline: 8px;
  color: var(--lavender);
  font-style: normal;
}

.text-link {
  width: max-content;
  color: inherit;
  font-size: 13px;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 6px;
}

.text-link.strong {
  color: var(--ink);
  font-weight: 750;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 1.2fr) minmax(290px, 0.8fr);
  gap: 48px;
  align-items: end;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(62px, 7vw, 106px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.057em;
}

h2 em {
  color: var(--lavender);
  font-weight: 400;
}

.manifesto-title .kicker {
  margin-bottom: 22px;
}

.manifesto-copy {
  max-width: 460px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.manifesto-copy p + p {
  margin-top: 22px;
}

.manifesto-copy .text-link {
  display: inline-block;
  margin-top: 34px;
}

.format-story {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(400px, 0.82fr);
}

.story-image {
  min-height: 720px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms var(--ease), filter 220ms ease;
}

.format-story:hover .story-image img {
  transform: scale(1.008);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 7vw, 112px);
}

.story-copy h2 {
  margin-top: 24px;
  font-size: clamp(56px, 5.7vw, 88px);
}

.story-lead {
  max-width: 510px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.story-lines {
  width: 100%;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.story-lines > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.story-lines dt {
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-lines dd {
  color: var(--muted);
}

.model-caption {
  margin-top: 24px;
  color: var(--lavender);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.6;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-copy .text-link {
  margin-top: 36px;
}

.media-story {
  background: var(--surface);
}

.sound-story {
  grid-template-columns: minmax(400px, 0.82fr) minmax(0, 1.18fr);
  background: #0d0a11;
  color: #fbf8fd;
}

.sound-story .story-lead,
.sound-story .story-lines dd {
  color: #c2bac7;
}

.sound-story .story-lines {
  border-color: rgba(255, 255, 255, 0.22);
}

.sound-story .story-lines > div {
  border-color: rgba(255, 255, 255, 0.22);
}

.sound-story .text-link.strong {
  color: #fbf8fd;
}

.model-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
}

.model-head .kicker {
  margin-bottom: 22px;
}

.model-river {
  width: var(--page);
  margin-top: clamp(86px, 10vw, 150px);
  margin-inline: auto;
  padding-block: 14px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.model-river p {
  width: auto;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 1.12;
  letter-spacing: -0.048em;
  white-space: normal;
  overflow-wrap: normal;
}

.model-river p:first-child {
  transform: none;
}

.model-river p:last-child {
  color: var(--muted);
  margin-top: 12px;
  transform: none;
}

.model-river i {
  color: var(--lavender);
  font-style: normal;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.service-facts > div {
  min-height: 120px;
  padding: 25px 30px 20px 0;
  border-right: 1px solid var(--line);
}

.service-facts > div + div {
  padding-left: 30px;
}

.service-facts > div:last-child {
  border-right: 0;
}

.service-facts strong {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.service-facts p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.subscriptions {
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
}

.subscription-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 70px;
  align-items: end;
}

.subscription-head h2 {
  margin-top: 24px;
}

.subscription-lead {
  max-width: 520px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.subscription-image {
  height: clamp(460px, 48vw, 680px);
  margin-top: 80px;
  overflow: hidden;
}

.subscription-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 220ms ease;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 74px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 28px 42px 34px 0;
  border-right: 1px solid var(--line);
}

.plan + .plan {
  padding-left: 42px;
}

.plan:last-child {
  padding-right: 0;
  border-right: 0;
}

.plan-index {
  color: var(--lavender);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.plan h3 {
  margin-top: 25px;
  font-family: var(--serif);
  font-size: clamp(48px, 4.3vw, 67px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.plan-description {
  max-width: 310px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: auto;
  padding-top: 46px;
}

.plan-price strong {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-price span {
  color: var(--muted);
  font-size: 11px;
}

.plan .text-link {
  margin-top: 27px;
}

.subscription-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
}

.steps-grid,
.questions-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 90px;
}

.steps-title {
  grid-column: 1;
  grid-row: 1;
}

.steps-art {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: 42px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 86%, transparent 100%);
}

.steps-art img {
  width: 100%;
  height: clamp(340px, 31vw, 470px);
  object-fit: cover;
  object-position: 36% center;
}

.steps-grid .step-list {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.steps-title h2,
.questions-title h2 {
  margin-top: 24px;
  font-size: clamp(58px, 6vw, 92px);
}

.step-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 58px minmax(200px, 0.8fr) minmax(250px, 1.2fr);
  gap: 25px;
  align-items: baseline;
  padding-block: 29px;
  border-bottom: 1px solid var(--line);
}

.step-list span {
  color: var(--lavender);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.step-list strong {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

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

.questions {
  border-top: 1px solid var(--line-soft);
  background: var(--surface-soft);
}

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

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

.question-list summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 23px;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

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

.question-list summary span {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
}

.question-list summary span::before,
.question-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

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

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

.question-list details > p {
  max-width: 640px;
  padding: 0 64px 28px 0;
  color: var(--muted);
  font-size: 15px;
}

.closing {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}

.closing-content {
  position: relative;
  z-index: 2;
}

.closing h2 {
  max-width: 1060px;
  margin-top: 24px;
  font-size: clamp(68px, 8vw, 122px);
}

.closing-link {
  display: inline-flex;
  margin-top: 34px;
}

.closing-note {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
}

.search-intents {
  border-top: 1px solid var(--line-soft);
  background: var(--surface-soft);
}

.search-intents-head,
.capability-head,
.model-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
}

.search-intents-head .kicker,
.capability-head .kicker {
  margin-bottom: 22px;
}

.intent-lines {
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.intent-lines p {
  min-height: 70px;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.intent-lines span,
.capability-line > span,
.advantage-row > span {
  color: var(--lavender);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.intent-lines strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.capability-index {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}

.capability-head,
.capability-lines {
  position: relative;
  z-index: 2;
}

.capability-art {
  position: absolute;
  z-index: 1;
  top: 0;
  right: -18vw;
  width: 100%;
  height: min(600px, 50vw);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 48%, transparent 78%);
  mask-image: linear-gradient(to bottom, #000 0, #000 48%, transparent 78%);
}

.capability-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--paper) 0%,
    color-mix(in srgb, var(--paper) 96%, transparent) 18%,
    color-mix(in srgb, var(--paper) 72%, transparent) 38%,
    transparent 60%
  );
}

.capability-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.capability-lines {
  margin-top: 82px;
  border-top: 1px solid var(--line);
}

.capability-line {
  display: grid;
  grid-template-columns: 58px minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: 34px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.capability-line h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.capability-line p,
.capability-line li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.capability-line ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.capability-line li {
  padding-block: 8px;
  border-bottom: 1px solid var(--line-soft);
}

.model-catalog {
  border-top: 1px solid var(--line-soft);
  background: var(--surface);
}

.catalog-intro,
.advantages-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: end;
}

.catalog-intro h2,
.advantages-head h2 {
  margin-top: 24px;
}

.catalog-intro-copy,
.advantages-lead {
  max-width: 540px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.catalog-intro-copy p + p {
  margin-top: 22px;
}

.catalog-intro {
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  overflow: hidden;
}

.catalog-intro > .reveal {
  position: relative;
  z-index: 2;
  width: min(52%, 590px);
}

.catalog-intro-copy {
  max-width: 590px;
  padding-bottom: 0;
}

.catalog-art {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0, #000 82%, transparent 100%);
}

.catalog-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 96%, transparent) 34%, color-mix(in srgb, var(--surface) 70%, transparent) 48%, transparent 64%);
}

.catalog-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.catalog-groups,
.plan-details {
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.section-conversion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 72px;
  padding-block: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-conversion > div {
  max-width: 720px;
}

.section-conversion strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-conversion p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section-conversion .hero-button {
  flex: 0 0 auto;
}

.catalog-group,
.plan-detail {
  border-bottom: 1px solid var(--line);
}

.catalog-group summary,
.plan-detail summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 70px minmax(220px, 1fr) auto 38px;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.catalog-group summary::-webkit-details-marker,
.plan-detail summary::-webkit-details-marker {
  display: none;
}

.catalog-group summary > span,
.plan-detail summary > span {
  color: var(--lavender);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.catalog-group summary strong,
.plan-detail summary strong {
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.catalog-group summary em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.catalog-group summary i,
.plan-detail summary i {
  position: relative;
  width: 30px;
  height: 30px;
}

.catalog-group summary i::before,
.catalog-group summary i::after,
.plan-detail summary i::before,
.plan-detail summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.catalog-group summary i::after,
.plan-detail summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.catalog-group[open] summary i::after,
.plan-detail[open] summary i::after {
  transform: translate(-50%, -50%);
}

.catalog-content {
  padding: 8px 0 58px 94px;
}

.catalog-content > h3 {
  max-width: 900px;
  margin-bottom: 42px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

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

.model-list > div {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(0, 1.35fr);
  gap: 30px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}

.model-list dt {
  font-weight: 750;
}

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

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

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

.advantage-row {
  display: grid;
  grid-template-columns: 58px minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.advantage-row h3 {
  font-family: var(--serif);
  font-size: clamp(27px, 2.8vw, 41px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.advantage-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.comparison {
  background: #0d0a11;
  color: #fbf8fd;
}

.comparison h2 em {
  color: #9b7ad6;
}

.comparison-scroll {
  margin-top: 76px;
  overflow-x: auto;
  border-top: 1px solid rgba(255,255,255,.24);
}

.mobile-comparison {
  display: none;
}

.comparison table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 13px;
}

.comparison th,
.comparison td {
  height: 68px;
  padding: 14px 22px;
  border-right: 1px solid rgba(255,255,255,.17);
  border-bottom: 1px solid rgba(255,255,255,.17);
  text-align: center;
}

.comparison th:first-child {
  width: 38%;
  text-align: left;
}

.comparison th {
  font-weight: 650;
}

.comparison td:nth-child(2),
.comparison thead th:nth-child(2) {
  color: #c6a9ff;
}

.plan-details {
  margin-top: 58px;
}

.plan-detail summary {
  grid-template-columns: 70px 1fr 38px;
}

.plan-detail ul {
  margin: 0;
  padding: 0 0 50px 94px;
  list-style: none;
}

.plan-detail li {
  position: relative;
  max-width: 1040px;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.plan-detail li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--lavender);
}

.faq-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}

.faq-support > div {
  display: flex;
  gap: 28px;
}

.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
  align-items: start;
}

.footer-brand > p {
  max-width: 390px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-brand .text-link {
  display: inline-block;
  margin-top: 28px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.footer-nav h3 {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 11px;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 11px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}

.noscript {
  position: fixed;
  z-index: 1000;
  right: 14px;
  bottom: 14px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 9px, 0);
  transition: opacity 520ms ease-out, transform 620ms var(--ease);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (min-width: 1101px) {
  .questions-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .questions-title {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 48px;
    align-items: start;
  }

  .questions-title h2 {
    margin-top: 0;
  }

  .question-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 64px;
  }

  .question-list details:nth-child(odd) {
    padding-right: 32px;
  }

  .question-list details:nth-child(even) {
    padding-left: 32px;
  }

  .question-list summary {
    min-height: 86px;
    font-size: 24px;
  }

  .question-list details > p {
    max-width: none;
  }
}

@media (max-width: 1100px) {
  :root {
    --page: min(calc(100% - 52px), 980px);
  }

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

  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: clamp(72px, 10vw, 106px);
  }

  .hero-list {
    width: min(800px, 78vw);
  }

  .manifesto-grid {
    grid-template-columns: 82px 1fr;
  }

  .manifesto-copy {
    grid-column: 2;
    margin-top: 16px;
  }

  .format-story,
  .sound-story {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-image,
  .story-copy {
    min-width: 0;
    width: 100%;
  }

  .story-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .sound-story .story-image {
    grid-row: 1;
  }

  .sound-story .story-copy {
    grid-row: 2;
  }

  .story-copy {
    min-height: 620px;
    padding-inline: max(26px, calc((100vw - min(calc(100% - 52px), 980px)) / 2));
  }

  .plans .plan {
    padding-right: 28px;
  }

  .plans .plan + .plan {
    padding-left: 28px;
  }

  .steps-grid,
  .questions-grid {
    gap: 58px;
  }

  .capability-line,
  .advantage-row {
    grid-template-columns: 48px minmax(240px, 0.8fr) minmax(280px, 1.2fr);
    gap: 24px;
  }

  .catalog-intro,
  .advantages-head {
    gap: 50px;
  }

  .footer-main {
    grid-template-columns: 250px 1fr;
    gap: 50px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .step-list li {
    grid-template-columns: 42px 1fr;
  }

  .step-list p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100% - 36px);
  }

  html,
  body {
    overflow-x: clip;
  }

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

  .site-header,
  .site-header.is-scrolled {
    height: 66px;
  }

  .header-link {
    display: none;
  }

  .theme-toggle {
    width: 42px;
    height: 42px;
  }

  .hero,
  .hero-main {
    min-height: 0;
  }

  .hero-main {
    width: var(--page);
    min-width: 0;
    padding-top: 0;
    padding-bottom: 30px;
  }

  .hero-fold {
    min-height: 100svh;
    padding-top: 92px;
    padding-bottom: 36px;
  }

  .hero-main > * {
    min-width: 0;
  }

  .hero-wash img {
    object-position: 64% center;
    opacity: 0.52;
  }

  html[data-theme="dark"] .hero-wash img {
    opacity: 0.66;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(46px, 12.8vw, 58px);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }

  .hero h1 .hero-brand,
  .hero-title-line {
    max-width: 100%;
  }

  .hero-lead {
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .hero-buttons {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-button {
    width: 100%;
    max-width: 100%;
    padding-inline: 14px;
    text-align: center;
    white-space: normal;
  }

  .hero-cta-note {
    line-height: 1.8;
  }

  .hero-list {
    width: 100%;
    margin-top: 0;
    background: color-mix(in srgb, var(--paper) 76%, transparent);
    backdrop-filter: blur(4px);
  }

  .hero-row {
    min-height: 58px;
    grid-template-columns: 36px 72px minmax(0, 1fr);
    font-size: 12px;
  }

  .hero-row span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-row svg {
    width: 22px;
    height: 22px;
  }

  .hero-foot {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 32px;
    line-height: 1.7;
  }

  .hero-foot > div {
    gap: 24px;
  }

  .hero-stats {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-stats p,
  .hero-stats p + p {
    min-height: 82px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats p:last-child {
    border-bottom: 0;
  }

  .manifesto-grid,
  .model-head,
  .search-intents-head,
  .capability-head,
  .catalog-intro,
  .advantages-head,
  .subscription-head,
  .steps-grid,
  .questions-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .manifesto-copy {
    grid-column: 1;
    margin-top: 16px;
  }

  .capability-art {
    position: relative;
    top: auto;
    right: auto;
    width: var(--page);
    height: 290px;
    margin: 38px auto 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  }

  .capability-art img {
    object-position: 62% center;
  }

  .capability-art::after {
    display: none;
  }

  .catalog-intro {
    min-height: 0;
    display: flex;
    gap: 0;
    overflow: visible;
  }

  .catalog-intro > .reveal {
    width: 100%;
  }

  .catalog-art {
    position: relative;
    inset: auto;
    order: 3;
    width: 100%;
    height: 300px;
    margin-top: 34px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .catalog-art::after {
    display: none;
  }

  .catalog-art img {
    object-position: 67% center;
  }

  .steps-title,
  .steps-art,
  .steps-grid .step-list {
    grid-column: 1;
    grid-row: auto;
  }

  .steps-art {
    margin-top: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
  }

  .steps-art img {
    height: 300px;
    object-position: 42% center;
  }

  h2,
  .story-copy h2,
  .steps-title h2,
  .questions-title h2,
  .closing h2 {
    font-size: clamp(50px, 14.4vw, 68px);
  }

  .story-image {
    aspect-ratio: 4 / 3;
  }

  .story-copy {
    min-height: 0;
    padding: 72px 18px 78px;
  }

  .story-lead {
    font-size: 16px;
  }

  .story-lines > div {
    grid-template-columns: 90px 1fr;
    font-size: 12px;
  }

  .model-river {
    margin-top: 66px;
  }

  .model-river p {
    font-size: 36px;
    line-height: 1.16;
  }

  .intent-lines {
    margin-top: 56px;
  }

  .intent-lines p {
    min-height: 64px;
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .intent-lines strong {
    font-size: 24px;
  }

  .capability-lines,
  .advantage-list {
    margin-top: 58px;
  }

  .capability-line,
  .advantage-row {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding-block: 28px;
  }

  .capability-line > p,
  .capability-line > div,
  .advantage-row > p {
    grid-column: 2;
  }

  .capability-line h3,
  .advantage-row h3 {
    min-width: 0;
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .catalog-intro-copy,
  .advantages-lead {
    margin-top: 14px;
  }

  .catalog-intro h2 {
    font-size: clamp(44px, 12.8vw, 58px);
  }

  .catalog-groups,
  .plan-details {
    margin-top: 58px;
  }

  .catalog-group summary,
  .plan-detail summary {
    min-height: 82px;
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    gap: 12px;
  }

  .catalog-group summary em {
    display: none;
  }

  .catalog-group summary strong,
  .plan-detail summary strong {
    font-size: 25px;
  }

  .catalog-content {
    padding: 10px 0 45px 46px;
  }

  .catalog-content > h3 {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .model-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .model-list dd {
    font-size: 13px;
  }

  .comparison-scroll {
    display: none;
  }

  .mobile-comparison {
    display: block;
    margin-top: 58px;
    border-top: 1px solid rgba(255,255,255,.28);
  }

  .mobile-comparison-head,
  .mobile-comparison dl > div {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr) minmax(0, .8fr);
    gap: 10px;
  }

  .mobile-comparison-head {
    padding: 13px 0;
    color: rgba(255,255,255,.56);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .mobile-comparison-head strong {
    color: #c6a9ff;
  }

  .mobile-comparison dl > div {
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.17);
    font-size: 11px;
    line-height: 1.45;
  }

  .mobile-comparison dt {
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.08;
  }

  .mobile-comparison dd:first-of-type {
    color: #c6a9ff;
    font-weight: 700;
  }

  .mobile-comparison dd:last-child {
    color: rgba(255,255,255,.55);
  }

  .plan-detail ul {
    padding: 0 0 42px 46px;
  }

  .faq-support {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-support > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .section-conversion {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
    margin-top: 54px;
  }

  .section-conversion .hero-button {
    width: 100%;
  }

  .service-facts {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .service-facts > div,
  .service-facts > div + div {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .subscription-lead {
    margin-top: 14px;
    font-size: 16px;
  }

  .subscription-image {
    width: 100%;
    height: auto;
    margin-top: 58px;
    aspect-ratio: 4 / 3;
  }

  .subscription-image img {
    object-position: 67% center;
  }

  .plans {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .plans .plan,
  .plans .plan + .plan {
    min-height: 380px;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plans .plan:last-child {
    border-bottom: 0;
  }

  .plan h3 {
    font-size: 58px;
  }

  .subscription-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps-title,
  .questions-title {
    margin-bottom: 28px;
  }

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

  .step-list strong {
    font-size: 24px;
  }

  .question-list summary {
    min-height: 80px;
    font-size: 24px;
  }

  .question-list details > p {
    padding-right: 20px;
  }

  .closing {
    min-height: 650px;
  }

  .closing-note {
    font-size: 15px;
  }

  .closing-wash img {
    object-position: 62% center;
    opacity: 0.52;
  }

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

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }

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

  .footer-bottom nav {
    gap: 15px 20px;
  }

  /* Mobile composed imagery */
  .story-image {
    width: 100vw;
    height: clamp(310px, 84vw, 370px);
    aspect-ratio: auto;
    -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 66%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0, #000 66%, transparent 100%);
  }

  .media-story .story-image img {
    object-position: 50% center;
  }

  .sound-story .story-image img {
    object-position: 44% center;
  }

  .story-copy {
    position: relative;
    z-index: 2;
    margin-top: -96px;
    padding-top: 132px;
  }

  .capability-head {
    min-height: 470px;
    padding-bottom: 92px;
  }

  .capability-art {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 100vw;
    height: 490px;
    margin: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .capability-art::after {
    display: block;
    background:
      linear-gradient(180deg, var(--paper) 0%, transparent 20%, transparent 66%, var(--paper) 100%),
      linear-gradient(90deg, var(--paper) 0%, color-mix(in srgb, var(--paper) 90%, transparent) 30%, transparent 64%);
  }

  .capability-art img {
    object-position: 88% center;
    opacity: 0.78;
  }

  .capability-lines {
    margin-top: 0;
  }

  .catalog-intro {
    min-height: 0;
    display: block;
    padding-bottom: 66px;
    overflow: hidden;
  }

  .catalog-art {
    position: absolute;
    z-index: 1;
    inset: 210px 0 auto auto;
    width: 100vw;
    height: 520px;
    margin: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .catalog-art::after {
    display: block;
    background:
      linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 84%, transparent) 22%, transparent 58%, var(--surface) 100%),
      linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 86%, transparent) 36%, transparent 70%);
  }

  .catalog-art img {
    object-position: 64% center;
    opacity: 0.64;
  }

  .subscriptions {
    position: relative;
    overflow: hidden;
  }

  .subscription-head {
    position: relative;
    z-index: 2;
    min-height: 480px;
    padding-bottom: 82px;
  }

  .subscription-image {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 100vw;
    height: 500px;
    margin: 0;
    aspect-ratio: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .subscription-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, var(--surface) 0%, transparent 20%, transparent 64%, var(--surface) 100%),
      linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 91%, transparent) 34%, transparent 68%);
  }

  .subscription-image img {
    object-position: 100% center;
    opacity: 0.75;
  }

  html[data-theme="dark"] .capability-art img,
  html[data-theme="dark"] .subscription-image img {
    opacity: 0.9;
  }

  html[data-theme="dark"] .catalog-art img {
    opacity: 0.78;
  }

  .plans {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .steps-grid {
    position: relative;
    display: block;
  }

  .steps-title {
    position: relative;
    z-index: 2;
    min-height: 460px;
    margin-bottom: 0;
    padding-bottom: 158px;
  }

  .steps-art {
    position: absolute;
    z-index: 1;
    top: 126px;
    left: calc(50% - 50vw);
    width: 100vw;
    height: 360px;
    margin: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 16%, #000 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 16%, #000 70%, transparent 100%);
  }

  .steps-art img {
    height: 100%;
    object-position: 40% center;
  }

  .steps-grid .step-list {
    position: relative;
    z-index: 2;
    margin-top: 0;
  }

  .plans .plan,
  .plans .plan + .plan,
  .plans .plan:last-child {
    min-height: 0;
    padding: 28px 0 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-price {
    margin-top: 34px;
    padding-top: 0;
  }

  .plan h3 {
    font-size: 52px;
  }

  .service-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .service-facts > div,
  .service-facts > div + div {
    padding: 22px 14px 22px 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .service-facts > div + div {
    padding-left: 14px;
  }

  .service-facts > div:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .service-facts strong {
    font-size: 25px;
  }

  .service-facts p {
    font-size: 11px;
    line-height: 1.45;
  }

  .question-list summary {
    min-height: 64px;
    padding-block: 13px;
    font-size: 19px;
    line-height: 1.12;
  }

  .question-list details > p {
    padding: 2px 18px 22px 0;
    font-size: 14px;
    line-height: 1.62;
  }
}

/* Editorial refinement layer */
.scroll-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--lavender), #c9b8ee);
  box-shadow: 0 0 14px color-mix(in srgb, var(--lavender) 55%, transparent);
  transform: scaleX(var(--reading-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.section-index {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-index::after {
  content: "";
  width: 28px;
  height: 1px;
  background: color-mix(in srgb, var(--lavender) 62%, transparent);
}

.hero-main::after {
  content: "89+ AI MODELS / GPT-5.6 / GEMINI 3.5 / GROK";
  position: absolute;
  top: 132px;
  right: 0;
  color: var(--lavender);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  opacity: 0.82;
}

.manifesto {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 45%, color-mix(in srgb, var(--lavender) 9%, transparent), transparent 34%),
    var(--paper);
}

.manifesto::after {
  content: "ONE";
  position: absolute;
  right: -0.04em;
  bottom: -0.28em;
  color: color-mix(in srgb, var(--lavender) 8%, transparent);
  font-family: var(--serif);
  font-size: clamp(190px, 27vw, 430px);
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.manifesto-grid {
  position: relative;
  z-index: 1;
}

.search-intents,
.advantages,
.questions {
  position: relative;
  overflow: hidden;
}

.search-intents {
  background: var(--surface-soft);
}

.search-intents-head,
.intent-lines,
.advantages-head,
.advantage-list,
.questions-grid,
.faq-support {
  position: relative;
  z-index: 1;
}

.intent-lines p {
  position: relative;
  grid-template-columns: 70px minmax(0, 1fr) 138px;
  padding-inline: 16px;
  overflow: hidden;
  transition: color 220ms ease;
}

.intent-lines p::before,
.capability-line::before,
.advantage-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--lavender) 13%, transparent), transparent 72%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms var(--ease);
  pointer-events: none;
}

.intent-lines p::after {
  content: attr(data-type);
  position: relative;
  z-index: 1;
  justify-self: end;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intent-lines p > * {
  position: relative;
  z-index: 1;
  transition: transform 420ms var(--ease);
}

@media (hover: hover) {
  .intent-lines p:hover > *,
  .capability-line:hover > *,
  .advantage-row:hover > * {
    transform: translate3d(8px, 0, 0);
  }

  .intent-lines p:hover::before,
  .capability-line:hover::before,
  .advantage-row:hover::before {
    transform: scaleX(1);
  }

  .catalog-group summary:hover,
  .plan-detail summary:hover,
  .question-list summary:hover {
    color: var(--lavender);
  }
}

.format-story {
  position: relative;
  isolation: isolate;
}

.story-image {
  position: relative;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.media-story .story-copy {
  background:
    radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--lavender) 8%, transparent), transparent 28%),
    var(--surface);
}

.sound-story .story-copy {
  background: radial-gradient(circle at 18% 22%, rgba(178, 154, 230, 0.11), transparent 30%);
}

.story-lines > div {
  position: relative;
  transition: transform 420ms var(--ease), color 200ms ease;
}

@media (hover: hover) {
  .story-lines > div:hover {
    color: var(--lavender);
    transform: translate3d(7px, 0, 0);
  }
}

.capability-line,
.advantage-row {
  position: relative;
  overflow: hidden;
  padding-top: 44px;
}

.capability-line::after,
.advantage-row::after {
  content: attr(data-label);
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 0;
  color: var(--lavender);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.capability-line > *,
.advantage-row > * {
  position: relative;
  z-index: 1;
  transition: transform 420ms var(--ease);
}

.model-section {
  overflow: hidden;
}

.model-river {
  width: 100%;
  overflow: hidden;
  padding-block: 18px 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.capability-head > .section-index {
  width: 120px;
  display: block;
}

.capability-head > .section-index::after {
  display: block;
  margin-top: 10px;
}

.model-river p {
  width: max-content;
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: model-river-left 44s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.model-river p:last-child {
  animation-name: model-river-right;
  animation-duration: 52s;
}

.model-river p span {
  flex: none;
}

@keyframes model-river-left {
  to { transform: translateX(calc(-50% - 28px)); }
}

@keyframes model-river-right {
  from { transform: translateX(calc(-50% - 28px)); }
  to { transform: translateX(0); }
}

.catalog-group summary,
.plan-detail summary {
  padding-inline: 16px;
  transition: color 200ms ease, background-color 260ms ease;
}

.catalog-group[open] summary,
.plan-detail[open] summary {
  background: color-mix(in srgb, var(--lavender) 7%, transparent);
}

.catalog-content {
  background: linear-gradient(90deg, color-mix(in srgb, var(--lavender) 5%, transparent), transparent 72%);
}

.advantages {
  background: var(--paper);
}

.comparison {
  position: relative;
  overflow: hidden;
  background: #0d0a11;
}

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

.comparison tbody tr {
  transition: background-color 180ms ease;
}

.comparison tbody tr:hover {
  background: rgba(178, 154, 230, 0.08);
}

.comparison td:nth-child(2),
.comparison thead th:nth-child(2) {
  background: rgba(178, 154, 230, 0.065);
}

.plans {
  position: relative;
}

.plan {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  transition: background-color 320ms ease;
}

.plan:nth-child(2) {
  background: linear-gradient(180deg, color-mix(in srgb, var(--lavender) 10%, transparent), transparent 68%);
}

.plan:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--lavender);
}

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

.plan-eyebrow {
  position: absolute;
  top: 29px;
  right: 28px;
  color: var(--lavender);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plan-points {
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-soft);
  list-style: none;
}

.plan-points li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
}

.plan-points li::before {
  content: "+";
  margin-right: 9px;
  color: var(--lavender);
}

@media (hover: hover) {
  .plan:hover {
    background-color: color-mix(in srgb, var(--lavender) 7%, transparent);
  }
}

.step-list li {
  position: relative;
  transition: background-color 220ms ease;
}

.step-list li::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--lavender) 9%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.step-list li > * {
  position: relative;
  z-index: 1;
  transition: transform 420ms var(--ease);
}

@media (hover: hover) {
  .step-list li:hover > * {
    transform: translate3d(7px, 0, 0);
  }

  .step-list li:hover::before {
    opacity: 1;
  }
}

.question-list {
  counter-reset: faq;
}

.question-list details {
  counter-increment: faq;
  transition: background-color 200ms ease;
}

.question-list details[open] {
  background: color-mix(in srgb, var(--lavender) 6%, transparent);
}

.question-list summary::before {
  content: counter(faq, decimal-leading-zero);
  flex: 0 0 30px;
  color: var(--lavender);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-button span,
.text-link span {
  display: inline-block;
  transition: transform 220ms var(--ease);
}

.hero-button:hover span,
.text-link:hover span {
  transform: translate(3px, -3px);
}

@media (max-width: 1100px) {
  .hero-main::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .capability-head > .section-index {
    width: max-content;
    display: inline-flex;
  }

  .capability-head > .section-index::after {
    display: initial;
    margin-top: 0;
  }

  .section-space {
    padding-block: 68px;
  }

  .section-index::after {
    width: 20px;
  }

  .manifesto::after {
    right: -0.12em;
    bottom: -0.1em;
    font-size: 170px;
  }

  .intent-lines {
    margin-top: 48px;
  }

  .intent-lines p {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 17px 0;
  }

  .intent-lines p::after {
    display: none;
  }

  .intent-lines strong {
    font-size: clamp(24px, 7.2vw, 29px);
    line-height: 1.08;
  }

  .story-image::after {
    inset: 12px;
  }

  .capability-line,
  .advantage-row {
    padding-top: 48px;
  }

  .capability-line::after,
  .advantage-row::after {
    top: 19px;
    right: 0;
    max-width: calc(100% - 54px);
    text-align: right;
  }

  .model-river {
    width: 100%;
    margin-top: 58px;
    padding-block: 14px 18px;
  }

  .model-river p {
    gap: 34px;
    font-size: 34px;
    animation-duration: 36s;
  }

  .model-river p:last-child {
    animation-duration: 43s;
  }

  .catalog-group summary,
  .plan-detail summary {
    padding-inline: 0;
  }

  .plans .plan,
  .plans .plan + .plan,
  .plans .plan:last-child {
    padding: 30px 0 34px;
  }

  .plan-eyebrow {
    top: 31px;
    right: 0;
  }

  .plan-points {
    margin-top: 26px;
  }

  .plan-points li {
    padding-block: 9px;
    font-size: 12px;
  }

  .step-list li {
    padding-block: 28px;
  }

  .question-list summary {
    gap: 12px;
  }

  .question-list summary::before {
    flex-basis: 22px;
  }

  .question-list details > p {
    padding-left: 34px;
  }
}

@media (max-width: 380px) {
  .capability-line h3,
  .advantage-row h3 {
    font-size: 28px;
  }
}

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

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

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

  .model-river p {
    width: auto;
    flex-wrap: wrap;
    white-space: normal;
    animation: none;
  }

  .model-river p span[aria-hidden="true"] {
    display: none;
  }
}

/* Readability and composition reset */
.section-space {
  padding-block: clamp(88px, 7vw, 120px);
}

h2,
.steps-title h2,
.questions-title h2,
.closing h2 {
  font-size: clamp(54px, 5.6vw, 82px);
  line-height: 1;
  letter-spacing: -0.035em;
}

h2 em {
  font-style: normal;
}

.manifesto h2 em,
.story-copy h2 em,
.closing h2 em {
  font-style: italic;
}

.hero h1 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(68px, 6.8vw, 96px);
  line-height: 0.97;
  letter-spacing: -0.038em;
}

.hero-fold {
  padding-top: clamp(86px, 8vh, 108px);
  padding-bottom: clamp(34px, 5vh, 54px);
}

.hero-lead {
  max-width: 780px;
  margin-top: 26px;
  font-size: clamp(17px, 1.25vw, 18px);
  line-height: 1.56;
  letter-spacing: 0;
}

.hero-lead .free-offer {
  display: block;
  margin-bottom: 4px;
  text-decoration: none;
}

.hero-buttons {
  margin-top: 28px;
}

.hero-button {
  min-height: 52px;
  font-size: 14px;
}

.hero-cta-note {
  margin-top: 12px;
  font-size: 13px;
}

.hero-main::after,
.manifesto::after {
  display: none;
}

.manifesto {
  background: var(--paper);
}

.manifesto-copy,
.catalog-intro-copy,
.advantages-lead,
.subscription-lead,
.story-lead,
.closing-note {
  font-size: 17px;
  line-height: 1.62;
}

.intent-lines {
  margin-top: 58px;
}

.intent-lines p {
  min-height: 64px;
}

.intent-lines strong {
  font-size: clamp(27px, 2.25vw, 33px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.story-copy h2 {
  font-size: clamp(48px, 4.8vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.story-copy {
  padding: clamp(54px, 5.5vw, 84px);
}

.story-image img,
.capability-art img,
.catalog-art img,
.subscription-image img,
.steps-art img,
.closing-wash img {
  filter: contrast(1.08) saturate(1.08);
}

.capability-art::after {
  background: linear-gradient(
    90deg,
    var(--paper) 0%,
    color-mix(in srgb, var(--paper) 90%, transparent) 20%,
    color-mix(in srgb, var(--paper) 58%, transparent) 40%,
    transparent 62%
  );
}

.catalog-art::after {
  background: linear-gradient(
    90deg,
    var(--surface) 0%,
    color-mix(in srgb, var(--surface) 90%, transparent) 30%,
    color-mix(in srgb, var(--surface) 52%, transparent) 47%,
    transparent 66%
  );
}

.capability-line,
.advantage-row {
  padding-block: 28px;
}

.capability-line h3,
.advantage-row h3 {
  font-size: clamp(27px, 2.45vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.capability-line p,
.capability-line li,
.advantage-row p {
  font-size: 15px;
  line-height: 1.65;
}

.model-river {
  width: var(--page);
  margin-top: clamp(58px, 6vw, 88px);
  padding-block: 24px 28px;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.model-river p,
.model-river p:last-child {
  width: 100%;
  display: block;
  margin: 0;
  white-space: normal;
  animation: none !important;
  transform: none !important;
  font-size: clamp(32px, 4.1vw, 56px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.model-river p:last-child {
  margin-top: 12px;
}

.model-river p span[aria-hidden="true"] {
  display: none;
}

.catalog-intro {
  min-height: 620px;
}

.catalog-group summary strong,
.plan-detail summary strong {
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.16;
}

.comparison table {
  font-size: 14px;
}

.plans .plan {
  min-height: 500px;
}

.plan h3 {
  font-size: clamp(44px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.plan p,
.plan-points li {
  font-size: 13px;
  line-height: 1.55;
}

.question-list summary {
  font-size: 21px;
  line-height: 1.25;
}

.question-list details > p {
  font-size: 15px;
  line-height: 1.65;
}

.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

@media (max-width: 760px) {
  .section-space {
    padding-block: 64px;
  }

  h2,
  .story-copy h2,
  .steps-title h2,
  .questions-title h2,
  .closing h2,
  .catalog-intro h2 {
    font-size: clamp(40px, 11.4vw, 46px);
    line-height: 1.03;
    letter-spacing: -0.03em;
  }

  .hero-fold {
    min-height: 100svh;
    padding-top: 84px;
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.6vw, 48px);
    line-height: 0.99;
    letter-spacing: -0.032em;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.52;
  }

  .hero-buttons {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-button {
    min-height: 50px;
    font-size: 13px;
  }

  .hero-cta-note {
    font-size: 12px;
    line-height: 1.5;
  }

  .manifesto-copy,
  .catalog-intro-copy,
  .advantages-lead,
  .subscription-lead,
  .story-lead,
  .closing-note {
    font-size: 16px;
    line-height: 1.58;
  }

  .intent-lines {
    margin-top: 42px;
  }

  .intent-lines p {
    min-height: 0;
    padding-block: 15px;
  }

  .intent-lines strong {
    font-size: 22px;
    line-height: 1.16;
    letter-spacing: -0.018em;
  }

  .story-image {
    height: clamp(290px, 76vw, 330px);
    -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0, #000 82%, transparent 100%);
  }

  .story-copy {
    margin-top: -68px;
    padding: 98px 18px 66px;
  }

  .capability-art img,
  .catalog-art img,
  .subscription-image img {
    opacity: 0.9;
  }

  .capability-art::after {
    background:
      linear-gradient(180deg, var(--paper) 0%, transparent 16%, transparent 76%, var(--paper) 100%),
      linear-gradient(90deg, var(--paper) 0%, color-mix(in srgb, var(--paper) 94%, transparent) 44%, color-mix(in srgb, var(--paper) 56%, transparent) 64%, transparent 82%);
  }

  .catalog-art::after {
    background:
      linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 68%, transparent) 18%, transparent 66%, var(--surface) 100%),
      linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 72%, transparent) 32%, transparent 72%);
  }

  .subscription-image::after {
    background:
      linear-gradient(180deg, var(--surface) 0%, transparent 14%, transparent 74%, var(--surface) 100%),
      linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 76%, transparent) 30%, transparent 70%);
  }

  .capability-line,
  .advantage-row {
    padding-block: 24px;
  }

  .capability-line h3,
  .advantage-row h3 {
    font-size: 25px;
    line-height: 1.16;
  }

  .capability-line p,
  .capability-line li,
  .advantage-row p {
    font-size: 15px;
    line-height: 1.6;
  }

  .model-river {
    margin-top: 42px;
    padding-block: 20px 22px;
  }

  .model-river p,
  .model-river p:last-child {
    font-size: 27px;
    line-height: 1.18;
  }

  .catalog-intro {
    min-height: 0;
  }

  .catalog-group summary strong,
  .plan-detail summary strong {
    font-size: 22px;
    line-height: 1.18;
  }

  .mobile-comparison-head,
  .mobile-comparison dl > div {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .95fr) minmax(0, .9fr);
    gap: 9px;
  }

  .mobile-comparison dl > div {
    font-size: 12px;
    line-height: 1.45;
  }

  .mobile-comparison dt {
    font-size: 17px;
    line-height: 1.18;
  }

  .plans .plan,
  .plans .plan + .plan {
    min-height: 350px;
  }

  .plan h3 {
    font-size: 43px;
  }

  .plan p,
  .plan-points li {
    font-size: 13px;
  }

  .step-list strong {
    font-size: 21px;
    line-height: 1.2;
  }

  .question-list summary {
    min-height: 70px;
    font-size: 18px;
    line-height: 1.25;
  }

  .question-list details > p {
    font-size: 15px;
  }
}

/* Product proof, price evidence and trust */
.product-demo {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background: var(--surface-soft);
}

.product-demo-head,
.assurance-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(48px, 7vw, 112px);
}

.product-demo-intro,
.assurance-head > p {
  max-width: 520px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.product-demo-intro .text-link {
  margin-top: 24px;
}

.product-window {
  min-height: 660px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  margin-top: clamp(54px, 6vw, 84px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 38px 90px rgba(36, 24, 52, 0.1);
}

html[data-theme="dark"] .product-window {
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.32);
}

.product-rail {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-right: 1px solid var(--line-soft);
  background: var(--surface);
}

.product-rail-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.product-rail-brand img {
  width: 24px;
  height: 24px;
}

.product-rail nav {
  display: grid;
  gap: 5px;
  margin-top: 56px;
}

.product-rail nav button {
  min-height: 46px;
  display: flex;
  align-items: center;
  width: 100%;
  padding-inline: 14px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  text-align: left;
}

.product-rail nav button:hover,
.product-rail nav button:focus-visible {
  color: var(--lavender);
}

.product-rail nav button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.product-rail > p {
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.product-workspace {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.product-toolbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(22px, 3vw, 42px);
  border-bottom: 1px solid var(--line-soft);
}

.product-toolbar div {
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.product-toolbar span,
.product-toolbar p,
.prompt-example span,
.generated-copy > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-toolbar strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.product-toolbar p {
  color: var(--lavender);
}

.product-thread {
  flex: 1;
  display: grid;
  gap: 28px;
  padding: clamp(24px, 3vw, 42px);
}

.prompt-example {
  max-width: 760px;
  padding-left: 20px;
  border-left: 2px solid var(--lavender);
}

.prompt-example p {
  margin-top: 9px;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.generated-example {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(380px, 1.38fr);
  align-items: stretch;
  gap: clamp(24px, 3vw, 44px);
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}

.generated-copy {
  display: flex;
  flex-direction: column;
}

.generated-copy h3 {
  margin-top: 13px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.generated-copy ul {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.generated-copy li {
  padding-block: 9px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
}

.generated-example figure {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--surface);
}

.generated-example figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.generated-example figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: rgba(253, 252, 249, 0.86);
  color: #121018;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-composer {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 clamp(22px, 3vw, 42px) clamp(22px, 3vw, 34px);
  padding: 13px 13px 13px 20px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.product-composer a {
  padding: 11px 15px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease;
}

.product-composer a:hover {
  background: var(--lavender);
  color: #fff;
}

.product-demo-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  margin-top: 34px;
}

.product-demo-foot dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.product-demo-foot dl > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  padding: 18px 18px 0 0;
}

.product-demo-foot dt {
  color: var(--lavender);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-demo-foot dd {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

/* Direct start map */
.start-map {
  --start-bg: #17121d;
  --start-fg: #fbf9ff;
  --start-muted: rgba(251, 249, 255, 0.66);
  --start-line: rgba(251, 249, 255, 0.18);
  --start-accent: #bda1ff;
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 81% 4%, rgba(130, 83, 170, 0.16), transparent 29%),
    var(--start-bg);
  color: var(--start-fg);
}

html[data-theme="dark"] .start-map {
  --start-bg: #0b090e;
  background:
    radial-gradient(circle at 81% 4%, rgba(159, 112, 206, 0.13), transparent 29%),
    var(--start-bg);
}

.start-map-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(310px, 0.6fr);
  align-items: end;
  gap: 24px clamp(48px, 8vw, 132px);
}

.start-map-head .kicker {
  grid-column: 1 / -1;
  color: var(--start-accent);
}

.start-map-head h2 {
  color: var(--start-fg);
  font-size: clamp(52px, 6.2vw, 94px);
  line-height: 0.95;
  letter-spacing: -0.052em;
}

.start-map-head h2 em {
  color: var(--start-accent);
}

.start-map-head > p:last-child {
  max-width: 500px;
  padding-bottom: 7px;
  color: var(--start-muted);
  font-size: 17px;
  line-height: 1.62;
}

.start-routes {
  display: grid;
  margin-top: clamp(64px, 7vw, 102px);
  border-top: 1px solid var(--start-line);
}

.start-route {
  position: relative;
  isolation: isolate;
  min-height: 248px;
  display: grid;
  grid-template-columns: 150px minmax(330px, 1fr) minmax(270px, 0.72fr) 150px;
  align-items: center;
  gap: clamp(24px, 3.2vw, 54px);
  overflow: hidden;
  padding-block: 30px;
  border-bottom: 1px solid var(--start-line);
}

.start-route::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0;
  transition: opacity 300ms var(--ease);
}

.start-route-chat::before {
  background: linear-gradient(90deg, rgba(126, 90, 180, 0.16), rgba(126, 90, 180, 0.02) 62%, transparent);
}

.start-route-studio::before {
  background: linear-gradient(90deg, rgba(179, 83, 124, 0.13), rgba(137, 99, 192, 0.07) 64%, transparent);
}

.start-route-sound::before {
  background: linear-gradient(90deg, rgba(76, 112, 176, 0.14), rgba(120, 83, 150, 0.05) 64%, transparent);
}

.start-route:hover::before,
.start-route:focus-visible::before {
  opacity: 1;
}

.start-route:focus-visible {
  outline-color: var(--start-accent);
  outline-offset: -3px;
}

.start-route-label {
  align-self: start;
  padding-top: 8px;
  color: var(--start-accent);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.start-route-copy {
  min-width: 0;
}

.start-route-copy h3 {
  font-family: var(--serif);
  font-size: clamp(52px, 5.3vw, 76px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.start-route-copy p {
  max-width: 570px;
  margin-top: 20px;
  color: var(--start-muted);
  font-size: 15px;
  line-height: 1.62;
}

.start-route-art {
  position: relative;
  min-width: 0;
  height: 184px;
  overflow: hidden;
  opacity: 0.92;
  transition: opacity 300ms var(--ease), transform 420ms var(--ease);
}

.start-route:hover .start-route-art,
.start-route:focus-visible .start-route-art {
  opacity: 1;
  transform: translateX(-5px);
}

.start-route-action {
  align-self: end;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.start-route-action b {
  color: var(--start-accent);
  font-size: 17px;
  font-weight: 400;
  transition: transform 260ms var(--ease);
}

.start-route:hover .start-route-action b,
.start-route:focus-visible .start-route-action b {
  transform: translate(3px, -3px);
}

.start-route-art-chat::before {
  content: "";
  position: absolute;
  width: 164px;
  aspect-ratio: 1;
  top: 10px;
  right: 12%;
  border: 1px solid rgba(189, 161, 255, 0.42);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(189, 161, 255, 0.22), transparent 65%);
}

.chat-orbit {
  position: absolute;
  z-index: 1;
  right: 18%;
  bottom: 9px;
  color: transparent;
  font-family: var(--serif);
  font-size: 104px;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(251, 249, 255, 0.72);
}

.start-route-art-chat i {
  position: absolute;
  left: 2%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 249, 255, 0.48), transparent);
  transform-origin: left center;
}

.start-route-art-chat i:nth-of-type(1) { top: 48px; width: 68%; transform: rotate(-5deg); }
.start-route-art-chat i:nth-of-type(2) { top: 83px; width: 52%; transform: rotate(4deg); }
.start-route-art-chat i:nth-of-type(3) { top: 119px; width: 74%; transform: rotate(-2deg); }
.start-route-art-chat i:nth-of-type(4) { top: 151px; width: 46%; transform: rotate(6deg); }

.start-route-art svg {
  width: 100%;
  height: 100%;
}

.start-route-art-studio .studio-frame {
  fill: rgba(251, 249, 255, 0.025);
  stroke: rgba(251, 249, 255, 0.24);
}

.start-route-art-studio .studio-lines {
  fill: none;
  stroke: rgba(251, 249, 255, 0.5);
  stroke-width: 1;
}

.start-route-art-studio .studio-dot {
  fill: var(--start-accent);
}

.sound-wave {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sound-wave-back {
  stroke: rgba(189, 161, 255, 0.2);
  stroke-width: 18;
}

.sound-wave-front {
  stroke: rgba(251, 249, 255, 0.82);
  stroke-width: 2;
}

.start-map-free {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding-top: 38px;
}

.start-map-free > p {
  display: grid;
  gap: 7px;
}

.start-map-free strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.start-map-free > p span {
  max-width: 720px;
  color: var(--start-muted);
  font-size: 14px;
  line-height: 1.55;
}

.start-map-free > div {
  display: flex;
  align-items: center;
  gap: 28px;
}

.start-map-button {
  border-color: var(--start-fg);
  background: var(--start-fg);
  color: var(--start-bg);
}

.start-map-button:hover {
  border-color: var(--start-accent);
  background: var(--start-accent);
  color: #130f18;
}

.start-map .text-link {
  color: var(--start-fg);
}

.start-map .text-link:hover {
  color: var(--start-accent);
}

@media (max-width: 1100px) {
  .start-route {
    grid-template-columns: 116px minmax(300px, 1fr) minmax(230px, 0.7fr) 118px;
    gap: 24px;
  }

  .start-route-copy h3 {
    font-size: 55px;
  }

  .start-route-copy p {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .start-map {
    padding-block: 78px;
  }

  .start-map-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .start-map-head .kicker {
    grid-column: auto;
  }

  .start-map-head h2 {
    font-size: clamp(43px, 12.6vw, 58px);
    line-height: 0.98;
  }

  .start-map-head > p:last-child {
    padding-bottom: 0;
    font-size: 15px;
    line-height: 1.58;
  }

  .start-routes {
    margin-top: 46px;
  }

  .start-route {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "label action"
      "copy copy"
      "art art";
    align-items: start;
    gap: 0 18px;
    padding-block: 24px 20px;
  }

  .start-route-label {
    grid-area: label;
    padding-top: 2px;
  }

  .start-route-copy {
    grid-area: copy;
    margin-top: 28px;
  }

  .start-route-copy h3 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .start-route-copy p {
    max-width: 94%;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.58;
  }

  .start-route-art {
    grid-area: art;
    width: 100%;
    height: 145px;
    margin-top: 18px;
  }

  .start-route-art-chat::before {
    width: 132px;
    top: 5px;
    right: 16%;
  }

  .chat-orbit {
    right: 22%;
    bottom: 0;
    font-size: 82px;
  }

  .start-route-art-chat i:nth-of-type(1) { top: 33px; }
  .start-route-art-chat i:nth-of-type(2) { top: 63px; }
  .start-route-art-chat i:nth-of-type(3) { top: 94px; }
  .start-route-art-chat i:nth-of-type(4) { top: 121px; }

  .start-route-action {
    grid-area: action;
    align-self: start;
    padding-bottom: 0;
    font-size: 11px;
  }

  .start-map-free {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 32px;
  }

  .start-map-free strong {
    font-size: 28px;
  }

  .start-map-free > div {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .start-map-free .hero-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .start-route::before,
  .start-route-art,
  .start-route-action b {
    transition: none;
  }
}

.catalog-intro.catalog-intro--compact {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: clamp(48px, 7vw, 104px);
  overflow: visible;
}

.catalog-intro.catalog-intro--compact > .reveal {
  width: auto;
}

.price-evidence {
  margin-top: clamp(48px, 5vw, 72px);
  padding-block: clamp(34px, 4vw, 52px);
  border-block: 1px solid var(--line);
}

.price-evidence-copy {
  display: grid;
  grid-template-columns: 0.52fr 1fr 1fr;
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
}

.price-evidence-copy h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.price-evidence-copy h3 strong {
  color: var(--lavender);
  font-weight: 400;
}

.price-evidence-copy > p:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.price-evidence-numbers {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-top: 42px;
}

.price-evidence-numbers p {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-evidence-numbers span,
.price-evidence-numbers small {
  display: block;
}

.price-evidence-numbers span {
  color: var(--lavender);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-evidence-numbers strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-evidence-numbers small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.price-evidence-numbers i {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
}

.price-evidence-note {
  margin-top: 30px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.price-evidence-note a {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.18em;
}

.comparison .price-evidence,
.comparison .price-evidence-numbers p {
  border-color: rgba(255, 255, 255, 0.24);
}

.comparison .price-evidence-copy > p:last-child,
.comparison .price-evidence-numbers small,
.comparison .price-evidence-numbers i,
.comparison .price-evidence-note {
  color: rgba(251, 248, 253, 0.68);
}

.assurance {
  border-block: 1px solid var(--line-soft);
  background: var(--surface-soft);
}

.assurance-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(54px, 6vw, 86px);
  border-top: 1px solid var(--line);
}

.assurance-lines article {
  display: grid;
  grid-template-columns: 86px minmax(180px, 0.72fr) minmax(220px, 1fr);
  align-items: baseline;
  gap: 24px;
  padding: 26px 28px 30px 0;
  border-bottom: 1px solid var(--line);
}

.assurance-lines article:nth-child(odd) {
  padding-right: 36px;
  border-right: 1px solid var(--line);
}

.assurance-lines article:nth-child(even) {
  padding-left: 36px;
}

.assurance-lines span {
  color: var(--lavender);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.assurance-lines h3 {
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.assurance-lines p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.assurance-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  margin-top: 38px;
}

.assurance-action > p {
  display: grid;
  gap: 5px;
}

.assurance-action > p strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.assurance-action > p span {
  color: var(--muted);
  font-size: 14px;
}

.assurance-action > div {
  display: flex;
  align-items: center;
  gap: 26px;
}

@media (max-width: 1100px) {
  .generated-example {
    grid-template-columns: minmax(220px, 0.72fr) minmax(300px, 1.28fr);
  }

  .assurance-lines article {
    grid-template-columns: 70px 1fr;
  }

  .assurance-lines article p {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .product-demo-head,
  .assurance-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-demo-intro,
  .assurance-head > p {
    padding-bottom: 0;
    font-size: 16px;
    line-height: 1.58;
  }

  .product-window {
    min-height: 0;
    grid-template-columns: 1fr;
    margin-top: 42px;
    box-shadow: 0 24px 54px rgba(36, 24, 52, 0.09);
  }

  .product-rail {
    display: block;
    padding: 14px 16px 0;
    overflow: hidden;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    white-space: nowrap;
  }

  .product-rail-brand,
  .product-rail > p {
    display: none;
  }

  .product-rail nav {
    display: flex;
    gap: 2px;
    margin-top: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .product-rail nav::-webkit-scrollbar {
    display: none;
  }

  .product-rail nav button {
    min-height: 42px;
    width: auto;
    flex: 0 0 auto;
    padding-inline: 13px;
    font-size: 12px;
  }

  .product-toolbar {
    min-height: 64px;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .product-toolbar div {
    display: grid;
    gap: 2px;
  }

  .product-toolbar strong {
    font-size: 20px;
  }

  .product-toolbar p {
    max-width: 96px;
    text-align: right;
    line-height: 1.35;
  }

  .product-thread {
    gap: 22px;
    padding: 20px 16px;
  }

  .prompt-example {
    padding-left: 14px;
  }

  .prompt-example p {
    font-size: 20px;
  }

  .generated-example {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 20px;
  }

  .generated-copy h3 {
    font-size: 25px;
  }

  .generated-copy ul {
    margin-top: 20px;
  }

  .generated-example figure {
    min-height: 210px;
    order: -1;
  }

  .product-composer {
    min-height: 58px;
    margin: 0 16px 16px;
    padding-left: 14px;
  }

  .product-composer a {
    white-space: nowrap;
  }

  .product-demo-foot {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 28px;
  }

  .product-demo-foot dl {
    grid-template-columns: 1fr;
  }

  .product-demo-foot dl > div {
    padding: 13px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .product-demo-foot .hero-button {
    width: 100%;
  }

  .catalog-intro.catalog-intro--compact {
    display: flex;
    gap: 26px;
  }

  .price-evidence {
    margin-top: 40px;
    padding-block: 30px;
  }

  .price-evidence-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .price-evidence-copy h3 {
    font-size: 34px;
  }

  .price-evidence-numbers {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .price-evidence-numbers i {
    display: none;
  }

  .price-evidence-numbers strong {
    font-size: 39px;
  }

  .price-evidence-note {
    margin-top: 24px;
  }

  .assurance-lines {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .assurance-lines article,
  .assurance-lines article:nth-child(odd),
  .assurance-lines article:nth-child(even) {
    grid-template-columns: 68px 1fr;
    gap: 12px 16px;
    padding: 22px 0 24px;
    border-right: 0;
  }

  .assurance-lines article p {
    grid-column: 2;
    font-size: 14px;
  }

  .assurance-lines h3 {
    font-size: 27px;
  }

  .assurance-action {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
  }

  .assurance-action > p strong {
    font-size: 23px;
  }

  .assurance-action > div {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .assurance-action .hero-button {
    width: 100%;
  }
}

/* Conversion and density pass */
.format-duet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid var(--line-soft);
}

.format-duet-panel {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  overflow: hidden;
}

.format-duet-panel + .format-duet-panel {
  border-left: 1px solid var(--line-soft);
}

.format-duet-panel figure {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.format-duet-panel figure::after {
  content: "";
  position: absolute;
  inset: 0;
}

.format-duet-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 220ms ease;
}

.format-duet-panel:hover img,
.format-duet-panel:focus-visible img {
  transform: scale(1.012);
}

.format-duet-panel > div {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: clamp(42px, 5vw, 76px);
}

.format-duet-panel h2 {
  margin-top: 20px;
  font-size: clamp(50px, 5vw, 74px);
  line-height: 0.98;
}

.format-duet-panel h2 em {
  font-style: italic;
}

.format-duet-panel > div > p:not(.kicker) {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.format-duet-panel strong {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 13px;
}

.format-duet-media figure::after {
  background:
    linear-gradient(180deg, transparent 12%, color-mix(in srgb, var(--paper) 8%, transparent) 35%, var(--paper) 91%),
    linear-gradient(90deg, color-mix(in srgb, var(--paper) 36%, transparent), transparent 64%);
}

.format-duet-sound {
  color: #fbf8fd;
}

.format-duet-sound figure::after {
  background:
    linear-gradient(180deg, rgba(13, 10, 17, 0.08) 8%, rgba(13, 10, 17, 0.38) 42%, #0d0a11 94%),
    linear-gradient(90deg, rgba(13, 10, 17, 0.16), rgba(13, 10, 17, 0.48));
}

.format-duet-sound > div > p:not(.kicker) {
  color: #c6becb;
}

.format-duet-sound .kicker {
  color: #c4a7ff;
}

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

.hero-main {
  min-height: max(720px, 100svh);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  padding-bottom: 24px;
}

.hero-fold {
  min-height: 0;
  justify-content: center;
  padding-top: 104px;
  padding-bottom: 18px;
}

.hero-stats {
  width: min(900px, 74vw);
  margin-top: 0;
}

.hero-stats p {
  min-height: 88px;
}

.hero-stats strong {
  font-size: 31px;
}

.hero-foot {
  margin-top: 20px;
}

.start-map {
  padding-block: clamp(78px, 6.4vw, 104px);
}

.start-routes {
  margin-top: clamp(50px, 5vw, 72px);
}

.start-route {
  min-height: 210px;
  padding-block: 24px;
}

.start-route-copy h3 {
  font-size: clamp(48px, 4.7vw, 68px);
}

.start-route-art {
  height: 150px;
}

.start-map-free {
  padding-top: 30px;
}

.capability-lines,
.advantage-list {
  margin-top: 58px;
}

.capability-line,
.advantage-row {
  padding-block: 24px;
}

.subscription-image {
  height: clamp(260px, 28vw, 360px);
  margin-top: 48px;
}

.plans {
  margin-top: 48px;
}

.plans .plan {
  min-height: 450px;
}

.plan-action {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 11px 14px;
  background: var(--ink);
  color: var(--paper) !important;
  text-decoration: none;
}

.plan-action:hover {
  background: var(--lavender);
  color: #fff !important;
}

.questions {
  padding-bottom: clamp(76px, 6vw, 100px);
}

.question-list summary {
  min-height: 72px;
}

@media (max-width: 760px) {
  .header-actions {
    gap: 9px;
  }

  .header-link {
    min-height: 42px;
    display: inline-flex;
    padding-inline: 12px;
    background: var(--ink);
    color: var(--paper);
    font-size: 11px;
    text-decoration: none;
  }

  .header-link:hover {
    background: var(--lavender);
    color: #fff;
  }

  .hero,
  .hero-main,
  .hero-fold {
    min-height: 100svh;
  }

  .hero-main {
    display: block;
    padding-bottom: 0;
  }

  .hero-fold {
    justify-content: center;
    padding-top: 76px;
    padding-bottom: 28px;
  }

  .hero-stats,
  .hero-foot {
    display: none;
  }

  .format-duet {
    grid-template-columns: 1fr;
  }

  .format-duet-panel {
    min-height: 520px;
  }

  .format-duet-panel + .format-duet-panel {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .format-duet-panel > div {
    padding: 34px 18px 42px;
  }

  .format-duet-panel h2 {
    font-size: clamp(43px, 13vw, 56px);
  }

  .format-duet-panel > div > p:not(.kicker) {
    max-width: 94%;
    margin-top: 18px;
    font-size: 15px;
  }

  .format-duet-panel strong {
    min-height: 44px;
    margin-top: 18px;
  }

  .start-map {
    padding-block: 64px;
  }

  .start-route {
    padding-block: 22px 16px;
  }

  .start-route-copy {
    margin-top: 22px;
  }

  .start-route-art {
    height: 116px;
    margin-top: 12px;
  }

  .start-map-free {
    padding-top: 26px;
  }

  .capability-lines,
  .advantage-list {
    margin-top: 42px;
  }

  .capability-line,
  .advantage-row {
    padding-block: 21px;
  }

  .subscription-head {
    min-height: 400px;
    padding-bottom: 54px;
  }

  .subscription-image {
    height: 420px;
  }

  .plans .plan,
  .plans .plan + .plan {
    min-height: 420px;
  }

  .plan-action {
    min-height: 50px;
    font-size: 13px;
  }

  .question-list summary {
    min-height: 68px;
  }
}

/* Subscription artwork belongs to the heading composition on wide screens. */
@media (min-width: 761px) {
  .subscriptions {
    position: relative;
    overflow: hidden;
  }

  .subscription-head {
    position: relative;
    z-index: 2;
    min-height: 390px;
    padding-bottom: 56px;
  }

  .subscription-image {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    width: var(--page);
    height: 470px;
    margin: 0;
    transform: translateX(-50%);
    overflow: visible;
  }

  .subscription-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, var(--surface) 0%, transparent 20%, transparent 66%, var(--surface) 100%),
      linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 89%, transparent) 43%, transparent 75%);
    pointer-events: none;
  }

  .subscription-image img {
    object-position: 88% center;
    opacity: 0.82;
  }

  html[data-theme="dark"] .subscription-image img {
    opacity: 0.94;
  }

  .plans {
    position: relative;
    z-index: 2;
    margin-top: 0;
  }
}

.header-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding-inline: 12px;
}

.catalog-price-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.catalog-price-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.price-proof {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.price-proof-intro {
  display: grid;
  grid-template-columns: .52fr 2.08fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.price-proof-intro h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.price-proof-intro h3 strong {
  color: #b697f2;
  font-weight: 400;
}

.price-proof-list {
  margin-top: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.price-proof-head,
.price-proof-row {
  display: grid;
  grid-template-columns: minmax(175px, 1fr) repeat(3, minmax(145px, .82fr)) minmax(190px, 1fr);
  gap: 18px;
  align-items: center;
}

.price-proof-head {
  padding: 12px 0;
  color: rgba(251, 248, 253, 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price-proof-row {
  min-height: 82px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.price-proof-row > strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.12;
}

.price-proof-row span {
  font-size: 15px;
  font-weight: 700;
}

.price-proof-row small {
  display: block;
  margin-bottom: 3px;
  color: rgba(251, 248, 253, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-proof-row b {
  color: #c5a7ff;
  font-size: 13px;
}

.price-proof-note {
  margin-top: 18px;
  color: rgba(251, 248, 253, 0.58);
  font-size: 10px;
  line-height: 1.65;
}

.price-proof-note a {
  color: rgba(251, 248, 253, 0.82);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: .16em;
}

.plan-focus {
  margin-top: 20px;
  padding: 11px 0 11px 14px;
  border-left: 2px solid var(--lavender);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.plan-focus span {
  display: block;
  margin-bottom: 3px;
  color: var(--lavender);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .price-proof {
    margin-top: 32px;
    padding-top: 32px;
  }

  .price-proof-intro {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .price-proof-intro h3 {
    font-size: 34px;
  }

  .price-proof-head {
    display: none;
  }

  .price-proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    min-height: 0;
    padding: 20px 0;
  }

  .price-proof-row > strong,
  .price-proof-row > b {
    grid-column: 1 / -1;
  }

  .price-proof-row > strong {
    font-size: 24px;
  }

  .price-proof-row > span::before {
    display: block;
    margin-bottom: 5px;
    color: #c5a7ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .price-proof-row > span:nth-of-type(1)::before {
    content: "LeinGPT";
  }

  .price-proof-row > span:nth-of-type(2)::before {
    content: "OpenRouter / официальный API";
  }

  .price-proof-row > span:nth-of-type(3)::before {
    content: "Другой сервис";
  }

  .price-proof-row b {
    font-size: 12px;
  }

  .plan-focus {
    margin-top: 18px;
  }

  .subscription-head {
    min-height: 0;
    padding-bottom: 0;
  }

  .subscription-image {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    width: var(--page);
    height: clamp(210px, 60vw, 250px);
    margin: 28px auto 0;
    transform: none;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 80%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 80%, transparent 100%);
  }

  .subscription-image::after {
    background: linear-gradient(90deg, var(--surface) 0%, transparent 22%, transparent 78%, var(--surface) 100%);
  }

  .subscription-image img,
  html[data-theme="dark"] .subscription-image img {
    object-position: center 54%;
    opacity: .92;
  }

  .plans {
    margin-top: 26px;
  }
}

.platform-table {
  min-width: 0 !important;
  table-layout: fixed;
}

.platform-table th:first-child {
  width: 20%;
}

.platform-table th,
.platform-table td {
  padding-inline: 16px;
  font-size: 12px;
  line-height: 1.45;
}

.platform-table thead a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .42);
  text-underline-offset: .18em;
}

.platform-comparison {
  display: grid;
  gap: 28px;
  overflow: visible;
  border-top: 0;
}

.platform-table caption {
  padding: 0 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  color: #c5a7ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .price-proof-row span {
    font-size: 12px;
    line-height: 1.35;
  }

  .price-proof-row small {
    font-size: 8px;
  }

  .platform-mobile {
    margin-top: 54px;
    border-top: 0;
  }

  .platform-mobile article {
    padding: 26px 0 12px;
    border-top: 1px solid rgba(255, 255, 255, .24);
  }

  .platform-mobile article:first-child {
    border-top-color: #b697f2;
  }

  .platform-mobile article h3 {
    margin-bottom: 15px;
    color: #f9f6fb;
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
  }

  .platform-mobile article:first-child h3 {
    color: #c5a7ff;
  }

  .platform-mobile dl > div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 11px 0;
    font-size: 12px;
  }

  .platform-mobile dt {
    color: rgba(251, 248, 253, .48);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .platform-mobile dd,
  .platform-mobile dd:first-of-type,
  .platform-mobile dd:last-child {
    color: rgba(251, 248, 253, .78);
    font-weight: 500;
  }

  .platform-mobile article:first-child dd {
    color: #f9f6fb;
  }
}

@media (max-width: 760px) {
  .capability-line,
  .advantage-row {
    padding-top: 54px;
    padding-bottom: 21px;
  }

  .capability-line::after,
  .advantage-row::after {
    top: 20px;
    right: 0;
    max-width: calc(100% - 50px);
    line-height: 1.2;
    pointer-events: none;
  }
}

/* Start-to-result section */
.steps {
  overflow: hidden;
}

.steps .steps-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  column-gap: clamp(54px, 7vw, 110px);
  row-gap: clamp(54px, 5.5vw, 82px);
  align-items: end;
}

.steps .steps-title {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  min-height: 0;
  margin: 0;
  padding: 0 0 18px;
}

.steps .steps-title h2 {
  max-width: 560px;
  text-wrap: balance;
}

.steps .steps-art {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.steps .steps-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--paper) 0%, transparent 17%, transparent 76%, var(--paper) 100%),
    linear-gradient(90deg, var(--paper) 0%, transparent 13%, transparent 88%, var(--paper) 100%);
  pointer-events: none;
}

.steps .steps-art img,
html[data-theme="dark"] .steps .steps-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: none;
}

.steps .steps-grid > .step-list {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
}

.steps .step-list li {
  display: block;
  min-width: 0;
  padding: 27px 24px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

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

.steps .step-list span {
  display: block;
  margin-bottom: 34px;
}

.steps .step-list strong {
  display: block;
  min-height: 2.35em;
  font-size: clamp(24px, 2.15vw, 32px);
  line-height: 1.08;
}

.steps .step-list p {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.62;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .steps .steps-grid {
    grid-template-columns: minmax(270px, .8fr) minmax(0, 1.2fr);
    column-gap: 48px;
  }

  .steps .steps-grid > .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps .step-list li:nth-child(2) {
    border-right: 0;
  }

  .steps .step-list li:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .steps .steps-grid {
    display: block;
  }

  .steps .steps-title {
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  .steps .steps-title h2 {
    max-width: 100%;
  }

  .steps .steps-art {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% + 36px);
    height: auto;
    aspect-ratio: 16 / 10;
    margin: 34px -18px 24px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  }

  .steps .steps-art::after {
    background:
      linear-gradient(180deg, var(--paper) 0%, transparent 15%, transparent 78%, var(--paper) 100%),
      linear-gradient(90deg, var(--paper) 0%, transparent 9%, transparent 91%, var(--paper) 100%);
  }

  .steps .steps-art img,
  html[data-theme="dark"] .steps .steps-art img {
    object-fit: contain;
  }

  .steps .steps-grid > .step-list {
    display: block;
    margin-top: 0;
  }

  .steps .step-list li,
  .steps .step-list li:first-child,
  .steps .step-list li:nth-child(3),
  .steps .step-list li:last-child {
    padding: 25px 0 28px;
    border-right: 0;
  }

  .steps .step-list span {
    margin-bottom: 18px;
  }

  .steps .step-list strong {
    min-height: 0;
    font-size: 29px;
    line-height: 1.08;
  }

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