:root {
  --ink: #10111a;
  --navy: #151225;
  --muted: #656572;
  --paper: #f8f7fb;
  --white: #ffffff;
  --line: rgba(24, 18, 41, 0.11);
  --purple: #7540e8;
  --purple-deep: #5522c7;
  --lilac: #bb5ee0;
  --purple-soft: #eee8ff;
  --green: #22995a;
  --shadow: 0 28px 80px rgba(51, 29, 89, 0.12);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI Variable", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(117, 64, 232, 0.32);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--purple-deep);
  transform: translateY(-150%);
}

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

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

.section-pad {
  padding: 118px 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-color: var(--line);
  background: rgba(249, 248, 252, 0.88);
  box-shadow: 0 12px 40px rgba(25, 17, 42, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: clamp(24px, 3vw, 42px);
  align-items: center;
}

.desktop-nav a {
  position: relative;
  color: #35343f;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

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

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

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-deep), var(--lilac));
  box-shadow: 0 15px 34px rgba(92, 39, 203, 0.22);
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  box-shadow: 0 20px 42px rgba(92, 39, 203, 0.3);
  transform: translateY(-2px);
}

.button-header {
  min-height: 46px;
  padding-inline: 20px;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 890px;
  background: #f7f6fa;
}

.hero-media,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    url("/images/hero-auto-flux.webp") 56% center / cover no-repeat;
}

.hero-wash {
  background:
    linear-gradient(
      90deg,
      rgba(248, 247, 251, 1) 0%,
      rgba(248, 247, 251, 0.99) 33%,
      rgba(248, 247, 251, 0.77) 47%,
      rgba(248, 247, 251, 0.12) 69%,
      rgba(248, 247, 251, 0.02) 100%
    ),
    linear-gradient(0deg, rgba(248, 247, 251, 0.82) 0%, transparent 25%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(117, 64, 232, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 180px;
  right: -310px;
  width: 780px;
  height: 780px;
}

.orbit-two {
  top: 312px;
  right: -190px;
  width: 530px;
  height: 530px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 890px;
  padding: 180px 0 54px;
}

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

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 5px rgba(117, 64, 232, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin: 26px 0 28px;
  font-size: clamp(62px, 7.5vw, 105px);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero h1 > span {
  display: block;
  color: var(--purple);
}

.hero h1 small {
  display: block;
  margin-top: 19px;
  font-size: 0.52em;
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 1;
}

.hero-text {
  max-width: 620px;
  margin: 0;
  color: #4e4e5a;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
}

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

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.text-link span {
  color: var(--purple);
  font-size: 17px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.hero-proof {
  align-self: flex-end;
  width: min(760px, 100%);
  padding: 19px 22px 15px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 70px rgba(34, 22, 54, 0.13);
  backdrop-filter: blur(22px);
}

.proof-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-live {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.proof-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34, 153, 90, 0.1);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 17px 0 12px;
}

.proof-grid div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  display: block;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.proof-flow {
  display: flex;
  gap: 5px;
  align-items: end;
  height: 22px;
}

.proof-flow span {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(117, 64, 232, 0.12);
}

.proof-flow span:nth-child(2) {
  height: 7px;
}

.proof-flow span:nth-child(3) {
  height: 10px;
}

.proof-flow span:nth-child(4) {
  height: 12px;
}

.proof-flow span:nth-child(5) {
  height: 17px;
}

.proof-flow span:nth-child(6) {
  height: 22px;
  background: linear-gradient(180deg, var(--lilac), var(--purple-deep));
}

.hero-proof > p {
  margin: 8px 0 0;
  color: #777581;
  font-size: 9px;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-number {
  color: var(--purple);
}

.section-kicker.light {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
}

.statement {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(117, 64, 232, 0.09), transparent 33rem),
    var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  padding-top: 76px;
}

.statement h2,
.plans-heading h2,
.results h2,
.faq h2 {
  margin: 0;
  font-size: clamp(47px, 6.6vw, 84px);
  font-weight: 710;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.statement h2 em {
  display: block;
  color: var(--purple);
  font-style: normal;
}

.statement-copy {
  padding-bottom: 7px;
}

.statement-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 72px;
}

.problem-card {
  position: relative;
  min-height: 340px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: 0 16px 55px rgba(41, 22, 74, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.problem-card:hover {
  border-color: rgba(117, 64, 232, 0.25);
  box-shadow: 0 26px 65px rgba(41, 22, 74, 0.12);
  transform: translateY(-6px);
}

.card-index {
  color: #92909a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.problem-card h3 {
  margin: 34px 0 12px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

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

.card-mark {
  position: relative;
  display: grid;
  width: 94px;
  height: 94px;
  margin: 36px auto 0;
  place-items: center;
  border: 1px solid rgba(117, 64, 232, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 5%, #efe9ff 62%, rgba(255, 255, 255, 0.2));
  box-shadow: 0 18px 48px rgba(117, 64, 232, 0.15);
}

.mark-target::before,
.mark-target::after {
  position: absolute;
  border: 2px solid var(--purple);
  border-radius: 50%;
  content: "";
}

.mark-target::before {
  width: 42px;
  height: 42px;
}

.mark-target::after {
  width: 20px;
  height: 20px;
}

.mark-target i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-deep);
}

.mark-message {
  display: flex;
  gap: 5px;
}

.mark-message::before {
  position: absolute;
  width: 45px;
  height: 32px;
  border: 2px solid var(--purple);
  border-radius: 11px;
  content: "";
}

.mark-message i {
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
}

.mark-chart {
  display: flex;
  gap: 5px;
  align-items: end;
  padding-bottom: 27px;
}

.mark-chart i {
  width: 7px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--lilac), var(--purple-deep));
}

.mark-chart i:nth-child(1) {
  height: 14px;
}

.mark-chart i:nth-child(2) {
  height: 23px;
}

.mark-chart i:nth-child(3) {
  height: 32px;
}

.mark-chart i:nth-child(4) {
  height: 45px;
}

.method {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 20%, rgba(144, 78, 255, 0.25), transparent 34rem),
    radial-gradient(circle at 5% 100%, rgba(180, 88, 221, 0.17), transparent 30rem),
    #14111f;
}

.method-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.6fr;
  gap: 90px;
  align-items: end;
  padding: 74px 0 80px;
}

.product-label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.product-label strong {
  color: #b97aff;
}

.product-label.dark {
  color: var(--ink);
}

.product-label.dark::first-letter {
  color: inherit;
}

.method-intro h2 {
  margin: 20px 0 0;
  font-size: clamp(49px, 6.4vw, 82px);
  font-weight: 690;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.method-intro > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 1.72;
}

.flow-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 38px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.flow-map article {
  position: relative;
  z-index: 2;
  padding-right: 24px;
}

.flow-map article + article {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-map article > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: #d7c2ff;
  background: rgba(117, 64, 232, 0.2);
  font-size: 10px;
  font-weight: 850;
}

.flow-map strong {
  display: block;
  font-size: 16px;
}

.flow-map p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.55;
}

.system-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  margin-top: 86px;
  padding: 66px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.mini-label {
  color: var(--purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.system-copy h3 {
  margin: 18px 0 18px;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.system-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
}

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

.system-copy li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.system-copy li span {
  color: #a87cff;
  font-size: 9px;
  font-weight: 850;
}

.system-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 20%, rgba(139, 79, 255, 0.2), transparent 20rem),
    #0d0b14;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

.visual-top {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.visual-top span {
  margin-right: auto;
}

.visual-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.metric-card {
  position: absolute;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.metric-card span,
.metric-card small {
  display: block;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.metric-card strong {
  display: block;
  margin: 5px 0 2px;
  font-size: 35px;
  letter-spacing: -0.055em;
}

.metric-main {
  top: 88px;
  left: 34px;
  width: 58%;
  min-height: 205px;
}

.metric-side {
  top: 112px;
  right: 24px;
  width: 34%;
}

.metric-chart {
  display: flex;
  gap: 7px;
  align-items: end;
  height: 76px;
  margin-top: 16px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-chart i {
  flex: 1;
  height: 20%;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #ba7bff, #7040dc);
}

.metric-chart i:nth-child(2) {
  height: 28%;
}

.metric-chart i:nth-child(3) {
  height: 44%;
}

.metric-chart i:nth-child(4) {
  height: 38%;
}

.metric-chart i:nth-child(5) {
  height: 58%;
}

.metric-chart i:nth-child(6) {
  height: 72%;
}

.metric-chart i:nth-child(7) {
  height: 94%;
}

.message-stack {
  position: absolute;
  right: 28px;
  bottom: 34px;
  left: 70px;
}

.message-stack div {
  width: fit-content;
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.message-stack div:nth-child(2) {
  margin: 9px 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, #7744e9, #a448d3);
}

.message-stack span {
  display: block;
  width: fit-content;
  margin: 11px auto 0;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  font-size: 8px;
}

.results {
  background:
    radial-gradient(circle at 0 60%, rgba(117, 64, 232, 0.1), transparent 32rem),
    #f4f1f8;
}

.results-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0 72px;
}

.result-number {
  padding-right: 56px;
  border-right: 1px solid var(--line);
}

.result-number > span {
  display: block;
  margin-bottom: -8px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.result-number strong {
  display: block;
  color: var(--purple);
  font-size: clamp(130px, 18vw, 230px);
  font-weight: 760;
  letter-spacing: -0.1em;
  line-height: 0.9;
}

.result-number sup {
  margin-left: 8px;
  font-size: 0.35em;
  vertical-align: top;
}

.result-number p {
  max-width: 370px;
  margin: 18px 0 0;
  color: var(--muted);
}

.result-story h2 {
  margin: 20px 0 24px;
  font-size: clamp(43px, 5vw, 67px);
}

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

.result-disclaimer {
  margin-top: 30px;
  padding: 18px 20px;
  border-left: 3px solid var(--purple);
  color: #666370;
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

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

.result-strip > div {
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 120px;
  padding: 24px 28px;
}

.result-strip > div + div {
  border-left: 1px solid var(--line);
}

.result-strip span {
  color: var(--purple);
  font-size: 42px;
  font-weight: 780;
  letter-spacing: -0.06em;
}

.result-strip p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.plans {
  background: #fff;
}

.plans-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 80px;
  align-items: end;
  padding: 76px 0 68px;
}

.plans-heading h2 {
  margin-top: 18px;
  font-size: clamp(45px, 6vw, 76px);
}

.plans-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 690px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #faf9fc;
}

.plan-featured {
  border-color: transparent;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(173, 89, 255, 0.38), transparent 22rem),
    linear-gradient(150deg, #211637, #5630a9 72%, #7137cc);
  box-shadow: 0 30px 80px rgba(82, 40, 155, 0.26);
  transform: translateY(-16px);
}

.popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.plan-top span {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.plan-top small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.plan-featured .plan-top small,
.plan-featured .plan-note {
  color: rgba(255, 255, 255, 0.58);
}

.price {
  display: flex;
  align-items: baseline;
  margin: 32px 0 30px;
  letter-spacing: -0.055em;
}

.price sup {
  margin-right: 6px;
  font-size: 15px;
  font-weight: 800;
}

.price strong {
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1;
}

.price span {
  margin-left: 7px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.plan-featured .price span {
  color: rgba(255, 255, 255, 0.55);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: #474550;
  font-size: 13px;
}

.plan-card li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--purple);
  border-radius: 50%;
  content: "";
}

.plan-featured li {
  color: rgba(255, 255, 255, 0.83);
}

.plan-featured li::before {
  border-color: #c69bff;
}

.button-plan {
  width: 100%;
  margin-top: auto;
  color: var(--purple-deep);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(117, 64, 232, 0.15);
}

.button-plan-featured {
  color: var(--purple-deep);
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.plan-note {
  min-height: 35px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.faq {
  background: #f4f1f8;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq h2 {
  margin: 26px 0 24px;
  font-size: clamp(44px, 5.3vw, 70px);
}

.faq-heading > p {
  max-width: 430px;
  margin: 0 0 24px;
  color: var(--muted);
}

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

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

.faq summary {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 27px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq summary span {
  display: grid;
  flex: none;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--purple);
  font-size: 21px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq details p {
  max-width: 700px;
  margin: -4px 0 27px;
  padding-right: 62px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #fff;
  background:
    radial-gradient(circle at 20% 100%, rgba(208, 118, 255, 0.33), transparent 31rem),
    linear-gradient(135deg, #27144f, #6630c7 58%, #8d43db);
}

.cta-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.cta-orbit-one {
  top: -420px;
  right: -240px;
  width: 800px;
  height: 800px;
}

.cta-orbit-two {
  top: -255px;
  right: -80px;
  width: 490px;
  height: 490px;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.65fr;
  gap: 100px;
  align-items: end;
}

.final-cta h2 {
  margin: 20px 0 0;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.cta-action p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.68);
}

.button-light {
  color: var(--purple-deep);
  background: #fff;
  box-shadow: 0 18px 45px rgba(31, 12, 75, 0.22);
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #0d0b13;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 64px 0 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer {
  color: #fff;
}

.footer-top > p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  text-align: right;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 50px 0 60px;
}

.footer-links > div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #c89cff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

@media (max-width: 980px) {
  .desktop-nav,
  .button-header {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 88px;
    right: 0;
    left: 0;
    z-index: 45;
    display: grid;
    gap: 0;
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    background: rgba(249, 248, 252, 0.98);
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 260ms ease,
      padding 260ms ease,
      opacity 180ms ease;
    backdrop-filter: blur(18px);
  }

  .mobile-nav.is-open {
    max-height: 520px;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav > a:not(.button) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav .button {
    margin-top: 18px;
  }

  .hero,
  .hero-inner {
    min-height: 940px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-wash {
    background:
      linear-gradient(
        90deg,
        rgba(248, 247, 251, 1) 0%,
        rgba(248, 247, 251, 0.98) 48%,
        rgba(248, 247, 251, 0.45) 76%,
        rgba(248, 247, 251, 0.1) 100%
      ),
      linear-gradient(0deg, rgba(248, 247, 251, 0.94) 0%, transparent 40%);
  }

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

  .hero-proof {
    align-self: stretch;
  }

  .statement-grid,
  .method-intro,
  .results-grid,
  .plans-heading,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

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

  .card-mark {
    margin-left: 0;
  }

  .flow-map {
    grid-template-columns: 1fr;
    padding: 0;
    border: 0;
  }

  .flow-map article,
  .flow-map article + article {
    display: grid;
    grid-template-columns: 42px 150px 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .flow-map article > span {
    margin: 0;
  }

  .flow-map p {
    margin: 0;
  }

  .system-panel {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .result-number {
    padding: 0 0 44px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .result-number strong {
    font-size: clamp(125px, 28vw, 230px);
  }

  .plan-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .plan-featured {
    transform: none;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 660px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .section-pad {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .mobile-nav {
    top: 76px;
  }

  .brand {
    font-size: 25px;
  }

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

  .hero,
  .hero-inner {
    min-height: 920px;
  }

  .hero-inner {
    padding: 134px 0 30px;
  }

  .hero-media {
    top: 260px;
    height: 430px;
    background-position: 64% center;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, #f8f7fb 0%, rgba(248, 247, 251, 0.96) 28%, rgba(248, 247, 251, 0.08) 54%, #f8f7fb 79%);
  }

  .hero h1 {
    margin: 22px 0 24px;
    font-size: clamp(48px, 15vw, 64px);
    letter-spacing: -0.07em;
  }

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

  .hero-actions {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    margin-top: 28px;
  }

  .text-link {
    justify-content: center;
  }

  .hero-note {
    text-align: center;
  }

  .hero-proof {
    padding: 17px;
    border-radius: 21px;
  }

  .proof-head > span:first-child {
    display: none;
  }

  .proof-head {
    justify-content: flex-end;
  }

  .proof-grid {
    gap: 10px;
  }

  .proof-grid div + div {
    padding-left: 10px;
  }

  .proof-grid strong {
    font-size: 22px;
  }

  .proof-grid span {
    font-size: 9px;
  }

  .statement-grid {
    padding-top: 52px;
  }

  .statement h2,
  .plans-heading h2,
  .results h2,
  .faq h2 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .statement-copy p,
  .method-intro > p,
  .plans-heading > p,
  .result-story > p {
    font-size: 15px;
  }

  .problem-cards {
    margin-top: 48px;
  }

  .method-intro {
    padding: 52px 0;
  }

  .method-intro h2 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .flow-map article,
  .flow-map article + article {
    grid-template-columns: 36px 1fr;
  }

  .flow-map p {
    grid-column: 2;
  }

  .system-panel {
    gap: 40px;
    margin-top: 60px;
    padding: 26px 18px;
    border-radius: 24px;
  }

  .system-visual {
    min-height: 480px;
  }

  .metric-main {
    top: 75px;
    left: 16px;
    width: calc(100% - 32px);
  }

  .metric-side {
    top: 295px;
    right: 16px;
    width: 42%;
  }

  .message-stack {
    right: 16px;
    bottom: 24px;
    left: 16px;
  }

  .results-grid {
    padding-top: 54px;
  }

  .result-number strong {
    font-size: 42vw;
  }

  .result-strip {
    grid-template-columns: 1fr;
  }

  .result-strip > div {
    min-height: 100px;
  }

  .result-strip > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .plans-heading {
    padding: 52px 0 45px;
  }

  .plan-card {
    padding: 28px 22px;
  }

  .popular-tag {
    position: static;
    width: fit-content;
    margin-bottom: 22px;
  }

  .faq summary {
    font-size: 16px;
  }

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

  .final-cta {
    padding: 82px 0;
  }

  .final-cta h2 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer-top > p {
    text-align: left;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 14.5vw;
  }

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

  .proof-grid div + div {
    padding-top: 10px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero,
  .hero-inner {
    min-height: 1010px;
  }

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

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

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

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