﻿:root {
  --bg: #0f1530;
  --bg-soft: #171f42;
  --panel: rgba(22, 30, 61, 0.82);
  --panel-strong: rgba(13, 20, 44, 0.92);
  --panel-soft: rgba(26, 35, 72, 0.75);
  --line: rgba(168, 185, 255, 0.24);
  --text: #f5f7ff;
  --muted: #c2cae5;
  --muted-strong: #dce3ff;
  --accent: #77a8ff;
  --accent-strong: #776eff;
  --accent-alt: #47d6ff;
  --accent-soft: rgba(119, 168, 255, 0.16);
  --success: #9cf5d6;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.28);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(122, 111, 255, 0.34), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(71, 214, 255, 0.2), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(118, 110, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #0b1024 0%, #121935 52%, #0b1122 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 52px;
}

.narrow-shell {
  max-width: 840px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(13, 19, 42, 0.94), rgba(10, 15, 34, 0.88));
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(5, 9, 24, 0.18);
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex: 0 1 470px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
  max-width: min(100%, 430px);
  padding: 8px 12px;
  border: 1px solid rgba(126, 150, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 25, 54, 0.88), rgba(11, 18, 39, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 20px rgba(3, 7, 20, 0.14);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-logo {
  display: block;
  height: 60px;
  width: auto;
  max-width: min(42vw, 360px);
  object-fit: contain;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-alt), var(--accent-strong));
  box-shadow: 0 0 0 6px rgba(119, 168, 255, 0.12);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 12px;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9rem;
}

.site-nav a {
  color: var(--muted);
  padding: 7px 8px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.lang-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  padding: 8px 13px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-button:hover {
  color: var(--text);
}

.lang-button.is-active {
  background: linear-gradient(135deg, var(--accent-alt), var(--accent-strong));
  color: #071122;
  box-shadow: 0 10px 24px rgba(71, 214, 255, 0.22);
}

main {
  display: grid;
  gap: 26px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.section-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.section-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 185, 255, 0.34);
  box-shadow: 0 26px 90px rgba(2, 6, 23, 0.34);
}

.section-card::after {
  content: "";
  position: absolute;
  inset: auto -14% -40% 48%;
  height: 220px;
  background: radial-gradient(circle, rgba(119, 168, 255, 0.18), transparent 62%);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(71, 214, 255, 0.12), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(119, 110, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(24, 34, 68, 0.9), rgba(12, 19, 43, 0.96));
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0 0 14px;
  font-family: inherit;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 750;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.hero-copy {
  max-width: 54ch;
  font-size: 1.02rem;
}

.hero-copy-wrap {
  position: relative;
  z-index: 1;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(168, 185, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.space-card {
  position: relative;
  min-height: 360px;
  padding: 20px;
  border: 1px solid rgba(168, 185, 255, 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(15, 24, 52, 0.92), rgba(10, 16, 35, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 60px rgba(4, 8, 24, 0.35);
}

.space-card-top,
.space-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.space-badge,
.space-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.space-badge {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.space-status {
  border: 1px solid rgba(168, 185, 255, 0.18);
  color: var(--muted-strong);
}

.space-scene {
  position: relative;
  height: 220px;
  margin: 20px 0 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 30%, rgba(71, 214, 255, 0.18), transparent 18%),
    radial-gradient(circle at 20% 75%, rgba(119, 110, 255, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(18, 28, 58, 0.95), rgba(11, 17, 37, 0.95));
  overflow: hidden;
}

.planet,
.orbit,
.star,
.rocket,
.rocket::before,
.rocket::after {
  position: absolute;
}

.planet-large {
  top: 38px;
  right: 34px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7ce6ff, #6079ff 70%, #453cbf 100%);
  box-shadow: 0 0 40px rgba(96, 121, 255, 0.35);
}

.planet-small {
  left: 38px;
  bottom: 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff0b8, #ff9d68 75%);
}

.orbit {
  border: 1px solid rgba(188, 201, 255, 0.14);
  border-radius: 50%;
}

.orbit-one {
  width: 190px;
  height: 120px;
  left: 96px;
  top: 62px;
  transform: rotate(-18deg);
}

.orbit-two {
  width: 170px;
  height: 104px;
  left: 72px;
  top: 92px;
  transform: rotate(14deg);
}

.star {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.6);
}

.star-one {
  top: 42px;
  left: 54px;
}

.star-two {
  top: 66px;
  left: 168px;
}

.star-three {
  top: 144px;
  right: 72px;
}

.star-four {
  bottom: 38px;
  right: 124px;
}

.rocket {
  top: 94px;
  left: 126px;
  width: 34px;
  height: 94px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #dfe7ff 65%, #9aacff 100%);
  transform: rotate(28deg);
  box-shadow: 0 12px 24px rgba(121, 110, 255, 0.25);
}
.rocket::before {
  content: "";
  top: -14px;
  left: 7px;
  width: 20px;
  height: 24px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(180deg, #ffffff, #bcd3ff);
}

.rocket::after {
  content: "";
  bottom: -8px;
  left: 10px;
  width: 14px;
  height: 16px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #7b70ff, #57d8ff);
}

.rocket-window {
  position: absolute;
  top: 24px;
  left: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, #64d7ff 70%);
}

.rocket-wing {
  position: absolute;
  bottom: 16px;
  width: 14px;
  height: 22px;
  background: #8a82ff;
}

.rocket-wing-left {
  left: -9px;
  clip-path: polygon(100% 0%, 100% 100%, 0% 84%);
}

.rocket-wing-right {
  right: -9px;
  clip-path: polygon(0% 0%, 100% 84%, 0% 100%);
}

.rocket-flame {
  position: absolute;
  left: 8px;
  bottom: -18px;
  width: 18px;
  height: 24px;
  border-radius: 50% 50% 80% 80%;
  background: linear-gradient(180deg, rgba(255, 246, 168, 0.98), rgba(255, 135, 95, 0.95));
  filter: blur(0.2px);
}

.space-meta {
  gap: 10px;
}

.space-metric {
  flex: 1;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(168, 185, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.space-metric-value {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.space-metric-label {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-actions,
.policy-choice,
.footer-links,
.section-head,
.world-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-link,
.secondary-link,
.mail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.primary-link {
  background: linear-gradient(135deg, var(--accent-alt), var(--accent-strong));
  color: #071122;
  box-shadow: 0 14px 32px rgba(82, 124, 255, 0.28);
}

.secondary-link,
.mail-link,
.is-recommended {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.primary-link:hover,
.secondary-link:hover,
.mail-link:hover,
.is-recommended:hover {
  transform: translateY(-1px);
}

.secondary-link:hover,
.mail-link:hover,
.is-recommended:hover {
  border-color: rgba(168, 185, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.feature-list,
.policy-links {
  margin: 18px 0 0;
  padding-left: 0;
  color: var(--text);
  list-style: none;
}

.feature-list li,
.policy-links li {
  margin-bottom: 12px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.rocket-card .section-head {
  justify-content: space-between;
  margin-bottom: 16px;
}

.rocket-card {
  padding: 34px;
  background:
    radial-gradient(circle at 85% 18%, rgba(71, 214, 255, 0.16), transparent 18%),
    radial-gradient(circle at 12% 84%, rgba(119, 110, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(20, 30, 68, 0.96), rgba(10, 16, 34, 0.98));
}

.rocket-card::before {
  content: "";
  position: absolute;
  inset: 12% -8% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 230, 255, 0.16), transparent 62%);
  pointer-events: none;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(158, 240, 207, 0.24);
  border-radius: 999px;
  background: rgba(158, 240, 207, 0.1);
  color: var(--success);
  font-size: 0.92rem;
  font-weight: 700;
}

.world-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(168, 185, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(119, 168, 255, 0.12), rgba(119, 110, 255, 0.12));
  color: var(--text);
  font-size: 0.92rem;
}

.consent-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(121, 168, 255, 0.09);
}

.apps-card {
  background: linear-gradient(180deg, rgba(20, 30, 61, 0.88), rgba(12, 18, 39, 0.94));
}

.studio-card {
  background: linear-gradient(180deg, rgba(18, 29, 58, 0.82), rgba(10, 16, 35, 0.96));
}

.studio-stripes {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.studio-stripes span {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(71, 214, 255, 0.18), rgba(119, 110, 255, 0.48));
}

.studio-stripes span:nth-child(2) {
  flex: 1.3;
}

.projects-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(119, 110, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(19, 30, 60, 0.86), rgba(11, 18, 39, 0.94));
}

.contact-card .mail-link {
  width: fit-content;
  margin-top: 10px;
}

.site-footer {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(14, 20, 43, 0.68);
}

.footer-copy {
  color: var(--muted);
}

.policy-header {
  align-items: center;
}

.policy-page section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.policy-date {
  color: var(--text);
  font-weight: 700;
}

.language-page {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 820px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 16px;
  }

  .brand-mark {
    max-width: 100%;
  }

  .brand-logo {
    height: 58px;
    max-width: min(78vw, 400px);
  }

  .brand-row {
    width: 100%;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 14px;
  }

  .section-card,
  .site-header,
  .site-footer {
    padding: 22px 18px;
  }

  h1 {
    max-width: none;
    font-size: clamp(1.9rem, 10.5vw, 2.7rem);
  }

  h2 {
    font-size: 1.38rem;
  }

  .brand-row {
    flex-wrap: wrap;
  }

  .brand-mark {
    padding: 6px 8px;
    border-radius: 14px;
    max-width: 100%;
  }

  .brand-logo {
    height: 48px;
    max-width: min(82vw, 300px);
  }

  .site-nav {
    gap: 8px 10px;
    font-size: 0.9rem;
  }

  .site-nav a {
    padding: 6px 8px;
  }

  .hero {
    gap: 22px;
    padding: 26px 18px;
  }

  .hero-point {
    font-size: 0.86rem;
  }

  .space-card {
    min-height: 320px;
    padding: 16px;
  }

  .space-scene {
    height: 190px;
  }

  .planet-large {
    right: 18px;
    width: 62px;
    height: 62px;
  }

  .rocket {
    left: 96px;
    top: 80px;
    transform: rotate(24deg) scale(0.92);
  }

  .space-meta {
    flex-direction: column;
  }
}







.rocket-actions {
  margin-top: 20px;
}

.rocket-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.shot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(168, 185, 255, 0.16);
  border-radius: 20px;
  background: rgba(8, 14, 31, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.shot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #091122;
}

.shot-card figcaption {
  padding: 10px 12px 12px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 600;
}

.status-pill.is-live {
  border-color: rgba(156, 245, 214, 0.34);
  background: rgba(156, 245, 214, 0.14);
}

.upcoming-card {
  background:
    radial-gradient(circle at 90% 12%, rgba(119, 168, 255, 0.16), transparent 18%),
    radial-gradient(circle at 10% 88%, rgba(119, 110, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(18, 28, 58, 0.88), rgba(11, 17, 36, 0.96));
}

.upcoming-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.upcoming-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(168, 185, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.92rem;
}

.beta-card {
  background:
    radial-gradient(circle at 88% 18%, rgba(71, 214, 255, 0.16), transparent 18%),
    radial-gradient(circle at 12% 84%, rgba(119, 110, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(16, 28, 56, 0.92), rgba(9, 16, 34, 0.98));
}

.beta-points {
  margin-bottom: 22px;
}

@media (max-width: 980px) {
  .rocket-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .rocket-gallery {
    grid-template-columns: 1fr;
  }
}

.app-policy-list {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
