/*
  hoogbench.eu — one stylesheet for all three pages.

  No build step, no fonts, no scripts, nothing third-party. The site was three
  self-contained files until it became three pages that needed the same header
  and footer; one shared sheet is the smaller evil against copying two hundred
  lines into each and watching them drift.

  The house style follows kesit.eu deliberately. A developer with several small
  Mac apps is better served by one recognisable format than by three unrelated
  ones.
*/

:root {
  --bg: #0b0e13;
  --bg-alt: #10141b;
  --panel: #161a21;
  --text: #e9ecf1;
  --muted: #98a1b0;
  --rule: #222833;
  --accent: #2f9cf2;
  --accent-strong: #1785e0;
  --good: #3fb950;
  --single: #3aa0ff;
  --multi: #7b6cf0;
  --gpu: #ff9838;
  --track: #2b3038;
}

/* The app is light-or-dark; the site commits to dark, because every screenshot
   and every ring on it was designed against a dark background. */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

/* ── Header ─────────────────────────────────────────────────────────── */

header.site {
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: rgba(11, 14, 19, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  z-index: 10;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 600; font-size: 1.15rem; }
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 34px; height: 34px;
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 9px;
  display: grid; place-items: center;
  flex: none;
}
nav.site { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
nav.site a { color: var(--muted); padding: 8px 12px; border-radius: 8px; font-size: 0.97rem; }
nav.site a:hover { color: var(--text); text-decoration: none; }
nav.site a[aria-current="page"] { color: var(--text); }

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.97rem;
}
.cta:hover { background: var(--accent-strong); text-decoration: none; }
.cta.pending { background: var(--panel); color: var(--muted); border: 1px solid var(--rule); font-weight: 500; cursor: default; }
.cta.pending:hover { background: var(--panel); }
.cta.big { font-size: 1.08rem; padding: 15px 30px; }

/* ── Hero ───────────────────────────────────────────────────────────── */

.hero { padding: 72px 0 88px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); flex: none; }

h1.big {
  font-size: clamp(2.6rem, 6.4vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0 0 26px;
  font-weight: 700;
}
h1.big .l2 { color: var(--single); }
h1.big .l3 { color: var(--gpu); }

.lede { font-size: 1.12rem; color: var(--muted); margin: 0 0 32px; max-width: 46ch; }

.price { margin: 18px 0 0; font-weight: 600; }
.price span { display: block; font-weight: 400; color: var(--muted); font-size: 0.95rem; }

.tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 26px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(63, 185, 80, 0.35);
  background: rgba(63, 185, 80, 0.09);
  color: var(--good);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.9rem;
}
.fine { color: var(--muted); font-size: 0.93rem; margin: 0 0 6px; }
.fine.langs { font-size: 0.88rem; }

.shot { margin: 0; }
.shot img {
  width: 100%; height: auto; display: block;
  border-radius: 14px;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}
.shot figcaption { color: var(--muted); font-size: 0.88rem; margin-top: 16px; text-align: center; }

/* ── Sections ───────────────────────────────────────────────────────── */

section.band { border-top: 1px solid var(--rule); background: var(--bg-alt); }
section.band.plain { background: transparent; }
section.band > .wrap { padding-top: 84px; padding-bottom: 84px; }

.eyebrow {
  color: var(--good);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
h2.big {
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.028em;
  margin: 0 0 30px;
  font-weight: 700;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: 20px; } }
.two-col p { margin: 0 0 16px; color: var(--muted); }
.two-col p:last-child { margin-bottom: 0; }

h3 { font-size: 1.12rem; margin: 34px 0 8px; }
p { margin: 0 0 16px; }

.rings { display: flex; justify-content: center; gap: clamp(10px, 3vw, 26px); flex-wrap: wrap; margin: 8px 0 12px; }
.ring {
  background: var(--panel); border: 1px solid var(--rule);
  border-radius: 16px; padding: 18px clamp(10px, 3vw, 24px); min-width: 148px;
}
.ring svg { display: block; margin: 0 auto; }
.ring .value { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; }
.ring .label { font-size: 0.76rem; fill: currentColor; opacity: 0.6; }

ul.checks { list-style: none; padding: 0; margin: 0; }
ul.checks li { padding: 12px 0 12px 30px; border-bottom: 1px solid var(--rule); position: relative; color: var(--muted); }
ul.checks li:last-child { border-bottom: 0; }
ul.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 700; }

dl.faq { margin: 0; }
dl.faq dt { font-weight: 600; margin: 30px 0 6px; }
dl.faq dd { margin: 0; color: var(--muted); }
dl.faq dd p { margin: 0 0 12px; }
dl.faq dd :last-child { margin-bottom: 0; }

.card {
  background: var(--panel); border: 1px solid var(--rule);
  border-radius: 14px; padding: 26px 28px; margin: 26px 0;
}
.card p:last-child { margin-bottom: 0; }
.email { font-size: 1.2rem; font-weight: 600; }

/* ── Footer ─────────────────────────────────────────────────────────── */

footer.site { border-top: 1px solid var(--rule); }
footer.site > .wrap { padding-top: 56px; padding-bottom: 48px; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) auto auto; gap: 48px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .foot-about { grid-column: 1 / -1; } }
.foot-about p { color: var(--muted); font-size: 0.95rem; margin: 18px 0 0; max-width: 42ch; }
.foot-col h4 {
  font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted); margin: 6px 0 14px; font-weight: 600;
}
.foot-col a, .foot-col span { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 11px; }
.foot-col span { color: var(--muted); }
.foot-bottom {
  border-top: 1px solid var(--rule);
  margin-top: 44px; padding-top: 26px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.9rem;
}
.foot-bottom p { margin: 0; }
