﻿:root {
  color-scheme: light;
  --ink: #071b52;
  --muted: #52708e;
  --teal: #0797aa;
  --teal-deep: #037989;
  --green: #66bd3d;
  --line: #d9e7ee;
  --panel: rgba(255, 255, 255, 0.82);
  --surface: #f7fbfd;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 27, 82, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 27, 82, 0.04) 1px, transparent 1px),
    var(--surface);
  background-size: 58px 58px;
}

.launch-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.launch-hero {
  width: min(1120px, 100%);
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  padding: clamp(22px, 4.5vw, 52px);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 27, 82, 0.09);
  box-shadow: 0 24px 70px rgba(7, 27, 82, 0.10);
}

.launch-hero::before,
.launch-hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.launch-hero::before {
  width: 56%;
  height: 1px;
  right: -10%;
  top: 27%;
  background: linear-gradient(90deg, transparent, rgba(7, 151, 170, 0.45), transparent);
}

.launch-hero::after {
  width: 1px;
  height: 46%;
  left: 12%;
  bottom: -8%;
  background: linear-gradient(180deg, transparent, rgba(102, 189, 61, 0.42), transparent);
}

.brand-block,
.hero-copy,
.signal-row,
.launch-footer {
  position: relative;
  z-index: 1;
}

.brand-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  width: clamp(210px, 26vw, 320px);
  height: auto;
  display: block;
}

.status-label {
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(7, 151, 170, 0.22);
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-copy {
  max-width: 850px;
  align-self: end;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.25rem, 4.8vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  line-height: 1.52;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.signal-row span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: var(--panel);
  color: #19325f;
  font-size: 0.98rem;
  font-weight: 700;
}

.launch-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.launch-footer span:last-child {
  color: var(--ink);
}

@media (max-width: 760px) {
  .launch-page {
    padding: 14px;
  }

  .launch-hero {
    min-height: calc(100vh - 28px);
    padding: 24px;
  }

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

  .status-label {
    white-space: normal;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .signal-row {
    grid-template-columns: 1fr 1fr;
  }

  .signal-row span {
    min-height: 64px;
    font-size: 0.92rem;
  }
}

@media (max-width: 340px) {
  .signal-row {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: min(100%, 270px);
  }
}



