:root {
  --navy: #071426;
  --navy-soft: #0d2038;
  --line: rgba(177, 213, 232, 0.16);
  --line-strong: rgba(177, 213, 232, 0.34);
  --paper: #f6fbff;
  --muted: #a8bac8;
  --emerald: #2d9c5c;
  --emerald-glow: rgba(45, 156, 92, 0.36);
  --font-body: "Inter", Arial, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
}

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

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--paper);
  background: radial-gradient(circle at 20% 20%, #173454 0, transparent 28%), var(--navy);
  overflow-x: hidden;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  padding: clamp(20px, 4vw, 56px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    linear-gradient(var(--line-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-strong) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px, 140px 140px, 140px 140px;
  mask-image: radial-gradient(circle at center, #000 0 62%, transparent 100%);
}

.orb {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(12px);
}

.orb-one {
  width: 42vw;
  height: 42vw;
  top: -18vw;
  right: -12vw;
  background: rgba(45, 156, 92, 0.12);
}

.orb-two {
  width: 30vw;
  height: 30vw;
  left: -12vw;
  bottom: -14vw;
  background: rgba(91, 160, 210, 0.11);
}

.panel {
  width: min(1120px, 100%);
  min-height: min(720px, calc(100vh - 48px));
  padding: clamp(28px, 5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(220, 240, 250, 0.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(7,20,38,0.82), rgba(7,20,38,0.94));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.panel::before,
.panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.panel::before {
  width: 58%;
  height: 1px;
  top: 27%;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(177, 213, 232, 0.42));
}

.panel::after {
  width: 340px;
  height: 340px;
  right: clamp(24px, 6vw, 92px);
  bottom: clamp(90px, 14vw, 160px);
  border: 1px solid rgba(177, 213, 232, 0.18);
  transform: rotate(45deg);
}

.brand-row,
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.logo {
  width: min(210px, 48vw);
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.22));
}

.brand-row p,
.footer-row span,
.eyebrow,
.technical-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: end;
  position: relative;
  z-index: 1;
  padding: 72px 0;
}

.hero-copy h1 {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: clamp(4.4rem, 13vw, 10rem);
  line-height: 0.82;
  letter-spacing: -0.065em;
  color: var(--paper);
}

.hero-copy h1 span {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(246, 251, 255, 0.86);
  text-shadow: 0 0 34px rgba(45, 156, 92, 0.18);
}

.lead {
  max-width: 560px;
  margin-top: 30px;
  color: #d7e7ef;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.technical-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(177, 213, 232, 0.22);
  background: rgba(7, 20, 38, 0.48);
  backdrop-filter: blur(18px);
}

.card-line {
  width: 56px;
  height: 4px;
  margin-bottom: 34px;
  background: var(--emerald);
  box-shadow: 0 0 28px var(--emerald-glow);
}

dl {
  display: grid;
  gap: 24px;
}

dd {
  margin-top: 6px;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 600;
}

.footer-row {
  border-top: 1px solid rgba(177, 213, 232, 0.18);
  padding-top: 24px;
}

@media (max-width: 820px) {
  .panel {
    min-height: auto;
  }

  .brand-row,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-grid {
    grid-template-columns: 1fr;
    padding: 56px 0;
  }

  .panel::after {
    width: 220px;
    height: 220px;
    right: -70px;
  }
}
