:root {
  color-scheme: dark;
  --bg: #090711;
  --surface: #171322;
  --text: #ffffff;
  --muted: rgba(255,255,255,.68);
  --pink: #ff61c2;
  --blue: #6bc4ff;
  --gold: #ffd158;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(255,97,194,.24), transparent 35%), var(--bg);
  color: var(--text);
}

a { color: inherit; }
.nav, .hero, .section, .footer { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.nav { height: 72px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-weight: 800; font-size: 22px; }
.links { display: flex; gap: 18px; color: var(--muted); font-size: 14px; }
.hero { min-height: calc(100vh - 72px); display: grid; align-items: center; grid-template-columns: 1.05fr .95fr; gap: 48px; padding-bottom: 50px; }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .08em; font-size: 12px; }
h1 { font-size: clamp(48px, 8vw, 94px); line-height: .92; margin: 14px 0 18px; }
.lead { color: var(--muted); font-size: 21px; line-height: 1.45; max-width: 610px; }
.actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.button { text-decoration: none; background: linear-gradient(135deg, var(--pink), var(--blue)); padding: 15px 20px; border-radius: 16px; font-weight: 800; }
.button.secondary { background: rgba(255,255,255,.1); }
.phone { min-height: 620px; border-radius: 48px; padding: 18px; background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.04)); box-shadow: 0 40px 90px rgba(0,0,0,.35); }
.screen { height: 100%; border-radius: 34px; background: #0d0b15; padding: 22px; display: grid; align-content: end; overflow: hidden; position: relative; }
.portrait { position: absolute; inset: 22px; border-radius: 28px; background: linear-gradient(160deg, #ffd4e9, #6530ff 48%, #0b0712); opacity: .88; }
.result { position: relative; padding: 18px; border-radius: 22px; background: rgba(0,0,0,.46); backdrop-filter: blur(16px); }
.result h2 { margin: 0 0 8px; }
.result p { margin: 0; color: var(--muted); }
.section { padding: 70px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--surface); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; padding: 22px; }
.card h3 { margin: 0 0 8px; }
.card p, .footer { color: var(--muted); }
.footer { padding: 36px 0 54px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 30px; }
  .phone { min-height: 500px; }
  .grid { grid-template-columns: 1fr; }
  .links { display: none; }
}