:root {
  --navy: #0e1726;
  --navy-soft: #152033;
  --teal: #12a79f;
  --teal-bright: #14c7bd;
  --blue: #1685ff;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --border: #dce5f0;
  --text: #16233a;
  --muted: #6f7f93;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #0f172a 0%, #152033 42%, var(--bg) 42%, var(--bg) 100%);
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero {
  max-width: 760px;
  padding: 56px 0 44px;
  color: #ffffff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow {
  margin: 28px 0 12px;
  color: var(--teal-bright);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
  line-height: 1.65;
}

.products {
  margin-top: 44px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 30px;
  align-items: center;
  min-height: 250px;
  padding: 32px;
  color: inherit;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(14, 23, 38, 0.14);
}

.product-card img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
}

.product-label {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.product-card p:last-child {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.product-card:hover {
  border-color: rgba(18, 167, 159, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 28px 80px rgba(14, 23, 38, 0.18);
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 28px, 1120px);
    padding-top: 28px;
  }

  .hero {
    padding: 36px 0 28px;
  }

  .product-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .product-card img {
    max-width: 260px;
  }
}
