:root {
  --bg: #090b10;
  --surface: rgba(18, 21, 29, .72);
  --line: rgba(255,255,255,.09);
  --text: #f3f5f7;
  --muted: #9aa3b2;
  --accent: #d29a49;
  --accent-2: #f0c47b;
  --ok: #78d69b;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(210,154,73,.08), transparent 34%),
    linear-gradient(180deg, #0b0e14 0%, #080a0f 100%);
}

.orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .13;
}

.orb-a { background: #d29a49; top: -280px; left: -130px; }
.orb-b { background: #6b4af0; right: -300px; bottom: -320px; opacity: .08; }

.grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 85%);
}

.topbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .08em;
}

.brand-mark { font-size: 20px; }
.brand-text { color: var(--accent); font-size: 13px; }

.lang {
  width: 46px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}

.lang:hover {
  color: var(--text);
  border-color: rgba(210,154,73,.45);
  background: rgba(210,154,73,.08);
}

.hero {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 0 100px;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
}

h1 {
  margin: 0;
  line-height: .9;
  letter-spacing: -.055em;
  font-size: clamp(72px, 13vw, 158px);
  font-weight: 950;
}

.title-main { color: #f6f6f4; }
.title-accent {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(240,196,123,.76);
  text-shadow: 0 0 45px rgba(210,154,73,.12);
}

.lead {
  max-width: 650px;
  margin: 38px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.72;
}

.status-card {
  margin-top: 42px;
  min-width: min(360px, 100%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 20px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
  text-align: left;
}

.status-card strong { display: block; font-size: 14px; }
.status-card small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }

.pulse {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(120,214,155,.4);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(120,214,155,.4); }
  70% { box-shadow: 0 0 0 10px rgba(120,214,155,0); }
  100% { box-shadow: 0 0 0 0 rgba(120,214,155,0); }
}

.divider {
  width: 54px;
  height: 1px;
  margin-top: 42px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footnote {
  margin: 18px 0 0;
  color: #727c8d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footnote .dot { margin: 0 10px; color: var(--accent); }

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 30px;
  color: #616a79;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 640px) {
  .topbar { height: 72px; }
  .hero { min-height: calc(100vh - 130px); padding: 60px 0 80px; }
  .eyebrow { font-size: 9px; letter-spacing: .18em; }
  .lead { margin-top: 30px; }
  .status-card { margin-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
