/* ==========================================================================
   Still Got A Pulse Club
   Loaded after bootstrap.min.css. Overrides only what it needs to.
   ========================================================================== */

@font-face {
  font-family: 'Anton';
  src: url('../fonts/anton-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  /* Pure black so the logo's own black ground disappears into the page. */
  --ink:        #000000;
  --ink-panel:  #0C0C0C;
  --paper:      #FBF8F5;
  --muted:      #9A9591;
  --red:        #FD2E2F;
  --red-deep:   #D8232A;
  --hair:       rgba(251, 248, 245, 0.10);
  --display:    'Anton', 'Arial Narrow', 'Haettenschweiler', Impact, sans-serif;
  --body:       'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* --------------------------------------------------------------- base --- */

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Faint grain, echoing the distressed mark without smearing it everywhere.
   It sits ABOVE the content, not behind it. Behind, it lifts the page
   background off pure black while the logo stays at a true #000, and the
   mark then reads as a slightly darker square. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.035;
  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.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

::selection { background: var(--red); color: #fff; }

a { color: var(--red); text-underline-offset: 3px; }
a:hover { color: var(--paper); }

.skip {
  position: absolute; top: 1rem; left: 1rem; z-index: 50;
  background: var(--red); color: #fff; padding: .6rem 1rem; border-radius: 2px;
}

.container { max-width: 1160px; padding-left: 1.25rem; padding-right: 1.25rem; }
.container.narrow { max-width: 760px; }

/* ------------------------------------------------------------ headings --- */

.display-head {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.35rem, 7.2vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0 0 1.5rem;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--red);
  margin: 0 0 1rem;
}

.lead-lg {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--paper);
  margin-bottom: 1.6rem;
}

p { color: var(--muted); margin-bottom: 1.35rem; }
p.lead-lg, .manifesto p { color: var(--paper); }

/* ---------------------------------------------------------------- hero --- */

.hero {
  padding: clamp(3rem, 9vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.hero-logo {
  display: block;
  width: min(440px, 82vw);
  height: auto;
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
}

.hero-line {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.75rem, 5.4vw, 3.15rem);
  line-height: 0.97;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 2.25rem;
}

.hero-actions { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }

/* -------------------------------------------------------------- buttons -- */

.btn-pulse, .btn-ghost {
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  padding: 0.85rem 1.85rem;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-pulse { background: var(--red); color: #fff; border-color: var(--red); }
.btn-pulse:hover, .btn-pulse:focus-visible { background: var(--red-deep); border-color: var(--red-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--hair); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--paper); color: var(--paper); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

/* ----------------------------------------------------------- pulse rule -- */

.pulse-rule { color: var(--red); line-height: 0; }
.pulse-rule svg { display: block; width: 100%; height: clamp(34px, 5vw, 56px); }

/* ------------------------------------------------------------- sections -- */

.section { padding: clamp(3.5rem, 9vw, 7rem) 0; border-top: 1px solid var(--hair); }
.section.alt { background: var(--ink-panel); }
.section:first-of-type { border-top: 0; }

/* ------------------------------------------------------------ manifesto -- */

.manifesto { text-align: center; border-top: 0; padding-top: clamp(2.5rem, 6vw, 4rem); }
.still {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4.6vw, 2.8rem);
  line-height: 1.12;
  margin: 0;
}
.still span { display: block; }
.still .red { color: var(--red); }

/* ----------------------------------------------------------- pull quote -- */

.pull {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3.4vw, 2.05rem);
  line-height: 1.1;
  color: var(--paper);
  border-left: 5px solid var(--red);
  padding: 0.35rem 0 0.35rem 1.4rem;
  margin: 2.5rem 0;
  text-wrap: balance;
}

/* ---------------------------------------------------------------- steps -- */

.step { padding-top: 1.25rem; border-top: 3px solid var(--red); height: 100%; }
.step-n {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--red);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: .5rem;
}
.step h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.45rem;
  margin: 0 0 .65rem;
}
.step p { margin: 0; font-size: 1.0625rem; }

/* ---------------------------------------------------------------- cards -- */

.card-sgap {
  background: var(--ink-panel);
  border: 1px solid var(--hair);
  border-radius: 3px;
  padding: 1.75rem 1.6rem 1.5rem;
  height: 100%;
  transition: border-color .18s ease, transform .18s ease, background-color .18s ease;
}
.card-sgap:hover { border-color: var(--red); transform: translateY(-3px); background: #131313; }
.card-sgap .kicker {
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.66rem; color: var(--red); display: block; margin-bottom: .65rem;
}
.card-sgap h3 {
  font-family: var(--display); text-transform: uppercase;
  font-size: 1.6rem; line-height: 1.05; margin: 0 0 .7rem;
}
.card-sgap p { margin: 0; font-size: 1.02rem; line-height: 1.6; }

/* ------------------------------------------------------------- the nope -- */

.nope-section .display-head { margin-bottom: 2rem; }
.nope { list-style: none; padding: 0; margin: 0; }
.nope li {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.15rem, 3.2vw, 1.8rem);
  line-height: 1.25;
  padding: .7rem 0;
  border-bottom: 1px solid var(--hair);
}
.nope .x { color: var(--red); font-size: 1.15em; line-height: 1; flex: 0 0 auto; }

/* ----------------------------------------------------------------- join -- */

.join { background: var(--ink-panel); }

.signup .form-label {
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  margin-bottom: .4rem;
  color: var(--paper);
}
.signup .opt {
  font-weight: 400; text-transform: uppercase; letter-spacing: .18em;
  font-size: .62rem; color: var(--muted); margin-left: .5rem;
}
.signup .form-control {
  background: #070707;
  border: 1px solid rgba(251, 248, 245, 0.22);
  border-radius: 2px;
  color: var(--paper);
  padding: .8rem .95rem;
  font-size: 1.05rem;
}
.signup .form-control:focus {
  background: #070707;
  border-color: var(--red);
  box-shadow: 0 0 0 .2rem rgba(253, 46, 47, .22);
  color: var(--paper);
}
.signup .form-control::placeholder { color: #6E6A67; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.small-print { font-size: .9rem; color: var(--muted); }

.notice { border-radius: 3px; padding: 1.15rem 1.35rem; margin-bottom: 1.75rem; }
.notice.good { background: rgba(253, 46, 47, .1); border-left: 4px solid var(--red); }
.notice.bad  { background: rgba(253, 46, 47, .1); border-left: 4px solid var(--red); }
.notice strong { color: var(--paper); display: block; margin-bottom: .35rem; font-size: 1.1rem; }
.notice p, .notice li { color: var(--muted); }
.notice ul { padding-left: 1.1rem; margin-bottom: 0; }

/* --------------------------------------------------------------- footer -- */

.footer {
  border-top: 1px solid var(--hair);
  padding: clamp(2.5rem, 6vw, 4rem) 0 3rem;
  text-align: center;
}
.foot-mark {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(1.4rem, 4vw, 2rem); color: var(--paper); margin-bottom: .75rem;
}
.foot-sub {
  text-transform: uppercase; letter-spacing: .16em; font-size: .72rem;
  font-weight: 600; color: var(--muted); line-height: 2; margin-bottom: 1.5rem;
}
.foot-small { font-size: .8rem; color: #6E6A67; margin: 0; }

/* ------------------------------------------------------------ reveal ---- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }