/* TaskBeacon — shared site styles.
   Dark-first, terminal-audience. Status colours are copied verbatim from the
   app's own palette (ThemeDefault.swift `status:`) so the site and the product
   never drift apart. */

:root {
  --bg: #09090b;
  --bg2: #0f0f13;
  --panel: #141418;
  --card: rgba(255, 255, 255, .04);
  --card-h: rgba(255, 255, 255, .07);
  --hair: rgba(255, 255, 255, .10);
  --hair-s: rgba(255, 255, 255, .06);
  --tx: #ededf0;
  --dim: #9a9aa6;
  --dim2: #6c6c78;

  /* ThemeDefault.swift: needs 1.00,0.32,0.34 · working 0.27,0.62,1.00
     done 0.26,0.82,0.49 · idle 0.62,0.66,0.72 · paused 0.84,0.48,0.91 */
  --working: #459eff;
  --needs: #ff5257;
  --done: #42d17d;
  --idle: #9ea8b8;
  --paused: #d67ae8;
  --amber: #ffb021;

  --maxw: 1080px;
  --readw: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100% }
body {
  background: var(--bg);
  color: var(--tx);
  font-family: -apple-system, "SF Pro Text", Inter, system-ui, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px }
.wrap-read { max-width: var(--readw); margin: 0 auto; padding: 0 24px }
a { color: inherit; text-decoration: none }
.lnk { color: var(--working); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px }
.lnk:hover { color: #7cc0ff }
.mut { color: var(--dim) }
code, .mono { font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace; font-size: .92em }
code { background: rgba(255, 255, 255, .06); border: 1px solid var(--hair-s); border-radius: 5px; padding: 1px 6px }
/* Verifiable-claim command block. Every privacy claim on this site is paired
   with the exact command a reader can run against their own install, so these
   have to survive copy-paste: never wrap (a wrapped shell command is a wrong
   shell command), scroll instead. `.out` marks the expected output beneath. */
.cmd {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: .86em; line-height: 1.65;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--hair-s); border-left: 2px solid var(--working);
  border-radius: 8px; padding: 11px 14px; margin: 10px 0;
  overflow-x: auto; white-space: pre; color: var(--tx);
}
.cmd .out { display: block; color: var(--dim); white-space: pre }
.cmd .out b { color: var(--done); font-weight: 600 }
.cmd .out i { color: var(--dim2); font-style: normal }

:focus-visible { outline: 2px solid var(--working); outline-offset: 3px; border-radius: 4px }

.skip { position: absolute; left: -9999px; top: 0; background: var(--working); color: #04121f; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 99 }
.skip:focus { left: 0 }

/* ---------- NAV ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(9, 9, 11, .78);
  border-bottom: 1px solid var(--hair-s);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 16px }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 650; letter-spacing: -.01em }
/* The real app icon, wherever the brand mark appears. The PNG already carries
   the rounded macOS mask, so it needs no radius of its own. It replaced a
   CSS-drawn stand-in beacon, whose rules went with it. */
.applogo { width: 22px; height: 22px; flex: none; display: block }
.applogo.sm { width: 18px; height: 18px }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px }

/* ---------- LANGUAGE PICKER ---------- */
select.lang {
  appearance: none; -webkit-appearance: none;
  background: var(--card); border: 1px solid var(--hair); color: var(--dim);
  border-radius: 8px; padding: 6px 28px 6px 10px;
  font: inherit; font-size: 13px; line-height: 1.2; cursor: pointer; transition: .15s;
  /* Inline chevron — a data: URI so no extra request and no img-src exception. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%239ea8b8' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 9px center; background-size: 10px;
}
select.lang:hover { color: var(--tx); background-color: var(--card-h) }
/* Dropdown items are drawn by the OS; without this they can land white-on-white. */
select.lang option { background: #16161a; color: #e9e9ee }
/* :not(.btn) matters — `.nav-links a` outranks `.btn-p` on specificity, so
   without it the nav's primary button renders dim grey on blue. */
.nav-links a:not(.btn) { color: var(--dim) }
.nav-links a:not(.btn):hover { color: var(--tx) }
.nav-links a:not(.btn)[aria-current="page"] { color: var(--tx) }

.btn {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 9px;
  padding: 9px 16px; font: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: .15s; border: 1px solid transparent; white-space: nowrap;
}
.btn-p { background: var(--working); color: #04121f }
.btn-p:hover { filter: brightness(1.08); transform: translateY(-1px) }
.btn-g { background: var(--card); border-color: var(--hair); color: var(--tx) }
.btn-g:hover { background: var(--card-h) }
.btn-lg { padding: 13px 24px; font-size: 15px }

/* ---------- SECTIONS ---------- */
section { padding: 72px 0 }
.kicker { font-size: 13px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; color: var(--working); margin-bottom: 14px }
h1 { font-size: clamp(36px, 6vw, 60px); line-height: 1.05; letter-spacing: -.03em; font-weight: 720 }
h2 { font-size: clamp(26px, 4vw, 38px); letter-spacing: -.025em; font-weight: 680; line-height: 1.15; max-width: 22ch }
h3 { font-size: 18px; font-weight: 640; letter-spacing: -.01em }
.lead { color: var(--dim); font-size: 17px; max-width: 62ch; margin-top: 16px }
.tint { background: var(--bg2); border-top: 1px solid var(--hair-s); border-bottom: 1px solid var(--hair-s) }

/* ---------- STATUS DOTS ---------- */
.dot { width: 10px; height: 10px; border-radius: 50%; flex: none; position: relative; display: inline-block }
.dot.working { background: var(--working); box-shadow: 0 0 10px var(--working) }
.dot.needs { background: var(--needs); box-shadow: 0 0 12px var(--needs) }
.dot.done { background: var(--done); box-shadow: 0 0 10px var(--done) }
.dot.idle { background: var(--idle); opacity: .5 }
.dot.needs::after, .dot.working::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--needs); animation: pulse 1.8s ease-out infinite; opacity: 0;
}
.dot.working::after { border-color: var(--working); animation-duration: 2.4s }
@keyframes pulse { 0% { transform: scale(.7); opacity: .7 } 100% { transform: scale(1.9); opacity: 0 } }

/* ---------- CARDS / GRID ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px }
.card {
  background: var(--card); border: 1px solid var(--hair-s); border-radius: 16px;
  padding: 26px 24px; transition: .18s;
}
.card:hover { background: var(--card-h); border-color: var(--hair) }
.card h3 { margin-bottom: 9px }
.card p { color: var(--dim); font-size: 14.5px; line-height: 1.6 }
.card .ic { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px }
.ic-working { background: rgba(69, 158, 255, .14) } .ic-needs { background: rgba(255, 82, 87, .14) }
.ic-done { background: rgba(66, 209, 125, .14) } .ic-idle { background: rgba(158, 168, 184, .12) }

/* ---------- TABLE ---------- */
.tbl-scroll {
  overflow-x: auto; margin-top: 36px; border: 1px solid var(--hair-s);
  border-radius: 16px; -webkit-overflow-scrolling: touch;
  /* Without this the platform scrollbar renders as a bright white bar across a
     dark table — very visible on narrow screens, where it is always shown. */
  scrollbar-width: thin; scrollbar-color: var(--dim2) transparent;
}
.tbl-scroll::-webkit-scrollbar { height: 8px }
.tbl-scroll::-webkit-scrollbar-track { background: transparent }
.tbl-scroll::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .18); border-radius: 4px }
.tbl-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, .28) }
table { border-collapse: collapse; width: 100%; min-width: 700px; font-size: 14px }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--hair-s); vertical-align: top }
thead th { font-size: 12.5px; color: var(--dim); font-weight: 600; background: var(--bg2) }
thead th.me { color: var(--tx) }
.me-col { background: rgba(69, 158, 255, .06) }
tbody td:first-child { color: var(--dim); font-weight: 500 }
tbody tr:last-child td { border-bottom: none }
.yes { color: var(--done); font-weight: 600 }
.no { color: var(--dim2) }
.part { color: var(--amber) }
.brandcell { display: flex; align-items: center; gap: 8px; font-weight: 650; color: var(--tx) }

/* ---------- NOTE / CALLOUT ---------- */
.note {
  margin-top: 20px; border: 1px solid var(--hair-s); border-left: 2px solid var(--dim2);
  border-radius: 0 12px 12px 0; padding: 18px 20px; background: rgba(255, 255, 255, .02);
  font-size: 13.5px; color: var(--dim); line-height: 1.65;
}
.note b, .note strong { color: var(--tx); font-weight: 600 }
.note ol, .note ul { margin: 10px 0 0 18px }
.note li + li { margin-top: 6px }
.note.warn { border-left-color: var(--amber) }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--hair-s); padding: 4px 0 }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 4px; font-size: 16.5px; font-weight: 560;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after { content: "+"; color: var(--dim); font-size: 22px; font-weight: 400; transition: .2s; flex: none }
.faq details[open] summary::after { transform: rotate(45deg) }
.faq .ans { color: var(--dim); padding: 0 4px 20px; font-size: 15px; max-width: 72ch }
.faq .ans p + p { margin-top: 12px }

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid var(--hair-s); padding: 40px 0 48px; color: var(--dim2); font-size: 13px }
footer .cols { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap }
footer .flinks { display: flex; gap: 20px; flex-wrap: wrap }
footer .flinks a:hover { color: var(--tx) }
.disclaimer { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--hair-s); max-width: 78ch; line-height: 1.7 }

/* ---------- LONG-FORM (subpages) ---------- */
.doc { padding: 56px 0 80px }
.doc h1 { font-size: clamp(30px, 5vw, 44px); margin-bottom: 14px }
.doc .meta { color: var(--dim2); font-size: 13.5px; margin-bottom: 40px }
.doc h2 { font-size: clamp(21px, 3vw, 26px); margin: 48px 0 14px; max-width: none }
.doc h3 { margin: 30px 0 10px }
.doc p { color: var(--dim); margin-bottom: 14px }
.doc p strong, .doc li strong { color: var(--tx); font-weight: 600 }
.doc ul, .doc ol { color: var(--dim); margin: 0 0 16px 20px }
.doc li { margin-bottom: 8px }
.doc .tbl-scroll { margin-top: 20px }
.doc table { min-width: 560px }

/* ---------- FORM ---------- */
.emailform { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px }
.emailform input[type=email] {
  flex: 1 1 260px; min-width: 0; background: rgba(255, 255, 255, .05);
  border: 1px solid var(--hair); border-radius: 9px; padding: 12px 14px;
  color: var(--tx); font: inherit; font-size: 15px;
}
.emailform input[type=email]::placeholder { color: var(--dim2) }
.emailform input[type=email]:focus { border-color: var(--working); outline: none }

/* ---------- HOME: HERO ---------- */
.hero { padding: 84px 0 32px; text-align: center; position: relative; overflow: hidden }
.hero > .wrap { position: relative }
.hero::before {
  content: ""; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 520px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(69, 158, 255, .16), transparent 70%);
}
.hero h1 { max-width: 16ch; margin: 0 auto 22px }
.hero-sub { font-size: clamp(16px, 2.2vw, 20px); max-width: 58ch; margin: 0 auto 30px }
.row-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap }
.fine { margin-top: 16px; font-size: 13px; color: var(--dim2) }

/* ---------- SCREENSHOTS ----------
   Until the real captures land, these slots hold CSS-drawn renditions of the
   actual UI. A blank frame waiting for an image reads as a broken page, which
   is worse than an honest illustration. Swapping one for a real screenshot is
   replacing the mock element with <img src="/assets/…"> — see web/README.md. */
.shot { margin: 0 }
.shot img {
  display: block; width: 100%; height: auto; max-width: 100%;
  border: 1px solid var(--hair); border-radius: 14px;
  background: var(--bg2);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .8);
}
.shot figcaption { color: var(--dim2); font-size: 13px; margin-top: 14px; line-height: 1.6 }
.shot figcaption b { color: var(--dim); font-weight: 600 }
.shot-hero { margin: 52px auto 0; max-width: 820px }
.shot-hero figcaption { text-align: center }
.shot-hero .stage { margin-top: 0 }   /* the figure already provides the gap */

/* ---------- MOCK: VS CODE WINDOW WITH THE LANDING RING ---------- */
.vsc {
  border: 1px solid var(--hair); border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, #17171c, #101014);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .8);
}
.vsc-bar {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  background: rgba(255, 255, 255, .03); border-bottom: 1px solid var(--hair-s);
  font-size: 12px; color: var(--dim2);
}
.vsc-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .14) }
.vsc-bar span { margin-left: 10px }
.vsc-editor { padding: 16px 18px 10px; display: flex; flex-direction: column; gap: 7px }
.vsc-editor b { display: block; height: 7px; border-radius: 3px; background: rgba(255, 255, 255, .07) }
.vsc-editor b:nth-child(1) { width: 46% } .vsc-editor b:nth-child(2) { width: 68% }
.vsc-editor b:nth-child(3) { width: 34% } .vsc-editor b:nth-child(4) { width: 57% }
.vsc-editor b:nth-child(5) { width: 24% }
.vsc-terms {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hair-s); border-top: 1px solid var(--hair-s); margin-top: 8px;
}
.term { background: #0c0c10; padding: 11px 13px 15px; min-height: 118px; position: relative }
.term em {
  display: block; font-style: normal; font-size: 10.5px; color: var(--dim2);
  letter-spacing: .02em; margin-bottom: 9px;
}
.term p {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 10.5px; line-height: 1.75; color: var(--dim2); margin: 0;
}
.term p .cy { color: var(--working) }
.term p .gn { color: var(--done) }
.term p .rd { color: var(--needs) }
/* The ring: this is the thing nobody else draws, so it gets to breathe. */
.term.ringed { background: #0e0f14 }
.term.ringed::after {
  content: ""; position: absolute; inset: 3px; border-radius: 8px; pointer-events: none;
  border: 2px solid var(--needs);
  box-shadow: 0 0 18px rgba(255, 82, 87, .55), inset 0 0 22px rgba(255, 82, 87, .16);
  animation: breathe 2.6s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity: .55 } 50% { opacity: 1 } }

/* ---------- MOCK: MAIN WINDOW (grouped) ---------- */
.gwin { padding: 10px }
.ghead {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 11px; background: rgba(255, 255, 255, .035);
}
.ghead .vsbadge {
  font-size: 10px; font-weight: 800; letter-spacing: .04em; color: var(--working);
  background: rgba(69, 158, 255, .16); border-radius: 5px; padding: 2px 6px;
}
.ghead .gname { flex: 1; font-size: 13.5px; font-weight: 600 }
.pills { display: flex; gap: 6px }
.pill {
  display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 999px; background: rgba(255, 255, 255, .06);
  font-variant-numeric: tabular-nums;
}
.pill .dot { width: 7px; height: 7px; box-shadow: none }
.pill .dot::after { display: none }
.kids { margin: 4px 0 0 14px; border-left: 1px solid var(--hair-s); padding-left: 10px }
.kids .srow { padding: 9px 10px }

/* ---------- MOCK: MENU BAR STRIP ---------- */
.mbar {
  display: flex; align-items: center; justify-content: flex-end; gap: 16px;
  padding: 9px 16px; border-radius: 10px 10px 0 0;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--hair);
  border-bottom: none; font-size: 12px; color: var(--dim2);
}
.mbar .sys { display: flex; gap: 13px; opacity: .45 }
.mbar .sys i { width: 12px; height: 12px; border-radius: 3px; background: currentColor }
.mbar-wrap {
  padding: 26px 22px 22px; background: linear-gradient(180deg, #101014, #0c0c10);
  display: flex; flex-direction: column; flex: 1;
}
.mbar-desk {
  flex: 1; min-height: 96px; border: 1px solid var(--hair-s); border-top: none;
  border-radius: 0 0 10px 10px; background: rgba(255, 255, 255, .015);
}
/* Side-by-side mocks should end level with each other; the shorter one grows. */
.grid-2 > .shot { display: flex; flex-direction: column }
.grid-2 > .shot > :first-child { flex: 1 }
.grid-2 > .shot figcaption { margin-top: auto; padding-top: 14px }

/* Language switch in the nav */
.nav-links a.lang { font-size: 13.5px; border: 1px solid var(--hair); border-radius: 7px; padding: 5px 10px }
.nav-links a.lang:hover { background: var(--card-h) }

/* ---------- HOME: PRODUCT ILLUSTRATION (fallback mock, kept for reuse) ---------- */
.stage { margin: 52px auto 0; max-width: 460px }
.menubar { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 12px; padding-right: 6px; opacity: .9 }
.mb-cap {
  display: flex; align-items: center; gap: 7px; background: rgba(255, 255, 255, .06);
  border: 1px solid var(--hair); border-radius: 999px; padding: 5px 11px;
  font-size: 12.5px; font-variant-numeric: tabular-nums; color: var(--dim);
}
.mb-dots { display: flex; gap: 4px }
.mb-dots .dot { width: 7px; height: 7px; box-shadow: none }
.mb-dots .dot::after { display: none }
.panel {
  background: linear-gradient(180deg, rgba(22, 22, 27, .92), rgba(16, 16, 20, .92));
  border: 1px solid var(--hair); border-radius: 16px; padding: 8px; text-align: left;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .75);
}
.panel-h { display: flex; justify-content: space-between; padding: 9px 12px 11px; font-size: 12px; color: var(--dim2) }
.srow { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 11px }
.srow + .srow { margin-top: 2px }
.srow.hot { background: rgba(255, 82, 87, .09); box-shadow: 0 0 0 1px rgba(255, 82, 87, .28) inset }
.r-main { flex: 1; min-width: 0 }
.r-title { font-size: 14px; font-weight: 560 }
.r-sub { font-size: 12px; color: var(--dim2); margin-top: 2px; font-variant-numeric: tabular-nums }
.r-state { font-size: 11.5px; font-weight: 600; padding: 3px 9px; border-radius: 6px; white-space: nowrap }
.s-needs { color: var(--needs); background: rgba(255, 82, 87, .14) }
.s-working { color: var(--working); background: rgba(69, 158, 255, .12) }
.s-done { color: var(--done); background: rgba(66, 209, 125, .12) }
.s-idle { color: var(--idle); background: rgba(158, 168, 184, .10) }
.stage-cap { font-size: 12px; color: var(--dim2); margin-top: 12px }

/* ---------- HOME: TRUST BAR ---------- */
.trust-sec { padding: 0 0 64px }
.trustbar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
  font-size: 13.5px; color: var(--dim);
  border-top: 1px solid var(--hair-s); border-bottom: 1px solid var(--hair-s); padding: 16px 0;
}
.trustnote { text-align: center; font-size: 13px; color: var(--dim2); margin-top: 14px }

/* ---------- HOME: MISC ---------- */
.gap-lg { margin-top: 40px }
.gap-md { margin-top: 36px }
.card ul { color: var(--dim); font-size: 14.5px; margin: 14px 0 0 18px }
.card li + li { margin-top: 10px }
.card.good { border-color: rgba(66, 209, 125, .22) }
.card.good h3 { color: var(--done) }
.card.bad { border-color: rgba(255, 82, 87, .22) }
.card.bad h3 { color: var(--needs) }
.card strong { color: var(--tx); font-weight: 600 }
.stepnum { font-size: 13px; color: var(--working); font-weight: 700; margin-bottom: 10px }
.aside { margin-top: 24px; color: var(--dim); font-size: 14.5px }
.cta-box {
  background: linear-gradient(160deg, rgba(69, 158, 255, .10), rgba(66, 209, 125, .05));
  border: 1px solid var(--hair); border-radius: 24px; padding: 60px 32px;
}
.cta-box h2 { margin: 0 auto; max-width: 20ch }
.cta-box .lead { margin: 16px auto 0; text-align: left; max-width: 52ch }
.center { text-align: center }
.sr-only { position: absolute; left: -9999px }
.btn + .btn { margin-left: 10px }
.replay { white-space: pre-wrap; font-size: 12.5px }
.th-sub { font-weight: 400 }
.mb-sm { margin-bottom: 20px }
.gap-xl { margin-top: 48px }
.footnote { color: var(--dim2); font-size: 13.5px }
.doc .actions { margin-top: 40px }

/* ---------- CHANGELOG ---------- */
.rel { border-left: 2px solid var(--hair); padding-left: 26px; margin-left: 4px; padding-bottom: 8px; position: relative }
.rel::before {
  content: ""; position: absolute; left: -6px; top: 8px; width: 10px; height: 10px;
  border-radius: 50%; background: var(--dim2); border: 2px solid var(--bg);
}
.rel.latest::before { background: var(--working); box-shadow: 0 0 10px var(--working) }
.rel h2 { margin-top: 0; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap }
.rel + .rel { margin-top: 44px }
.tag {
  font-size: 12px; font-weight: 650; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 6px; background: rgba(69, 158, 255, .14); color: var(--working);
}
.date { font-size: 14px; color: var(--dim2); font-weight: 400; letter-spacing: 0 }

@media (max-width: 760px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr }
  section { padding: 56px 0 }
  .nav-links a.hide { display: none }
  .nav-links { gap: 14px }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important }
  html { scroll-behavior: auto }
}
