:root {
  --bg: #0B1018;
  --card: #161E2B;
  --line: rgba(255,255,255,.08);
  --text: #F3F5F8;
  --muted: #8B93A4;
  --blue: #3B9BFF;
  --coral: #E8896A;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 20px;
  background: rgba(11,16,24,.82); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: Georgia, serif; font-size: 18px; }
.brand img { width: 28px; height: 28px; border-radius: 8px; }
nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 20px; border-radius: 14px;
  background: var(--blue); color: #fff; font-weight: 600;
}
.btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 72px 0 48px; }
.hero h1 { font-family: Georgia, serif; font-weight: 500; font-size: clamp(36px, 5vw, 58px); line-height: 1.08; margin: 12px 0 16px; }
.hero p { color: var(--muted); font-size: 18px; line-height: 1.5; max-width: 36rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.proof { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 20px; color: var(--muted); font-size: 14px; }
.hero-visual { border-radius: 28px; overflow: hidden; border: 1px solid var(--line); min-height: 320px; background: #070b14 center/cover no-repeat url('/hero.jpg'); }
.phone { width: min(280px, 70%); margin: 40px auto -40px; display: block; border-radius: 28px; }
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 28px 0 8px; border-top: 1px solid var(--line); }
.trust strong { display: block; font-size: 22px; }
.trust span { color: var(--muted); font-size: 13px; }
section { padding: 88px 0; }
h2 { font-family: Georgia, serif; font-weight: 500; font-size: clamp(28px, 4vw, 40px); }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); line-height: 1.45; }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.shots img { width: 100%; border-radius: 24px; border: 1px solid var(--line); background: #070b14; }
.legal { max-width: 720px; padding: 48px 0 96px; }
.legal h1 { font-family: Georgia, serif; font-weight: 500; font-size: clamp(32px, 4vw, 44px); }
.legal h2 { font-size: 22px; margin-top: 36px; }
.legal p, .legal li { color: var(--muted); line-height: 1.6; }
.legal a { color: var(--blue); }
.faq details { border-top: 1px solid var(--line); padding: 16px 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); }
footer { border-top: 1px solid var(--line); padding: 28px 0 48px; color: var(--muted); font-size: 13px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 800px) {
  nav { display: none; }
  .hero, .grid, .trust, .shots { grid-template-columns: 1fr; }
  .hero-visual { min-height: 240px; }
}
