:root {
  --paper: #f6f8fb;
  --sheet: #ffffff;
  --sheet-soft: #f9f9f9;
  --header: #ebeff2;
  --grid: #d9e1e7;
  --ink: #1f2933;
  --muted: #667085;
  --blue: #3c78b5;
  --navy: #1f4e78;
  --teal: #2f9e9b;
  --mint: #d9ead3;
  --peach: #fce2d2;
  --pink: #f4e0e9;
  --cyan: #daeef2;
  --yellow: #fff6db;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Aptos, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(60, 120, 181, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(60, 120, 181, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

.launcher {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero,
.product-card,
.handoff-map {
  border: 1px solid var(--grid);
  border-radius: 10px;
  background: var(--sheet);
  box-shadow: 0 14px 34px rgba(31, 78, 121, 0.12);
}

.hero {
  padding: 36px;
  border-top: 6px solid var(--blue);
}

.eyebrow,
.product-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.98;
}

.hero p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.product-card {
  display: grid;
  gap: 14px;
  min-height: 340px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
}

.product-card.accounting {
  border-top: 6px solid var(--teal);
  background: linear-gradient(180deg, var(--cyan), var(--sheet));
}

.product-card.work {
  border-top: 6px solid var(--blue);
  background: linear-gradient(180deg, var(--mint), var(--sheet));
}

.product-card h2 {
  color: var(--navy);
  font-size: 34px;
}

.product-card p {
  color: var(--muted);
  font-size: 16px;
}

.product-card strong {
  align-self: end;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 6px;
  color: white;
  background: var(--blue);
}

.handoff-map {
  margin-top: 20px;
  padding: 20px;
  background: var(--sheet-soft);
}

.handoff-map h2 {
  color: var(--navy);
}

.handoff-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.handoff-row span {
  padding: 12px;
  border: 1px solid var(--grid);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 850;
  background: var(--sheet);
}

.handoff-row span:nth-child(1) {
  background: var(--peach);
}

.handoff-row span:nth-child(2) {
  background: var(--mint);
}

.handoff-row span:nth-child(3) {
  background: var(--yellow);
}

.handoff-row span:nth-child(4) {
  background: var(--pink);
}

@media (max-width: 760px) {
  .product-grid,
  .handoff-row {
    grid-template-columns: 1fr;
  }

  .hero,
  .product-card {
    padding: 22px;
  }
}
