:root {
  --navy: #111827;
  --muted: #64748b;
  --purple: #6f35d9;
  --purple-2: #8b5cf6;
  --pink: #d81b72;
  --orange: #ff9417;
  --green: #10b981;
  --blue: #20aeea;
  --paper: #ffffff;
  --soft: #f8f6ff;
  --line: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(76, 29, 149, .18);
  --radius: 28px;
}
* { 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(--navy);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 148, 23, .14), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(32, 174, 234, .14), transparent 32%),
    linear-gradient(135deg, #fff9f2 0%, #ffffff 40%, #f4fbff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 34px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 900; }
.brand img { width: 56px; height: 56px; border-radius: 50%; box-shadow: 0 12px 30px rgba(111, 53, 217, .18); }
.brand-title { display: block; font-size: 22px; letter-spacing: .03em; line-height: 1; }
.brand-sub { display: block; font-size: 10px; color: #475569; letter-spacing: .22em; margin-top: 6px; font-weight: 800; }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 800; font-size: 15px; }
.nav a { color: #1f2937; }
.nav a:hover { color: var(--purple); }
.hero { padding: 72px 0 58px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 52px; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(111, 53, 217, .18); background: rgba(255,255,255,.82); box-shadow: 0 10px 30px rgba(111,53,217,.08); color: var(--purple); padding: 11px 16px; border-radius: 999px; font-weight: 900; }
.badge svg { flex: 0 0 auto; }
h1 { font-size: clamp(52px, 7vw, 96px); line-height: .96; letter-spacing: -.065em; margin: 24px 0 22px; max-width: 780px; }
.grad { background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 52%, #ff4b13 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: #334155; font-size: clamp(18px, 2vw, 22px); line-height: 1.48; max-width: 650px; margin: 0 0 30px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 17px 24px; border-radius: 999px; font-weight: 900; border: 1px solid transparent; box-shadow: 0 14px 36px rgba(216, 27, 114, .22); }
.btn-primary { color: #fff; background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 48%, var(--orange) 100%); }
.btn-secondary { background: #fff; color: var(--purple); border-color: rgba(111, 53, 217, .18); box-shadow: 0 14px 34px rgba(17, 24, 39, .08); }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.mini-badge { background: rgba(255,255,255,.86); border: 1px solid rgba(111,53,217,.13); border-radius: 999px; padding: 12px 16px; font-weight: 850; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 10px 28px rgba(76,29,149,.07); }
.phone-stage { position: relative; min-height: 680px; display:flex; justify-content:center; align-items:center; }
.phone-stage:before { content:""; position:absolute; width: 580px; height:580px; border-radius:50%; background: radial-gradient(circle, rgba(32,174,234,.18), transparent 62%); filter: blur(4px); }
.phone {
  position: relative;
  z-index: 2;
  width: min(360px, 78vw);
  aspect-ratio: 9 / 18.5;
  padding: 15px;
  border-radius: 46px;
  background: linear-gradient(145deg, #0f172a, #2f3747);
  box-shadow: 0 38px 90px rgba(15, 23, 42, .28), inset 0 0 0 2px rgba(255,255,255,.15);
  transform: rotate(5deg);
}
.phone:before { content:""; position:absolute; top: 20px; left:50%; transform:translateX(-50%); width:104px; height:28px; background:#111827; border-radius:999px; z-index:4; }
.phone-screen { width:100%; height:100%; border-radius: 34px; overflow:hidden; background:#fff; }
.phone-screen img { width:100%; height:100%; object-fit: cover; object-position: top center; }
.callout { position:absolute; z-index:3; background:#fff; border:1px solid rgba(111,53,217,.13); border-radius:24px; padding:18px 20px; font-weight:900; line-height:1.12; box-shadow: var(--shadow); }
.callout small { display:block; font-weight:700; color:var(--muted); margin-top:6px; }
.callout.one { left: 0; top: 130px; font-size:20px; }
.callout.two { right: 0; top: 340px; font-size:18px; }
.callout.three { right: 18px; bottom: 84px; font-size:17px; }
section { padding: 78px 0; }
.section-title { font-size: clamp(34px, 5vw, 58px); line-height:1.02; letter-spacing:-.05em; margin: 0 0 16px; }
.section-lead { color: var(--muted); font-size: 19px; line-height:1.55; max-width: 760px; margin:0 0 32px; }
.features { background: rgba(255,255,255,.5); }
.feature-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:18px; }
.card { background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 18px 46px rgba(76,29,149,.07); }
.icon { width:46px; height:46px; border-radius:16px; display:grid; place-items:center; color:#fff; margin-bottom:18px; font-weight:900; }
.icon.purple { background: linear-gradient(135deg, var(--purple), var(--purple-2)); }
.icon.orange { background: linear-gradient(135deg, var(--orange), #ff5a1f); }
.icon.green { background: linear-gradient(135deg, var(--green), #00a676); }
.icon.blue { background: linear-gradient(135deg, var(--blue), #2f68ff); }
.icon.pink { background: linear-gradient(135deg, var(--pink), #ff4b92); }
.card h3 { margin:0 0 10px; font-size:22px; letter-spacing:-.02em; }
.card p { margin:0; color:#475569; line-height:1.55; }
.screenshots { background: linear-gradient(180deg, rgba(248,246,255,.2), rgba(255,255,255,.7)); }
.screenshot-grid { display:grid; grid-template-columns: 1.1fr .9fr .9fr; gap:22px; align-items:start; }
.screen-card { background:#fff; border:1px solid var(--line); border-radius:34px; padding:14px; box-shadow: var(--shadow); }
.screen-card img { border-radius:25px; width:100%; max-height: 640px; object-fit: cover; object-position: top center; }
.screen-card.large img { max-height: 740px; }
.caption { padding:16px 8px 6px; font-weight:900; }
.caption span { display:block; font-weight:700; color:var(--muted); margin-top:4px; }
.how { background: radial-gradient(circle at 50% 0, rgba(255,148,23,.1), transparent 35%); }
.steps { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:18px; counter-reset: step; }
.step { position:relative; }
.step-num { width:38px; height:38px; border-radius:50%; display:grid; place-items:center; background: var(--purple); color:#fff; font-weight:900; margin-bottom:18px; }
.pricing-card { display:grid; grid-template-columns: 1fr auto; gap:28px; align-items:center; background: linear-gradient(135deg, rgba(111,53,217,.08), rgba(255,148,23,.12)); border:1px solid rgba(111,53,217,.16); border-radius:34px; padding:34px; box-shadow: var(--shadow); }
.price { font-size:42px; font-weight:950; letter-spacing:-.04em; }
.price small { font-size:16px; color:var(--muted); }
.faq-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:18px; }
.footer { padding: 42px 0; border-top: 1px solid var(--line); background: rgba(255,255,255,.78); }
.footer-inner { display:flex; justify-content:space-between; gap:24px; align-items:center; flex-wrap:wrap; color:#475569; font-weight:700; }
.footer-links { display:flex; gap:18px; flex-wrap:wrap; }
.legal-page { padding: 72px 0; }
.legal-card { background:#fff; border:1px solid var(--line); border-radius:34px; padding: clamp(24px, 5vw, 52px); box-shadow: var(--shadow); max-width: 900px; margin: 0 auto; }
.legal-card h1 { font-size: clamp(38px, 5vw, 58px); margin-top:0; }
.legal-card h2 { margin-top:36px; }
.legal-card p, .legal-card li { color:#334155; line-height:1.7; }
@media (max-width: 980px) {
  .hero-grid, .pricing-card { grid-template-columns: 1fr; }
  .phone-stage { min-height: 620px; }
  .feature-grid, .steps, .faq-grid, .screenshot-grid { grid-template-columns: 1fr; }
  .nav { gap: 14px; font-size: 14px; }
  .callout { display:none; }
}
@media (max-width: 640px) {
  .header-inner { height:auto; padding: 14px 0; align-items:flex-start; }
  .nav { display:none; }
  .brand img { width: 48px; height: 48px; }
  .hero { padding-top: 44px; }
  h1 { font-size: 54px; }
  .phone { width: 310px; transform: rotate(2deg); }
  .phone-stage { min-height: 580px; }
}
