:root {
  color-scheme: light;
  --brand: #d84315;
  --brand-dark: #a93212;
  --brand-soft: #fbe9e7;
  --ink: #1c1c1e;
  --muted: #68686f;
  --line: #dedee5;
  --surface: #ffffff;
  --surface-2: #f2f2f7;
  --footer: #121315;
  --footer-muted: #a8abb2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--surface-2);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.launch-main {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 72px 24px;
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 67, 21, 0.12), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(216, 67, 21, 0.08), transparent 30%),
    var(--surface-2);
}
.launch-card {
  width: min(760px, 100%);
  text-align: center;
  padding: 54px 42px;
  border: 1px solid rgba(216, 67, 21, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(28, 28, 30, 0.08);
}
.launch-logo {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(216, 67, 21, 0.25);
}
.launch-badge {
  display: table;
  margin: 24px auto 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.launch-card h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.launch-card h1 span { color: var(--brand); }
.launch-card > p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.launch-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.launch-points span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: #3c3c43;
  font-size: 13px;
  font-weight: 650;
}
.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 68px 24px 26px;
}
.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 54px;
}
.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
}
.footer-brand h2 {
  margin: 14px 0 8px;
  font-size: 24px;
  color: #fff;
}
.footer-brand p {
  margin: 0;
  max-width: 310px;
  color: var(--footer-muted);
  font-size: 14px;
  line-height: 1.7;
}
.footer-column h3 {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-column nav { display: grid; gap: 12px; }
.footer-column a {
  width: fit-content;
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  transition: color .2s ease;
}
.footer-column a:hover, .footer-column a:focus-visible { color: #fff; }
.footer-bottom {
  width: min(1180px, 100%);
  margin: 52px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: #7f828a;
  font-size: 12px;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .launch-main { padding: 36px 16px; }
  .launch-card { padding: 38px 20px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer { padding-top: 48px; }
  .footer-bottom { flex-direction: column; }
}
