:root {
  --bg: #020817;
  --bg-elevated: #071326;
  --surface: #0c1a32;
  --surface-soft: rgba(12, 26, 50, 0.72);
  --border: rgba(94, 130, 196, 0.22);
  --text: #ffffff;
  --text-muted: #9fb0cb;
  --cyan: #2ee6c8;
  --cyan-bright: #00d2ff;
  --blue: #1e5eff;
  --blue-soft: #4da3ff;
  --green: #38d27a;
  --orange: #ffb340;
  --purple: #9b6bff;
  --max: 1120px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 20%, rgba(30, 94, 255, 0.12), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(46, 230, 200, 0.08), transparent 28%),
    linear-gradient(180deg, #020817 0%, #030b18 45%, #020817 100%);
}

.page-bg__lighthouse {
  position: absolute;
  left: 0;
  top: 0;
  width: min(52vw, 720px);
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.92;
  mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
}

.page-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 8, 23, 0.15) 0%, rgba(2, 8, 23, 0.72) 42%, rgba(2, 8, 23, 0.95) 100%);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(46, 230, 200, 0.25);
}

.brand__logo {
  height: 42px;
  width: auto;
}

.brand__tagline {
  margin-top: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  font-weight: 600;
}

.hero {
  padding: 36px 0 28px;
  text-align: center;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero__title .accent {
  background: linear-gradient(90deg, var(--cyan-bright), var(--blue-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin-top: 10px;
  font-size: clamp(0.82rem, 2vw, 1rem);
  letter-spacing: 0.28em;
  color: var(--text-muted);
  font-weight: 600;
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(46, 230, 200, 0.45);
  background: rgba(46, 230, 200, 0.06);
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.hero__intro {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: var(--text-muted);
}

.hero__intro strong,
.text-accent {
  color: var(--cyan);
  font-weight: 700;
}

.region-banner {
  margin-top: 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(7, 19, 38, 0.82);
  backdrop-filter: blur(8px);
  text-align: left;
}

.region-banner__pin {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(56, 210, 122, 0.12);
  color: var(--green);
  font-size: 1.2rem;
}

.region-banner__text {
  font-size: 1.02rem;
  color: var(--text-muted);
}

.region-banner__text strong {
  color: var(--text);
}

.region-banner__map {
  width: 72px;
  height: auto;
  opacity: 0.95;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  padding: 24px 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12, 26, 50, 0.92), rgba(8, 18, 36, 0.88));
  min-height: 220px;
}

.card__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.card__title {
  margin-top: 18px;
  font-size: 1.35rem;
  font-weight: 700;
}

.card__title--blue { color: var(--blue-soft); }
.card__title--green { color: var(--green); }
.card__title--orange { color: var(--orange); }

.card__text {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.card__line {
  width: 42px;
  height: 3px;
  border-radius: 999px;
  margin-top: 18px;
}

.card__line--blue { background: var(--blue-soft); }
.card__line--green { background: var(--green); }
.card__line--orange { background: var(--orange); }

.slogan {
  margin: 42px auto 0;
  text-align: center;
  max-width: 760px;
}

.slogan__icon-wrap {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(46, 230, 200, 0.25);
  background: rgba(46, 230, 200, 0.06);
}

.slogan__icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.slogan__text {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--text-muted);
}

.site-footer {
  margin-top: 48px;
  padding: 28px 0 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-footer__links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.site-footer__links a:hover {
  color: var(--cyan);
}

.legal-page {
  padding: 48px 0 72px;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.legal-page p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

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

  .region-banner {
    grid-template-columns: auto 1fr auto;
  }

  .page-bg__lighthouse {
    width: 100%;
    opacity: 0.35;
    mask-image: linear-gradient(180deg, #000 20%, transparent 85%);
    -webkit-mask-image: linear-gradient(180deg, #000 20%, transparent 85%);
  }
}

@media (max-width: 640px) {
  .brand__logo {
    height: 34px;
  }

  .hero {
    padding-top: 12px;
  }
}
