:root {
  --paper: #fff;
  --paper-soft: #f8f6f2;
  --ink: #050505;
  --muted: #242424;
  --pink: #fd4bab;
  --purple: #903be3;
  --violet: var(--pink);
  --violet-dark: var(--purple);
  --violet-soft: #fff0f8;
  --brand-gradient: linear-gradient(135deg, #fd4bab 0%, #903be3 100%);
  --violet-line: rgba(253, 75, 171, 0.72);
  --line: rgba(5, 5, 5, 0.12);
  --shadow: 0 26px 70px rgba(34, 19, 79, 0.11);
  --content: min(1536px, 100%);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: Manrope, Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

strong {
  color: var(--purple);
  font-weight: 900;
}

mark {
  position: relative;
  padding: 0 0.05em;
  background: transparent;
  color: inherit;
}

mark::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: -0.18em;
  height: 0.16em;
  border-radius: 999px;
  background: var(--brand-gradient);
  transform: rotate(-2deg);
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 50;
  display: grid;
  width: min(1320px, calc(100% - 44px));
  grid-template-columns: auto auto;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(29, 19, 52, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  width: 184px;
  min-width: 0;
  align-items: center;
}

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

.header-nav {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.header-nav a,
.header-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-nav a {
  padding: 0 14px;
  color: rgba(5, 5, 5, 0.62);
}

.header-nav a:hover {
  background: var(--violet-soft);
  color: var(--violet-dark);
}

.header-nav a[aria-current="true"] {
  background: var(--violet-soft);
  color: var(--violet-dark);
}

.header-action {
  width: max-content;
  justify-self: end;
  padding: 0 18px;
  background: var(--brand-gradient);
  color: #fff;
  white-space: nowrap;
}

main {
  overflow: hidden;
}

.screen {
  position: relative;
  display: grid;
  width: var(--content);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(110px, 10vw, 152px) clamp(24px, 4.6vw, 70px) clamp(64px, 6vw, 92px);
  overflow: hidden;
  isolation: isolate;
}

.screen::after {
  content: "";
  position: absolute;
  inset: auto clamp(24px, 4.6vw, 70px) 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.split-screen,
.hero-screen,
.final-screen,
.glasses-screen {
  grid-template-columns: minmax(420px, 0.93fr) minmax(420px, 1.07fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: center;
}

.glasses-screen {
  grid-template-columns: minmax(420px, 0.78fr) minmax(520px, 1.22fr);
}

.reverse {
  grid-template-columns: minmax(460px, 0.95fr) minmax(420px, 1.05fr);
}

.copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.screen .copy,
.screen .visual {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.screen .visual {
  transition-delay: 80ms;
}

.screen.is-visible .copy,
.screen.is-visible .visual {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy {
  align-self: center;
  padding-top: 28px;
}

.eyebrow {
  margin: 0 0 clamp(18px, 2.3vw, 28px);
  color: var(--violet-dark);
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  font-size: clamp(58px, 6.6vw, 114px);
  line-height: 1.04;
}

h2 {
  max-width: 760px;
  font-size: clamp(54px, 6vw, 104px);
  line-height: 1.03;
}

.hero-title-gradient,
h2 span:not(.nowrap-text),
.circled-word {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-line {
  display: inline;
}

.mobile-only {
  display: none;
}

.hero-lead-line {
  display: inline;
}

.hero-lead-line:first-child::after {
  content: "";
  display: block;
}

.nowrap-text {
  white-space: nowrap;
}

.lead {
  max-width: 690px;
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: var(--muted);
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 500;
  line-height: 1.55;
}

.primary-button {
  display: inline-flex;
  min-height: clamp(68px, 6vw, 92px);
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: clamp(32px, 4.4vw, 56px);
  padding: 0 clamp(24px, 3.8vw, 48px);
  border: 0;
  border-radius: 999px;
  background: var(--brand-gradient);
  box-shadow: 0 20px 48px rgba(253, 75, 171, 0.26);
  color: #fff;
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover {
  box-shadow: 0 24px 58px rgba(144, 59, 227, 0.3);
  transform: translateY(-2px);
}

.primary-button span {
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.18em;
  line-height: 1;
}

.large-button {
  width: min(650px, 100%);
}

.under-note,
.bottom-statement {
  margin: clamp(28px, 3.6vw, 46px) 0 0;
  color: #171717;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 500;
  line-height: 1.48;
}

.hero-copy .under-note {
  width: min(410px, 100%);
  margin-top: clamp(10px, 1.4vw, 16px);
  text-align: center;
  font-size: clamp(13px, 0.9vw, 15px);
}

.final-copy .under-note {
  width: min(650px, 100%);
  margin-top: clamp(14px, 1.8vw, 22px);
  text-align: center;
  font-size: clamp(15px, 1.05vw, 18px);
}

.bottom-statement {
  font-weight: 900;
}

.visual {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  align-items: end;
  justify-items: center;
  align-self: stretch;
  pointer-events: none;
}

.visual::before {
  content: none;
}

.visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(32, 22, 54, 0.08));
}

.hero-visual {
  justify-items: end;
}

.hero-visual img {
  width: min(1180px, 170%);
  max-width: none;
  transform: translateX(22%);
}

.base-visual img {
  width: min(760px, 104%);
  transform: translateX(3%);
}

.potential-visual img {
  width: min(1320px, 194%);
  max-width: none;
  transform: translateX(0);
}

.system-visual img {
  width: min(1080px, 154%);
  max-width: none;
  transform: translate(2%, -10%);
}

.territory-visual img {
  width: min(1160px, 154%);
  transform: translate(4%, -7%);
}

.glasses-visual {
  justify-items: end;
}

.glasses-visual img {
  width: min(1656px, 214%);
  transform: translate(7%, -10%) rotate(-1deg);
  filter: drop-shadow(0 28px 38px rgba(83, 28, 121, 0.13));
}

.route-labels {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #0a0a0a;
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.route-labels li {
  position: absolute;
  display: inline-block;
  width: 92px;
  text-align: right;
}

.route-labels li::after {
  content: none;
}

.route-labels span {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.route-labels span::after,
.icon-row strong::after,
.system-parts strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-gradient);
  transform: rotate(-3deg);
}

.route-blog {
  top: 16%;
  left: 8%;
}

.route-trust {
  top: 34%;
  left: 4%;
}

.route-system {
  top: 58%;
  left: 2%;
}

.route-income {
  top: 82%;
  left: -2%;
}

.icon-row,
.system-parts {
  display: grid;
  max-width: 680px;
  margin-top: clamp(30px, 4vw, 48px);
  gap: clamp(16px, 2vw, 28px);
}

.icon-row {
  grid-template-columns: repeat(3, 1fr);
}

.system-parts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-row article,
.system-parts article {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.icon-row strong,
.system-parts strong {
  position: relative;
  padding-bottom: 10px;
  color: var(--ink);
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.feature-icon {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.circled-title,
.circled-word {
  position: relative;
  display: inline-block;
  color: var(--ink);
}

.circled-title::after,
.circled-word::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.05em -0.2em -0.08em;
  border: 3px solid var(--pink);
  border-radius: 50%;
  transform: rotate(-3deg);
}

.wide-copy h2 {
  max-width: 900px;
}

.quote-box {
  width: min(700px, 100%);
  margin-top: clamp(30px, 4vw, 44px);
  padding: clamp(18px, 2.2vw, 26px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 8px 8px 0 rgba(106, 53, 235, 0.09);
}

.quote-box p,
.quote-box strong {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.4;
}

.quote-box strong {
  display: block;
  margin-top: 8px;
}

.reality-chip {
  display: block;
  margin: 0 0 clamp(24px, 3vw, 38px);
  color: var(--purple);
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.glasses-copy h2 {
  max-width: 690px;
}

.glasses-copy .lead {
  max-width: 600px;
}

.reality-note {
  display: flex;
  max-width: 520px;
  align-items: flex-start;
  gap: 20px;
  margin-top: clamp(44px, 5vw, 72px);
}

.reality-note > span {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--purple);
  border-radius: 50%;
  color: var(--purple);
  font-size: 28px;
  font-weight: 800;
}

.reality-note p {
  position: relative;
  margin: 0;
  padding-bottom: 16px;
  color: var(--ink);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 500;
  line-height: 1.5;
}

.reality-note p::after {
  content: "";
  position: absolute;
  left: 0;
  right: 10%;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-gradient);
  transform: rotate(-2deg);
}

.final-screen {
  min-height: 100svh;
}

.final-copy {
  align-self: center;
}

.final-copy h2 {
  max-width: 780px;
  font-size: clamp(64px, 6.8vw, 118px);
}

@media (max-width: 1120px) {
  .site-header {
    top: 14px;
    width: min(860px, calc(100% - 28px));
    grid-template-columns: auto auto;
  }

  .header-nav {
    display: none;
  }

  .brand {
    width: 162px;
  }

  .header-action {
    justify-self: end;
  }

  .screen,
  .split-screen,
  .hero-screen,
  .final-screen,
  .glasses-screen,
  .reverse {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 112px;
  }

  .copy {
    max-width: 820px;
  }

  .visual {
    min-height: auto;
    align-self: auto;
    order: -1;
  }

  .hero-screen .visual,
  .potential-visual,
  .glasses-visual,
  .territory-visual {
    order: 0;
  }

  .hero-visual {
    justify-items: center;
  }

  .hero-visual img,
  .base-visual img,
  .potential-visual img,
  .system-visual img,
  .glasses-visual img,
  .territory-visual img {
    width: min(660px, 100%);
    max-width: 100%;
    transform: none;
  }

  .system-parts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .route-labels {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 10px 10px 12px;
  }

  .brand {
    width: 138px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .screen,
  .split-screen,
  .hero-screen,
  .final-screen,
  .glasses-screen,
  .reverse {
    gap: 28px;
    justify-items: center;
    padding: 92px 18px 56px;
    text-align: center;
  }

  .hero-screen {
    row-gap: 10px;
  }

  .screen::after {
    inset-inline: 18px;
  }

  .copy {
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  h1,
  h2,
  .lead,
  .under-note,
  .bottom-statement,
  .quote-box,
  .reality-note,
  .icon-row,
  .system-parts {
    margin-inline: auto;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy,
  .hero-visual {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-copy h1 {
    order: 1;
  }

  .hero-screen .hero-visual {
    order: 2;
  }

  .hero-copy .lead {
    order: 3;
  }

  .hero-copy .primary-button {
    order: 4;
  }

  .hero-copy .under-note {
    order: 5;
  }

  .hero-title-line,
  .mobile-only {
    display: block;
  }

  .hero-title-main {
    background: none;
    color: var(--ink);
  }

  .hero-title-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 18px;
  }

  h1 {
    font-size: clamp(40px, 11.8vw, 56px);
    line-height: 1.02;
  }

  h2,
  .final-copy h2 {
    font-size: clamp(48px, 14vw, 68px);
    line-height: 1.02;
  }

  .lead {
    font-size: 18px;
    line-height: 1.48;
  }

  .hero-copy .lead {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(13px, 3.85vw, 16px);
    line-height: 1.46;
  }

  .hero-lead-line {
    display: block;
    white-space: nowrap;
  }

  .hero-lead-line:first-child::after {
    content: none;
    display: none;
  }

  .hero-copy .under-note {
    margin-top: 2px;
  }

  .hero-copy .primary-button {
    margin-top: 8px;
  }

  .hero-visual img {
    width: min(650px, 168%);
  }

  .primary-button {
    width: 100%;
    min-height: 64px;
    gap: 14px;
    padding: 0 18px;
    font-size: clamp(20px, 6.4vw, 26px);
    white-space: normal;
  }

  .under-note,
  .bottom-statement {
    font-size: 17px;
  }

  .icon-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .system-parts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .icon-row strong,
  .system-parts strong {
    font-size: 16px;
  }

  .quote-box {
    padding: 16px;
  }

  .quote-box p,
  .quote-box strong {
    font-size: 17px;
  }

  .reality-chip {
    font-size: 17px;
  }

  .reality-note {
    gap: 14px;
    margin-top: 34px;
  }

  .reality-note > span {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .reality-note p {
    font-size: 17px;
  }

}

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

  .screen,
  .split-screen,
  .hero-screen,
  .final-screen,
  .glasses-screen,
  .reverse {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(38px, 11.6vw, 48px);
  }

  h2,
  .final-copy h2 {
    font-size: clamp(42px, 13vw, 56px);
  }

  .lead {
    font-size: 17px;
  }

  .icon-row {
    grid-template-columns: 1fr;
    max-width: 220px;
  }

  .icon-row article {
    grid-template-columns: 60px 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .icon-row strong {
    width: fit-content;
  }
}
