:root {
  --bg: #f7f3ff;
  --bg-soft: #fffaf5;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --surface-deep: #24163f;
  --text: #1f1630;
  --muted: #65597a;
  --line: rgba(68, 42, 109, 0.12);
  --primary: #7b4dff;
  --primary-deep: #5f31dc;
  --accent: #ff769f;
  --accent-soft: #ffd8e4;
  --success: #1f9b71;
  --shadow: 0 24px 80px rgba(56, 33, 99, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 118, 159, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(123, 77, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #fdf9ff 0%, #f7f3ff 48%, #fffaf5 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -120px;
  left: -140px;
  background: rgba(255, 118, 159, 0.2);
}

body::after {
  right: -120px;
  bottom: 10%;
  background: rgba(123, 77, 255, 0.16);
}

button,
a,
input,
summary {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.hero {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 246, 251, 0.74));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(123, 77, 255, 0.06), transparent 28%),
    linear-gradient(320deg, rgba(255, 118, 159, 0.08), transparent 34%);
  pointer-events: none;
}

.topbar,
.hero__content,
.section,
.cta-band__content,
.waitlist-modal__surface {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 8px rgba(123, 77, 255, 0.12);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: center;
  padding-top: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: rgba(255, 255, 255, 0.76);
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero__lead,
.section-heading p,
.panel p,
.comparison-card p,
.comparison__highlight p,
.step-card p,
.trust-panel p,
.faq-item p,
.cta-band__content p,
.modal-copy,
.field span,
.form-message {
  color: var(--muted);
  line-height: 1.6;
}

.hero__actions,
.waitlist-form__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 36px rgba(123, 77, 255, 0.24);
}

.button--secondary,
.button--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(83, 55, 128, 0.12);
}

.button--block {
  width: 100%;
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__points li,
.panel,
.comparison-card,
.step-card,
.trust-panel,
.faq-item,
.cta-band__content,
.insight-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
}

.hero__points li {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  line-height: 1.45;
}

.hero__visual {
  position: relative;
  min-height: 540px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(243, 235, 255, 0.72));
  border: 1px solid rgba(74, 47, 117, 0.12);
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero__visual::before {
  width: 220px;
  height: 220px;
  top: 32px;
  right: 28px;
  background: radial-gradient(circle, rgba(255, 118, 159, 0.26), transparent 68%);
}

.hero__visual::after {
  width: 260px;
  height: 260px;
  left: 18px;
  bottom: 18px;
  background: radial-gradient(circle, rgba(123, 77, 255, 0.18), transparent 70%);
}

.insight-card {
  position: absolute;
  width: min(100%, 320px);
  padding: 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px rgba(52, 30, 91, 0.12);
}

.insight-card__label,
.step-card__index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.insight-card strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.35;
}

.insight-card--primary {
  top: 44px;
  left: 28px;
}

.insight-card--accent {
  top: 186px;
  right: 24px;
  background: linear-gradient(180deg, rgba(255, 239, 244, 0.92), rgba(255, 255, 255, 0.82));
}

.insight-card--soft {
  bottom: 34px;
  left: 52px;
}

.insight-card--soft ol {
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 84px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.panel,
.comparison-card,
.step-card,
.trust-panel,
.faq-item {
  padding: 26px;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgba(53, 31, 93, 0.08);
}

.comparison {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
}

.comparison__list {
  display: grid;
  gap: 18px;
}

.comparison-card--muted {
  background: rgba(255, 255, 255, 0.62);
}

.comparison__highlight {
  padding: 30px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(180deg, #2f1a57, #4a2f88);
  box-shadow: 0 20px 46px rgba(39, 20, 77, 0.28);
}

.comparison__highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 77, 255, 0.12), transparent 70%);
}

.trust-panel {
  display: grid;
  gap: 20px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(76, 51, 120, 0.1);
  line-height: 1.5;
}

.cta-band__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 242, 247, 0.84));
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  font-weight: 700;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary-deep);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 16px 0 0;
}

.waitlist-modal {
  width: min(calc(100% - 24px), 560px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: inherit;
}

.waitlist-modal::backdrop {
  background: rgba(28, 15, 52, 0.52);
  backdrop-filter: blur(6px);
}

.waitlist-modal__surface {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 245, 255, 0.96));
  box-shadow: 0 24px 70px rgba(34, 18, 63, 0.32);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--text);
  background: rgba(92, 57, 147, 0.08);
}

.waitlist-form {
  display: grid;
  gap: 16px;
}

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

.field span {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.field em {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.field input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(74, 47, 117, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus {
  border-color: rgba(123, 77, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(123, 77, 255, 0.12);
}

.form-message {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
}

.form-message--error {
  color: #a23555;
  background: rgba(255, 230, 236, 0.92);
  border: 1px solid rgba(195, 91, 121, 0.18);
}

.modal-state--success {
  text-align: center;
}

@media (max-width: 1040px) {
  .hero__content,
  .comparison,
  .cta-band__content {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero__visual {
    min-height: 460px;
  }

  .problem-grid,
  .steps-grid,
  .trust-list,
  .hero__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 12px;
    padding-bottom: 42px;
  }

  .hero {
    padding: 18px;
    border-radius: 28px;
  }

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

  .hero__content {
    padding-top: 28px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .hero__points,
  .problem-grid,
  .steps-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button,
  .button--small {
    width: 100%;
  }

  .hero__visual {
    min-height: 420px;
    padding: 18px;
  }

  .insight-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 14px;
  }

  .cta-band__content,
  .waitlist-modal__surface,
  .panel,
  .comparison-card,
  .step-card,
  .trust-panel,
  .faq-item {
    padding: 22px;
  }

  .waitlist-modal {
    width: min(calc(100% - 16px), 560px);
  }
}
