:root {
  --bg: #0a0a0c;
  --bg-soft: #111114;
  --bg-card: #16161a;
  --border: #26262c;
  --text: #f4f4f6;
  --muted: #9a9aa5;
  --accent: #ff6a00;
  --accent-2: #ff8c3b;
  --radius: 16px;
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 24px rgba(255, 106, 0, .25);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 106, 0, .4); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 16px 34px; font-size: 18px; }

.appstore img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform .15s ease;
}
.appstore:hover img { transform: translateY(-2px); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, .8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.02em;
}
.brand__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px var(--accent);
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--text); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 106, 0, .28), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.pill {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  background: rgba(255, 106, 0, .08);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero__cta { margin-bottom: 28px; }
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  list-style: none;
}
.hero__points li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.hero__art { display: flex; justify-content: center; }
.hero__phone {
  width: 100%;
  max-width: 320px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 60px rgba(255, 106, 0, .15);
}

/* ===== Section heads ===== */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.section-head p { color: var(--muted); font-size: 18px; }
.muted { color: var(--muted); }

/* ===== Features ===== */
.features { padding: 90px 0; }
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 90px;
}
.feature:last-of-type { margin-bottom: 0; }
.feature--reverse .feature__media { order: 2; }
.feature__media { display: flex; justify-content: center; }
.feature__media img {
  width: 100%;
  max-width: 300px;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 0 50px rgba(255, 106, 0, .12);
}
.feature__text h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.feature__text p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.ticks { list-style: none; display: grid; gap: 12px; }
.ticks li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
}
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
}
.features__cta { display: flex; justify-content: center; margin-top: 72px; }

/* ===== Legal ===== */
.legal { padding: 80px 0; border-top: 1px solid var(--border); }
.legal--alt { background: var(--bg-soft); }
.legal__body h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 32px 0 10px;
  letter-spacing: -.01em;
}
.legal__body h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--accent-2);
}
.legal__body p { color: #c8c8d0; margin-bottom: 12px; }
.legal__body ul { margin: 0 0 16px; padding-left: 22px; color: #c8c8d0; }
.legal__body li { margin-bottom: 8px; }
.legal__body a { color: var(--accent-2); text-decoration: underline; }

/* ===== Contact ===== */
.contact {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255, 106, 0, .22), transparent 60%);
  pointer-events: none;
}
.contact__inner { position: relative; }
.contact h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
}
.contact p { color: var(--muted); font-size: 18px; margin-bottom: 30px; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); padding: 48px 0; background: var(--bg-soft); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.footer__links a { color: var(--muted); font-size: 14px; transition: color .15s ease; }
.footer__links a:hover { color: var(--text); }
.footer__copy { color: #6a6a74; font-size: 13px; max-width: 600px; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .hero { padding: 56px 0 40px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__art { order: 1; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero__cta { display: flex; justify-content: center; }
  .hero__points { justify-content: center; }
  .feature { grid-template-columns: 1fr; gap: 28px; text-align: center; margin-bottom: 64px; }
  .feature--reverse .feature__media { order: 0; }
  .ticks { display: inline-grid; text-align: left; }
}
