:root {
  --blue: #003057;
  --blue-deep: #001d34;
  --blue-mid: #004474;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, .66);
  --line: rgba(255, 255, 255, .13);
  --glass: rgba(255, 255, 255, .07);
  --glass-hover: rgba(255, 255, 255, .11);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--blue);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  font-family: "Roboto Flex", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(circle at 88% 88%, rgba(24,105,155,.22), transparent 30%),
    linear-gradient(145deg, #003057 0%, #002b4c 55%, #001b31 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a, button { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.page-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  width: min(1180px, 100%);
  min-height: min(760px, calc(100svh - 44px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 38px 46px 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 38px 100px rgba(0, 14, 26, .34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.34), transparent 80%);
}

.grid-glow {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.05), transparent 36%);
}

.orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.orb-one {
  width: 480px;
  height: 480px;
  top: -250px;
  right: -155px;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: inset 0 0 90px rgba(255,255,255,.035);
}

.orb-two {
  width: 330px;
  height: 330px;
  bottom: -190px;
  left: -110px;
  border: 1px solid rgba(255,255,255,.07);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.brand img {
  display: block;
  width: 148px;
  max-height: 48px;
  object-fit: contain;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 29, 52, .38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.language-switcher > span {
  width: 1px;
  height: 15px;
  background: rgba(255,255,255,.14);
}

.lang-btn {
  min-width: 38px;
  height: 31px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  color: rgba(255,255,255,.56);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .06em;
  transition: .2s ease;
}

.lang-btn.active {
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: 0 5px 14px rgba(0,0,0,.12);
}

.content {
  width: min(850px, 100%);
  margin: auto 0;
  padding: 84px 0 96px;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.05);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: .14em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,.08);
  animation: pulse 2.2s ease-in-out infinite;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 7.4vw, 96px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 390;
  font-variation-settings: "opsz" 120;
}

h1 span,
h1 strong { display: block; }

h1 strong {
  margin-top: 5px;
  font-weight: 720;
}

.lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  font-weight: 390;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 35px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 660;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0,0,0,.13);
}

.btn-ghost {
  border-color: var(--line);
  background: var(--glass);
}

.footer {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.36);
  font-size: 10px;
  font-weight: 630;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer p { margin: 0; }

.footer-separator {
  width: 42px;
  height: 1px;
  background: var(--line);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.82); }
}

@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .btn-primary:hover { box-shadow: 0 18px 40px rgba(0,0,0,.18); }
  .btn-ghost:hover { background: var(--glass-hover); border-color: rgba(255,255,255,.22); }
}

@media (max-width: 720px) {
  .page-shell { padding: 0; }

  .coming-soon {
    width: 100%;
    min-height: 100svh;
    padding: max(24px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand img { width: 126px; }

  .content {
    padding: 82px 0 84px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
    letter-spacing: -.06em;
  }

  .lead { max-width: 530px; }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn { width: 100%; min-height: 56px; }

  .footer {
    margin-top: auto;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .coming-soon { padding-left: 16px; padding-right: 16px; }
  .brand img { width: 112px; }
  .lang-btn { min-width: 34px; }
  .status-pill { font-size: 9px; letter-spacing: .11em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
