:root {
  --ink: #171432;
  --muted: #666281;
  --paper: #f7f6fc;
  --surface: #ffffff;
  --violet: #6948f5;
  --violet-deep: #3b278f;
  --teal: #18b9c8;
  --gold: #ffc43d;
  --line: #e7e4f2;
  --shadow: 0 22px 52px rgba(52, 30, 133, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
.page { overflow: hidden; }
.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.08em;
}
.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(16, 10, 66, .2);
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 700;
}
.site-header nav a { text-decoration: none; }
.site-header nav a:hover { color: #fff; }
.hero {
  color: white;
  background:
    radial-gradient(circle at 87% 22%, rgba(24,185,200,.55), transparent 19rem),
    radial-gradient(circle at 8% 88%, rgba(255,196,61,.25), transparent 20rem),
    linear-gradient(137deg, #2a186a 0%, #4c32c9 49%, #2a1675 100%);
  min-height: 718px;
  position: relative;
  isolation: isolate;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}
.hero::before { width: 1050px; height: 580px; right: -310px; top: 110px; transform: rotate(-18deg); }
.hero::after { width: 760px; height: 400px; left: -330px; bottom: -210px; transform: rotate(22deg); }
.hero .brand { color: #fff; }
.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .9fr);
  align-items: center;
  gap: 52px;
  padding: 54px 0 80px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff8d8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 7px;
  border-radius: 99px;
  background: var(--gold);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: ui-rounded, "Arial Rounded MT Bold", Inter, sans-serif;
  line-height: .97;
  letter-spacing: -.065em;
}
h1 {
  max-width: 680px;
  margin: 19px 0 24px;
  font-size: clamp(54px, 7vw, 88px);
}
.hero-copy > p {
  max-width: 540px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.94);
  font-size: clamp(18px, 2.1vw, 22px);
}
.app-store-badge {
  display: inline-flex;
  border-radius: 12px;
  line-height: 0;
  transition: transform 160ms ease, filter 160ms ease;
}
.app-store-badge img { display: block; width: 199px; height: auto; }
.app-store-badge:hover { transform: translateY(-2px); filter: drop-shadow(0 8px 15px rgba(13, 8, 48, .28)); }
.app-store-badge:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.trust-line {
  margin-top: 24px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}
.hero-path {
  position: relative;
  min-height: 470px;
}
.path-line {
  position: absolute;
  inset: 28px 12% 20px 8%;
  border-left: 2px dashed rgba(255,255,255,.32);
  border-radius: 100% 0 0 100%;
  transform: rotate(-23deg);
}
.study-card {
  width: 226px;
  padding: 22px;
  border-radius: 28px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
  position: absolute;
}
.study-card b { display: block; font-size: 21px; letter-spacing: -.05em; }
.study-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 14px; font-weight: 650; }
.study-card i {
  width: 43px;
  height: 43px;
  margin-bottom: 17px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--card-accent);
  font-size: 20px;
  font-style: normal;
}
.study-card.one { --card-accent: var(--teal); left: 6%; top: 26px; transform: rotate(-7deg); }
.study-card.two { --card-accent: var(--violet); right: 4%; top: 162px; transform: rotate(6deg); }
.study-card.three { --card-accent: var(--gold); left: 23%; bottom: 12px; transform: rotate(-2deg); }
.mini-progress {
  height: 7px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 99px;
  background: #ebe9f5;
}
.mini-progress::after { content: ""; display: block; width: 68%; height: 100%; border-radius: inherit; background: var(--card-accent); }
.proof {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  transform: translateY(-36px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 17px 46px rgba(36, 22, 91, .09);
}
.proof div { min-height: 110px; padding: 24px 28px; }
.proof div + div { border-left: 1px solid var(--line); }
.proof strong { display: block; font-size: 16px; letter-spacing: -.03em; }
.proof span { color: var(--muted); font-size: 14px; }
.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}
.section-head { max-width: 630px; }
.section-head .eyebrow { color: var(--violet-deep); }
.section-head .eyebrow::before { background: var(--teal); }
h2 { margin: 16px 0 18px; font-size: clamp(39px, 5vw, 65px); }
.section-head p { color: var(--muted); font-size: 18px; }
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(34px, 8vw, 118px);
  align-items: center;
  padding: 86px 0;
}
.feature.reverse { grid-template-columns: minmax(280px, 410px) minmax(0, 1fr); }
.feature-copy .eyebrow {
  color: var(--violet-deep);
  font-weight: 900;
}
.feature-copy .eyebrow::before { background: var(--teal); }
.feature-copy h3 { margin-bottom: 15px; font-size: clamp(34px, 4vw, 52px); }
.feature-copy p { max-width: 500px; color: var(--muted); font-size: 18px; }
.detail-list { list-style: none; padding: 0; margin: 27px 0 0; display: grid; gap: 13px; }
.detail-list li { display: flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 720; }
.detail-list li::before {
  content: "✓";
  width: 25px; height: 25px; display: grid; place-items: center;
  border-radius: 8px; color: var(--violet); background: #ece8ff; font-weight: 900;
}
.phone-wrap { position: relative; justify-self: center; }
.phone-wrap[data-reveal] {
  opacity: 0;
  transform: translate3d(88px, 48px, 0) rotate(7deg) scale(.94);
  transition: opacity 600ms ease-out, transform 760ms cubic-bezier(.18, .9, .25, 1.1);
  will-change: opacity, transform;
}
.feature.reverse .phone-wrap[data-reveal] { transform: translate3d(-88px, 48px, 0) rotate(-7deg) scale(.94); }
.phone-wrap[data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
.phone-wrap::before {
  content: "";
  position: absolute;
  inset: 11% -22% 2%;
  border-radius: 50%;
  background: var(--halo, #e9e4ff);
  filter: blur(8px);
  z-index: -1;
}
.phone-shot {
  display: block;
  width: min(100%, 330px);
  border: 7px solid #20202a;
  border-radius: 43px;
  box-shadow: 0 24px 52px rgba(30, 22, 73, .22);
}
.accent-violet { --halo: #e4deff; }
.accent-teal { --halo: #d8f6f7; }
.accent-gold { --halo: #fff1c3; }
.feature-divider { height: 1px; background: var(--line); }
.privacy-block {
  padding: 78px 0;
  color: white;
  background: var(--ink);
}
.privacy-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 70px;
  align-items: start;
}
.privacy-inner h2 { margin-bottom: 0; }
.privacy-inner p { color: rgba(255,255,255,.9); font-size: 18px; }
.privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.privacy-grid div { min-height: 134px; padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; }
.privacy-grid b { display: block; margin-bottom: 7px; color: var(--gold); }
.privacy-grid span { color: rgba(255,255,255,.88); font-size: 14px; }
.faq { padding-bottom: 104px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 38px; }
details { padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: var(--surface); }
summary { cursor: pointer; font-weight: 790; letter-spacing: -.02em; }
details p { margin: 13px 0 0; color: var(--muted); }
.site-footer { color: white; background: #282048; }
.footer-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 41px 0 45px; display: flex; justify-content: space-between; gap: 26px; }
.footer-inner p { max-width: 510px; margin: 13px 0 0; color: rgba(255,255,255,.82); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; align-content: start; justify-content: end; gap: 14px 18px; }
.footer-links a { color: rgba(255,255,255,.92); font-size: 14px; text-decoration: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phone-wrap[data-reveal], .feature.reverse .phone-wrap[data-reveal] { opacity: 1; transform: none; transition: none; }
}
.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header { color: white; background: var(--violet-deep); }
.legal-header .site-header nav { color: rgba(255,255,255,.82); }
.legal-content { width: min(800px, calc(100% - 40px)); margin: 0 auto; padding: 84px 0 110px; }
.legal-kicker { color: var(--violet); font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.legal-content h1 { margin: 15px 0; font-size: clamp(48px, 7vw, 76px); }
.legal-content > p.lead { color: var(--muted); font-size: 19px; }
.legal-content h2 { margin: 47px 0 13px; font-size: 29px; }
.legal-content p, .legal-content li { color: #4f4b68; font-size: 16px; }
.legal-content ul { padding-left: 21px; }
.legal-note { margin-top: 40px; padding: 20px; border-left: 4px solid var(--teal); background: #e9fafa; color: #25545a; }
.support-card { margin-top: 37px; padding: 31px; border-radius: 22px; background: var(--surface); box-shadow: 0 12px 32px rgba(42, 28, 112, .1); }
.support-card h2 { margin-top: 0; }
.support-link { color: var(--violet-deep); font-weight: 800; }
@media (max-width: 780px) {
  .site-header { height: 72px; }
  .site-header nav { display: none; }
  .hero { min-height: auto; }
  .hero-inner, .feature, .feature.reverse, .privacy-inner { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 44px; gap: 8px; }
  .hero-path { min-height: 390px; margin-top: 16px; }
  .proof, .faq-grid, .privacy-grid { grid-template-columns: 1fr; }
  .proof { transform: translateY(-21px); }
  .proof div + div { border-top: 1px solid var(--line); border-left: 0; }
  .proof div { min-height: 0; }
  .feature { padding: 62px 0; }
  .feature.reverse .phone-wrap { order: 2; }
  .privacy-inner { gap: 31px; }
  .footer-inner { flex-direction: column; }
  .footer-links { justify-content: start; }
}
