/* FCKYOURWEBSITE — v0 landing
   Tokens map 1:1 to brand/tokens.json
   Visual rules: black, white, hazard yellow as SIGNAL only.
   Sharp corners. Three fonts. Magazine-spread density. */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Color */
  --paper:       #FAFAFA;
  --ink:         #0A0A0A;
  --hazard:      #F0FF00;
  --hazard-deep: #C8D400;
  --fog:         #F2F2F2;
  --concrete:    #1A1A1A;
  --smoke:       #6B6B6B;
  --rule:        #2A2A2A;
  --rule-light:  #E5E5E5;

  /* Type */
  --f-display: 'Archivo Black', 'Helvetica Neue Black', 'Arial Black', sans-serif;
  --f-sans:    'Inter', Helvetica, Arial, sans-serif;
  --f-mono:    'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  /* Motion */
  --ease:     cubic-bezier(0.2, 0.9, 0.2, 1);
  --dur-fast: 120ms;
  --dur:      200ms;
  --dur-slow: 400ms;

  /* Layout */
  --max:    1240px;
  --gutter: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { overflow-x: hidden; }

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity var(--dur) var(--ease);
}
a:hover { opacity: 0.6; }

img, svg { display: block; max-width: 100%; }

/* ============ FRAME ============ */
/* Every page has frame furniture — top + bottom rules with mono labels. */

.frame {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: difference;
  color: var(--paper);
}
.frame-row {
  position: absolute;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.frame-top    { top: 0; }
.frame-bottom { bottom: 0; }

/* ============ EYEBROW + RULE ============ */

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--hazard-deep);
  line-height: 1.4;
}
.eyebrow.on-dark { color: var(--hazard); }

.rule { height: 2px; background: var(--ink); border: 0; margin: 12px 0; width: 200px; }
.rule.on-dark { background: var(--paper); }
.rule.hazard  { background: var(--hazard); }

/* ============ TYPE SCALE (matches bible) ============ */

.display, .h1, .h2 {
  font-family: var(--f-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  text-transform: uppercase;
  padding-top: 2px;
}
.display { font-size: clamp(56px, 11vw, 120px); line-height: 0.98; letter-spacing: -0.03em; }
.h1      { font-size: clamp(40px, 6vw, 56px); line-height: 1.0; }
.h2      { font-size: clamp(28px, 3.5vw, 32px); line-height: 1.1; letter-spacing: -0.015em; }

.h3 {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.body-lg { font-size: 17px; line-height: 1.6; max-width: 62ch; }
.body    { font-size: 15px; line-height: 1.6; max-width: 62ch; }
.small   { font-size: 13px; line-height: 1.5; }

.mono {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* ============ HAZARD HIGHLIGHT ============ */
/* Use sparingly — one per section, max. The fire extinguisher rule. */

.hi {
  background: var(--hazard);
  color: var(--ink);
  padding: 0 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ============ NAV ============ */

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.nav-mark {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.nav-mark .dot { color: var(--hazard-deep); }
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 0;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.nav-links a:hover { border-bottom-color: currentColor; opacity: 1; }
.nav-cta { /* see .btn below */ }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  border-bottom-width: 2px;
}
.btn-primary {
  background: var(--hazard);
  color: var(--ink);
}
.btn-primary:hover { background: var(--hazard-deep); opacity: 1; }
.btn-secondary {
  background: transparent;
  color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); opacity: 1; }
.btn-on-dark { border-color: var(--paper); color: var(--paper); }
.btn-on-dark:hover { background: var(--paper); color: var(--ink); }

.btn .price {
  font-family: var(--f-mono);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============ LAYOUT ============ */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 96px 0; }
.section-dark {
  background: var(--ink);
  color: var(--paper);
}
.section-dark .rule { background: var(--paper); }
.section-dark .h1,
.section-dark .h2,
.section-dark .display { color: var(--paper); }
.section-dark .eyebrow { color: var(--hazard); }
.section-dark .body,
.section-dark .body-lg { color: var(--paper); }
.section-dark .small  { color: var(--smoke); }

/* ============ HERO ============ */

.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 32px var(--gutter) 96px;
  border-bottom: 1px solid var(--rule);
}
.hero-inner { max-width: var(--max); margin: 0 auto; }
.hero-mark {
  margin-top: 64px;
  margin-bottom: 32px;
}
.hero-mark .word {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(60px, 13vw, 156px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--paper);
  display: block;
  padding-top: 6px;
}
.hero-mark .grawlix {
  color: var(--hazard);
  letter-spacing: -0.04em;
}
.hero-mark .dot { color: var(--hazard); }

.hero-rule {
  height: 2px;
  background: var(--paper);
  margin: 24px 0 32px;
  max-width: 720px;
}
.hero-sub {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.45;
  max-width: 720px;
  color: var(--paper);
  font-weight: 400;
}
.hero-sub .hi { color: var(--ink); }

.hero-meta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: center;
}
.hero-cta-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ FREE STRIP (between hero and shifts) ============ */
.free-strip {
  display: block;
  background: var(--hazard);
  color: var(--ink);
  text-decoration: none;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transition: background 200ms ease;
}
.free-strip:hover { background: var(--ink); color: var(--hazard); }
.free-strip:hover .free-strip-btn { background: var(--hazard); color: var(--ink); }
.free-strip:hover .arrow { transform: translateX(6px); }
.free-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.free-strip-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.85;
}
.free-strip-h {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 12px;
  padding-top: 2px;
}
.free-strip-sub {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 12px;
  max-width: 58ch;
}
.free-strip-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.free-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--hazard);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 2px solid var(--ink);
  transition: background 200ms ease, color 200ms ease;
}
.free-strip-btn .arrow {
  display: inline-block;
  font-family: var(--f-mono);
  transition: transform 200ms ease;
}
.free-strip-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .free-strip-inner { grid-template-columns: 1fr; gap: 24px; }
  .free-strip-cta { align-items: flex-start; }
}

/* ============ DEFINITION BLOCK ============ */
/* Mirrors the bible's cover: FRICTION as a dictionary entry. */

.def {
  padding: 96px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.def .word {
  font-family: var(--f-display);
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  display: inline;
}
.def .dot {
  display: inline-block;
  width: 0.3em;
  height: 0.3em;
  background: var(--hazard);
  margin-left: 0.05em;
  vertical-align: 0.05em;
}
.def .pos {
  font-family: var(--f-sans);
  font-style: italic;
  font-size: 17px;
  color: var(--smoke);
  margin-top: 24px;
  display: block;
}
.def .meaning {
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin-top: 12px;
}

/* ============ SHIFTS / GRID ============ */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 48px 0; }
}

.shift .eyebrow { margin-bottom: 12px; }
.shift .title {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.shift .copy {
  font-size: 15px;
  line-height: 1.6;
  color: var(--smoke);
}
.section-dark .shift .copy { color: #C9C9C9; }

/* ============ SECTION HEADER ============ */

.section-header { margin-bottom: 64px; max-width: 800px; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-header .sub {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--smoke);
  max-width: 60ch;
}
.section-dark .section-header .sub { color: #C9C9C9; }

/* ============ TABLE ============ */

.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tbl th, .tbl td {
  text-align: left;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-light);
  vertical-align: top;
}
.section-dark .tbl th,
.section-dark .tbl td { border-bottom-color: var(--rule); }

.tbl th {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--smoke);
  padding-bottom: 12px;
}
.tbl td.label {
  font-family: var(--f-sans);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.02em;
  width: 28%;
  padding-right: 24px;
}
.tbl td.detail {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}
.section-dark .tbl td.detail { color: var(--paper); }

/* ============ FINAL CTA ============ */

.cta-block {
  background: var(--hazard);
  color: var(--ink);
  padding: 96px var(--gutter);
}
.cta-block .inner { max-width: var(--max); margin: 0 auto; }
.cta-block .price-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.cta-block .h-massive {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-top: 24px;
  max-width: 14ch;
  padding-top: 4px;
}
.cta-block .row { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.cta-block .btn-primary {
  background: var(--ink);
  color: var(--hazard);
  border-color: var(--ink);
}
.cta-block .btn-primary:hover { background: transparent; color: var(--ink); }
.cta-block .btn-secondary { border-color: var(--ink); }

/* ============ FOOTER ============ */

.footer {
  background: var(--ink);
  color: var(--smoke);
  padding: 48px var(--gutter) 96px;
}
.footer .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.footer .mark {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.footer .mark .dot { color: var(--hazard); }
.footer-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: right;
}
.footer-meta .signed { color: var(--paper); }
.footer a { color: var(--paper); border-bottom-color: var(--rule); }
.footer a:hover { border-bottom-color: var(--hazard); opacity: 1; }

/* ============ PILLS ============ */

.pill {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
}
.pill.hazard { background: var(--hazard); color: var(--ink); }

/* ============ MEDIA ============ */

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .nav-links { display: none; }
  .section { padding: 64px 0; }
  .hero-mark { margin-top: 24px; }
  .footer .inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ============ INTAKE FORM ============ */

.intake-form {
  display: block;
}
.form-group {
  margin-bottom: 56px;
}
.field {
  margin-bottom: 28px;
}
.field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 12px;
}
.field .lbl {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.field .req {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--hazard);
  color: var(--ink);
  padding: 3px 8px;
}
.field .opt {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field textarea {
  width: 100%;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
  font-family: var(--f-sans);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #B5B5B5;
  font-family: var(--f-sans);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--hazard-deep);
  background: #FFFEF0;
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #FF4D4D;
}
.field .hint {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--smoke);
}

/* File input */
.file-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border: 2px dashed var(--ink);
  padding: 16px;
  background: var(--paper);
}
.file-wrap input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.file-button {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  border: 2px solid var(--ink);
}
.file-button:hover {
  background: var(--hazard);
  color: var(--ink);
}
.file-status {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--smoke);
}

/* Submit */
.form-actions {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--ink);
}
.submit-btn {
  font-size: 15px;
  padding: 18px 28px;
  min-width: 280px;
  position: relative;
}
.submit-btn .submit-loading { display: none; }
.submit-btn.is-loading .submit-text { display: none; }
.submit-btn.is-loading .submit-loading { display: inline; }
.submit-btn:disabled { opacity: 0.6; cursor: wait; }

/* Error */
.form-error {
  margin-top: 24px;
  padding: 20px 24px;
  border: 2px solid #FF4D4D;
  background: #FFF2F2;
}

/* Thanks state */
.form-thanks {
  padding: 64px 0;
}

/* Tier selector — Standard vs White-label */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) {
  .tier-grid { grid-template-columns: 1fr; }
}
.tier-card {
  display: block;
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 24px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
}
.tier-card:hover { background: #FFFEF0; }
.tier-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.tier-card:has(input[type="radio"]:checked) {
  background: var(--hazard);
  border-color: var(--ink);
}
.tier-card:has(input[type="radio"]:checked)::before {
  content: "✓ SELECTED";
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink);
  background: var(--ink);
  color: var(--hazard);
  padding: 3px 8px;
}
.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.tier-name {
  font-family: var(--f-sans);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.tier-price {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.tier-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 14px;
}
.tier-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
  padding-top: 12px;
}
.tier-includes li {
  font-family: var(--f-sans);
  font-size: 12px;
  line-height: 1.55;
  padding: 6px 0 6px 18px;
  position: relative;
  color: var(--ink);
}
.tier-includes li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink);
}

/* Checkbox — consent */
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  padding: 16px;
  border: 2px solid var(--ink);
  background: var(--paper);
  transition: background var(--dur) var(--ease);
}
.checkbox-field:hover { background: #FFFEF0; }
.checkbox-field input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}
.checkbox-mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid var(--ink);
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--paper);
  position: relative;
  transition: background var(--dur) var(--ease);
}
.checkbox-field input:checked + .checkbox-mark {
  background: var(--hazard);
}
.checkbox-field input:checked + .checkbox-mark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 7px;
  height: 12px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(45deg);
}
.checkbox-field input:focus + .checkbox-mark {
  outline: 2px solid var(--hazard);
  outline-offset: 2px;
}
.checkbox-lbl {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}

/* Promo code toggle */
.promo-toggle {
  border: 1px solid var(--rule-light);
  padding: 0;
}
.promo-toggle summary {
  list-style: none;
  cursor: pointer;
  padding: 16px;
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.promo-toggle summary::-webkit-details-marker { display: none; }
.promo-toggle summary::after {
  content: '+';
  font-family: var(--f-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--smoke);
  transition: transform var(--dur) var(--ease);
}
.promo-toggle[open] summary::after { content: '−'; }
.promo-toggle .promo-input {
  padding: 0 16px 20px 16px;
  border-top: 1px solid var(--rule-light);
  padding-top: 16px;
  margin-top: 0;
}
.promo-toggle .promo-input label {
  margin-top: 8px;
  margin-bottom: 10px;
}
.promo-toggle input[type="text"] {
  width: 100%;
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.promo-toggle input[data-valid="true"] {
  border-color: var(--hazard-deep);
  background: #FFFEF0;
}

/* ============ BULLET LIST (what this is / isn't) ============ */

.bullet-list {
  list-style: none;
  margin-top: 28px;
  padding: 0;
}
.bullet-list li {
  font-size: 15px;
  line-height: 1.55;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--rule-light);
  position: relative;
  color: var(--ink);
}
.bullet-list li:last-child { border-bottom: 0; }
.bullet-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--ink);
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 13px;
}
.bullet-list.muted li { color: var(--smoke); }
.bullet-list.muted li::before {
  content: "—";
  color: var(--smoke);
}
.section-dark .bullet-list li,
.section-dark .bullet-list.muted li { border-bottom-color: var(--rule); }
.section-dark .bullet-list li,
.section-dark .bullet-list li::before { color: var(--paper); }
.section-dark .bullet-list.muted li,
.section-dark .bullet-list.muted li::before { color: var(--smoke); }

.tag-plus {
  display: inline-block;
  background: var(--hazard);
  color: var(--ink);
  padding: 4px 8px;
}
.tag-minus {
  display: inline-block;
  background: transparent;
  color: var(--smoke);
  padding: 4px 0;
}

/* ============ MOTION (v0) ============ */
/* Loaded only when motion.js sets .js-motion on <html>. */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--hazard);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1000;
  pointer-events: none;
  will-change: transform;
  transition: transform 80ms linear;
}

/* Hazard reveal — draws yellow background left-to-right on viewport entry.
   Default .hi stays solid yellow for no-JS / pre-load. Only progressive enhancement. */
.js-motion .hi {
  background-image: linear-gradient(90deg, var(--hazard), var(--hazard));
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: 0% 100%;
  background-position: left center;
  transition: background-size var(--dur-slow) var(--ease);
}
.js-motion .hi.is-on {
  background-size: 100% 100%;
}

/* Magnetic CTA — transform applied inline by motion.js; we just need smooth return. */
.js-motion .btn-primary {
  transition: transform 280ms var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease);
  will-change: transform;
}

/* Eyebrow type-in — each char fades up on its own setTimeout */
.js-motion .eyebrow span {
  transition: opacity 80ms linear;
  display: inline-block;
  white-space: pre;
}

