/* ════════════════════════════════════════════════════════════════
 * PICK YOUR PEPTIDE — "Acid Lab Manual" design system.
 * Standalone identity. NOT the ReadyPep storefront system.
 * Hard rules: no serif, no italics, acid lime is the only signal.
 * See DESIGN.md in this folder.
 * ════════════════════════════════════════════════════════════════ */

:root {
  --pyp-void:      #060a08;
  --pyp-deep:      #0b120e;
  --pyp-panel:     #111a14;
  --pyp-edge:      rgba(140, 230, 180, 0.16);
  --pyp-edge-soft: rgba(140, 230, 180, 0.08);
  --pyp-green:     #1fbf75;
  --pyp-bright:    #35e08e;
  --pyp-acid:      #c8f04f;
  --pyp-acid-deep: #a8d62f;
  --pyp-acid-glow: rgba(200, 240, 79, 0.22);
  --pyp-ink:       #0c1207;
  --pyp-text:      #e8f3ea;
  --pyp-dim:       #9dbfa9;
  --pyp-plate:     #f4f6f0;
  --pyp-plate-ink: #18211b;
  --pyp-warn:      #ff6b4a;

  --f-display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --f-body:    "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --f-mono:    "Martian Mono", "Courier New", monospace;
}

/* ── Base ───────────────────────────────────────────────────────── */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  background: var(--pyp-void);
  color: var(--pyp-text);
  font-family: var(--f-body);
  font-style: normal;
  line-height: 1.55;
  min-height: 100vh;
  position: relative;
}
/* Instrument grid + noise atmosphere */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--pyp-edge-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--pyp-edge-soft) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}
.shell { position: relative; z-index: 1; display: flex; flex-direction: column; min-height: 100vh; }

em, i { font-style: normal; } /* italics are banned in this system */

::selection { background: var(--pyp-acid); color: var(--pyp-ink); }

a { color: var(--pyp-bright); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--pyp-acid); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--pyp-text);
  margin: 0;
}

.mono {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pyp-acid);
}

/* ── Buttons ────────────────────────────────────────────────────── */

.pyp-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--pyp-acid);
  color: var(--pyp-ink);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 26px;
  border: 1px solid var(--pyp-acid);
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.pyp-btn:hover {
  background: var(--pyp-acid);
  color: var(--pyp-ink);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--pyp-acid-glow);
}
.pyp-btn:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--pyp-acid-glow); }
.pyp-btn .arrow { transition: transform 0.15s ease; }
.pyp-btn:hover .arrow { transform: translateX(4px); }

.pyp-btn--ghost {
  background: transparent;
  color: var(--pyp-acid);
  border-color: var(--pyp-edge);
}
.pyp-btn--ghost:hover { background: rgba(200, 240, 79, 0.08); color: var(--pyp-acid); }

.pyp-btn--xl {
  padding: clamp(18px, 2.2vh, 24px) clamp(34px, 4vw, 56px);
  font-size: clamp(14px, 1.15vw, 17px);
}
.pyp-btn--ink {
  background: var(--pyp-ink);
  border-color: var(--pyp-ink);
  color: var(--pyp-acid);
}
.pyp-btn--ink:hover { background: #15200d; color: var(--pyp-acid); box-shadow: 6px 6px 0 rgba(12, 18, 7, 0.35); }
@media (max-width: 520px) { .pyp-btn--xl { width: 100%; justify-content: center; } }

.cta-micro {
  margin: 12px 0 0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pyp-dim);
  line-height: 1.8;
}

:where(button, a, input):focus-visible {
  outline: 2px solid var(--pyp-acid);
  outline-offset: 3px;
}

/* ── Signal bar + header ────────────────────────────────────────── */

.signal {
  background: var(--pyp-acid);
  color: var(--pyp-ink);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
}

header.top {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6, 10, 8, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pyp-edge);
}
header.top .row {
  max-width: 1320px; margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
@media (min-width: 768px) { header.top .row { padding: 14px 36px; } }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .chip {
  width: 26px; height: 26px; flex: none;
  background: var(--pyp-acid);
  border-radius: 4px;
  display: inline-grid; place-items: center;
}
.brand .chip span {
  width: 10px; height: 10px;
  background: var(--pyp-ink);
  border-radius: 2px;
}
.brand .word {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--pyp-text);
  line-height: 1;
}
.brand .word b { color: var(--pyp-acid); font-weight: 800; }

header.top nav { display: none; align-items: center; gap: 24px; }
@media (min-width: 900px) { header.top nav { display: flex; } }
header.top nav a {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pyp-dim);
  text-decoration: none;
}
header.top nav a:hover { color: var(--pyp-acid); }
header.top .pyp-btn { padding: 11px 18px; font-size: 11.5px; }

/* ── Hero ───────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: clamp(56px, 8vh, 120px) 20px clamp(40px, 6vh, 80px);
  overflow: hidden;
}
.hero .inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
@media (min-width: 980px) { .hero .inner { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); padding: 0 16px; } }

.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pyp-bright);
}
.hero-kicker .dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--pyp-bright);
  box-shadow: 0 0 0 4px rgba(53, 224, 142, 0.18);
  animation: pyp-pulse 2s ease-in-out infinite;
}
@keyframes pyp-pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

.hero h1 {
  margin: clamp(18px, 2.4vh, 28px) 0 0;
  font-size: clamp(42px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.hero h1 .acid { color: var(--pyp-acid); display: block; }

.hero .lead {
  margin: clamp(20px, 2.6vh, 30px) 0 0;
  max-width: 56ch;
  color: var(--pyp-dim);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
}
.hero .lead strong { color: var(--pyp-text); font-weight: 700; }

.hero .cta-row { margin-top: clamp(26px, 3.4vh, 40px); }

.hero-meta {
  margin-top: clamp(28px, 3.4vh, 42px);
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--pyp-edge);
  border-radius: 4px;
  overflow: hidden;
}
.hero-meta span {
  flex: 1 1 auto;
  padding: 12px 16px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pyp-dim);
  border-right: 1px solid var(--pyp-edge);
  white-space: nowrap;
}
.hero-meta span:last-child { border-right: 0; }
.hero-meta b { color: var(--pyp-acid); font-weight: 500; }

/* Specimen plate (light photo card on dark UI) */
.plate {
  background: var(--pyp-plate);
  border-radius: 6px;
  padding: 14px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--pyp-edge);
  position: relative;
}
.plate img { display: block; width: 100%; height: auto; border-radius: 3px; }
/* White products on a white plate wash out: tint the article plates so the
 * specimen pops. The hero kit photo has its own baked background and stays
 * on the clean plate. */
.photo-band .plate, .featured .plate {
  background: linear-gradient(165deg, #eef2e4, #d9e1cc);
}
.plate .tag {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 4px 2px;
  font-family: var(--f-mono);
  font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pyp-plate-ink);
}
.plate .tag b { color: var(--pyp-green); font-weight: 500; }
.hero .plate { transform: rotate(-1.5deg); }
@media (max-width: 979px) { .hero .plate { max-width: 520px; } }

/* Corner ticks (crop marks) */
.ticked { position: relative; }
.ticked::before, .ticked::after {
  content: ""; position: absolute; width: 16px; height: 16px; pointer-events: none;
}
.ticked::before { top: -1px; left: -1px; border-top: 2px solid var(--pyp-acid); border-left: 2px solid var(--pyp-acid); }
.ticked::after { bottom: -1px; right: -1px; border-bottom: 2px solid var(--pyp-acid); border-right: 2px solid var(--pyp-acid); }

/* ── Article / audit cards ──────────────────────────────────────── */

main.article { flex: 1; }

.article-inner {
  max-width: 880px; margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) 20px 0;
}

.prose p {
  font-size: clamp(15.5px, 1.05vw, 17.5px);
  line-height: 1.75;
  color: var(--pyp-dim);
  margin: 0 0 1.4em;
}
.prose p strong { color: var(--pyp-text); }
.prose ul { margin: 0 0 1.4em; padding-left: 22px; color: var(--pyp-dim); }
.prose li { font-size: clamp(15px, 1vw, 17px); line-height: 1.7; margin-bottom: 0.55em; }
.prose h2 { font-size: clamp(24px, 2.4vw, 34px); margin: 1.9em 0 0.7em; }
.prose h3 { font-size: clamp(17px, 1.4vw, 21px); margin: 1.6em 0 0.5em; }

.section-label {
  display: flex; align-items: center; gap: 14px;
  margin: clamp(34px, 4.4vh, 56px) 0 clamp(20px, 2.6vh, 30px);
}
.section-label .eyebrow { flex: none; }
.section-label .rule { flex: 1; height: 1px; background: var(--pyp-edge); }

/* Audit card */
.standard {
  position: relative;
  background: var(--pyp-panel);
  border: 1px solid var(--pyp-edge);
  border-radius: 6px;
  padding: clamp(24px, 3.2vh, 40px) clamp(20px, 2.8vw, 40px);
  margin: 0 0 clamp(18px, 2.4vh, 28px);
  overflow: hidden;
}
.standard .ghost-num {
  position: absolute; top: -14px; right: 6px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(110px, 13vw, 180px);
  line-height: 1;
  color: var(--pyp-acid);
  opacity: 0.07;
  pointer-events: none; user-select: none;
}
.standard .audit-tag {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pyp-acid);
  margin: 0 0 12px;
}
.standard h2 {
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.015em;
  margin: 0 0 0.65em;
  max-width: 24ch;
}
.standard p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.72;
  color: var(--pyp-dim);
  margin: 0 0 1.2em;
  max-width: 66ch;
}
.standard p strong { color: var(--pyp-text); }

.redflag {
  display: block;
  border: 1px solid rgba(255, 107, 74, 0.35);
  background: rgba(255, 107, 74, 0.07);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: clamp(13px, 0.95vw, 14.5px);
  line-height: 1.6;
  color: var(--pyp-dim);
  margin: 0;
  max-width: 66ch;
}
.redflag b {
  display: inline-block;
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pyp-warn);
  margin-right: 8px;
}

/* Photo band inside the article */
.photo-band {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  margin: clamp(28px, 3.6vh, 44px) 0;
}
@media (min-width: 720px) { .photo-band { grid-template-columns: 1fr 1fr; } }
.photo-band .plate:nth-child(2) { transform: rotate(1.2deg); }

/* CTA band — full acid block */
.cta-band {
  background: var(--pyp-acid);
  color: var(--pyp-ink);
  border-radius: 6px;
  padding: clamp(26px, 3.4vh, 40px) clamp(22px, 3vw, 40px);
  margin: clamp(30px, 4vh, 52px) 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  box-shadow: 8px 8px 0 var(--pyp-acid-glow);
}
.cta-band .q {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 30ch;
  color: var(--pyp-ink);
}
.cta-band .cta-micro { color: rgba(12, 18, 7, 0.65); width: 100%; margin: 0; }
.cta-band .stack { display: flex; flex-direction: column; gap: 8px; }

/* ── Featured verdict ───────────────────────────────────────────── */

.featured {
  position: relative;
  border: 1px solid var(--pyp-acid);
  background: linear-gradient(160deg, var(--pyp-panel), var(--pyp-deep));
  border-radius: 6px;
  padding: clamp(28px, 3.6vh, 48px) clamp(22px, 3vw, 44px);
  margin: clamp(40px, 5vh, 64px) 0;
}
.featured .verdict-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin: 0 0 16px;
}
.featured .verdict-row .eyebrow { color: var(--pyp-acid); }
.meter { display: inline-flex; gap: 4px; }
.meter span {
  width: 18px; height: 8px;
  background: var(--pyp-acid);
  border-radius: 2px;
}
.featured h2 {
  font-size: clamp(26px, 2.8vw, 42px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 0.55em;
}
.featured h2 .acid { color: var(--pyp-acid); }
.featured .grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
@media (min-width: 880px) { .featured .grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); } }
.featured .grid > div > p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.72;
  color: var(--pyp-dim);
  margin: 0 0 1.3em;
}
.featured .grid > div > p strong { color: var(--pyp-text); }

.pillars {
  list-style: none; margin: 0 0 1.6em; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillars li {
  background: rgba(200, 240, 79, 0.05);
  border: 1px solid var(--pyp-edge);
  border-radius: 4px;
  padding: 14px 16px;
}
.pillars h3 {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pyp-acid);
  margin: 0 0 6px;
}
.pillars p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--pyp-dim); }

/* ── FAQ ────────────────────────────────────────────────────────── */

.faq { margin: clamp(36px, 4.6vh, 56px) 0 0; }
.faq h2 { font-size: clamp(24px, 2.4vw, 34px); text-transform: uppercase; margin: 0 0 0.4em; }
.faq dl { margin: 0; border-top: 1px solid var(--pyp-edge); }
.faq dt {
  font-weight: 700;
  font-size: clamp(15.5px, 1.1vw, 18px);
  color: var(--pyp-text);
  padding: 18px 0 6px;
  display: flex; gap: 12px; align-items: baseline;
}
.faq dt::before {
  content: "Q";
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--pyp-acid);
  border: 1px solid var(--pyp-edge);
  border-radius: 3px;
  padding: 3px 6px;
  flex: none;
}
.faq dd {
  margin: 0; padding: 0 0 18px 34px;
  border-bottom: 1px solid var(--pyp-edge-soft);
  font-size: clamp(14.5px, 1vw, 16.5px);
  line-height: 1.7;
  color: var(--pyp-dim);
}

/* ── Closing band ───────────────────────────────────────────────── */

.closing {
  margin-top: clamp(48px, 6vh, 88px);
  background: var(--pyp-acid);
  color: var(--pyp-ink);
  text-align: center;
  padding: clamp(52px, 7vh, 96px) 20px;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
  background-image:
    linear-gradient(rgba(12, 18, 7, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 18, 7, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
}
.closing > * { position: relative; }
.closing .eyebrow { color: rgba(12, 18, 7, 0.6); }
.closing h2 {
  color: var(--pyp-ink);
  font-size: clamp(30px, 4vw, 60px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0.3em 0 0.4em;
}
.closing p {
  max-width: 56ch; margin: 0 auto 1.8em;
  font-size: clamp(15px, 1.1vw, 17.5px);
  line-height: 1.65;
  color: rgba(12, 18, 7, 0.78);
}
.closing .cta-micro { color: rgba(12, 18, 7, 0.55); }

/* ── Legal / utility pages ──────────────────────────────────────── */

.page-head {
  border-bottom: 1px solid var(--pyp-edge);
  background: var(--pyp-deep);
  padding: clamp(44px, 6vh, 80px) 20px clamp(30px, 4vh, 48px);
}
.page-head .inner { max-width: 880px; margin: 0 auto; }
.page-head h1 {
  font-size: clamp(32px, 4.4vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.page-head h1 .acid { color: var(--pyp-acid); }
.page-head .eyebrow { display: block; margin-bottom: 14px; }
.page-head .updated {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pyp-dim);
}

/* ── Footer ─────────────────────────────────────────────────────── */

footer.site-footer { margin-top: clamp(40px, 5vh, 72px); border-top: 1px solid var(--pyp-edge); }
.closing + footer.site-footer { margin-top: 0; border-top: 0; }

.footer-nav { background: var(--pyp-deep); }
.footer-nav .row {
  max-width: 1320px; margin: 0 auto;
  padding: 22px 20px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 28px;
}
.footer-nav a {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pyp-dim);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--pyp-acid); }

.compliance-band { background: var(--pyp-deep); border-top: 1px solid var(--pyp-edge-soft); }
.compliance-band .row {
  max-width: 880px; margin: 0 auto;
  padding: 22px 20px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--pyp-dim);
}
.compliance-band .row strong { color: var(--pyp-text); font-weight: 500; }

.bottom-strip {
  background: var(--pyp-void);
  border-top: 1px solid var(--pyp-edge-soft);
  font-family: var(--f-mono);
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pyp-dim);
  padding: 14px 20px;
  text-align: center;
}
.bottom-strip .ru { color: var(--pyp-warn); }

/* ── Motion (progressive enhancement under html.js only) ────────── */

@keyframes pyp-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
html.js .hero [data-stagger] { animation: pyp-rise 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
html.js .hero [data-stagger="2"] { animation-delay: 0.08s; }
html.js .hero [data-stagger="3"] { animation-delay: 0.16s; }
html.js .hero [data-stagger="4"] { animation-delay: 0.24s; }
html.js .hero [data-stagger="5"] { animation-delay: 0.32s; }

html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
html.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .hero [data-stagger] { animation: none; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-kicker .dot { animation: none; }
  *, *::before, *::after { transition-duration: 0.001ms !important; }
}

/* Skip link */
.skip {
  position: absolute; left: -1000px; top: 0; z-index: 999;
  background: var(--pyp-acid); color: var(--pyp-ink);
  padding: 10px 14px; border-radius: 0 0 4px 0;
  font-family: var(--f-mono); font-size: 11px;
}
.skip:focus { left: 0; outline: none; }
