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

:root {
  --blue: #1457e8;
  --blue-soft: #edf3ff;
  --orange: #ff9f3f;
  --orange-soft: #fff4e8;
  --text: #101828;
  --muted: #667085;
  --line: #e4eaf4;
  --soft: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.07);
}

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

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 87, 232, 0.09), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(255, 159, 63, 0.14), transparent 30%),
    #ffffff;
  overflow-x: hidden;
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 16px 16px 28px;
}

.launch-strip,
.main-card,
.contact {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.launch-strip {
  position: sticky;
  top: 12px;
  z-index: 50;
  border-radius: 28px;
  padding: 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.launch-strip-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.launch-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.launch-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.launch-timer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer-box {
  min-width: 90px;
  padding: 12px 10px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  text-align: center;
}

.timer-box strong {
  display: block;
  color: var(--blue);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.timer-box small {
  display: block;
  margin-top: 5px;
  color: #475467;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strip-progress {
  margin-top: 14px;
}

.strip-progress-info {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
}

.strip-progress-info b {
  color: var(--blue);
}

.progress-track {
  height: 12px;
  padding: 2px;
  border-radius: 999px;
  background: #edf2fb;
  overflow: hidden;
}

.progress-track div {
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #729aff, var(--orange));
  transition: width 0.35s ease;
}

.main-card {
  border-radius: 34px;
  padding: clamp(20px, 4vw, 42px);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.logo-box {
  width: 245px;
  max-width: 64vw;
  padding: 11px 15px;
  border-radius: 22px;
  background: #ffffff;
  border: 2px solid rgba(20, 87, 232, 0.22);
  box-shadow: 0 14px 38px rgba(20, 87, 232, 0.12);
}

.logo-box img {
  display: block;
  width: 100%;
  height: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 159, 63, 0.36);
  color: #984b04;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.hero-copy {
  padding-right: 10px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 14px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--blue-soft);
  border: 1px solid rgba(20, 87, 232, 0.14);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  font-size: clamp(42px, 6.6vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.subtext {
  max-width: 520px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.6;
}

.feature-panel {
  display: grid;
  gap: 12px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.feature-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
}

.feature-icon.blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.feature-icon.orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.feature-copy h3 {
  margin-bottom: 5px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.feature-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact {
  margin-top: 18px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 30px;
}

.contact h2 {
  margin-bottom: 16px;
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  text-decoration: none;
}

.contact-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--blue);
}

.contact-icon.orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  color: var(--text);
  font-size: clamp(15px, 2.2vw, 20px);
  line-height: 1.45;
  font-weight: 650;
  overflow-wrap: anywhere;
}

footer {
  padding: 22px 0 0;
  text-align: center;
  color: #667085;
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

footer p:first-child {
  color: var(--text);
  font-weight: 900;
}

@media (max-width: 900px) {
  .launch-strip-top {
    flex-direction: column;
    align-items: stretch;
  }

  .launch-timer {
    justify-content: center;
  }

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

@media (max-width: 560px) {
  .page {
    padding: 12px;
  }

  .launch-strip {
    top: 8px;
    border-radius: 22px;
    padding: 12px;
  }

  .launch-label {
    justify-content: center;
    font-size: 10px;
    padding: 9px 11px;
    letter-spacing: 0.06em;
  }

  .launch-timer {
    gap: 7px;
  }

  .timer-box {
    min-width: 0;
    flex: 1;
    padding: 12px 6px;
    border-radius: 14px;
  }

  .timer-box strong {
    font-size: 28px;
  }

  .timer-box small {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .strip-progress-info {
    font-size: 12px;
  }

  .main-card {
    padding: 18px 14px;
    border-radius: 26px;
  }

  .header {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 24px;
  }

  .logo-box {
    width: min(238px, 100%);
    border-radius: 19px;
  }

  .badge {
    font-size: 10px;
    padding: 9px 12px;
    letter-spacing: 0.06em;
  }

  .eyebrow {
    font-size: 10px;
    padding: 8px 11px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
    letter-spacing: -0.065em;
  }

  .subtext {
    font-size: 15px;
  }

  .feature-card {
    padding: 15px;
    border-radius: 18px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .feature-copy h3 {
    font-size: 16px;
  }

  .feature-copy p {
    font-size: 13px;
  }

  .contact {
    margin-top: 14px;
    padding: 18px 14px;
    border-radius: 24px;
  }

  .contact-item {
    padding: 15px;
    border-radius: 17px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .contact-item strong {
    font-size: 14.5px;
  }

  footer {
    font-size: 11px;
  }
}
