* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #00263A;
  --primary-light: #0F4C75;
  --accent: #4FA3D1;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --line: rgba(255, 255, 255, 0.28);
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Spline Sans", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(79, 163, 209, 0.22), transparent 34%),
    linear-gradient(135deg, #00263A 0%, #003B5C 52%, #001B29 100%);
  overflow: hidden;
}

.coming-soon-page {
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 22px 64px 24px;
  overflow: hidden;
}

.coming-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.coming-logo {
  width: 112px;
  height: auto;
}

.coming-content {
  width: min(100%, 1230px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 56px;
  padding: 0;
  min-height: 0;
}

.coming-text {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.coming-text h1 {
  font-size: clamp(42px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
}

.coming-subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
}

.coming-description {
  max-width: 680px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.coming-contact {
  margin-top: 36px;
}

.coming-contact h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
}

.contact-list a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.25s ease;
}

.contact-list a:hover {
  opacity: 0.7;
}

.coming-illustration {
  position: relative;
  height: min(420px, 58vh);
  min-height: 340px;
  overflow: visible;
  opacity: 0.78;
}

.wireframe {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.wireframe::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.wireframe span {
  position: absolute;
  height: 10px;
  border-radius: 999px;
  background: rgba(79, 163, 209, 0.38);
}

.wireframe-large {
  width: 420px;
  max-width: 100%;
  height: 280px;
  right: 0;
  top: 12px;
}

.wireframe-large span:nth-child(1) {
  width: 150px;
  left: 36px;
  top: 82px;
}

.wireframe-large span:nth-child(2) {
  width: 250px;
  left: 36px;
  top: 128px;
}

.wireframe-large span:nth-child(3) {
  width: 190px;
  left: 36px;
  top: 174px;
}

.wireframe-small {
  width: 220px;
  height: 150px;
  left: 12px;
  bottom: 20px;
}

.wireframe-small span:nth-child(1) {
  width: 115px;
  left: 30px;
  top: 72px;
}

.wireframe-small span:nth-child(2) {
  width: 160px;
  left: 30px;
  top: 112px;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 28px rgba(79, 163, 209, 0.72);
}

.node-1 {
  right: -26px;
  top: 44px;
}

.node-2 {
  right: 350px;
  top: 300px;
}

.node-3 {
  left: -8px;
  bottom: 0;
}

.node-4 {
  right: 120px;
  bottom: 48px;
}

.line {
  position: absolute;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform-origin: left center;
}

.line-1 {
  width: 300px;
  right: 74px;
  top: 60px;
  transform: rotate(28deg);
}

.line-2 {
  width: 240px;
  left: 178px;
  bottom: 110px;
  transform: rotate(-18deg);
}

.line-3 {
  width: 200px;
  right: 100px;
  bottom: 78px;
  transform: rotate(14deg);
}

.coming-footer {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  text-align: center;
}

.coming-footer p {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.76);
}

/* responsivo */

@media (max-width: 860px) {
  body {
    overflow: auto;
  }

  .coming-soon-page {
    min-height: 100vh;
    height: auto;
    padding: 24px 32px 22px;
    position: relative;
  }

  .coming-content {
    position: relative;
    display: block;
    padding: 72px 0 48px;
  }

  .coming-text {
    position: relative;
    z-index: 2;
    max-width: 680px;
  }

  .coming-illustration {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 100%;
    opacity: 0.22;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
  }

  .wireframe-large {
    width: 360px;
    height: 220px;
    right: -80px;
    top: 10px;
  }

  .wireframe-small {
    width: 200px;
    height: 130px;
    left: -70px;
    top: 70px;
    bottom: auto;
  }

  .node-1 {
    right: 10px;
    top: 28px;
  }

  .node-2 {
    right: 240px;
    top: 205px;
  }

  .node-3 {
    left: 10px;
    top: 145px;
    bottom: auto;
  }

  .node-4,
  .line-3 {
    display: none;
  }

  .line-1 {
    width: 280px;
    right: 10px;
    top: 66px;
  }

  .line-2 {
    width: 220px;
    left: 90px;
    top: 125px;
    bottom: auto;
  }
}