/* Odd Button Studio — base styles */
:root {
  --blue: #0DD0DD;
  --blue-deep: #0AB5C0;
  --red: #F13F13;
  --ink: #171717;
  --ink-2: #2a2a2c;
  --ink-3: #5a5a60;
  --ink-4: #8a8a92;
  --line: #E5E3DD;
  --line-2: #efeee9;
  --bg: #F7F7F5;
  --bg-2: #FFFFFF;
  --bg-3: #EFEDE6;
  --gray: #D9D9D9;
  --good: #1f8a4c;
  --bad: #c1272d;

  /* PRO / paid-feature surfaces (pricing, Pro areas, plan selectors, store).
     Deep-purple stage with subtle lavender gradients + soft text. Mirrored in
     the Design System as --obs-pro-*. */
  --pro-bg: #221643;
  --pro-glow: rgba(135, 106, 255, .28);
  --pro-surface: rgba(255, 255, 255, .05);
  --pro-surface-glow: rgba(208, 188, 255, .18);
  --pro-border: rgba(208, 188, 255, .35);
  --pro-accent: #D0BCFF;
  --pro-chip: color-mix(in oklab, var(--blue) 62%, #ffffff);
  --pro-text: #ffffff;
  --pro-text-soft: rgba(232, 224, 255, .78);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --font-rounded: "Nunito", ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-text: "Nunito", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --container: 1200px;
  --pad-x: clamp(20px, 4vw, 56px);

  --shadow-1: 0 1px 0 rgba(23,23,23,.04), 0 1px 2px rgba(23,23,23,.04);
  --shadow-2: 0 2px 0 rgba(23,23,23,.06), 0 18px 38px -18px rgba(23,23,23,.18);
  --shadow-3: 0 30px 60px -20px rgba(23,23,23,.30), 0 8px 18px -8px rgba(23,23,23,.16);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-text);
  font-weight: 500;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  /* Belt-and-suspenders horizontal-overflow guard.
     A few sections (marquee track, oversized art) can spill past the viewport
     on narrow widths; without this they'd push the body wider than the screen
     and the sticky nav would scroll horizontally with it, clipping the logo.
     `overflow: clip` is preferred (doesn't break position:sticky inside);
     overflow-x: hidden is the Safari <16 fallback. */
  overflow-x: hidden;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--blue); color: var(--ink); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-rounded);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.04; letter-spacing: -0.025em; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.18; }
p  { margin: 0; text-wrap: pretty; }
.mono { font-family: var(--font-mono); }

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--blue);
}

.heart { color: var(--red); display: inline-block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 2px solid var(--ink);
  transition: transform .12s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  user-select: none;
  box-shadow: 3px 3px 0 var(--ink);
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.btn--primary { background: var(--blue); color: var(--ink); }
.btn--primary:hover { background: var(--blue-deep); color: var(--ink); }
.btn--secondary { background: var(--ink); color: var(--bg); }
/* Hover lays a subtle translucent layer over the ink fill. Pure ink can't darken
   visibly, so the layer lifts it a touch — a perceptible hover state, same idea as
   the ghost's transparent-ink layer (just the other direction on a dark surface). */
.btn--secondary:hover { background: color-mix(in oklab, var(--ink) 88%, #fff); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); }
/* Hover overlays a subtle transparent-ink layer (it must NOT flip to solid ink) —
   same gentle darken idea as the primary's hover. */
.btn--ghost:hover { background: color-mix(in oklab, var(--ink) 8%, transparent); color: var(--ink); }
.btn--lg { padding: 18px 28px; font-size: 17px; box-shadow: 4px 4px 0 var(--ink); }
.btn--lg:hover { box-shadow: 5px 5px 0 var(--ink); }
.btn--sm { padding: 9px 14px; font-size: 13px; box-shadow: 2px 2px 0 var(--ink); }
.btn--sm:hover { box-shadow: 3px 3px 0 var(--ink); }
.btn--bare { border: 0; box-shadow: none; padding: 10px 14px; }
.btn--bare:hover { transform: none; box-shadow: none; background: var(--bg-3); }
/* "Add to Figma" on dark surfaces — white pill with a cyan stamp so it stays
   visible where an ink button would vanish. Higher specificity (.btn.btn--…)
   beats the ink/lg box-shadow. */
.btn.btn--figma-dark { background: var(--bg-2); color: var(--ink); border-color: var(--bg-2); box-shadow: 3px 3px 0 var(--blue); }
.btn.btn--figma-dark:hover  { background: var(--bg-3); box-shadow: 4px 4px 0 var(--blue); }
.btn.btn--figma-dark:active { box-shadow: 1px 1px 0 var(--blue); }
/* Secondary (black) buttons lift in Odd Blue, not black — a visible 3D stamp on
   the dark fill. Higher specificity (.btn.btn--secondary…) beats base/size. */
.btn.btn--secondary { box-shadow: 3px 3px 0 var(--blue); }
.btn.btn--secondary:hover  { box-shadow: 4px 4px 0 var(--blue); }
.btn.btn--secondary:active { box-shadow: 1px 1px 0 var(--blue); }
.btn.btn--secondary.btn--lg { box-shadow: 4px 4px 0 var(--blue); }
.btn.btn--secondary.btn--lg:hover { box-shadow: 5px 5px 0 var(--blue); }
.btn.btn--secondary.btn--sm { box-shadow: 2px 2px 0 var(--blue); }
.btn.btn--secondary.btn--sm:hover { box-shadow: 3px 3px 0 var(--blue); }

/* ── Buttons on dark surfaces (.card--ink, dark CTAs, cookie banner) ──
   Add .btn--on-dark next to the style class. Primary keeps its blue fill but
   border + elevation turn white; secondary inverts to a white pill with ink text
   and keeps its Odd Blue elevation; ghost gets a white border + white elevation
   (mirrors primary on dark). */
.btn--primary.btn--on-dark { border-color: #fff; }
.btn.btn--primary.btn--on-dark        { box-shadow: 3px 3px 0 #fff; }
.btn.btn--primary.btn--on-dark:hover  { box-shadow: 4px 4px 0 #fff; }
.btn.btn--primary.btn--on-dark.btn--lg       { box-shadow: 4px 4px 0 #fff; }
.btn.btn--primary.btn--on-dark.btn--lg:hover { box-shadow: 5px 5px 0 #fff; }

.btn--secondary.btn--on-dark        { background: #fff; color: var(--ink); border-color: #fff; }
/* White pill darkens on hover (to a warm light gray) — analogous to how primary
   and ghost darken; the Odd-Blue stamp stays. The border is NOT touched: it stays
   full white, sitting on top of the hover layer. */
.btn--secondary.btn--on-dark:hover  { background: var(--bg-3); color: var(--ink); }
.btn.btn--secondary.btn--on-dark        { box-shadow: 3px 3px 0 var(--blue); }
.btn.btn--secondary.btn--on-dark:hover  { box-shadow: 4px 4px 0 var(--blue); }
.btn.btn--secondary.btn--on-dark.btn--lg       { box-shadow: 4px 4px 0 var(--blue); }
.btn.btn--secondary.btn--on-dark.btn--lg:hover { box-shadow: 5px 5px 0 var(--blue); }

.btn--ghost.btn--on-dark        { background: transparent; color: #fff; border-color: #fff; }
.btn--ghost.btn--on-dark:hover  { background: color-mix(in oklab, #fff 14%, transparent); color: #fff; }
.btn.btn--ghost.btn--on-dark        { box-shadow: 3px 3px 0 #fff; }
.btn.btn--ghost.btn--on-dark:hover  { box-shadow: 4px 4px 0 #fff; }
.btn.btn--ghost.btn--on-dark.btn--lg       { box-shadow: 4px 4px 0 #fff; }
.btn.btn--ghost.btn--on-dark.btn--lg:hover { box-shadow: 5px 5px 0 #fff; }

.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Per-app upvote pill (Apps ranking) */
.upvote {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--bg-2);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
}
.upvote:hover { transform: translateY(-1px); box-shadow: 2px 2px 0 var(--ink); }
.upvote:active { transform: translateY(0); box-shadow: none; }
.upvote svg { transition: transform .15s ease; }
.upvote:hover svg { transform: translateY(-1px); }
.upvote.is-voted { background: var(--blue); color: var(--ink); cursor: default; }
.upvote.is-voted:hover { transform: none; box-shadow: none; }
.upvote.is-voted:hover svg { transform: none; }

/* Build-progress bar (Trello-synced, obs/progress.json) — on SOON product cards.
   Shows how much of the Prio→Release scope is done, by card count. */
.prog { margin-top: 6px; display: flex; flex-direction: column; gap: 6px; }
.prog__track { height: 7px; border-radius: 999px; background: var(--bg-3); border: 1px solid var(--line); overflow: hidden; }
.prog__fill { height: 100%; border-radius: 999px; background: var(--blue); transition: width .6s cubic-bezier(.2,.7,.2,1); }
.prog__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }
.prog__label b { color: var(--ink); font-weight: 800; }

/* Kbd */
.kbd {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--bg-2);
  color: var(--ink-2);
  border: 1.5px solid var(--ink);
  border-bottom-width: 3px;
  border-radius: 6px;
  padding: 2px 7px;
  line-height: 1.3;
  font-weight: 700;
}

/* Pixel-edge decoration (the brand signature) */
.pixedge {
  position: relative;
  display: inline-block;
}
.pixedge::before, .pixedge::after {
  content: "";
  position: absolute;
  background:
    linear-gradient(var(--blue), var(--blue)) 0 0/8px 8px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 16px 0/8px 8px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 8px 8px/8px 8px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 24px 8px/8px 8px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 0 16px/8px 8px no-repeat;
  width: 32px; height: 24px;
}
.pixedge::before { left: -10px; bottom: -8px; }
.pixedge::after { right: -10px; top: -8px; transform: rotate(180deg); }

/* Cards */
.card {
  background: var(--bg-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 32px);
}
.card--flat { box-shadow: none; }
.card--lift { box-shadow: 4px 4px 0 var(--ink); transition: transform .2s ease, box-shadow .2s ease; }
.card--lift:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.card--blue { background: color-mix(in oklab, var(--blue) 14%, var(--bg-2)); }
.card--ink { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.card--ink h2, .card--ink h3 { color: var(--bg); }

/* Layout helpers */
.row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.col { display: flex; flex-direction: column; gap: 12px; }
.spacer { flex: 1; }

/* Header */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Blur is on ::before, NOT on .nav: a backdrop-filter (like transform/filter)
     turns its element into the containing block for position:fixed descendants.
     The mobile menu (.mobile-panel, position:fixed, inset:76px 0 0 0) lives
     inside .nav — with the filter here it resolved against the 74px-tall nav,
     collapsing the panel and pushing its bottom CTA row up over the header.
     Keeping the filter on a backing pseudo-element preserves the frosted look
     while the panel stays viewport-relative (full height). */
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  pointer-events: none;
}
.nav.is-scrolled { border-bottom-color: var(--ink); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 88px;
  min-width: 0;
}
.nav__inner > * { min-width: 0; }
.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo--wide svg { height: 42px !important; width: auto !important; }
.nav__logo--stacked svg { height: 64px !important; width: auto !important; }
@media (max-width: 820px) {
  .nav__logo--wide svg { height: 36px !important; }
  .nav__logo--stacked svg { height: 52px !important; }
}
@media (max-width: 520px) {
  .nav__logo--wide svg { height: 30px !important; }
  .nav__logo--stacked svg { height: 44px !important; }
}
.nav__links {
  display: flex;
  gap: 4px;
  margin-left: 12px;
}
.nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  font-weight: 700;
  font-size: 14.5px;
  font-family: var(--font-rounded);
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover { background: var(--bg-3); color: var(--ink); }
.nav__link.is-active { color: var(--ink); background: var(--bg-3); }
.nav__link.is-active::after {
  content: "";
  display: block;
  width: 6px; height: 6px;
  background: var(--blue);
  margin: 4px auto -8px;
}
.nav__cta { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
/* Circular icon button — same look + mouse effects as .btn--ghost ("Say hi"):
   transparent, fills ink on hover, pixel-offset shadow that shifts on press. */
.menu-btn {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 50%;
  align-items: center; justify-content: center;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  /* Match the DS small-button stamp (.btn--sm: 2px → hover 3px → active 1px) so the
     hamburger and the "Press DO." CTA beside it share one elevation. DS is master. */
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .12s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.menu-btn:hover { transform: translate(-1px, -1px); background: var(--ink); color: var(--bg); box-shadow: 3px 3px 0 var(--ink); }
.menu-btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 var(--ink); }
.mobile-panel {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 49;
  transform: translateY(-100%);
  /* visibility flips to hidden only AFTER the slide-up finishes, so the panel
     still animates out but is fully non-rendering once closed. */
  transition: transform .3s ease, visibility 0s linear .3s;
  padding: 24px var(--pad-x);
  flex-direction: column; gap: 6px;
  overflow: auto;
  display: none;
  visibility: hidden;
  border-top: 2px solid var(--ink);
}
.mobile-panel.is-open { transform: translateY(0); visibility: visible; transition: transform .3s ease, visibility 0s; }
.mobile-panel a {
  padding: 16px 12px;
  border-radius: 12px;
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 22px;
}
.mobile-panel a:hover, .mobile-panel a.is-active { background: var(--bg-3); }
.mobile-panel .row { margin-top: auto; padding-top: 24px; border-top: 2px solid var(--ink); }
@media (max-width: 820px) {
  .nav__links { display: none; }
  .menu-btn { display: inline-flex; }
  /* display:flex enables the slide transition; visibility stays driven by
     .is-open (see base rule) so the closed panel's bottom CTA row can't peek
     back over the header. */
  .mobile-panel { display: flex; }

  /* Wide lockup shrinks: one single SVG resizes via height-only rule above */
  .nav__inner {
    height: auto;
    min-height: 72px;
    padding: 10px var(--pad-x);
    /* No overflow:hidden — design-system header lets the mark breathe;
       elements must never get clipped by the bar. */
    overflow: visible;
  }
  .nav .container.nav__inner { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .nav__logo--wide { flex: 0 1 auto; min-width: 0; max-width: 65vw; }
  .nav__logo--stacked { flex: 0 1 auto; min-width: 0; max-width: 60vw; }

  /* Push spacer & CTA together — the spacer was eating layout width
     between the (hidden) nav__links and the CTA on mobile. */
  .nav__inner > .spacer { flex: 1 1 0; min-width: 0; }
  .nav__cta { gap: 6px; }
  .nav__cta .btn { padding: 9px 14px; font-size: 13px; box-shadow: 2px 2px 0 var(--ink); }
  /* Keep the hover/active LIFT on mobile too — the rule above (higher
     specificity than .btn:hover) otherwise pins the shadow so the button only
     shifts up without the stamp growing. */
  .nav__cta .btn:hover  { box-shadow: 3px 3px 0 var(--ink); }
  .nav__cta .btn:active { box-shadow: 1px 1px 0 var(--ink); }
}
@media (max-width: 520px) {
  .nav__inner {
    gap: 8px;
    min-height: 64px;
    padding-left: 16px; padding-right: 16px;
  }
  .mobile-panel { inset: 64px 0 0 0; }
  .nav__cta .btn { padding: 8px 12px; font-size: 12.5px; }
  .menu-btn { width: 38px; height: 38px; }
}
@media (max-width: 380px) {
  /* On very narrow screens hide the CTA text — only mascot + wordmark + menu remain */
  .nav__cta .btn { display: none; }
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 72px 0 36px;
  margin-top: clamp(40px, 6vw, 80px);
}
.footer h4 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-rounded);
}
.footer a:hover { color: var(--blue); }
.footer__lockup {
  display: block;
  flex-shrink: 0;
  color: var(--bg) !important;
}
.footer__lockup svg {
  height: 42px !important;
  width: auto !important;
}
.footer__lockup strong {
  font-family: var(--font-rounded);
  font-weight: 900;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--bg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(2, 1fr);
  gap: 48px;
}
.footer__bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer__bottom .mono { font-size: 12px; }
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Hero */
.hero { padding: clamp(48px, 7vw, 100px) 0 clamp(60px, 8vw, 110px); position: relative; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero h1 { margin-top: 22px; }
.hero h1 .accent { color: var(--blue); }
.hero p.lede {
  margin-top: 26px;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink-3);
  max-width: 46ch;
  font-weight: 600;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero .demo-note {
  margin-top: 22px;
  color: var(--ink-3);
  font-size: 13.5px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
}
.hero .demo-note .dot { width: 8px; height: 8px; background: var(--good); border-radius: 50%; box-shadow: 0 0 0 4px color-mix(in oklab, var(--good) 18%, transparent); }
@media (max-width: 920px) { .hero__inner { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .hero .cta-row .btn { flex: 1 1 auto; justify-content: center; } }

/* Mascot stage */
.mascot-stage {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 420px;
  margin-right: auto;
  margin-left: 0;
}
.mascot-stage--sm { max-width: 220px; }

/* Easter-egg speech pops — appended to .mascot-stage when the "catch me" game
   is active (Mascot fires these on each flee). Ported from the Soon page. */
.obs-egg-pop {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mascot-body, #FDFCF8);
  background: var(--mascot-stroke, var(--ink));
  border: 2px solid var(--mascot-stroke, var(--ink));
  border-radius: 999px;
  padding: 7px 14px;
  white-space: nowrap;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.3) rotate(var(--rot, -4deg));
  animation: obs-egg-pop 950ms cubic-bezier(.22, 1, .36, 1) forwards;
}
.obs-egg-pop--blue { background: var(--mascot-aura, var(--blue)); color: var(--mascot-stroke, var(--ink)); }
.obs-egg-pop--red  { background: var(--red); color: var(--mascot-body, #FDFCF8); }
@keyframes obs-egg-pop {
  0%   { opacity: 0; transform: translate(-50%, -50%)  scale(0.3)  rotate(var(--rot)); }
  16%  { opacity: 1; transform: translate(-50%, -95%)  scale(1.12) rotate(var(--rot)); }
  32%  {             transform: translate(-50%, -120%) scale(0.98) rotate(var(--rot)); }
  70%  { opacity: 1; transform: translate(-50%, -160%) scale(1)    rotate(var(--rot)); }
  100% { opacity: 0; transform: translate(-50%, -230%) scale(0.92) rotate(var(--rot)); }
}
@media (prefers-reduced-motion: reduce) { .obs-egg-pop { animation-duration: 1ms; opacity: 0; } }

/* ── Mascot "headbang" — F13 nods to the beat, endlessly ──────────────────────
   NO rotation: the keycap stays upright and rides a semicircle ARCH (∩) — low at
   each side, arcing up-and-over a high centre. One keyframe pass = left → over the
   top → right; `alternate` swings it back, so it eases at BOTH turning points and
   stays perfectly symmetric. Smooth ease-in-out (no bounce → no jitter). The Odd-
   Blue aura/shadow stays on the ground and shrinks a touch at the top peak (keycap
   up/away), full size again at the sides. ~1500 ms per swing.
   Idle only — the component drops the class on hover/press/egg, so the inline
   press/hover transforms take back over. */
.mascot-headbang {
  animation: mascot-headbang 500ms ease-in-out infinite alternate both;
}
.mascot-headbang__aura {
  animation: mascot-headbang-aura 500ms ease-in-out infinite alternate both;
}
/* Top-half semicircle (∩), left → over the top → right. Sampled at 22.5° steps,
   A = 6% (horizontal half-swing AND centre lift). x = A·cos, y = -A·sin. */
@keyframes mascot-headbang {
  0%    { transform: translate(-6%, 0); }
  12.5% { transform: translate(-5.54%, -2.3%); }
  25%   { transform: translate(-4.24%, -4.24%); }
  37.5% { transform: translate(-2.3%, -5.54%); }
  50%   { transform: translate(0, -6%); }
  62.5% { transform: translate(2.3%, -5.54%); }
  75%   { transform: translate(4.24%, -4.24%); }
  87.5% { transform: translate(5.54%, -2.3%); }
  100%  { transform: translate(6%, 0); }
}
@keyframes mascot-headbang-aura {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(0) scale(0.9); }
}
@media (prefers-reduced-motion: reduce) {
  .mascot-headbang, .mascot-headbang__aura { animation: none; }
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  position: relative;
  background: var(--bg-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s cubic-bezier(.2,.7,.2,1);
  overflow: hidden;
  cursor: pointer;
}
.product-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink); }
.product-card:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); transition-duration: .06s; }
/* Top-right cluster: upvote pill sits right next to the LIVE/SOON badge. */
.product-card .card-top {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card .card-top .upvote { flex: 0 0 auto; } /* width follows the number (99 > 9), never squished */
.product-card .status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--ink-4);
  background: var(--bg-2);
  color: var(--ink-3);
  font-weight: 700;
  white-space: nowrap;
}
.product-card .status.--live { background: var(--blue); color: var(--ink); border-color: var(--ink); }
.product-card .status.--soon { background: var(--bg-2); color: var(--ink-3); border-color: var(--ink-4); }
.product-card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--bg-3);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  transition: transform .22s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .icon { transform: rotate(-4deg) scale(1.04); }
.product-card .icon { overflow: hidden; } /* clip full-bleed logo images (e.g. Odd Button) to the tile radius */
.product-card .icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card h3 { font-size: 22px; line-height: 1.05; letter-spacing: -0.02em; }
.product-card p { color: var(--ink-3); font-size: 13.5px; font-weight: 600; line-height: 1.5; margin-top: 6px; }
.product-card .footer-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1.5px solid var(--bg-3);
}
.product-card .tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 600;
}
.product-card .cta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color .15s ease, gap .15s ease;
}
.product-card:hover .cta { color: var(--ink); gap: 10px; }
.product-card .cta svg { transition: transform .15s ease; }
.product-card:hover .cta svg { transform: translateX(3px); }
@media (max-width: 920px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .product-card, .product-card *, .product-card:hover, .product-card:hover * {
    transition: none !important; transform: none !important;
  }
}

/* Values grid */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.value {
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 22px;
  background: var(--bg-2);
}
.value h4 {
  font-family: var(--font-rounded);
  font-weight: 800;
  font-size: 17px;
  margin: 14px 0 6px;
  letter-spacing: -0.01em;
}
.value p { font-size: 13.5px; color: var(--ink-3); font-weight: 600; }
.value .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.12em;
}
@media (max-width: 900px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values { grid-template-columns: 1fr; } }

/* Marquee (keywords) */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 22px 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.marquee__track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__group {
  display: flex;
  gap: 36px;
  padding-right: 36px; /* trailing gap so spacing across the wrap is uniform */
  flex-shrink: 0;
  font-family: var(--font-rounded);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.02em;
}
.marquee__track .dot {
  color: var(--blue);
  display: inline-block;
  /* springy "back" easing → the blue dots bounce when the cursor passes over them.
     inline-block keeps the default 50%/50% transform-origin, so the pop grows
     from the dot's own centre (no upward drift) — per card feedback. */
  transition: transform .34s cubic-bezier(.34, 1.56, .64, 1);
}
.marquee__track .dot:hover { transform: scale(1.25); }
@media (prefers-reduced-motion: reduce) {
  .marquee__track .dot { transition: none; }
  .marquee__track .dot:hover { transform: none; }
}
/* Three identical groups => one group is exactly 1/3 of the track, so -33.333% wraps seamlessly */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* About section */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about p { font-size: 17px; color: var(--ink-2); margin-top: 16px; font-weight: 500; line-height: 1.65; }
.about p + p { margin-top: 14px; }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }

/* Pixel art decorations */
.pixblock {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--blue);
}

/* Newsletter / Final CTA */
.final-cta {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 84px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
}
.final-cta h2 { color: var(--bg); font-size: clamp(36px, 5vw, 64px); }
.final-cta p { color: rgba(255,255,255,.7); margin-top: 16px; max-width: 42ch; font-weight: 600; }
.final-cta .row { margin-top: 32px; }
.final-cta__deco {
  position: absolute;
  right: -40px; top: -40px;
  width: 240px; height: 240px;
  pointer-events: none;
}
@media (max-width: 760px) { .final-cta { grid-template-columns: 1fr; padding: 36px 24px; } }

/* Page hero (subpages) */
.page-hero { padding: clamp(48px, 6vw, 100px) 0 clamp(24px, 4vw, 48px); }
.page-hero h1 { font-size: clamp(40px, 6vw, 76px); }
.page-hero p {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-3);
  margin-top: 18px;
  max-width: 56ch;
  font-weight: 600;
}

/* Forms */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px;
  font-family: var(--font-rounded);
  font-weight: 800;
  color: var(--ink-2);
}
.field input, .field textarea, .field select {
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--bg-2);
  font-size: 15px;
  outline: none;
  font-weight: 600;
  transition: box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  box-shadow: 3px 3px 0 var(--blue);
}
.field textarea { resize: vertical; min-height: 140px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 44px; /* room so the chevron never sticks to the edge */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23171717' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field .err { color: var(--bad); font-size: 12.5px; font-family: var(--font-mono); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); }
.checkbox input { width: 18px; height: 18px; accent-color: var(--blue); margin-top: 2px; }

/* Legal pages */
/* Legal tab pills: long labels (e.g. "Nutzungsbedingungen") may wrap + hyphenate
   by screen width instead of overflowing on mobile (.btn is white-space:nowrap). */
.legal-tabs .btn {
  white-space: normal;
  hyphens: auto;
  overflow-wrap: break-word;
  text-align: center;
}

.legal {
  /* Reading column, LEFT-aligned within the .container wrapper so it lines up
     with the page-hero (eyebrow/headline). The wrapping .container supplies the
     horizontal --pad-x gutter (incl. mobile), so no left/right padding here. */
  max-width: 760px;
  margin: 0;
  padding: clamp(40px, 5vw, 64px) 0 clamp(60px, 8vw, 100px);
}
.legal h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-top: 48px;
  margin-bottom: 14px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}
.legal h2:first-of-type { margin-top: 24px; border-top: 0; padding-top: 0; }
/* Part divider (e.g. "Part 2 · Apps") — eyebrow-style label with a strong rule. */
.legal-part {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 56px 0 0;
  padding-top: 24px;
  border-top: 3px solid var(--ink);
}
.legal-part + h2 { margin-top: 18px; border-top: 0; padding-top: 0; }
/* Deep-link targets (e.g. /privacy#neqstline) clear the sticky nav when scrolled to. */
.legal [id] { scroll-margin-top: 92px; }
.legal h3 { font-size: 18px; margin-top: 24px; margin-bottom: 8px; }
.legal p, .legal li { font-size: 15.5px; color: var(--ink-2); line-height: 1.65; font-weight: 500; }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 18px; margin: 8px 0; }
.legal li + li { margin-top: 6px; }
.legal strong { font-weight: 800; color: var(--ink); }
.legal a { color: var(--ink); border-bottom: 2px solid var(--blue); }
.legal a:hover { background: var(--blue); }
.legal .updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 60;
  max-width: 760px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 4px 4px 0 var(--blue);
  flex-wrap: wrap;
}
.cookie-banner span { font-size: 13.5px; flex: 1; min-width: 220px; font-weight: 600; }
.cookie-banner .btn { box-shadow: none; }
.cookie-banner .btn--primary { border-color: var(--blue); }

/* Utility */
.divider { height: 2px; background: var(--ink); width: 100%; }
.muted { color: var(--ink-3); }
.caps {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11.5px;
  color: var(--ink-4);
}
.center { text-align: center; }

/* Section header */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: clamp(28px, 4vw, 48px); flex-wrap: wrap; }
.section-head .lead { max-width: 44ch; color: var(--ink-3); font-size: 17px; font-weight: 600; margin-top: 14px; }
.section-head h2 { max-width: 18ch; }

/* ─── Heart sparkle ─────────────────────────────────────────────────────
   Single white pixel that wanders the heart on a 10 s cycle:
   2 s fade in · 2 s hold · 2 s fade out · 4 s blank. Position is updated
   by JS (React: <HeartSparkle/>; design system: .js-heart-highlight x/y
   attributes) on every cycle boundary. The animation just handles opacity. */
@keyframes obs-heart-sparkle {
  0%   { opacity: 0; }
  20%  { opacity: 0.6; }
  40%  { opacity: 0.6; }
  60%  { opacity: 0; }
  100% { opacity: 0; }
}
.obs-heart-sparkle,
.js-heart-highlight {
  opacity: 0;
  animation: obs-heart-sparkle 10s linear infinite;
}

/* ─── Heart pulse + per-pixel flash wave + like counter ─────────────────
   Triggered on every click of a mascot that opts into the shared counter
   (the giant home-page mascot). Mirrors the Soon page + Design System so
   all three surfaces feel identical. */
.js-heart {
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes obs-heart-pulse {
  0%, 100% { transform: scale(1); }
  40%      { transform: scale(1.07); }
}
.js-heart.is-pulsing { animation: obs-heart-pulse 360ms ease-out; }

/* Per-pixel wave — each red pixel briefly lifts to a softer coral, staggered
   along a diagonal (x+y) sweep. Subtle — never goes all the way to white. */
@keyframes obs-heart-flash {
  0%, 100% { fill: #F13F13; }
  35%      { fill: #F89074; }
}

.js-heart-count {
  font-family: var(--font-mono);
  font-weight: 500;
  fill: var(--ink-4);
  font-variant-numeric: tabular-nums;
  transform-box: fill-box;
  transform-origin: center;
  user-select: none;
  pointer-events: none;
}
@keyframes obs-count-slide-in {
  0%   { transform: translateY(-9px); opacity: 0; }
  55%  { opacity: 1; }
  100% { transform: translateY(0);    opacity: 1; }
}
.js-heart-count.is-bumping { animation: obs-count-slide-in 280ms cubic-bezier(.22, 1, .36, 1); }

/* ─── Interactive mascot focus ──────────────────────────────────────────
   The giant mascot is focusable (tabindex/role=button) for keyboard users.
   Hide the default browser outline — :focus-visible draws a soft Cyan ring
   only when the user reached the mascot via keyboard, not on mouse click. */
.obs-mascot-interactive { outline: none; }
.obs-mascot-interactive:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
  border-radius: 24px;
}

/* ─── F13 emotion — blinking decorative dashes ──────────────────────────
   When the mascot lands on the "f13" emotion it shows the literal F13
   keycap label plus seven gray dashes that sparkle around it. Each dash
   gets its own animation-delay so they blink out of sync. */
@keyframes obs-f13-blink {
  0%, 60%, 100% { opacity: 1; }
  20%, 40%      { opacity: 0.15; }
}
.obs-f13-dash {
  animation: obs-f13-blink 1.2s ease-in-out infinite;
  transform-box: fill-box;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Scrollbar tone */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 999px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-4); }

/* =========================
   Segmented Control (.segmented) — generic segmented switch, 2–3 options.
   One component for the DE/EN language toggle (nav + mobile menu) AND the Apps
   sort switcher. Tactile pixel-shadow pill: lifts on hover, presses on click.
   The active segment is simply ink-filled.
   ========================= */
.segmented {
  display: inline-flex;
  border: 2px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 2px 2px 0 var(--ink);
  flex-shrink: 0;
  transition: transform .12s ease, box-shadow .2s ease;
}
.segmented:hover  { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }
.segmented:active { transform: translate(1px, 1px);   box-shadow: 1px 1px 0 var(--ink); }
.segmented__btn {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 7px 13px;
  border: 0;
  background: transparent;
  color: var(--ink-3, #555);
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.segmented__btn + .segmented__btn { border-left: 2px solid var(--ink); }
/* Round the end segments to match the pill so the active segment's inner highlight
   follows the curve (the buttons themselves are otherwise square, only the container
   is rounded via overflow). */
.segmented__btn:first-child { border-top-left-radius: 999px; border-bottom-left-radius: 999px; }
.segmented__btn:last-child  { border-top-right-radius: 999px; border-bottom-right-radius: 999px; }
/* Inactive segment: subtle fill on hover (keeps the active choice legible). */
.segmented__btn:not(.is-active):hover { background: var(--bg-3); color: var(--ink); }
/* Active: ink-filled; the label sits 1px lower (padding top +1 / bottom −1) for a
   subtle pressed feel — same segment height as inactive. A crisp white inner
   highlight (15%, blur 0, x:-2 y:-2) gives the fill a hint of bevel. */
.segmented__btn.is-active {
  background: var(--ink);
  color: var(--bg-2);
  padding-top: 8px;
  padding-bottom: 6px;
  box-shadow: inset -2px -2px 0 rgba(255, 255, 255, 0.15);
}
.segmented__btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .segmented { transition: box-shadow .2s ease; }
  .segmented:hover { transform: none; }
}
/* Desktop nav hides the language toggle on mobile (mobile menu carries its own). */
@media (max-width: 820px) {
  .nav__cta .segmented { display: none; }
}

/* =========================
   Apps shelf toolbar — hosts the sort .segmented control, right-aligned.
   ========================= */
.shelf-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 22px;
}
.shelf-toolbar__label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
@media (max-width: 480px) {
  .shelf-toolbar { justify-content: space-between; }
  .shelf-toolbar .segmented__btn { padding: 7px 10px; }
  .shelf-toolbar .segmented__btn.is-active { padding: 8px 10px 6px; }
}

/* =========================
   Footer social links
   ========================= */
.footer__social { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
/* `.footer__social a` (class+type) matches `.footer a` specificity and comes later,
   so it wins — overriding the block display + padding that pushed icons to the corner. */
.footer__social a {
  display: grid;
  place-items: center;     /* bulletproof centering of the glyph in the circle */
  width: 40px;
  height: 40px;
  padding: 0;              /* reset the .footer a vertical padding */
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.82);
  /* springy "back" easing → the circle bounces on hover (settles with a little overshoot) */
  transition: color .15s ease, border-color .15s ease, background .15s ease,
              transform .34s cubic-bezier(.34, 1.56, .64, 1);
}
.footer__social a svg { width: 19px; height: 19px; display: block; } /* uniform optical size for all four */
.footer__social a:hover {
  color: var(--ink);
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-5px) scale(1.06);
}
.footer__social a:active { transform: translateY(-1px) scale(.98); }
.footer__social a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .footer__social a { transition: color .15s ease, border-color .15s ease, background .15s ease; }
  .footer__social a:hover { transform: none; }
}

/* Product detail 50/50 teaser → stack on mobile (the inline grid is 1fr 1fr,
   so the override needs !important). Visual goes on top of the text. */
@media (max-width: 760px) {
  .product-detail {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .product-detail .pd-visual { order: -1; }
}

/* Small release label next to a product name on the home teasers (e.g. "Neqstline R8") */
.product-card h3 .product-rel {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-4);
  margin-left: 8px;
  vertical-align: middle;
  white-space: nowrap;
}
