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

:root {
  --bg: #08111f;
  --text: #f4f7fb;
  --muted: #9aabc0;
  --line: rgba(255,255,255,.11);
  --accent: #5bc0ff;
  --accent-2: #8be1ff;
  --button: rgba(255,255,255,.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: "Inter", Arial, sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px clamp(24px, 6vw, 96px) 32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(55, 170, 255, .10), transparent 30%),
    linear-gradient(135deg, #07101c 0%, #0b1423 52%, #0c1828 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .15;
  pointer-events: none;
}

.ambient-one {
  width: 380px;
  height: 380px;
  background: #3da9ff;
  right: -120px;
  top: 90px;
}

.ambient-two {
  width: 280px;
  height: 280px;
  background: #4ee4ff;
  left: 25%;
  bottom: -160px;
}

.content {
  position: relative;
  z-index: 2;
  width: min(790px, 100%);
  margin: auto 0;
}

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

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-mark span {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 44px;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.brand-mark span:first-child { transform: rotate(45deg); }
.brand-mark span:last-child { transform: rotate(-45deg); }

.brand {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .95;
  letter-spacing: .13em;
  font-weight: 700;
}

.descriptor {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .76rem;
  letter-spacing: .24em;
  font-weight: 600;
}

.divider {
  width: 68px;
  height: 2px;
  margin: 54px 0 34px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: .75rem;
  letter-spacing: .16em;
  font-weight: 700;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 600;
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.coming {
  margin: 25px 0 34px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: #dce7f2;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.contact-label {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--button);
  color: var(--text);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.whatsapp:hover {
  transform: translateY(-2px);
  border-color: rgba(91,192,255,.45);
  background: rgba(255,255,255,.09);
}

.whatsapp svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-2);
}

.whatsapp span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: .96rem;
  font-weight: 600;
}

.whatsapp small {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #718298;
  font-size: .76rem;
}

@media (max-width: 700px) {
  .hero {
    min-height: 100svh;
    padding: 34px 22px 24px;
  }

  .content { margin-top: 55px; }

  .brand-mark {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .brand-mark span {
    top: 17px;
    width: 36px;
    height: 5px;
  }

  .brand { font-size: 2rem; }

  .descriptor {
    font-size: .62rem;
    letter-spacing: .18em;
  }

  .divider { margin: 40px 0 28px; }

  h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .lead { line-height: 1.65; }

  footer {
    flex-direction: column;
    gap: 7px;
    margin-top: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
