:root {
  color-scheme: light;
  --brand: #137cde;
  --brand-deep: #0d4f96;
  --brand-soft: #e9f3fd;
  --ink: #0e1a28;
  --ink-2: #2b3a4d;
  --ink-3: #5a6b7e;
  --cream: #f1f5fb;
  --paper: #ffffff;
  --line: #dde4ee;
  --line-strong: #ccd6e4;
  --detour: #1f6f54;
  --detour-deep: #154e3b;
  --detour-soft: #dcefe5;
  --surf: #17231f;
  --surf-accent: #23805b;
  --font-display: "Schibsted Grotesk", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 30%, rgba(197, 224, 250, .7), transparent 31rem),
    var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 28px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-bottom: 1px solid rgba(204, 214, 228, .72);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.wordmark img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.contact {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
  transition: color .18s var(--ease);
}

.contact:hover { color: var(--brand-deep); }

.wordmark:focus-visible,
.contact:focus-visible,
.product-card:focus-visible {
  outline: 3px solid rgba(19, 124, 222, .25);
  outline-offset: 4px;
}

.lab-main {
  position: relative;
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(100px, 13vw, 150px);
}

.eyebrow {
  margin: 0;
  color: var(--brand-deep);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lab-label { margin-bottom: 22px; }

.products {
  display: grid;
  gap: 20px;
}

.product-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 1px 2px rgba(8, 30, 20, .05), 0 6px 22px rgba(14, 26, 40, .06);
  transition:
    transform .18s var(--ease),
    border-color .18s var(--ease),
    box-shadow .18s var(--ease);
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #b5d6f5;
  box-shadow: 0 10px 30px rgba(14, 26, 40, .09), 0 28px 64px rgba(19, 124, 222, .08);
}

.product-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: white;
  background: var(--detour);
  box-shadow: 0 12px 26px rgba(31, 111, 84, .24);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
}

.product-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.product-copy strong {
  font-family: var(--font-display);
  font-size: clamp(27px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -.035em;
}

.product-copy > span:last-child {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.5;
}

.product-meta {
  color: var(--detour-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-arrow {
  color: var(--detour);
  font-size: 30px;
  transition: transform .18s var(--ease);
}

.product-card:hover .product-arrow { transform: translateX(4px); }

.surf-card:hover {
  border-color: #b7d5c7;
  box-shadow: 0 10px 30px rgba(14, 26, 40, .09), 0 28px 64px rgba(35, 128, 91, .08);
}

.surf-card:focus-visible {
  outline-color: rgba(35, 128, 91, .28);
}

.surf-card .product-icon {
  color: #f4f8f5;
  background: var(--surf);
  box-shadow: 0 12px 26px rgba(23, 35, 31, .24);
  font-size: 19px;
  letter-spacing: .08em;
}

.surf-card .product-meta,
.surf-card .product-arrow {
  color: var(--surf-accent);
}

footer {
  padding-top: 30px;
  padding-bottom: 48px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .shell { padding-inline: 20px; }
  .contact { display: none; }
  .lab-main { padding-top: 64px; padding-bottom: 96px; }
  .product-card {
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 20px;
  }
  .product-icon { width: 60px; height: 60px; border-radius: 17px; font-size: 28px; }
  .product-arrow { display: none; }
}
