:root {
  --ink: #121226;
  --muted: #64647a;
  --paper: #fbfbff;
  --white: #fff;
  --violet: #5b5af7;
  --violet-dark: #4746d9;
  --lime: #b8f35a;
  --line: #e7e7f0;
  --soft: #f0efff;
  --shadow: 0 24px 70px rgba(35, 34, 91, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.nav-wrap {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251,251,255,.86); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231,231,240,.8);
}
nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; letter-spacing: -.7px; }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; }
.brand i { font-style: normal; color: var(--violet); }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 650; }
.nav-links a:hover { color: var(--violet); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 22px; border: 0; border-radius: 14px;
  background: var(--violet); color: white; font: inherit; font-weight: 750;
  cursor: pointer; box-shadow: 0 10px 24px rgba(91,90,247,.22); transition: .2s ease;
}
.button:hover { background: var(--violet-dark); transform: translateY(-2px); }
.button.secondary { background: white; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.hero { overflow: hidden; padding: 98px 0 88px; position: relative; }
.hero::before {
  content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  right: -210px; top: -250px; background: radial-gradient(circle, rgba(184,243,90,.36), rgba(91,90,247,.08) 45%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; }
.eyebrow { color: var(--violet); font-size: 13px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
h1 { margin: 14px 0 24px; font-size: clamp(48px, 7vw, 76px); line-height: 1.02; letter-spacing: -.055em; max-width: 760px; }
h1 span { color: var(--violet); }
.lead { color: var(--muted); font-size: clamp(18px, 2vw, 21px); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.microcopy { margin-top: 20px; color: var(--muted); font-size: 13px; display: flex; gap: 18px; flex-wrap: wrap; }
.microcopy span::before { content: "✓"; color: var(--violet); font-weight: 900; margin-right: 6px; }
.phone-stage { position: relative; min-height: 540px; display: grid; place-items: center; }
.phone-stage::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 44% 56% 63% 37%;
  background: linear-gradient(145deg, var(--soft), #e4f9bd); transform: rotate(-8deg);
}
.phone {
  position: relative; width: 265px; height: 548px; border: 9px solid #202035;
  border-radius: 42px; background: #0c1528; box-shadow: 0 35px 90px rgba(28,28,65,.28);
  padding: 0; overflow: hidden; transform: rotate(3deg);
}
.phone::before { content: ""; display: block; width: 82px; height: 22px; border-radius: 0 0 16px 16px; background: #202035; position: absolute; z-index: 2; left: 50%; top: -1px; transform: translateX(-50%); }
.app-screenshot {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.app-head { display: flex; justify-content: space-between; align-items: center; margin: 12px 0 22px; }
.avatar { width: 36px; height: 36px; background: var(--violet); border-radius: 50%; color: white; display: grid; place-items: center; font-weight: 800; }
.app-card { background: var(--violet); color: white; border-radius: 20px; padding: 18px; }
.app-card small { opacity: .76; }
.app-card strong { display: block; margin-top: 5px; font-size: 28px; }
.app-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.app-tile { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 13px; font-size: 12px; }
.app-tile b { display: block; font-size: 17px; margin-top: 8px; }
.claim { margin-top: 12px; padding: 14px; border-radius: 16px; background: #e8fbc8; font-size: 12px; }
.claim strong { display: block; font-size: 14px; }
.float-card { position: absolute; background: white; padding: 14px 17px; border-radius: 15px; box-shadow: var(--shadow); font-size: 13px; font-weight: 750; }
.float-card.one { top: 85px; right: 5px; }
.float-card.two { bottom: 90px; left: 0; }
.dot { display: inline-block; width: 9px; height: 9px; background: var(--lime); border-radius: 50%; margin-right: 7px; box-shadow: 0 0 0 5px rgba(184,243,90,.25); }
section { padding: 96px 0; }
.download { padding: 28px 0 96px; }
.download-shell {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center;
  padding: 44px; border-radius: 30px; color: white;
  background: linear-gradient(135deg, #17172e, #2d2d63);
  box-shadow: var(--shadow); overflow: hidden; position: relative;
}
.download-shell::after {
  content: ""; position: absolute; right: -90px; bottom: -140px;
  width: 330px; height: 330px; border-radius: 50%; background: rgba(184,243,90,.12);
}
.download .eyebrow { color: var(--lime); }
.download h2 { margin-bottom: 12px; }
.download .section-copy { margin: 0; color: #c8c8db; font-size: 16px; }
.qr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 1; }
.qr-card {
  display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 18px;
  padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px;
  background: rgba(255,255,255,.09); backdrop-filter: blur(10px);
}
.qr-placeholder {
  position: relative; width: 112px; height: 112px; padding: 10px;
  overflow: hidden; background: white; border-radius: 12px; color: var(--ink);
}
.qr-corner { position: absolute; width: 26px; height: 26px; border: 5px solid var(--ink); }
.qr-corner::after { content: ""; position: absolute; inset: 5px; background: var(--ink); }
.qr-corner.a { left: 9px; top: 9px; }
.qr-corner.b { right: 9px; top: 9px; }
.qr-corner.c { left: 9px; bottom: 9px; }
.qr-pixels { position: absolute; right: 9px; bottom: 7px; font: 900 19px/1 monospace; letter-spacing: -4px; }
.qr-card small, .qr-card strong, .qr-card em { display: block; }
.qr-card small { color: #bbbbd0; font-size: 11px; }
.qr-card strong { margin: 1px 0 9px; font-size: 18px; }
.qr-card em { color: var(--lime); font-size: 10px; font-style: normal; line-height: 1.3; }
.store-icon, .play-icon { display: none; }
.section-head { max-width: 660px; margin-bottom: 50px; }
h2 { margin: 10px 0 16px; font-size: clamp(36px, 5vw, 52px); line-height: 1.08; letter-spacing: -.04em; }
.section-head p, .section-copy { color: var(--muted); font-size: 18px; }
.features { background: white; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); transition: .2s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--soft); color: var(--violet); font-size: 23px; }
.feature-card h3 { margin: 28px 0 10px; font-size: 21px; }
.feature-card p { color: var(--muted); margin: 0; }
.how-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.steps { display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 24px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.step-number { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: white; display: grid; place-items: center; font-weight: 800; }
.step h3 { margin: 0 0 4px; }
.step p { color: var(--muted); margin: 0; }
.support { background: #17172e; color: white; }
.support-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; align-items: start; }
.support .eyebrow { color: var(--lime); }
.support .section-copy { color: #b8b8ca; }
.support-points { margin-top: 36px; display: grid; gap: 18px; color: #d8d8e6; }
.support-point { display: flex; gap: 12px; }
.support-point b { color: var(--lime); }
.form-card { background: white; color: var(--ink); border-radius: 26px; padding: 34px; box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 750; }
input, select, textarea {
  width: 100%; border: 1px solid #dcdce8; border-radius: 12px; padding: 13px 14px;
  background: #fbfbfd; color: var(--ink); font: inherit; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(91,90,247,.12); }
textarea { min-height: 130px; resize: vertical; }
.verification { display: flex; gap: 14px; align-items: center; padding: 14px; background: var(--soft); border-radius: 13px; }
.verification label { white-space: nowrap; }
.verification input { background: white; }
.form-footer { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.form-note { color: var(--muted); font-size: 12px; max-width: 250px; }
.status { display: none; margin-top: 18px; padding: 12px 14px; border-radius: 12px; font-size: 14px; }
.status.show { display: block; }
.status.success { background: #e9fbd0; color: #28520b; }
.status.error { background: #ffe8e8; color: #812525; }
.hp { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }
.legal-hero { padding: 76px 0 42px; }
.legal-hero h1 { font-size: clamp(42px, 6vw, 64px); margin-bottom: 14px; }
.legal { padding: 20px 0 100px; }
.legal article { max-width: 800px; background: white; border: 1px solid var(--line); border-radius: 24px; padding: clamp(26px, 5vw, 58px); box-shadow: 0 18px 60px rgba(35,34,91,.07); }
.legal h2 { margin-top: 40px; font-size: 25px; letter-spacing: -.02em; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin: 28px 0 8px; font-size: 18px; letter-spacing: -.01em; }
.legal p, .legal li { color: #4f4f63; }
.legal li + li { margin-top: 5px; }
.legal a { color: var(--violet); text-decoration: underline; }
footer { padding: 52px 0; background: white; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; gap: 24px; color: var(--muted); font-size: 14px; }
.copyright { color: var(--muted); font-size: 13px; margin-top: 24px; }
.menu-button { display: none; background: transparent; border: 0; font-size: 25px; cursor: pointer; }

@media (max-width: 900px) {
  .hero-grid, .support-grid, .how-grid { grid-template-columns: 1fr; gap: 48px; }
  .download-shell { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
  .phone-stage { min-height: 510px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .support-grid > div:first-child { max-width: 650px; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .menu-button { display: block; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 24px;
    background: white; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links .button { width: 100%; }
  h1 { font-size: 47px; }
  section { padding: 72px 0; }
  .feature-grid, .form-grid { grid-template-columns: 1fr; }
  .download { padding-top: 12px; }
  .download-shell { padding: 28px 20px; gap: 30px; }
  .qr-grid { grid-template-columns: 1fr; }
  .qr-card { grid-template-columns: 104px 1fr; }
  .qr-placeholder { width: 104px; height: 104px; }
  .field.full { grid-column: auto; }
  .form-card { padding: 22px; }
  .form-footer, .footer-grid { align-items: stretch; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
  .phone { width: 245px; height: 506px; min-height: 0; }
  .phone-stage::before { width: 340px; height: 340px; }
  .float-card.one { right: 0; top: 68px; }
  .float-card.two { left: 0; bottom: 58px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
