/* =========================================================
   AICWC - Professional Coming Soon Page
   ========================================================= */

:root {
  --navy: #071b35;
  --navy-2: #0b2748;
  --blue: #1f6feb;
  --blue-light: #58a6ff;
  --gold: #d6a84f;
  --gold-light: #f0d18a;
  --white: #ffffff;
  --text: #e8f0f8;
  --muted: #9db0c5;
  --border: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(31, 111, 235, 0.20), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(214, 168, 79, 0.10), transparent 25%),
    linear-gradient(145deg, #04101f 0%, var(--navy) 50%, #06172c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  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: 42px 42px;
}

.page {
  position: relative;
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 28px 0 35px;
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.glow-one {
  top: 130px;
  left: -300px;
  background: rgba(31, 111, 235, 0.13);
}

.glow-two {
  top: 620px;
  right: -300px;
  background: rgba(214, 168, 79, 0.10);
}

/* Header */

.header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 10px 0 30px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214,168,79,.45);
  border-radius: 13px;
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  background: linear-gradient(145deg, rgba(214,168,79,.16), rgba(255,255,255,.04));
  box-shadow: 0 10px 35px rgba(0,0,0,.18);
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.brand-subtitle {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .35px;
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #c9d7e7;
  font-size: 12px;
  background: rgba(255,255,255,.035);
}

.status-dot,
.verified-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #55c878;
  box-shadow: 0 0 0 5px rgba(85,200,120,.10);
}

/* Hero */

.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 82px 0 70px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
}

h1 {
  margin: 19px 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  font-weight: 700;
}

h1 span {
  color: var(--gold-light);
}

.intro {
  width: min(680px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.divider {
  width: 70px;
  height: 2px;
  margin: 35px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.info-grid {
  width: min(800px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--card);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214,168,79,.32);
}

.icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--gold-light);
  background: rgba(214,168,79,.10);
  border: 1px solid rgba(214,168,79,.18);
  font-weight: 700;
}

.info-card h3 {
  margin: 1px 0 6px;
  font-size: 14px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* Contact */

.contact-section {
  position: relative;
  z-index: 1;
  padding: 45px 0 80px;
  text-align: center;
}

.section-heading span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
}

.section-heading h2 {
  margin: 9px 0 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
}

.contact-card {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 35px 90px rgba(0,0,0,.32);
}

.card-image {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.card-image img {
  display: block;
  width: 100%;
  height: auto;
}

.card-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 13px 5px 2px;
  color: var(--muted);
  font-size: 11px;
}

/* Footer */

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #687c93;
  font-size: 11px;
}

.footer-line {
  width: 100%;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
}

footer p {
  margin: 5px 0;
}

.footer-small {
  color: #8da0b5;
}

/* Responsive */

@media (max-width: 720px) {

  .page {
    width: min(92%, 560px);
    padding-top: 18px;
  }

  .header {
    align-items: flex-start;
    flex-direction: column;
  }

  .status {
    font-size: 11px;
  }

  .hero {
    padding: 55px 0 45px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 65px);
    letter-spacing: -1.5px;
  }

  .intro {
    font-size: 15px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-bottom: 55px;
  }

  .section-heading h2 {
    font-size: 29px;
  }
}

@media (max-width: 420px) {

  .brand-subtitle {
    max-width: 230px;
    line-height: 1.4;
  }

  .hero {
    padding-top: 45px;
  }

  h1 {
    font-size: 43px;
  }

  .contact-card {
    padding: 8px;
    border-radius: 18px;
  }
}
