:root {
  color-scheme: light;
  --bg: #f5f8ff;
  --paper: #ffffff;
  --ink: #0b1220;
  --muted: #516079;
  --line: #dce7f7;
  --blue: #0f4ed8;
  --azure: #0ea5e9;
  --navy: #102b62;
  --soft: #eaf2ff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(14, 165, 233, 0.16), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #edf5ff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

.topbar,
main,
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.brand {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

nav a { text-decoration: none; }
nav a:hover { color: var(--blue); }

.crumbs {
  color: var(--muted);
  gap: 10px;
  padding: 18px 0 0;
}

.hero {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  padding: 48px 0 30px;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 6.6vw, 74px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
  max-width: 920px;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 12px;
}

p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.intro {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.hero-media {
  aspect-ratio: 3 / 2;
  background: #dfefff;
  border: 1px solid rgba(15, 78, 216, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(15, 47, 98, 0.14);
  margin: 0;
  overflow: hidden;
}

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

.band {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0;
}

.band span,
.section,
.note,
.related {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.band span {
  color: var(--navy);
  font-weight: 850;
  min-height: 78px;
  padding: 16px;
}

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

.section,
.note,
.related {
  padding: 24px;
}

.inventory {
  display: grid;
  gap: 16px;
  margin: 18px 0;
}

.inventory > h2,
.inventory > p {
  max-width: 820px;
}

.inventory-group {
  display: grid;
  gap: 14px;
}

.inventory-group ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.inventory-group li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding-top: 12px;
}

.inventory-group strong,
.inventory-group small {
  color: var(--navy);
}

.inventory-group span {
  color: var(--muted);
}

.inventory-group small {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section p + p,
.note p + p {
  margin-top: 12px;
}

.note {
  margin: 18px 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row a,
.related a {
  border: 1px solid rgba(15, 78, 216, 0.2);
  border-radius: 8px;
  color: var(--blue);
  display: inline-flex;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  padding: 10px 12px;
  text-decoration: none;
}

.cta-row a:first-child {
  background: var(--blue);
  color: #ffffff;
}

.related {
  display: grid;
  gap: 14px;
  margin-bottom: 54px;
}

.related div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 28px 0 48px;
}

footer span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

footer a {
  color: var(--navy);
  font-weight: 850;
}

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

  .hero {
    padding-top: 34px;
  }

  .hero-media {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  h1 {
    font-size: 42px;
  }
}
