:root {
  --bg-0: #02050b;
  --bg-1: #06111f;
  --bg-2: #071827;
  --text: #f4f8ff;
  --muted: rgba(244, 248, 255, .68);
  --soft: rgba(244, 248, 255, .09);
  --line: rgba(244, 248, 255, .14);
  --cyan: #00e2ff;
  --cyan-soft: rgba(0, 226, 255, .18);
  --danger: #7df4ff;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 14%, rgba(0,226,255,.22), transparent 31%),
    radial-gradient(circle at 85% 78%, rgba(22,97,255,.18), transparent 34%),
    linear-gradient(135deg, var(--bg-0) 0%, var(--bg-1) 52%, #010207 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 18px 92px;
}

.shell {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  box-shadow: 0 36px 120px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(26px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -210px;
  top: -260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,226,255,.26), transparent 64%);
}

.topline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(34px, 6vw, 62px);
}

.brand-logo {
  width: min(360px, 70vw);
  height: auto;
  display: block;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(0,226,255,.28);
  border-radius: 999px;
  background: rgba(0,226,255,.08);
  color: rgba(244,248,255,.86);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(0,226,255,.95);
}

.content {
  position: relative;
  max-width: 850px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(42px, 8vw, 98px);
  line-height: .92;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(244,248,255,.92);
  text-stroke: 1.4px rgba(244,248,255,.92);
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.3vw, 22px);
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  background: rgba(255,255,255,.045);
}

.btn.primary {
  color: #001118;
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 38px rgba(0,226,255,.28);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0,226,255,.58);
  background: rgba(0,226,255,.10);
}

.btn.primary:hover {
  background: #73efff;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.meta-card {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
}

.meta-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 15px;
}

.meta-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.legal-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 17px 16px 18px;
  text-align: center;
  color: rgba(244,248,255,.62);
  font-size: 14px;
  background: linear-gradient(180deg, transparent, rgba(1,3,8,.86));
}

.legal-footer a {
  color: rgba(244,248,255,.78);
  text-decoration: none;
  margin: 0 8px;
  border-bottom: 1px solid transparent;
}

.legal-footer a:hover { color: var(--cyan); border-bottom-color: var(--cyan); }

.legal-page {
  min-height: 100vh;
  padding: 42px 18px 80px;
}

.legal-wrap { width: min(900px, 100%); margin: 0 auto; }

.back { display: inline-flex; margin-bottom: 20px; color: rgba(244,248,255,.72); text-decoration: none; }
.back:hover { color: var(--cyan); }

.legal-card {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  box-shadow: 0 36px 120px rgba(0,0,0,.42);
  backdrop-filter: blur(24px);
}

.legal-card h1 {
  margin-bottom: 24px;
  font-size: clamp(38px, 7vw, 76px);
}

.legal-card h2 {
  margin: 28px 0 8px;
  color: var(--cyan);
  font-size: 18px;
  letter-spacing: .02em;
}

.legal-card p, .legal-card li {
  color: var(--muted);
  line-height: 1.66;
}

.legal-card a { color: var(--cyan); text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .topline { align-items: flex-start; flex-direction: column; }
  .status { white-space: normal; }
  .meta-grid { grid-template-columns: 1fr; }
  .hero { border-radius: 26px; }
}

@media (max-width: 520px) {
  .page { padding: 18px 12px 96px; }
  .hero { padding: 24px 18px; }
  .brand-logo { width: 260px; }
  .btn { width: 100%; }
  .legal-footer { font-size: 13px; line-height: 1.75; }
}