:root {
  --bg: #07132d;
  --bg-deep: #030914;
  --line: rgba(162, 230, 255, 0.16);
  --text: #f3f7ff;
  --muted: rgba(243, 247, 255, 0.72);
  --accent: #86ebff;
  --accent-strong: #37d6ff;
  --glass: rgba(8, 22, 48, 0.34);
  --glass-strong: rgba(7, 20, 42, 0.58);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 12% 75%, rgba(255, 233, 152, 0.2), transparent 24%),
    linear-gradient(135deg, #091224 10%, #02050d 90%);
  color: var(--text);
  font-family: "Avenir Next", "Hiragino Sans", "Yu Gothic", sans-serif;
}

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

small{
  font-size: 60%;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background:
    /*linear-gradient(90deg, rgba(14, 18, 34, 0.03) 0%, rgba(4, 12, 28, 0.12) 42%, rgba(3, 10, 22, 0.62) 100%),*/
    url("../img/hero-bg.png") center center / cover no-repeat;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.08) brightness(1.03);
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(3, 8, 19, 0.18) 0%, rgba(3, 8, 19, 0.52) 100%),
    radial-gradient(circle at 15% 78%, rgba(255, 214, 129, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(255, 208, 125, 0.1) 0%, transparent 28%, rgba(33, 198, 255, 0.12) 58%, rgba(3, 7, 20, 0.2) 100%);
}
.hero__overlay {
  background:
    linear-gradient(180deg, rgba(3, 8, 19, 0.12) 0%, rgba(3, 8, 19, 0.4) 100%),
    radial-gradient(circle at 15% 78%, rgba(255, 214, 129, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(255, 208, 125, 0.06) 0%, transparent 28%, rgba(33, 198, 255, 0.08) 58%, rgba(3, 7, 20, 0.14) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12vw -18vh auto;
  width: min(62vw, 860px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(110, 223, 255, 0.18);
  box-shadow:
    0 0 0 60px rgba(110, 223, 255, 0.04),
    0 0 0 120px rgba(110, 223, 255, 0.03);
  filter: blur(0.3px);
  pointer-events: none;
}

.topbar,
.hero__content,
.hero__footer {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand__mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #92e9ff 48%, #2dc9f0 100%);
  box-shadow: 0 0 18px rgba(134, 235, 255, 0.95);
}

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

.topbar__nav {
  display: inline-flex;
  gap: 28px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.topbar__nav a {
  position: relative;
}

.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(134, 235, 255, 0.75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.topbar__nav a:hover::after,
.topbar__nav a:focus-visible::after {
  transform: scaleX(1);
}

.comingsoon{
  position: relative; 
  margin: 0; 
  max-height: 10px;
  z-index: 2;
}
.comingsoon p{
  font-size: clamp(1.8rem, 2.5vw, 3.1rem); 
  font-weight: 500; 
  color: #a2c8dd; 
  letter-spacing: 0.5em; 
  text-align: center; 
  line-height: 1.0em; 
  margin:50px 0 0 0;
}


.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 430px);
  /*align-items: end;*/
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  min-height: calc(100vh - 176px);
  /*min-height: calc(100vh - 196px);*/
  /*padding: 54px 0 28px;*/
  /*padding: 24px 0 24px;*/
  padding: 0;
}

.copy-block {
  max-width: 700px;
  padding: clamp(20px, 3vw, 28px) 0;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.86rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.copy-block h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 6.2rem);
  /*font-size: clamp(2.6rem, 4.2vw, 5.2rem);*/
  line-height: 1.00;
  letter-spacing: -0.03em;
  /*text-wrap: balance;*/
}

.copy-block h1 span {
  display: block;
  color: #d9f7ff;
  text-shadow: 0 0 24px rgba(134, 235, 255, 0.18);
}

.lead {
  margin: 26px 0 0;
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  line-height: 1.8;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: #041321;
  background: linear-gradient(135deg, #f8f3d5 0%, #9dedff 38%, #56ddff 100%);
  background: linear-gradient(135deg, #f8f3d5 0%, #ffd49d 38%, #fe8f35 100%);
  box-shadow: 0 12px 32px rgba(54, 213, 255, 0.28);
  box-shadow: 0 12px 32px rgba(255, 160, 2, 0.28);
}

.button--ghost {
  border: 1px solid rgba(169, 226, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.glass-panel {
  align-self: center;
  /*align-self: flex-start;*/
  padding: 26px;
  border: 1px solid rgba(171, 229, 255, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);

}

.glass-panel__label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  display: grid;
  align-items: center;
  gap: 6px;
  padding: 18px 14px;
  border: 1px solid rgba(171, 229, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.metric-card__value {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 600;
  color: #dbf7ff;
}

.metric-card__label {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(171, 229, 255, 0.12);
}

.feature-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.feature-item__dot {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(134, 235, 255, 0.9);
}

.hero__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 26px;
  color: rgba(243, 247, 255, 0.66);
  font-size: 0.9rem;
}

.hero__footer p {
  margin: 0;
}

.hero__footer a {
  color: #d6f6ff;
}

@media (max-width: 980px) {
  .hero__content {
    grid-template-columns: 1fr;
    align-items: center;
    /*padding-top: 40px;*/
    padding-top: 20px;
  }

  .copy-block {
    max-width: 100%;
  }

  .glass-panel {
    width: min(100%, 680px);
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  .hero__bg {
    background-position: 58% center;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 18px;
  }

  .topbar__nav {
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.8rem;
  }

  .hero__content {
    min-height: auto;
    padding-bottom: 20px;
  }

  .copy-block h1 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
    font-size: clamp(2.4rem, 12vw, 4.2rem);
    line-height: 1.12;
    max-width: 14ch;
  }

  .lead {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero__footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 18px;
  }
}

@media (max-width: 520px) {
  .hero::after {
    width: 92vw;
    right: -24vw;
    bottom: -4vh;
  }

  .glass-panel {
    padding: 20px;
  }
  
  .comingsoon p{
    letter-spacing: 0.2em; 
  }

  .button {
    width: 100%;
  }
}
