@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #080a10;
  --bg-soft: #0d1018;
  --text: #f8f8f4;
  --muted: #a9adb8;
  --gold: #f8c213;
  --gold-light: #fcef04;
  --orange: #f66a24;
  --border: rgba(248, 194, 19, .18);
}

* { box-sizing: border-box; }

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

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 42%, rgba(248, 194, 19, .07), transparent 28%),
    linear-gradient(135deg, #07090e 0%, #0b0e16 52%, #07090e 100%);
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.page {
  width: min(1160px, calc(100% - 40px));
  min-height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
}

.brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.language-toggle {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 13px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: .25s ease;
}

.language-toggle:hover {
  border-color: rgba(248, 194, 19, .5);
  background: rgba(248, 194, 19, .06);
}

.lang.active { color: var(--gold); }
.divider { color: #555b66; padding: 0 5px; }

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 42px 0 70px;
}

.logo-wrap {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 28px;
}

.logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(248, 194, 19, .18);
  box-shadow:
    0 0 0 13px rgba(248, 194, 19, .025),
    0 0 55px rgba(248, 194, 19, .08);
  animation: pulse 3.2s ease-in-out infinite;
}

.logo-wrap::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 8px;
  right: 19px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px var(--gold);
}

.hero-logo {
  width: 94px;
  height: 94px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(248, 194, 19, .18));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .26em;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 800;
}

h1 span {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.description {
  max-width: 620px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.8;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 30px;
  padding: 9px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(248, 194, 19, .045);
  color: #e9eaf0;
  font-size: 12px;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(248, 194, 19, .9);
  animation: blink 1.7s ease-in-out infinite;
}

.launch-note {
  width: min(500px, 100%);
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #707681;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.launch-note .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12));
}

.launch-note .line:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,.12), transparent);
}

footer {
  padding: 24px 0 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #666b76;
  font-size: 11px;
  letter-spacing: .04em;
}

.footer-separator { color: #3c4048; }

.background-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: .08;
}

.glow-one {
  top: -220px;
  right: -160px;
  background: var(--gold);
}

.glow-two {
  bottom: -260px;
  left: -170px;
  background: var(--orange);
}

@keyframes pulse {
  0%, 100% { transform: scale(.96); opacity: .65; }
  50% { transform: scale(1.03); opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: .45; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 640px) {
  .page { width: min(100% - 28px, 1160px); }
  .topbar { padding-top: 18px; }
  .brand span { font-size: 12px; }
  .hero { padding: 25px 0 50px; }
  .logo-wrap { width: 112px; height: 112px; }
  .hero-logo { width: 82px; height: 82px; }
  .eyebrow { font-size: 10px; letter-spacing: .18em; }
  h1 { font-size: clamp(38px, 12vw, 58px); }
  .description { line-height: 1.7; padding: 0 5px; }
  .launch-note { margin-top: 32px; }
  footer { padding-bottom: 18px; }
}
