:root {
  --blue: #1261d8;
  --blue-dark: #0c3f91;
  --blue-soft: #edf4ff;
  --text: #142033;
  --muted: #697589;
  --border: #dfe6ef;
  --white: #ffffff;
  --bg: #f7faff;
  --shadow: 0 24px 70px rgba(20, 55, 105, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 12%, rgba(18, 97, 216, .08), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(18,97,216,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(18,97,216,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.page {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(223,230,239,.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .18em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(18,97,216,.22);
  font-size: 18px;
  letter-spacing: 0;
}

.brand-name { font-size: 18px; }

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2dbf73;
  box-shadow: 0 0 0 4px rgba(45,191,115,.12);
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
  padding: 76px 0 64px;
}

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

.eyebrow, .card-label {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 780;
}

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

.intro {
  max-width: 585px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.countdown {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-card {
  width: 104px;
  padding: 17px 10px 14px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 8px 30px rgba(20,55,105,.045);
}

.time-card strong {
  display: block;
  color: var(--blue-dark);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
}

.time-card small {
  display: block;
  margin-top: 8px;
  color: #8490a2;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.separator {
  color: #aeb8c7;
  font-size: 22px;
  font-weight: 700;
  transform: translateY(-8px);
}

.launch-note {
  margin: 22px 0 0;
  color: #8490a2;
  font-size: 12px;
}

.contact-card {
  padding: 34px;
  border: 1px solid rgba(223,230,239,.95);
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 11px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 19px;
}

.contact-card h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.035em;
}

.card-text {
  margin: 10px 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: #45536a;
  font-size: 11px;
  font-weight: 700;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: none;
  padding: 12px 13px;
  color: var(--text);
  background: #fbfcfe;
  font: inherit;
  font-size: 13px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

input:focus, textarea:focus {
  border-color: rgba(18,97,216,.6);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(18,97,216,.08);
}

textarea {
  resize: vertical;
  min-height: 92px;
}

button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  border-radius: 9px;
  padding: 13px 15px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(18,97,216,.18);
  transition: transform .2s, background .2s, box-shadow .2s;
}

button:hover {
  background: #0e55bf;
  transform: translateY(-1px);
  box-shadow: 0 13px 28px rgba(18,97,216,.24);
}

.arrow { font-size: 19px; line-height: 1; }

.form-message {
  min-height: 18px;
  margin: 0;
  color: #2d8a5b;
  font-size: 12px;
}

.footer {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(223,230,239,.8);
  color: #8994a4;
  font-size: 11px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 0;
  }
  .hero-copy { max-width: 720px; }
  .contact-card { max-width: 650px; }
}

@media (max-width: 600px) {
  .page { width: min(100% - 30px, 1180px); }
  .header { height: 78px; }
  .status { display: none; }
  .hero { padding: 52px 0 45px; }
  h1 { font-size: clamp(43px, 14vw, 61px); }
  .intro { font-size: 15px; line-height: 1.65; }
  .countdown { gap: 5px; }
  .time-card { width: calc((100vw - 52px) / 4); max-width: 94px; padding: 14px 5px 12px; }
  .time-card strong { font-size: 24px; }
  .separator { font-size: 17px; }
  .contact-card { padding: 26px 21px; border-radius: 16px; }
  .footer { padding: 18px 0; min-height: auto; gap: 8px; flex-direction: column; align-items: flex-start; }
}
