:root {
  --paper: #F5F4F0;
  --void: #0A0A0A;
  --strike: #FF3B30;
  --muted: #888780;
  --muted-border: rgba(136, 135, 128, 0.3);
  --strike-tint: rgba(255, 59, 48, 0.07);
  --strike-border: rgba(255, 59, 48, 0.27);
  --surface: #FFFFFF;
  --muted-text: #66655F;   /* AA on paper and tint; --muted stays for borders and dots */
  --strike-text: #CC2318;  /* AA red for small text; --strike stays for large type and accents */
  --display: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Space Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

@font-face { font-family: 'Syne'; font-weight: 400; font-style: normal; font-display: swap; src: url('/fonts/syne-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Syne'; font-weight: 800; font-style: normal; font-display: swap; src: url('/fonts/syne-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family: 'Space Mono'; font-weight: 400; font-style: normal; font-display: swap; src: url('/fonts/space-mono-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Space Mono'; font-weight: 700; font-style: normal; font-display: swap; src: url('/fonts/space-mono-latin-700-normal.woff2') format('woff2'); }

* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--void);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }

.wrap { max-width: 1040px; margin: 0 auto; padding-inline: 20px; }

/* ---- type ---- */
h1, h2, h3 { margin: 0; letter-spacing: -0.03em; line-height: 1.02; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 20px; }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; line-height: 1.3; }
p { margin: 0 0 1em; }
.label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-text);
}
.strike { color: var(--strike); }
.lede { font-size: 1.25rem; max-width: 40ch; color: #2A2A28; }

/* ---- nav ---- */
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 22px; }
.wordmark { font-weight: 800; font-size: 24px; letter-spacing: -0.03em; text-decoration: none; }
.nav__links { display: flex; gap: 22px; }
.nav__links a { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: var(--muted-text); }
.nav__links a:hover { color: var(--void); }

/* ---- hero ---- */
.hero { padding-block: clamp(40px, 8vw, 96px) 40px; }
.hero .lede { margin-top: 22px; }
.cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--void); background: var(--void); color: var(--paper);
  cursor: pointer; text-decoration: none;
}
.btn--store { background: transparent; color: var(--muted-text); border-color: var(--muted-border); cursor: default; }
.btn--store .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); display: inline-block; }
.btn:hover:not(.btn--store) { background: var(--strike); border-color: var(--strike); }

/* ---- waitlist form ---- */
.waitlist { display: flex; flex-wrap: wrap; gap: 8px; align-items: stretch; margin-top: 14px; }
.waitlist input[type='email'] {
  flex: 1 1 240px; min-width: 0;
  padding: 12px 16px; border-radius: 999px;
  border: 1.5px solid var(--muted-border); background: var(--surface); color: var(--void);
  font-family: var(--mono); font-size: 13px;
}
.waitlist input[type='email']:focus { outline: 2px solid var(--strike); outline-offset: 2px; border-color: var(--strike); }
.waitlist .hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.waitlist__status { flex-basis: 100%; margin: 6px 0 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--muted-text); }
.waitlist[data-state='joined'] .waitlist__status { color: #166534; }
.waitlist[data-state='error'] .waitlist__status { color: var(--strike-text); }
.waitlist[data-state='busy'] .btn { opacity: 0.6; pointer-events: none; }
.micro { margin-top: 12px; font-family: var(--mono); font-size: 11px; color: var(--muted-text); letter-spacing: 0.02em; }

/* ---- before / after ---- */
.demo { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; padding-block: 24px 64px; }
.arrow { font-family: var(--mono); font-size: 28px; color: var(--strike); text-align: center; }
.card {
  background: var(--surface); border: 0.5px solid var(--muted-border); border-radius: 10px; padding: 18px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 14px; line-height: 1.5; color: #1f1f1f;
}
.card__head { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.card__avatar { width: 40px; height: 40px; border-radius: 50%; background: #d8d6cf; }
.card__name { font-weight: 700; font-size: 14px; }
.card__meta { font-size: 12px; color: #6b6a66; }
.card p { margin: 0 0 10px; }
.card p:last-child { margin-bottom: 0; }

/* the extension's placeholder, verbatim values from src/content/styles.css */
.noslop-placeholder {
  border: 0.5px solid var(--muted-border); border-radius: 10px; padding: 16px 18px;
  background: var(--paper); font-family: var(--mono); font-size: 13px; line-height: 1.55; color: var(--muted-text);
  position: relative; overflow: hidden;
}
.noslop-placeholder__stamp {
  position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--strike-text); border: 1.5px solid var(--strike-text); padding: 3px 8px; border-radius: 3px; transform: rotate(-3deg);
}
.noslop-placeholder__title .strike { color: var(--strike-text); }
.noslop-placeholder__title { font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: -0.02em; color: var(--void); margin-bottom: 4px; padding-right: 90px; }
.noslop-placeholder__reasons { font-size: 11px; color: var(--muted-text); margin-bottom: 12px; letter-spacing: 0.02em; }
.noslop-placeholder__footer { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.noslop-placeholder__verdict {
  display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; background: var(--strike-tint); color: var(--strike-text); border: 0.5px solid var(--strike-border); margin-right: 8px;
}
.noslop-placeholder__action {
  background: transparent; border: 1px solid rgba(10, 10, 10, 0.3); border-radius: 999px; padding: 5px 12px;
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--void);
}

/* ---- sections ---- */
.section { padding-block: 56px; border-top: 0.5px solid var(--muted-border); }
.section .label { margin-bottom: 14px; display: block; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.step__num { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--strike-text); letter-spacing: 0.1em; margin-bottom: 10px; }
.step p { color: #2A2A28; font-size: 1rem; }
.rules { font-family: var(--mono); font-size: 12px; color: var(--muted-text); letter-spacing: 0.02em; margin-top: 20px; }
.slider { display: flex; gap: 10px; align-items: center; margin-top: 24px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.slider__track { flex: 1; height: 2px; background: var(--muted-border); position: relative; }
.slider__thumb { position: absolute; top: -7px; left: 50%; width: 16px; height: 16px; border-radius: 50%; background: var(--strike); transform: translateX(-50%); }

.badge-demo { display: inline-flex; gap: 10px; align-items: center; margin-top: 18px; }
.noslop-badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 3px 8px; border-radius: 4px;
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(245, 244, 240, 0.92); color: var(--muted-text); border: 0.5px solid var(--muted-border);
}
.noslop-badge--high { color: var(--strike-text); background: var(--strike-tint); border-color: var(--strike-border); }

.bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.bullets li { padding-left: 22px; position: relative; color: #2A2A28; }
.bullets li::before { content: '▸'; position: absolute; left: 0; color: var(--strike); font-family: var(--mono); }

.faq { display: grid; gap: 26px; }
.faq p { color: #2A2A28; margin: 8px 0 0; }

.footer { padding-block: 40px; border-top: 0.5px solid var(--muted-border); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted-text); }
.footer a { color: var(--muted-text); text-decoration: none; }
.footer a:hover { color: var(--void); }

/* ---- privacy / 404 pages ---- */
.prose { max-width: 68ch; padding-block: 40px 80px; }
.prose h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 8px; }
.prose h2 { font-size: 1.35rem; margin: 36px 0 10px; }
.prose ul { padding-left: 20px; color: #2A2A28; }
.prose .date { display: block; margin-bottom: 28px; }

@media (max-width: 720px) {
  .nav { flex-wrap: wrap; row-gap: 10px; }
  .nav__links { gap: 14px; flex-wrap: wrap; }
  .demo { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); }
  .steps { grid-template-columns: 1fr; }
}
