:root {
  --bg-0: #04070f;
  --bg-1: #07162f;
  --bg-2: #0b2b53;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.12);
  --line-2: rgba(255, 255, 255, 0.08);
  --glass: rgba(10, 16, 26, 0.62);
  --glass-2: rgba(10, 16, 26, 0.48);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --blue: #2f7cf6;
  --cyan: #68d1ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 65%, #03050b 100%);
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(820px 480px at 50% -10%, rgba(47, 124, 246, 0.24), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.6));
  pointer-events: none;
  z-index: 0;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, transparent 0%, rgba(0, 0, 0, 0.45) 70%, rgba(0, 0, 0, 0.7) 100%);
}

.wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 34px 18px 26px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted-2);
}

.utility-name {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.utility-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
}

.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lang-toggle svg {
  width: 14px;
  height: 14px;
}

.lang-toggle:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lang-toggle:focus-visible {
  outline: 2px solid rgba(104, 209, 255, 0.85);
  outline-offset: 3px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 12, 22, 0.95);
  box-shadow: 0 16px 28px rgba(3, 8, 19, 0.45);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-dropdown.is-open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 999px;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-option:hover {
  color: rgba(255, 255, 255, 0.95);
}

.lang-option.is-active {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
}

.lang-option:focus-visible {
  outline: 2px solid rgba(104, 209, 255, 0.85);
  outline-offset: 3px;
}

.content {
  display: grid;
  place-items: center;
  gap: 40px;
  padding: 6px 0 10px;
}

.hero {
  text-align: center;
  max-width: 80ch;
  padding: 12px 0 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(104, 209, 255, 0.8);
  font-size: 0.72rem;
}

h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  font-weight: 600;
  margin-top: 12px;
}

.subtitle {
  margin-top: 14px;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--muted);
  font-weight: 600;
}

.hero-status {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 60ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(18, 26, 40, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 16px 28px rgba(3, 8, 19, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 20px 32px rgba(3, 8, 19, 0.4);
}

.button--header {
  font-size: 0.98rem;
  padding: 10px 26px;
  background: transparent;
  box-shadow: none;
  margin-left: 6px;
  gap: 8px;
}

.button--header svg {
  width: 16px;
  height: 16px;
}

.button:focus-visible {
  outline: 2px solid rgba(104, 209, 255, 0.9);
  outline-offset: 4px;
}

.button--header:hover {
  transform: none;
  background: rgba(18, 26, 40, 0.65);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 20px 32px rgba(3, 8, 19, 0.4);
}

.main-section {
  width: min(1100px, 100%);
  padding: 6px 0 8px;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.section-title {
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 14px;
}

.section-title--minor {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.list li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: start;
}

.list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: rgba(104, 209, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(104, 209, 255, 0.08);
  animation: pulse-dot 3.2s ease-in-out infinite;
}

.list li:nth-child(2)::before {
  animation-delay: 0.4s;
}

.list li:nth-child(3)::before {
  animation-delay: 0.8s;
}

.list li:nth-child(4)::before {
  animation-delay: 1.2s;
}

.list li:nth-child(5)::before {
  animation-delay: 1.6s;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.text {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.text-gap {
  margin-top: 12px;
}

.meta-line {
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted-2);
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.link--utility {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  gap: 8px;
}

.link--utility:hover {
  color: rgba(255, 255, 255, 0.95);
}

.utility-label {
  white-space: nowrap;
}

.link svg {
  width: 18px;
  height: 18px;
}

.link:hover {
  color: rgba(104, 209, 255, 0.95);
  border-color: rgba(104, 209, 255, 0.65);
}

.sep {
  opacity: 0.5;
}

.footer {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

.fade-up {
  opacity: 1;
  transform: none;
}

.delay-1 {
  animation-delay: 0s;
}

@media (max-width: 820px) {
  .main-grid {
    grid-template-columns: 1fr;
  }

  .utility-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .utility-bar {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .utility-name {
    font-size: 0.85rem;
    flex: 0 0 auto;
  }

  .utility-links {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    gap: 10px;
    margin-left: auto;
    min-width: 0;
  }

  .utility-links .sep {
    display: none;
  }

  .link--utility {
    font-size: 0.86rem;
  }

  .utility-label {
    display: none;
  }

  .button--header {
    padding: 8px 18px;
    margin-left: 0;
  }

  .lang-dropdown {
    flex: 0 0 auto;
    margin-left: 8px;
  }

  .lang-toggle {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
  }
}
