:root {
  --bg: #030609;
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.085);
  --text: #f6f8fb;
  --muted: #a4a9b4;
  --line: rgba(255,255,255,.12);
  --accent: #c8ff00;
  --accent-soft: rgba(200,255,0,.18);
  --radius: 28px;
  --max: 1180px;
}

* { 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(--text);
  background:
    radial-gradient(circle at 72% 10%, rgba(200,255,0,.14), transparent 28rem),
    radial-gradient(circle at 16% 42%, rgba(200,255,0,.08), transparent 22rem),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  width: min(var(--max), calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.brand img { width: 74px; border-radius: 18px; }
.nav { display: flex; gap: 34px; color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--text); }
.header-cta, .primary-btn {
  background: var(--accent);
  color: #050606;
  font-weight: 800;
  border-radius: 18px;
  padding: 16px 24px;
  box-shadow: 0 0 34px rgba(200,255,0,.22);
}
.header-cta span, .primary-btn span { margin-left: 10px; }

.hero {
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 40px;
  padding: 36px 0 90px;
}
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 18px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(64px, 9vw, 126px);
  line-height: .86;
  letter-spacing: -.07em;
  margin-bottom: 30px;
}
h1 span, h2 span { color: var(--accent); }
h2 { font-size: clamp(34px, 5vw, 64px); line-height: 1; letter-spacing: -.045em; margin-bottom: 18px; }
h3 { font-size: 24px; letter-spacing: -.025em; margin-bottom: 12px; }
.lead { color: var(--muted); font-size: 21px; line-height: 1.65; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.secondary-btn {
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
  border-radius: 18px;
  padding: 16px 24px;
  background: rgba(255,255,255,.035);
}

.phone-stage {
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.phone {
  position: absolute;
  width: min(305px, 30vw);
  border-radius: 46px;
  padding: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.24), rgba(255,255,255,.04));
  box-shadow: 0 34px 90px rgba(0,0,0,.65), 0 0 46px rgba(200,255,0,.12);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.phone img { border-radius: 38px; width: 100%; height: auto; }
.phone-main { z-index: 3; transform: translateY(-2px); width: min(350px, 32vw); }
.phone-left { z-index: 2; transform: translate(-210px, 40px) rotate(-8deg) scale(.9); opacity: .76; }
.phone-right { z-index: 1; transform: translate(220px, 40px) rotate(8deg) scale(.9); opacity: .62; }

.features, .steps, .showcase, .download {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.section-heading p:not(.eyebrow), .showcase-copy p:not(.eyebrow), .download p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.feature-grid, .step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card, .step, .download, .showcase {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), rgba(255,255,255,.035));
  border-radius: var(--radius);
}
.feature-card { padding: 34px; min-height: 250px; }
.icon {
  width: 62px; height: 62px; display: grid; place-items: center;
  border: 1px solid rgba(200,255,0,.5); border-radius: 20px;
  color: var(--accent); background: var(--accent-soft); font-size: 24px; margin-bottom: 36px;
}
.feature-card p, .step p { color: var(--muted); line-height: 1.65; margin: 0; }

.showcase {
  margin-top: 100px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  overflow: hidden;
}
.showcase-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-height: 500px;
}
.showcase-media img { width: 100%; transform: scale(1.01); }
.showcase-copy { padding: 34px; }

.steps { padding: 110px 0; }
.step { padding: 30px; }
.step span { color: var(--accent); font-weight: 900; display: inline-block; margin-bottom: 28px; }
.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  margin-bottom: 70px;
  box-shadow: inset 0 0 80px rgba(200,255,0,.05);
}
.store-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  min-width: 175px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 13px 18px;
  background: #070a0d;
}
.store-btn small { color: var(--muted); display: block; font-size: 11px; }
.store-btn strong { font-size: 20px; }
.footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  gap: 20px;
}
.footer img { width: 54px; border-radius: 14px; }
.footer div { display: flex; gap: 22px; }

@media (max-width: 960px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 44px; }
  .phone-stage { min-height: 590px; }
  .phone { width: 260px; }
  .phone-main { width: 300px; }
  .phone-left { transform: translate(-130px, 42px) rotate(-8deg) scale(.82); }
  .phone-right { transform: translate(130px, 42px) rotate(8deg) scale(.82); }
  .feature-grid, .step-grid, .showcase { grid-template-columns: 1fr; }
  .download { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .site-header, .hero, .features, .steps, .showcase, .download, .footer { width: min(100% - 28px, var(--max)); }
  .site-header { height: 78px; }
  .brand img { width: 58px; }
  .header-cta { padding: 13px 16px; border-radius: 15px; }
  h1 { font-size: 72px; }
  .lead { font-size: 18px; }
  .phone-stage { min-height: 480px; overflow: hidden; }
  .phone { width: 210px; border-radius: 36px; }
  .phone img { border-radius: 30px; }
  .phone-main { width: 245px; }
  .phone-left { transform: translate(-102px, 44px) rotate(-8deg) scale(.78); }
  .phone-right { transform: translate(102px, 44px) rotate(8deg) scale(.78); }
  .feature-card, .showcase, .download { padding: 24px; }
  .showcase-copy { padding: 0; }
  .footer { flex-direction: column; align-items: flex-start; }
}


.legal-page {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto 80px;
}
.legal-hero {
  padding: 72px 0 28px;
}
.legal-hero h1 {
  font-size: clamp(48px, 8vw, 86px);
  line-height: .95;
  margin-bottom: 22px;
}
.legal-date {
  color: var(--muted);
  margin-top: 22px;
}
.legal-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), rgba(255,255,255,.035));
  border-radius: var(--radius);
  padding: 42px;
}
.legal-card h2 {
  font-size: 28px;
  margin: 36px 0 14px;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
.legal-card a { color: var(--accent); font-weight: 800; }

@media (max-width: 620px) {
  .legal-page { width: min(100% - 28px, 920px); }
  .legal-card { padding: 24px; }
  .legal-card h2 { font-size: 23px; }
}

.legal-hero { padding: 70px 0 34px; }
.legal-hero h1 { font-size: clamp(50px, 8vw, 92px); line-height: .92; margin-bottom: 22px; }
.legal-date { color: var(--muted); font-weight: 700; }
.legal-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), rgba(255,255,255,.035));
  border-radius: var(--radius);
  padding: 42px;
}
.legal-card h2 { font-size: 28px; margin-top: 36px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: var(--muted); line-height: 1.75; font-size: 17px; }
.legal-card a { color: var(--accent); font-weight: 800; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.contact-box {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 24px;
  padding: 28px;
}
.contact-box p { margin-bottom: 0; }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } .legal-card { padding: 26px; } }
