:root {
  --bg: #070b10;
  --surface: #101821;
  --surface-2: #151f2b;
  --ink: #f3f7fb;
  --muted: #98a8ba;
  --line: rgba(115, 148, 190, 0.28);
  --accent: #8bb0ff;
  --card: #0d141d;
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(79, 132, 255, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 80px 80px, 80px 80px, auto;
  color: var(--ink);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.page {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 30px 0 64px;
}

.topbar,
.locale-nav,
.eyebrow,
.card-meta,
.footer {
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.topbar a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: clip;
  margin-bottom: 20px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(79, 132, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--surface);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  width: min(100%, 790px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #8fb2ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 17ch;
  font-size: 3.75rem;
}

h2 {
  margin-top: 30px;
  font-size: 2rem;
}

p {
  margin: 0 0 16px;
  color: #dce5ef;
  font-size: 1.05rem;
}

.lead {
  max-width: 68ch;
  color: #cbd7e6;
  font-size: 1.16rem;
}

.locale-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 26px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.locale-nav a {
  color: var(--muted);
  text-decoration: none;
}

.locale-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.product-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.product-strip img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
}

.product-strip strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.08rem;
}

.product-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-strip a {
  white-space: nowrap;
}

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

.card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent),
    var(--card);
  transition: border-color 180ms ease, transform 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 176, 255, 0.58);
}

.card h3 {
  font-size: 1.22rem;
}

.card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.card-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 760px) {
  .page {
    width: min(calc(100% - 20px), var(--max));
  }

  .hero,
  .card {
    padding: 20px 18px;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.55rem;
  }

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

  .product-strip {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .product-strip > a {
    grid-column: 1 / -1;
  }
}
