:root {
  --bg: #f2f5fb;
  --ink: #14213d;
  --muted: #5f6d87;
  --line: rgba(255, 255, 255, 0.58);
  --blue: #226cff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", -apple-system, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eef4ff, #f5f7fc 45%, #f8fbff);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed; inset: 0;
  background-image: linear-gradient(rgba(34,108,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,108,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .3; z-index: -3;
}

.bg-orb {
  position: fixed; border-radius: 999px; filter: blur(60px); z-index: -2; opacity: .45;
}
.orb-a { width: 420px; height: 420px; background: #9bc3ff; top: -80px; left: -110px; }
.orb-b { width: 520px; height: 520px; background: #ffd8b5; right: -140px; top: 120px; }

.header {
  position: sticky; top: 18px; z-index: 20;
  width: min(1120px, calc(100% - 24px));
  margin: 18px auto 0;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
}
.glass {
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(255,255,255,.72), rgba(255,255,255,.55));
  box-shadow: 0 16px 34px rgba(22, 41, 80, .12);
  backdrop-filter: blur(10px);
}
.brand { font-weight: 800; text-decoration: none; color: var(--ink); letter-spacing: .02em; }
.nav { display: flex; gap: 22px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 14px; }

.btn {
  border-radius: 13px; padding: 11px 16px; text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; transition: .24s ease; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, #1f6fff, #5a95ff); color: #fff; box-shadow: 0 10px 24px rgba(31,111,255,.35); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.6); color: var(--ink); border-color: var(--line); }
.btn.big { font-size: 17px; padding: 14px 20px; border-radius: 15px; }

main { width: min(1120px, calc(100% - 24px)); margin: 22px auto 40px; }
.section { margin: 24px 0; }
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4.8vw, 62px); line-height: 1.03; margin: 8px 0 12px; letter-spacing: -.02em; }
.lead { color: var(--muted); font-size: clamp(16px, 2vw, 20px); max-width: 58ch; }
.hero-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.eyebrow { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: #6f7ea0; margin: 0; }

.hero-visual { display: grid; place-items: center; min-height: 360px; }
.phone { width: min(300px, 86vw); height: 560px; border-radius: 36px; background: #0b1f44; padding: 12px; box-shadow: 0 38px 80px rgba(10,24,50,.42); }
.phone-notch { width: 120px; height: 26px; border-radius: 20px; background: #061630; margin: 0 auto 12px; }
.phone-screen {
  border-radius: 28px; height: calc(100% - 38px); padding: 16px;
  background: linear-gradient(165deg, #e9f2ff, #f9fbff 52%, #eef4ff);
  display: grid; gap: 10px; align-content: start;
}
.mini-card { border-radius: 14px; padding: 12px; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 8px 18px rgba(32,58,101,.08); font-size: 14px; color: var(--muted); }

.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.panel, .card { border-radius: 24px; padding: 20px; }
.panel h2, .card h3 { margin: 8px 0 10px; }
.panel p, .card p { margin: 0; color: var(--muted); line-height: 1.6; }

.timeline { border-radius: 26px; padding: 24px; }
.timeline h2 { margin: 0 0 16px; }
.line { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.line div { border-radius: 16px; background: rgba(255,255,255,.68); border: 1px solid var(--line); padding: 14px; display: grid; gap: 6px; }
.line span { color: var(--muted); font-size: 14px; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat { border-radius: 22px; padding: 18px; }
.stat span { display: block; font-size: 34px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 4px; }
.stat p { margin: 0; color: var(--muted); }

.showcase { text-align: center; border-radius: 28px; padding: 30px 20px; }
.showcase h2 { margin: 0 0 10px; }
.showcase p { margin: 0; color: var(--muted); }
.chips { margin-top: 14px; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.chips span { border-radius: 999px; background: rgba(255,255,255,.7); border: 1px solid var(--line); padding: 8px 12px; font-size: 13px; color: #415172; }

.pricing { border-radius: 28px; padding: 20px; }
.pricing h2 { margin: 0 0 14px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.highlighted { border-color: rgba(34,108,255,.4); box-shadow: 0 12px 26px rgba(34,108,255,.18); }

.cta { text-align: center; border-radius: 28px; padding: 30px 20px; }
.cta h2 { margin: 0 0 8px; font-size: clamp(30px, 4vw, 54px); letter-spacing: -.02em; }
.cta p { margin: 0 0 16px; color: var(--muted); }

.footer { width: min(1120px, calc(100% - 24px)); margin: 0 auto 26px; display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 13px; }
.footer a { color: inherit; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.tilt { transform-style: preserve-3d; transition: transform .16s ease-out; }

@media (max-width: 960px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .grid-two, .price-grid, .stats, .line { grid-template-columns: 1fr; }
  .grid-three { grid-template-columns: 1fr; }
  .phone { height: 510px; }
}
