:root {
  --bg: #f7f9ff;
  --panel: rgba(255, 255, 255, 0.85);
  --text: #0e1420;
  --muted: #4a4a4a;
  --line: rgba(15, 23, 42, 0.10);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);

  --a: #2b6cff;
  --b: #25c2a0;
  --c: #ffb000;
  --d: #ff4d6d;

  --r: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(900px 360px at 12% -10%, rgba(43,108,255,0.18), transparent 60%),
    radial-gradient(760px 420px at 80% 10%, rgba(37,194,160,0.16), transparent 55%),
    radial-gradient(760px 420px at 50% 95%, rgba(255,176,0,0.10), transparent 55%),
    linear-gradient(#ffffff, var(--bg));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.skip:focus { left: 8px; z-index: 1000; }

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.7);
  border-bottom: 1px solid var(--line);
}
.top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(43,108,255,0.18), rgba(37,194,160,0.18));
  border: 1px solid rgba(43,108,255,0.20);
}
.brand__text { font-size: 18px; }

.nav {
  display: flex;
  gap: 18px;
  color: rgba(14, 20, 32, 0.72);
  font-weight: 600;
}
.nav a {
  padding: 10px 10px;
  border-radius: 12px;
}
.nav a:hover {
  background: rgba(15,23,42,0.05);
  color: rgba(14, 20, 32, 0.92);
}

.top__actions { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: "Space Grotesk", Inter, ui-sans-serif;
}
.btn--primary {
  border-color: rgba(43,108,255,0.25);
  background: linear-gradient(135deg, rgba(43,108,255,0.95), rgba(37,194,160,0.88));
  color: #fff;
  box-shadow: 0 14px 40px rgba(43,108,255,0.18);
}
.btn--primary:hover { filter: brightness(1.02); }

.btn--ghost {
  background: rgba(255,255,255,0.7);
}
.btn--ghost:hover { background: rgba(255,255,255,0.95); }

.btn--light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
  color: #fff;
}
.btn--light:hover { background: rgba(255,255,255,0.18); }

.burger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  display: none;
  padding: 0;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(14, 20, 32, 0.72);
  margin: 4px auto;
  border-radius: 999px;
}

.mnav {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
}
.mnav__inner {
  padding: 12px 0 18px;
  display: grid;
  gap: 10px;
}
.mnav__inner a {
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 700;
  color: rgba(14, 20, 32, 0.85);
}
.mnav__inner a:hover { background: rgba(15,23,42,0.05); }

.hero {
  padding: 54px 0 18px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(43,108,255,0.18);
  background: rgba(255,255,255,0.7);
  font-weight: 700;
  color: rgba(14, 20, 32, 0.78);
}
.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--a), var(--b));
  box-shadow: 0 8px 20px rgba(43,108,255,0.26);
}

h1 {
  margin: 16px 0 12px;
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.accent {
  background: linear-gradient(135deg, var(--a), #00b8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent2 {
  background: linear-gradient(135deg, var(--d), var(--c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0;
  max-width: 54ch;
  color: rgba(14, 20, 32, 0.70);
  font-size: 16px;
  line-height: 1.6;
}

.download {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store {
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 18px 60px rgba(15,23,42,0.10);
}
.store:hover { transform: translateY(-1px); }
.store__kicker {
  display: block;
  font-size: 12px;
  color: rgba(14, 20, 32, 0.62);
}
.store__name {
  display: block;
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.meta {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
}
.meta__item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.65);
  border-radius: 16px;
  padding: 12px 12px;
}
.meta__num {
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.meta__txt {
  color: rgba(14, 20, 32, 0.65);
  font-weight: 600;
  margin-top: 2px;
}

.hero__visual {
  position: relative;
  min-height: 520px;
}
.blob {
  position: absolute;
  inset: auto;
  filter: blur(22px);
  opacity: 0.9;
}
.blob--a {
  width: 420px;
  height: 420px;
  right: 22px;
  top: 12px;
  border-radius: 48% 52% 44% 56% / 54% 40% 60% 46%;
  background: radial-gradient(circle at 30% 20%, rgba(43,108,255,0.55), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(37,194,160,0.55), transparent 55%),
              radial-gradient(circle at 30% 80%, rgba(255,176,0,0.45), transparent 55%);
}
.blob--b {
  width: 340px;
  height: 340px;
  left: 10px;
  bottom: 10px;
  border-radius: 56% 44% 58% 42% / 45% 55% 45% 55%;
  background: radial-gradient(circle at 50% 40%, rgba(255,77,109,0.35), transparent 60%),
              radial-gradient(circle at 60% 70%, rgba(43,108,255,0.20), transparent 62%);
}

.phone {
  position: absolute;
  right: 34px;
  top: 44px;
  width: 320px;
  height: 560px;
}
.phone__bezel {
  width: 100%;
  height: 100%;
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(15,23,42,0.08), rgba(15,23,42,0.02));
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: var(--shadow);
  padding: 16px;
}
.phone__notch {
  width: 44%;
  height: 26px;
  border-radius: 999px;
  margin: 0 auto 10px;
  background: rgba(15,23,42,0.10);
}
.phone__screen {
  height: calc(100% - 36px);
  border-radius: 32px;
  background:
    radial-gradient(520px 260px at 20% 20%, rgba(43,108,255,0.24), transparent 60%),
    radial-gradient(520px 280px at 80% 30%, rgba(37,194,160,0.18), transparent 60%),
    radial-gradient(520px 280px at 50% 90%, rgba(255,176,0,0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.55));
  position: relative;
  overflow: hidden;
}

.card {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 28px;
  padding: 16px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,23,42,0.10);
}
.card__badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  background: rgba(43,108,255,0.10);
  color: rgba(14, 20, 32, 0.75);
}
.card__title {
  margin-top: 10px;
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.card__sub {
  margin-top: 6px;
  color: rgba(14, 20, 32, 0.62);
  font-weight: 600;
}

.waves {
  position: absolute;
  left: -30px;
  right: -30px;
  bottom: -50px;
  height: 320px;
  border-radius: 40px;
  background:
    radial-gradient(260px 140px at 20% 35%, rgba(255,77,109,0.40), transparent 62%),
    radial-gradient(300px 160px at 62% 42%, rgba(43,108,255,0.45), transparent 62%),
    radial-gradient(320px 180px at 48% 68%, rgba(37,194,160,0.45), transparent 64%),
    radial-gradient(260px 160px at 70% 86%, rgba(255,176,0,0.45), transparent 64%);
  filter: blur(6px);
  transform: rotate(-8deg);
}

.float {
  position: absolute;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 18px 60px rgba(15,23,42,0.12);
}
.float--a { left: 14px; top: 84px; }
.float--b { left: 8px; bottom: 92px; }
.float__k {
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.float__t {
  color: rgba(14, 20, 32, 0.62);
  font-weight: 700;
  margin-top: 2px;
}

.section {
  padding: 56px 0;
}
.section--alt {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(43,108,255,0.10), transparent 60%),
    radial-gradient(900px 420px at 90% 0%, rgba(37,194,160,0.10), transparent 60%),
    rgba(255,255,255,0.6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  font-size: 34px;
  letter-spacing: -0.02em;
  margin: 0;
}
.section__sub {
  margin: 10px 0 0;
  color: rgba(14, 20, 32, 0.68);
  max-width: 74ch;
  line-height: 1.6;
}

.grid3 {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.step {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,0.8);
  padding: 18px 16px;
  box-shadow: 0 16px 60px rgba(15,23,42,0.08);
}
.step__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(43,108,255,0.10);
  border: 1px solid rgba(43,108,255,0.16);
  font-weight: 900;
}
.step__title {
  margin-top: 12px;
  font-weight: 800;
  font-family: "Space Grotesk", Inter, ui-sans-serif;
}
.step__text {
  margin-top: 6px;
  color: rgba(14, 20, 32, 0.65);
  line-height: 1.6;
}

.features {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.bullets { margin-top: 18px; display: grid; gap: 12px; }
.bullet {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.78);
}
.bullet__ic {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(37,194,160,0.10);
  border: 1px solid rgba(37,194,160,0.14);
  font-weight: 900;
}
.bullet__t {
  font-weight: 900;
  font-family: "Space Grotesk", Inter, ui-sans-serif;
}
.bullet__s {
  margin-top: 2px;
  color: rgba(14, 20, 32, 0.65);
  line-height: 1.5;
}

.features__panel {
  position: sticky;
  top: 92px;
}
.panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.80);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 24px 80px rgba(15,23,42,0.10);
}
.panel__top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.panel__chip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.85);
  font-weight: 800;
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  color: rgba(14, 20, 32, 0.70);
}
.panel__chip--on {
  border-color: rgba(43,108,255,0.25);
  background: rgba(43,108,255,0.12);
  color: rgba(14, 20, 32, 0.88);
}
.panel__card {
  margin-top: 12px;
  border: 1px solid rgba(43,108,255,0.18);
  border-radius: 18px;
  background: rgba(43,108,255,0.06);
  padding: 12px;
  display: grid;
  grid-template-columns: 44px 1fr 34px;
  align-items: center;
  gap: 12px;
}
.panel__card--soft {
  border-color: rgba(255,77,109,0.20);
  background: rgba(255,77,109,0.06);
}
.panel__card--soft2 {
  border-color: rgba(37,194,160,0.20);
  background: rgba(37,194,160,0.06);
}
.panel__logo {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.10);
  font-weight: 900;
}
.panel__h {
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.panel__p { color: rgba(14, 20, 32, 0.62); line-height: 1.45; font-weight: 600; }
.panel__go {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.75);
}

.shots {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.shot {
  height: 260px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 70px rgba(15,23,42,0.08);
  position: relative;
  overflow: hidden;
}
.shot:before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 30% 20%, rgba(43,108,255,0.24), transparent 62%),
              radial-gradient(circle at 70% 40%, rgba(37,194,160,0.22), transparent 62%),
              radial-gradient(circle at 50% 85%, rgba(255,176,0,0.20), transparent 62%);
  filter: blur(10px);
}
.shot--b:before { background: radial-gradient(circle at 20% 30%, rgba(255,77,109,0.22), transparent 62%), radial-gradient(circle at 70% 60%, rgba(43,108,255,0.22), transparent 62%); }
.shot--c:before { background: radial-gradient(circle at 45% 30%, rgba(37,194,160,0.22), transparent 62%), radial-gradient(circle at 60% 80%, rgba(43,108,255,0.18), transparent 62%); }
.shot--d:before { background: radial-gradient(circle at 30% 40%, rgba(255,176,0,0.22), transparent 62%), radial-gradient(circle at 70% 70%, rgba(255,77,109,0.18), transparent 62%); }
.shot__cap {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,23,42,0.10);
  font-weight: 900;
  font-family: "Space Grotesk", Inter, ui-sans-serif;
}

.faq {
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.80);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 16px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  cursor: pointer;
  border-top: 1px solid rgba(15,23,42,0.08);
}
.faq__q:first-of-type { border-top: 0; }
.faq__q:hover { background: rgba(15,23,42,0.03); }
.faq__a {
  padding: 0 16px 16px;
  color: rgba(14, 20, 32, 0.70);
  line-height: 1.65;
}
.faq__i {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(43,108,255,0.10);
  border: 1px solid rgba(43,108,255,0.18);
  font-size: 18px;
}

.cta {
  margin-top: 24px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  background: linear-gradient(135deg, rgba(14,20,32,0.95), rgba(14,20,32,0.78));
  box-shadow: 0 30px 90px rgba(15,23,42,0.16);
}
.cta__inner {
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cta__t {
  color: #fff;
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.cta__s { color: rgba(255,255,255,0.70); margin-top: 4px; font-weight: 600; }
.cta__btns { display: flex; gap: 10px; flex-wrap: wrap; }

.footer {
  padding: 26px 0 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  color: rgba(14, 20, 32, 0.70);
}
.footer__brand {
  font-family: "Space Grotesk", Inter, ui-sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(14, 20, 32, 0.88);
}
.footer__links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__links a {
  padding: 8px 10px;
  border-radius: 12px;
}
.footer__links a:hover { background: rgba(15,23,42,0.05); }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 420px; }
  .phone { right: 0; left: 0; margin: 0 auto; }
  .float--a { left: 10px; top: 30px; }
  .float--b { left: auto; right: 10px; bottom: 46px; }

  .features { grid-template-columns: 1fr; }
  .features__panel { position: relative; top: 0; }

  .shots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .burger { display: inline-grid; place-items: center; }
  .top__actions .btn--ghost { display: none; }

  .grid3 { grid-template-columns: 1fr; }
  .meta { grid-template-columns: 1fr; }

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