:root {
  color-scheme: dark;
  --bg: #07090c;
  --surface: #10141a;
  --surface-2: #151a22;
  --text: #f7f8fa;
  --muted: #a7adb7;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #ff2838;
  --accent-soft: rgba(255, 40, 56, 0.14);
  --max: 1160px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 280px;
  background:
    radial-gradient(circle at 80% 5%, rgba(255, 40, 56, 0.11), transparent 28rem),
    linear-gradient(180deg, #090c10, var(--bg));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 100;
  padding: 12px 16px; background: var(--text); color: var(--bg);
  transform: translateY(-160%); border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 12, 0.91);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-height: 44px; text-decoration: none; font-weight: 900; letter-spacing: .07em; }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.nav-toggle { display: none; min-width: 44px; min-height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--text); font-size: 1.25rem; }
.site-nav ul { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.site-nav a { display: grid; place-items: center; min-height: 44px; padding: 8px 12px; border-radius: 10px; color: var(--muted); text-decoration: none; font-size: .9rem; font-weight: 700; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--text); background: var(--surface-2); }
main { overflow: hidden; }
.hero { padding: clamp(56px, 9vw, 112px) 0 70px; }
.hero-grid { display: grid; gap: 42px; align-items: center; }
.eyebrow { color: #ff6b76; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; font-size: .77rem; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.025em; }
h1 { max-width: 14ch; margin: 14px 0 20px; font-size: clamp(2.35rem, 8vw, 5.7rem); }
h2 { margin: 0 0 18px; font-size: clamp(1.75rem, 5vw, 3.1rem); }
h3 { margin: 0 0 8px; font-size: 1.15rem; }
.lead { max-width: 62ch; color: #c4c9d1; font-size: clamp(1.04rem, 2.2vw, 1.26rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 18px; border: 1px solid var(--line); border-radius: 13px; text-decoration: none; font-weight: 800; }
.button-primary { background: var(--accent); border-color: var(--accent); color: white; box-shadow: 0 12px 40px rgba(255, 40, 56, .25); }
.button-secondary { background: var(--surface); }
.status { display: inline-flex; align-items: center; gap: 9px; margin-top: 20px; color: var(--muted); font-size: .92rem; }
.status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 20px var(--accent); }
.hero-visual { position: relative; max-width: 560px; margin-inline: auto; }
.hero-visual::before { content: ""; position: absolute; inset: 10% 8%; background: rgba(255, 24, 43, .18); filter: blur(55px); }
.phone { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 32px; background: #050607; box-shadow: 0 32px 80px rgba(0,0,0,.55); transform: rotate(2deg); }
.phone img { aspect-ratio: 16 / 7; width: 100%; object-fit: cover; }
.section { padding: 72px 0; }
.section-muted { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.section-intro { max-width: 680px; margin-bottom: 30px; }
.section-intro p, .muted { color: var(--muted); }
.grid { display: grid; gap: 16px; }
.card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); box-shadow: 0 20px 60px rgba(0,0,0,.18); }
.card p { margin: 0; color: var(--muted); }
.card-number { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 18px; border-radius: 12px; background: var(--accent-soft); color: #ff6974; font-weight: 900; }
.screens { display: grid; gap: 18px; }
.screen-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.screen-card img { width: 100%; aspect-ratio: 16 / 6.7; object-fit: cover; }
.screen-card div { padding: 18px 20px; }
.screen-card p { margin: 4px 0 0; color: var(--muted); }
.cta { padding: 34px; border: 1px solid rgba(255,40,56,.35); border-radius: 28px; background: linear-gradient(135deg, rgba(255,40,56,.13), rgba(255,255,255,.025)); }
.legal-hero { padding: 58px 0 28px; }
.legal-hero h1 { font-size: clamp(2.15rem, 7vw, 4.2rem); }
.document { max-width: 820px; padding-bottom: 80px; }
.document section { padding-top: 30px; }
.document li + li { margin-top: 8px; }
.table-wrap { overflow-x: auto; margin-top: 20px; border: 1px solid var(--line); border-radius: 14px; }
.retention-table { width: 100%; min-width: 1120px; border-collapse: collapse; font-size: .9rem; }
.retention-table th, .retention-table td { padding: 14px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); text-align: left; vertical-align: top; }
.retention-table th:last-child, .retention-table td:last-child { border-right: 0; }
.retention-table tbody tr:last-child td { border-bottom: 0; }
.retention-table th { background: var(--surface-2); color: var(--text); }
.retention-table td { color: #c4c9d1; }
.document address { font-style: normal; }
.notice { padding: 18px 20px; border-left: 4px solid #f3b33d; border-radius: 10px; background: rgba(243,179,61,.1); color: #ffe0a0; }
.placeholder { display: inline-block; padding: 2px 7px; border-radius: 6px; background: rgba(243,179,61,.13); color: #ffd889; font-weight: 750; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .9rem; }
.steps { counter-reset: step; padding: 0; list-style: none; }
.steps li { position: relative; padding: 0 0 24px 54px; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); font-weight: 900; }
.site-footer { border-top: 1px solid var(--line); padding: 34px 0; color: var(--muted); }
.footer-grid { display: grid; gap: 22px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.error-code { color: var(--accent); font-size: clamp(4rem, 18vw, 9rem); font-weight: 950; line-height: 1; }

@media (min-width: 760px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .screens { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 2fr; align-items: start; }
}
@media (max-width: 920px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav { position: absolute; inset: 72px 0 auto; display: none; padding: 10px 16px 18px; border-bottom: 1px solid var(--line); background: #090c10; }
  .site-nav[data-open="true"] { display: block; }
  .site-nav ul { align-items: stretch; flex-direction: column; }
  .site-nav a { justify-content: start; }
  .no-js .nav-toggle { display: none; }
  .no-js .site-header { position: static; }
  .no-js .nav-wrap { align-items: flex-start; padding-block: 14px; }
  .no-js .site-nav { position: static; display: block; padding: 0; border: 0; background: transparent; }
  .no-js .site-nav ul { align-items: flex-end; }
}
@media (max-width: 520px) {
  .hero { padding-top: 42px; }
  .hero-visual { margin-top: 8px; }
  .card, .cta { padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
