:root {
  --bg: #f2f4f8;
  --paper: #ffffff;
  --ink: #182334;
  --muted: #58667d;
  --brand: #0d6d77;
  --brand-deep: #0a4950;
  --line: #d8dfeb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, #d5edf0 0, transparent 30%),
    radial-gradient(circle at 82% 16%, #e8dff8 0, transparent 30%),
    var(--bg);
}

.shell {
  width: calc(100% - 3.5rem);
  margin: 0 auto;
}

.hero-wrap {
  padding: 1.2rem 0 3rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  letter-spacing: 0.2px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2.4rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand-deep);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  max-width: 24ch;
}

.lead {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 74ch;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-metrics {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-metrics li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.85rem;
  min-width: 160px;
}

.metric-value {
  display: block;
  font-weight: 700;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(22, 35, 22, 0.12);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.section {
  padding: 3rem 0;
}

.section-topline p {
  color: var(--muted);
  margin-top: 0.6rem;
  margin-bottom: 1.2rem;
}

.section h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 1rem;
}

.launcher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.launcher-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
}

.launcher-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.launcher-head h3 {
  font-size: 1rem;
}

.pill {
  font-size: 0.74rem;
  color: var(--brand-deep);
  background: #d5ecee;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

.launcher-card p {
  color: var(--muted);
  margin: 0.6rem 0 0.7rem;
}

.launcher-meta {
  display: grid;
  gap: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.matrix-table th,
.matrix-table td {
  text-align: left;
  padding: 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.matrix-table th {
  background: #edf1f8;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.component-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.component-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
}

.component-card h3 {
  margin-bottom: 0.65rem;
}

.component-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.component-card li + li {
  margin-top: 0.35rem;
}

.whitelabel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.step-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
}

.step-index {
  display: inline-flex;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #d5ecee;
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.wl-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
}

.wl-card p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.58rem 1rem;
  font-weight: 600;
}

.btn-solid {
  background: var(--brand);
  color: #fff;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}

.btn-link {
  color: var(--brand-deep);
}

.footer {
  padding: 2.4rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

@media (min-width: 1500px) {
  .shell {
    width: calc(100% - 6rem);
  }
}

@media (max-width: 900px) {
  .shell {
    width: calc(100% - 1.5rem);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-top: 1.6rem;
  }

  .section {
    padding: 2rem 0;
  }
}
