:root {
  --navy: #071b36;
  --navy-light: #0b2b50;
  --yellow: #ffc400;
  --yellow-dark: #e9aa00;
  --white: #ffffff;
  --muted: #aebed0;
  --border: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.055);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 196, 0, 0.08), transparent 25%),
    radial-gradient(circle at 10% 80%, rgba(25, 105, 255, 0.13), transparent 30%),
    linear-gradient(135deg, #041326 0%, #071b36 48%, #03101f 100%);
}

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

.coming-soon {
  position: relative;
  width: min(1380px, 100%);
  min-height: 100vh;
  margin: auto;
  padding: 28px 5vw 22px;
  overflow: hidden;
}

.background-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.18;
}

.glow-one {
  width: 360px;
  height: 360px;
  background: var(--yellow);
  top: 10%;
  right: -160px;
}

.glow-two {
  width: 300px;
  height: 300px;
  background: #1d72ff;
  bottom: 0;
  left: -150px;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

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

.brand-mark {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--yellow);
}

.brand-name {
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.25);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-size: 12px;
  color: var(--muted);
}

.header-call strong {
  color: var(--white);
  font-size: 14px;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 60px;
  min-height: 590px;
  padding: 55px 0 35px;
}

.hero-copy {
  max-width: 650px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(255,196,0,.35);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255,196,0,.07);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 15px var(--yellow);
}

h1 {
  margin-top: 25px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -4px;
}

h1 span {
  color: var(--yellow);
}

.hero-text {
  max-width: 580px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.service-tags span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: #dce7f2;
  background: rgba(255,255,255,.04);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #071b36;
  background: var(--yellow);
  box-shadow: 0 10px 30px rgba(255,196,0,.18);
}

.btn-primary:hover {
  background: #ffd43d;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}

.btn-outline:hover {
  border-color: var(--yellow);
}

.btn-icon {
  font-size: 11px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
}

.logo-card {
  position: relative;
  width: min(100%, 550px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025)),
    rgba(4, 18, 35, .65);
  box-shadow:
    0 35px 90px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.logo-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 490px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.logo-glow {
  position: absolute;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  background: rgba(255,196,0,.13);
  filter: blur(60px);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(5, 21, 40, .86);
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}

.floating-card small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.floating-card strong {
  font-size: 12px;
}

.mini-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--yellow);
  background: rgba(255,196,0,.1);
  font-size: 18px;
}

.location-card {
  top: 7%;
  left: -3%;
}

.route-card {
  right: -3%;
  bottom: 7%;
}

.route-line {
  display: flex;
  align-items: center;
  gap: 5px;
}

.route-line span {
  width: 8px;
  height: 8px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.route-line i {
  width: 27px;
  border-top: 2px dashed var(--yellow);
}

.contact-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
}

.contact-card {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px;
  border-right: 1px solid var(--border);
}

.contact-card:last-child {
  border-right: 0;
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--yellow);
  background: rgba(255,196,0,.09);
  font-size: 14px;
  font-weight: 900;
}

.contact-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.contact-card a,
.contact-card span {
  color: var(--white);
  font-size: 12px;
  line-height: 1.5;
}

.contact-card a:hover {
  color: var(--yellow);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #74879c;
  font-size: 10px;
  letter-spacing: 1px;
}

footer b {
  color: var(--yellow);
  padding: 0 5px;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 45px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .logo-card {
    width: min(90%, 520px);
  }

  .contact-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card:nth-child(2) {
    border-right: 0;
  }

  .contact-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 600px) {
  .coming-soon {
    padding: 20px 18px 18px;
  }

  .topbar {
    align-items: flex-start;
  }

  .brand-mark {
    font-size: 23px;
  }

  .brand-name {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 35px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 64px);
    letter-spacing: -3px;
  }

  .hero-text {
    font-size: 15px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
  }

  .logo-card {
    width: 100%;
    border-radius: 20px;
    padding: 15px;
  }

  .floating-card {
    padding: 9px 11px;
  }

  .floating-card strong {
    font-size: 10px;
  }

  .location-card {
    top: 0;
    left: 0;
  }

  .route-card {
    right: 0;
    bottom: 0;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .contact-card:last-child {
    border-bottom: 0;
  }

  footer {
    flex-direction: column;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}
