@font-face {
  font-family: "Inlanders";
  src: url("assets/inlanders.otf") format("opentype");
  font-display: swap;
}

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

:root {
  --bg: #071418;
  --text: #f5feff;
  --muted: #a8c2c7;
  --cyan: #54e7e8;
  --cyan-2: #23bac5;
  --border: rgba(115, 231, 234, 0.18);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto 0;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 17, 22, 0.62);
  backdrop-filter: blur(18px);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.main-nav a {
  position: relative;
  padding: 10px 6px 14px;
  color: #eefeff;
  font-family: "Inlanders", Inter, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
  box-shadow: 0 0 16px rgba(84, 231, 232, 0.8);
}
.menu-toggle {
  display: none;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.08);
  font-size: 1.25rem;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 120px 20px 110px;
  overflow: hidden;
  background: linear-gradient(180deg, #08161c 0%, #071418 100%);
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url("assets/background.png");
  background-size: cover;
  background-position: center;
  filter: blur(16px);
  transform: scale(1.08);
  opacity: 0.85;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,18,24,0.48) 0%, rgba(5,18,24,0.52) 22%, rgba(5,18,24,0.50) 44%, rgba(5,18,24,0.60) 62%, rgba(5,18,24,0.78) 80%, #071418 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 360px;
  background: linear-gradient(180deg, rgba(7,20,24,0) 0%, rgba(7,20,24,0.38) 25%, rgba(7,20,24,0.76) 58%, #071418 100%);
}
.hero-shell {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.hero-logo {
  width: clamp(300px, 36vw, 500px);
  margin-top: 34px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.42));
}
.hero-actions {
  margin-top: 72px;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
}
.primary-button,
.secondary-button {
  width: 248px;
  min-height: 72px;
  padding: 12px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.primary-button {
  background: linear-gradient(135deg, #5eeff0, #48d7e0);
  color: #052028;
}
.primary-button span,
.secondary-button span {
  display: block;
  font-family: "Inlanders", Inter, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.primary-button small {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.82;
}
.secondary-button {
  background: rgba(5, 23, 31, 0.92);
  border-color: rgba(204, 231, 236, 0.48);
  color: white;
}
.copy-message {
  min-height: 24px;
  margin-top: 14px;
  color: #a9f6f2;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.coming-section {
  max-width: 1320px;
  margin: 0 auto;
  transform: translateX(72px);
  min-height: 700px;
  padding: 80px 32px 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  background: linear-gradient(180deg, #071418, #081a20);
}
.coming-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.coming-image-wrap::before {
  content: "";
  position: absolute;
  inset: 7% -2% -7% 8%;
  border-radius: 28px;
  background: rgba(57, 218, 223, 0.1);
  filter: blur(44px);
}
.coming-image-wrap img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 620px;
  border: 1px solid rgba(115, 231, 234, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.coming-copy {
  max-width: 430px;
  text-align: left;
  padding-top: 2px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-family: "Inlanders", Inter, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.coming-copy h2 {
  margin: 0;
  font-family: "Inlanders", Inter, sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.coming-copy > p:last-of-type {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.site-footer-block {
  margin-top: 12px;
  background: #040b0d;
  color: #8faab0;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 46px 32px 42px;
}

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

.footer-brand {
  color: #ffffff;
  font-family: "Inlanders", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.footer-nav a {
  color: #90a6ae;
  font-size: 0.96rem;
  font-weight: 700;
}

.footer-divider {
  margin: 34px 0 36px;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-copy {
  margin: 0;
  color: #90a6c8;
  font-size: 1rem;
  font-weight: 800;
}

.footer-sub {
  margin: 0;
  color: #7f94a0;
  font-size: 0.98rem;
  font-weight: 500;
}

.toast {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  max-width: 330px;
  padding: 14px 18px;
  border: 1px solid rgba(84, 231, 232, 0.34);
  border-radius: 10px;
  background: rgba(8, 31, 38, 0.96);
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 180ms ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .coming-section {
    transform: none;
  }

  .site-header {
    justify-content: flex-end;
    padding: 0 20px;
  }
  .menu-toggle { display: block; }
  .main-nav { display: none; }
  .site-header.open {
    height: auto;
    min-height: 82px;
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 18px;
  }
  .site-header.open .main-nav {
    display: flex;
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(5, 17, 22, 0.96);
  }
  .coming-section {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 70px;
    padding-bottom: 90px;
  }
  .coming-copy {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  .status-pill {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 700px;
    padding-top: 100px;
  }
  .hero-logo {
    width: min(340px, 82vw);
  }
  .hero-actions {
    width: min(350px, 92vw);
    gap: 12px;
  }
  .hero-actions > * { width: 100%; }
  .coming-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .coming-copy h2 {
    font-size: 2.35rem;
  }
}


@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
}

@media (max-width: 620px) {
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-brand {
    font-size: 1.6rem;
  }

  .footer-nav {
    gap: 14px 22px;
  }
}
