:root {
  --ink: #22122f;
  --muted: #77677e;
  --magenta: #d21f86;
  --purple: #7426d4;
  --soft-pink: #fff0f8;
  --panel: rgba(255, 255, 255, 0.78);
  --stroke: rgba(210, 31, 134, 0.18);
  --shadow: 0 28px 80px rgba(82, 20, 96, 0.16);
  --gradient: linear-gradient(135deg, #7426d4 0%, #d21f86 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(210, 31, 134, 0.14), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(116, 38, 212, 0.12), transparent 30%),
    linear-gradient(180deg, #fff8fc 0%, #fdebf6 52%, #fff8fc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.36) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.34) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 70%);
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 252, 0.78);
  border-bottom: 1px solid rgba(210, 31, 134, 0.10);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.03em;
  font-size: 22px;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(82, 20, 96, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  padding: 84px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 850;
  color: var(--magenta);
  background: rgba(255,255,255,.66);
  box-shadow: 0 10px 34px rgba(82, 20, 96, 0.08);
}

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

h1 {
  margin: 22px 0 18px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.24;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  border-radius: 20px;
  padding: 0 24px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.02em;
  border: 1px solid rgba(255,255,255,.38);
}

.button.primary {
  color: white;
  background: var(--gradient);
  box-shadow: 0 18px 34px rgba(210, 31, 134, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255,255,255,.74);
  border-color: var(--stroke);
}

.trust-line {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.phone-wrap {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(210, 31, 134, .20), transparent 68%);
  filter: blur(18px);
}

.phone {
  position: relative;
  width: min(360px, 84vw);
  min-height: 650px;
  border: 12px solid #111;
  border-radius: 58px;
  background: linear-gradient(180deg, #fff8fc, #f9e6f4);
  box-shadow: 0 36px 90px rgba(35, 14, 49, 0.22);
  overflow: hidden;
}

.notch {
  width: 108px;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: #111;
  margin: 0 auto;
}

.phone-screen {
  padding: 28px 22px 30px;
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 22px;
}

.phone-brand img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.phone-title {
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: .92;
}

.phone-subtitle {
  color: var(--muted);
  font-weight: 760;
  line-height: 1.15;
  margin-top: 6px;
}

.phone-button {
  color: white;
  background: var(--gradient);
  text-align: center;
  padding: 18px;
  border-radius: 18px;
  font-weight: 900;
  margin-bottom: 18px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.phone-tile, .prompt-card, .answer-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(82, 20, 96, 0.08);
}

.phone-tile {
  min-height: 112px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 880;
  padding: 18px;
}

.prompt-card {
  padding: 20px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  color: white;
  background: var(--gradient);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.prompt-card h3 {
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}

.answer-card {
  padding: 18px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 750;
}

.answer-card strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  margin-bottom: 4px;
}

.section {
  padding: 78px 0;
}

.section-header {
  text-align: center;
  width: min(760px, 100%);
  margin: 0 auto 38px;
}

.section-header h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-header p {
  color: var(--muted);
  font-weight: 720;
  font-size: 21px;
  line-height: 1.28;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 28px;
}

.icon-bubble {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(210, 31, 134, 0.10);
  color: var(--magenta);
  font-size: 24px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.card p {
  color: var(--muted);
  font-weight: 690;
  line-height: 1.42;
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.level-list {
  display: grid;
  gap: 12px;
}

.level-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255,255,255,.72);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.74);
}

.level-number {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--gradient);
  font-weight: 950;
}

.level-row strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.level-row span {
  color: var(--muted);
  font-weight: 680;
}

.app-card {
  display: grid;
  gap: 16px;
  align-content: center;
}

.quote {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.footer {
  padding: 54px 0;
  border-top: 1px solid rgba(210, 31, 134, 0.10);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.footer a {
  color: var(--muted);
  font-weight: 760;
  text-decoration: none;
  margin-left: 18px;
}

.page {
  padding: 64px 0 90px;
}

.legal-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
}

.legal-card h1 {
  font-size: clamp(44px, 7vw, 74px);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.legal-card p, .legal-card li {
  color: var(--muted);
  line-height: 1.62;
  font-size: 17px;
  font-weight: 630;
}

@media (max-width: 900px) {
  .hero-grid, .split {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .phone-wrap {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding-top: 56px;
  }
  h1 {
    font-size: 56px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .phone {
    width: min(330px, 92vw);
    min-height: 610px;
    border-radius: 48px;
  }
  .footer a {
    margin-left: 0;
    margin-right: 16px;
  }
}
