:root {
  --ink: #171421;
  --ink-soft: #252132;
  --paper: #ffffff;
  --cream: #f8f6f1;
  --cream-deep: #eeeae2;
  --violet: #7c5cff;
  --violet-dark: #5c3de0;
  --coral: #ff785a;
  --pink: #ff9ccc;
  --mint: #bff4d8;
  --sky: #a7ceff;
  --text: #262331;
  --muted: #686374;
  --line: rgba(23, 20, 33, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-soft: 0 24px 70px rgba(30, 23, 59, 0.12);
  --shadow-card: 0 18px 42px rgba(30, 23, 59, 0.1);
  --container: 1180px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

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

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease-out;
}

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

:focus-visible {
  outline: 3px solid #ffd166;
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 20px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 40px), var(--container));
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(27, 23, 39, 0.72);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand__mark {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--coral);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease-out, box-shadow 180ms ease-out;
}

.header-cta:hover {
  background: #ff967e;
  box-shadow: 0 8px 24px rgba(255, 120, 90, 0.28);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 900px;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 92px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
  color: #fff;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -18%;
  bottom: -390px;
  width: 790px;
  height: 620px;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.23);
  filter: blur(130px);
  content: "";
}

.hero-network {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-glow--one {
  top: 22%;
  right: 4%;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(255, 156, 204, 0.25), transparent 68%);
}

.hero-glow--two {
  bottom: 10%;
  left: 3%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(167, 206, 255, 0.16), transparent 68%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(255, 156, 204, 0.28);
  border-radius: 999px;
  background: rgba(255, 156, 204, 0.08);
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 120, 90, 0.13);
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 5.35vw, 66px);
  line-height: 1.02;
}

.hero h1 span {
  display: block;
  width: fit-content;
  margin-top: 8px;
  padding: 0 8px 8px;
  background: linear-gradient(90deg, var(--coral), var(--pink));
  color: var(--ink);
  line-height: 0.98;
  transform: rotate(-1deg);
}

.hero__lead {
  max-width: 665px;
  margin: 23px 0 0;
  color: #d5d1df;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.7;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 19px 0 0;
  padding: 0;
  color: #ece9f3;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.signup-shell {
  max-width: 690px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.form-heading__note {
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(191, 244, 216, 0.12);
  color: var(--mint);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.waitlist-form > label {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.form-row input {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
}

.form-row input::placeholder {
  color: #888392;
}

.form-row input:hover {
  border-color: rgba(124, 92, 255, 0.5);
}

.form-row input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.2);
}

.form-row input[aria-invalid="true"] {
  border-color: #c94444;
  box-shadow: 0 0 0 4px rgba(201, 68, 68, 0.14);
}

.form-row button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: var(--coral);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 180ms ease-out, box-shadow 180ms ease-out;
}

.form-row button:hover:not(:disabled) {
  background: #ff967e;
  box-shadow: 0 12px 30px rgba(255, 120, 90, 0.24);
}

.form-row button:disabled {
  cursor: wait;
  opacity: 0.74;
}

.form-row button.is-loading::after {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(23, 20, 33, 0.35);
  border-top-color: var(--ink);
  border-radius: 50%;
  content: "";
  animation: button-spin 700ms linear infinite;
}

.form-row button.is-loading svg {
  display: none;
}

@keyframes button-spin {
  to { transform: rotate(360deg); }
}

.form-row button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease-out;
}

.form-row button:hover:not(:disabled) svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.form-status {
  min-height: 0;
  margin: 0;
  color: #ffadad;
  font-size: 13px;
  font-weight: 650;
}

.form-status:not(:empty) {
  margin-top: 10px;
}

.form-status[data-state="success"] {
  color: var(--mint);
}

.form-note {
  margin: 10px 2px 0;
  color: #aba6b8;
  font-size: 11px;
  line-height: 1.55;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #fff;
}

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

.form-success > svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.form-success strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

.form-success p {
  margin: 0;
  color: #c6c1d0;
  font-size: 13px;
}

.form-success span {
  color: #fff;
  font-weight: 700;
  word-break: break-word;
}

.hero__visual {
  --visual-rx: 0deg;
  --visual-ry: 0deg;
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 650px;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.hero-three {
  position: absolute;
  z-index: 1;
  inset: -8% -18%;
  width: 136%;
  height: 116%;
  opacity: 0;
  filter: saturate(1.16) contrast(1.04);
  pointer-events: none;
  transition: opacity 700ms ease-out;
}

.hero__visual.three-ready .hero-three {
  opacity: 0.92;
}

.hero__visual.three-ready .visual-orbit {
  opacity: 0.32;
  transition: opacity 500ms ease-out;
}

.phone-frame {
  position: relative;
  z-index: 3;
  width: min(100%, 326px);
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 42px;
  background: #211c2d;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.42),
    0 0 0 5px rgba(255, 255, 255, 0.035),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  transform: rotateX(var(--visual-rx)) rotateY(var(--visual-ry)) rotate(2.5deg);
  transform-style: preserve-3d;
  transition: transform 280ms ease-out;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 86px;
  height: 22px;
  border-radius: 99px;
  background: #171421;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 615px;
  overflow: hidden;
  padding: 25px 17px 18px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 13%, rgba(255, 156, 204, 0.44), transparent 20%),
    linear-gradient(155deg, #fff8ee 0%, #f6f0ff 100%);
  color: var(--ink);
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 2px 18px;
  color: #777181;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-topbar svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.creator-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.creator-avatar {
  display: flex;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 17px;
  background: linear-gradient(145deg, var(--violet), var(--pink));
  box-shadow: 0 8px 20px rgba(92, 61, 224, 0.22);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

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

.creator-profile strong {
  font-size: 16px;
  line-height: 1.3;
}

.creator-profile span {
  margin-top: 2px;
  color: #736d7c;
  font-size: 11px;
}

.creator-bio {
  margin: 14px 0 18px;
  color: #5c5666;
  font-size: 11px;
  line-height: 1.55;
}

.preview-card {
  border: 1px solid rgba(23, 20, 33, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 25px rgba(42, 32, 77, 0.08);
}

.preview-card--featured {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  padding: 9px;
  border-radius: 17px;
}

.preview-art {
  position: relative;
  height: 92px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #a7ceff, #7c5cff);
}

.preview-art::after {
  position: absolute;
  right: -16px;
  bottom: -20px;
  width: 72px;
  height: 72px;
  border: 9px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  content: "";
}

.preview-art span {
  position: absolute;
  z-index: 1;
  display: block;
  width: 32px;
  height: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.84);
  transform: rotate(-18deg);
}

.preview-art span:nth-child(1) { top: 24px; left: 15px; }
.preview-art span:nth-child(2) { top: 36px; left: 22px; width: 42px; }
.preview-art span:nth-child(3) { top: 48px; left: 12px; width: 29px; }

.preview-card small,
.preview-card strong,
.preview-card span {
  display: block;
}

.preview-card small {
  color: #847d8f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.preview-card strong {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.35;
}

.preview-card--featured > div:last-child > span {
  width: fit-content;
  margin-top: 10px;
  padding: 4px 8px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
}

.preview-card--compact {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 9px;
  padding: 10px;
  border-radius: 15px;
}

.preview-icon {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.preview-icon--violet { background: #e9e3ff; color: var(--violet-dark); }
.preview-icon--coral { background: #ffe3dc; color: #c7462c; }

.preview-icon svg,
.preview-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.preview-arrow {
  width: 15px;
  color: #88818e;
}

.preview-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 18px;
}

.preview-socials span {
  padding: 5px 8px;
  border: 1px solid rgba(23, 20, 33, 0.08);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.56);
  color: #736d7c;
  font-size: 8px;
  font-weight: 700;
}

.visual-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 20px rgba(255, 156, 204, 0.8);
  content: "";
}

.visual-orbit--one {
  width: 510px;
  height: 510px;
  transform: rotate(-18deg);
}

.visual-orbit--one::before { top: 54px; left: 80px; }
.visual-orbit--one::after { right: 34px; bottom: 132px; background: var(--mint); }

.visual-orbit--two {
  width: 410px;
  height: 610px;
  border-color: rgba(124, 92, 255, 0.25);
  transform: rotate(26deg);
}

.visual-orbit--two::before { top: 110px; right: 11px; background: var(--sky); }
.visual-orbit--two::after { bottom: 38px; left: 120px; background: var(--coral); }

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 172px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  background: rgba(42, 36, 57, 0.89);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.floating-card small {
  display: block;
  margin-bottom: 1px;
  color: #a9a3b4;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.floating-card__icon {
  display: flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.floating-card__icon--mint { background: var(--mint); color: #17472f; }
.floating-card__icon--pink { background: var(--pink); color: #582040; }

.floating-card__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-card--payment { top: 104px; left: -40px; }
.floating-card--insight { right: -34px; bottom: 112px; }

.visual-label {
  position: absolute;
  z-index: 4;
  right: 2px;
  top: 120px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(255, 120, 90, 0.25);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  transform: rotate(6deg);
}

.visual-label svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.section {
  padding: 112px 0;
}

.section-kicker {
  margin-bottom: 15px;
  color: var(--violet-dark);
}

.section h2 {
  color: var(--ink);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
}

.section-copy > p:last-of-type,
.section-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.link-map {
  position: relative;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(124, 92, 255, 0.14), transparent 38%),
    linear-gradient(rgba(23, 20, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 33, 0.035) 1px, transparent 1px),
    #fbfaf7;
  background-size: auto, 28px 28px, 28px 28px, auto;
  box-shadow: var(--shadow-soft);
}

.link-map__scattered {
  position: absolute;
  inset: 0;
}

.link-map__scattered > svg {
  position: absolute;
  inset: 22% 8%;
  width: 84%;
  height: 62%;
  fill: none;
  stroke: rgba(124, 92, 255, 0.28);
  stroke-dasharray: 5 7;
  stroke-width: 1.4;
}

.scatter-card {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 9px 24px rgba(30, 23, 59, 0.1);
  color: #5e5868;
  font-size: 11px;
  font-weight: 700;
}

.scatter-card--one { top: 12%; left: 6%; transform: rotate(-4deg); }
.scatter-card--two { right: 7%; top: 12%; transform: rotate(4deg); }
.scatter-card--three { left: 7%; bottom: 12%; transform: rotate(3deg); }
.scatter-card--four { right: 6%; bottom: 11%; transform: rotate(-3deg); }

.link-map__center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 185px;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 26px;
  background: var(--ink);
  box-shadow: 0 22px 46px rgba(23, 20, 33, 0.27);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-1deg);
}

.link-map__center .brand__mark {
  width: 38px;
  height: 38px;
  margin-bottom: 9px;
  color: var(--pink);
}

.link-map__center strong {
  font-size: 14px;
}

.link-map__center span {
  margin-top: 3px;
  color: #b9b4c3;
  font-size: 9px;
}

.benefits {
  background: var(--cream);
}

.section-heading {
  display: grid;
  max-width: 890px;
  grid-template-columns: 1fr;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading .section-kicker {
  justify-self: center;
}

.section-heading > p:last-child {
  max-width: 690px;
  justify-self: center;
}

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

.benefit-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(23, 20, 33, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.benefit-card::after {
  position: absolute;
  right: -48px;
  bottom: -68px;
  width: 190px;
  height: 190px;
  border: 22px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  content: "";
}

.benefit-card--violet { background: #ded5ff; }
.benefit-card--mint { background: var(--mint); }
.benefit-card--coral { background: #ffd9cf; }
.benefit-card--pink { background: #ffd9eb; }

.benefit-card__number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(23, 20, 33, 0.36);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.benefit-card__icon {
  display: flex;
  width: 55px;
  height: 55px;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 26px rgba(23, 20, 33, 0.16);
}

.benefit-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefit-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 23px;
  letter-spacing: -0.03em;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0;
  color: #514b5a;
  font-size: 14px;
  line-height: 1.75;
}

.steps {
  background: var(--ink);
  color: #fff;
}

.steps__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(470px, 1.2fr);
  gap: clamp(54px, 10vw, 130px);
}

.steps .section-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.steps h2 {
  color: #fff;
}

.steps .section-copy > p:last-of-type {
  color: #aaa5b5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 800;
}

.step-list {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list::before {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 31px;
  width: 1px;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.step-list li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 132px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.step-list li > span {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--violet);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.step-list h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.step-list p {
  margin: 5px 0 0;
  color: #a9a4b3;
  font-size: 13px;
  line-height: 1.65;
}

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

.audience__card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
  padding: clamp(36px, 6vw, 72px);
  border-radius: 34px;
  background: #eee8ff;
  box-shadow: var(--shadow-soft);
}

.audience__card h2 {
  font-size: clamp(36px, 4.3vw, 56px);
}

.audience__card > div:first-child > p:last-child {
  max-width: 660px;
  margin: 22px 0 0;
  color: #5f5868;
  font-size: 16px;
}

.use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
  justify-content: center;
}

.use-cases span {
  padding: 12px 16px;
  border: 1px solid rgba(23, 20, 33, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 20px rgba(42, 32, 77, 0.06);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.faq {
  background: var(--cream);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(54px, 9vw, 120px);
  align-items: start;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--violet-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 180ms ease-out;
}

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

.faq-list details p {
  margin: -2px 44px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.closing {
  padding-top: 0;
  background: var(--cream);
}

.closing__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(42px, 8vw, 90px);
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 6.5vw, 74px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 156, 204, 0.25), transparent 30%),
    var(--ink);
  box-shadow: 0 32px 80px rgba(23, 20, 33, 0.18);
  color: #fff;
}

.closing__panel::before {
  position: absolute;
  right: -70px;
  bottom: -160px;
  width: 330px;
  height: 330px;
  border: 45px solid rgba(124, 92, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.closing__copy,
.closing .signup-shell {
  position: relative;
  z-index: 1;
}

.closing h2 {
  color: #fff;
  font-size: clamp(37px, 4vw, 52px);
}

.closing__copy > p:last-child {
  margin: 20px 0 0;
  color: #b7b1c0;
  font-size: 15px;
}

.signup-shell--light {
  max-width: none;
  margin: 0;
  background: rgba(255, 255, 255, 0.085);
}

.site-footer {
  padding: 28px 0 34px;
  background: var(--ink);
  color: #aaa4b3;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand--footer {
  font-size: 16px;
}

.brand--footer .brand__mark {
  width: 28px;
  height: 28px;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
}

.site-footer p:nth-child(2) {
  justify-self: center;
}

.site-footer p:last-child {
  justify-self: end;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease-out, transform 620ms ease-out;
}

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

.js .reveal--delay-1 { transition-delay: 90ms; }
.js .reveal--delay-2 { transition-delay: 180ms; }
.js .reveal--delay-3 { transition-delay: 270ms; }
.js .reveal--delay-4 { transition-delay: 360ms; }

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(44px, 5.2vw, 56px);
  }

  .hero__lead {
    margin-top: 18px;
    line-height: 1.58;
  }

  .hero-points {
    margin-top: 14px;
  }

  .signup-shell {
    margin-top: 18px;
  }

  .hero__visual {
    min-height: 610px;
    transform: scale(0.92);
  }

  .floating-card--payment { left: -18px; }
  .floating-card--insight { right: -10px; }
  .visual-label { right: 2px; }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 92px;
  }

  .hero__grid,
  .problem__grid,
  .steps__layout,
  .audience__card,
  .faq__layout,
  .closing__panel {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 56px;
  }

  .hero__copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .hero h1,
  .hero__lead,
  .signup-shell {
    margin-right: auto;
    margin-left: auto;
  }

  .hero h1 span {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-points {
    justify-content: center;
  }

  .hero__visual {
    min-height: 640px;
    transform: none;
  }

  .problem__grid,
  .faq__layout {
    gap: 48px;
  }

  .problem .section-copy,
  .faq .section-copy {
    max-width: 670px;
  }

  .steps .section-copy {
    position: static;
  }

  .steps__layout {
    gap: 50px;
  }

  .audience__card {
    gap: 38px;
  }

  .use-cases {
    justify-content: flex-start;
  }

  .closing__panel {
    gap: 38px;
  }

  .closing .signup-shell {
    width: 100%;
  }
}

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

  .site-header {
    top: 14px;
  }

  .brand {
    font-size: 16px;
  }

  .brand__mark {
    width: 29px;
    height: 29px;
  }

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

  .hero {
    padding: 126px 0 72px;
    background-size: 42px 42px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
    letter-spacing: -0.06em;
  }

  .hero h1 span {
    margin-top: 7px;
    padding-bottom: 7px;
  }

  .hero__lead {
    margin-top: 23px;
    font-size: 16px;
  }

  .hero-points {
    display: grid;
    justify-content: center;
    text-align: left;
  }

  .signup-shell {
    padding: 13px;
    border-radius: 18px;
  }

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

  .form-row input,
  .form-row button {
    min-height: 54px;
  }

  .form-row button {
    width: 100%;
  }

  .form-heading {
    font-size: 13px;
  }

  .hero__visual {
    min-height: 590px;
    margin: -10px 0 0;
  }

  .hero-three {
    inset: -5% -10%;
    width: 120%;
    height: 110%;
  }

  .hero__visual.three-ready .hero-three {
    opacity: 0.78;
  }

  .phone-frame {
    width: 288px;
    transform: rotate(1deg);
  }

  .phone-screen {
    min-height: 555px;
  }

  .visual-orbit--one {
    width: 390px;
    height: 390px;
  }

  .visual-orbit--two {
    width: 325px;
    height: 520px;
  }

  .floating-card {
    min-width: 145px;
    padding: 9px 10px;
    font-size: 9px;
  }

  .floating-card__icon {
    width: 30px;
    height: 30px;
  }

  .floating-card--payment {
    top: 94px;
    left: -5px;
  }

  .floating-card--insight {
    right: -3px;
    bottom: 92px;
  }

  .visual-label {
    top: 88px;
    right: 1px;
  }

  .section {
    padding: 78px 0;
  }

  .section h2 {
    font-size: clamp(34px, 9.5vw, 46px);
  }

  .section-copy > p:last-of-type,
  .section-heading > p:last-child {
    margin-top: 18px;
    font-size: 15px;
  }

  .link-map {
    min-height: 330px;
    border-radius: 24px;
  }

  .link-map__center {
    width: 155px;
    min-height: 132px;
  }

  .scatter-card {
    min-height: 38px;
    padding: 0 10px;
    font-size: 9px;
  }

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

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

  .section-heading .section-kicker {
    justify-self: start;
  }

  .section-heading > p:last-child {
    justify-self: start;
  }

  .benefit-card {
    min-height: 310px;
    padding: 26px;
  }

  .benefit-card__icon {
    margin-bottom: 48px;
  }

  .step-list li {
    min-height: 120px;
    padding: 20px;
  }

  .audience__card,
  .closing__panel {
    width: calc(100% - 20px);
    padding: 30px 24px;
    border-radius: 26px;
  }

  .use-cases {
    gap: 8px;
  }

  .use-cases span {
    padding: 9px 12px;
    font-size: 10px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 14px;
  }

  .faq-list details p {
    margin-right: 20px;
    font-size: 13px;
  }

  .closing {
    padding-top: 0;
  }

  .closing__copy {
    text-align: center;
  }

  .closing__copy .section-kicker {
    justify-content: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .brand--footer,
  .site-footer p:nth-child(2),
  .site-footer p:last-child {
    justify-self: center;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 39px;
  }

  .phone-frame {
    width: 270px;
  }

  .floating-card--payment {
    left: -12px;
  }

  .floating-card--insight {
    right: -12px;
  }

  .visual-label {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

  .phone-frame {
    transform: rotate(1deg);
  }

  .hero-three {
    display: none;
  }

  .form-row button.is-loading::after {
    animation: none;
  }
}
