:root {
  --ink: #0f172a;
  --muted: #475569;
  --surface: #ffffff;
  --line: rgba(15, 23, 42, 0.13);
  --brand: #0f5aa6;
  --brand-dark: #0b4178;
  --accent: #ff8a00;
  --accent-2: #ffd166;
  --shadow: 0 28px 68px rgba(15, 23, 42, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(1100px 620px at 12% 6%, rgba(255, 209, 102, 0.32), transparent 60%),
    radial-gradient(920px 540px at 92% 14%, rgba(56, 189, 248, 0.26), transparent 62%),
    linear-gradient(145deg, #f8fafc 0%, #eff6ff 48%, #fff7ed 100%);
}

.shell {
  width: min(1160px, calc(100% - 28px));
  margin: 18px auto 30px;
  display: grid;
  gap: 14px;
}

.hero {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  padding: 38px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -60px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(15, 90, 166, 0.14), rgba(255, 138, 0, 0.2));
  transform: rotate(-15deg);
  pointer-events: none;
}

h1,
h2,
p {
  margin: 0;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 8px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  margin-bottom: 12px;
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.launch-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
}

a.btn {
  text-decoration: none;
  border-radius: 11px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #1d7ad6);
  box-shadow: 0 14px 28px rgba(15, 90, 166, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(15, 90, 166, 0.34);
}

.preview-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(15, 90, 166, 0.24);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  min-height: 150px;
}

.preview-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  text-align: center;
  padding: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  background: linear-gradient(135deg, #e0f2fe, #ffedd5);
}

.preview-card.preview-error .preview-fallback {
  display: grid;
}

.preview-caption {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(150deg, rgba(248, 250, 252, 0.94), rgba(255, 255, 255, 1));
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 2px;
}

.stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.panel h2 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.panel p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.chip-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #7c2d12;
  background: linear-gradient(145deg, #ffedd5, #fde68a);
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.83rem;
  padding: 10px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

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

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