/* =========================================================
   APPLIED LEVERAGE — Expert Secrets funnel site
   Full-strength direct-response aesthetic
   ========================================================= */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,800;9..144,900&family=Inter:wght@400;500;600;700;800;900&family=Caveat:wght@500;700&display=swap');

/* ---- Design tokens ---- */
:root {
  --ink: #0d0b0a;
  --ink-soft: #1a1714;
  --paper: #f5efe4;
  --paper-warm: #ede3cf;
  --cream: #fbf7ed;
  --yellow: #ffd84d;
  --yellow-soft: #fff0b0;
  --red: #e6471c;
  --red-dark: #b73313;
  --green: #1f4d3a;
  --green-bright: #2e7a5a;
  --rule: #b8a888;
  --mute: #6b5f50;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --hand: 'Caveat', cursive;

  --page-max: 1080px;
  --narrow-max: 760px;
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 800; }
h4 { font-size: 1.15rem; font-weight: 800; }

p { margin: 0 0 1.1em; }

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

strong, b { font-weight: 800; }

em { font-style: italic; }

blockquote {
  margin: 2em 0;
  padding: 1.4em 1.8em;
  border-left: 5px solid var(--ink);
  background: var(--cream);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.4;
}

/* ---- Layout helpers ---- */
.wrap { max-width: var(--page-max); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: var(--narrow-max); margin: 0 auto; padding: 0 28px; }

section { padding: 80px 0; }
section.tight { padding: 50px 0; }

.divider {
  height: 1px;
  background: var(--rule);
  max-width: var(--narrow-max);
  margin: 0 auto;
  opacity: 0.5;
}

/* ---- Top urgency bar ---- */
.urgency-bar {
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 3px solid var(--red);
}
.urgency-bar strong { color: #fff; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; }

/* ---- Nav ---- */
.nav {
  background: var(--ink);
  color: var(--paper);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid #2a2420;
}
.nav-brand {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-brand .dot { color: var(--yellow); }
.nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
.nav-links a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  text-decoration: none;
  font-size: 0.9rem !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); color: #fff; }

/* ---- Hero ---- */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,216,77,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero h1 { color: #fff; max-width: 900px; }
.hero h1 .hl { background: var(--yellow); color: var(--ink); padding: 0 0.2em; display: inline-block; transform: rotate(-0.5deg); }
.hero .kicker {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 6px 14px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero .sub {
  color: var(--paper);
  font-size: 1.3rem;
  line-height: 1.5;
  max-width: 720px;
  margin-top: 24px;
  opacity: 0.92;
}
.hero .hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.hero .hand-note {
  font-family: var(--hand);
  color: var(--yellow);
  font-size: 1.6rem;
  transform: rotate(-3deg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero .hand-note::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--yellow);
  display: inline-block;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 18px 34px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.08s, box-shadow 0.08s;
  cursor: pointer;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1;
}
.btn:hover {
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--red-dark);
}
.btn::after { content: '→'; font-weight: 900; }
.btn-big { padding: 22px 42px; font-size: 1.2rem; }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 2px solid var(--paper);
  box-shadow: none;
}
.btn-ghost::after { content: ''; }
.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
  transform: none;
}
.btn-block { width: 100%; box-sizing: border-box; }

/* ---- Highlighter span ---- */
.hl {
  background: var(--yellow);
  padding: 0 0.15em;
  display: inline;
  font-weight: inherit;
}
.hl-line {
  background: linear-gradient(transparent 55%, var(--yellow) 55%);
  padding: 0 0.05em;
}

/* ---- Section headings ---- */
.section-label {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.center { text-align: center; }

/* ---- Big Domino block ---- */
.domino {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 46px 44px;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  box-shadow: 8px 8px 0 var(--ink);
}
.domino::before {
  content: 'The big domino';
  position: absolute;
  top: -16px; left: 30px;
  background: var(--ink);
  color: var(--yellow);
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.domino p {
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
}

/* ---- 3 Secrets cards ---- */
.secrets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.secret {
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 32px 28px;
  position: relative;
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
}
.secret .num {
  position: absolute;
  top: -22px; left: 20px;
  background: var(--red);
  color: #fff;
  width: 44px; height: 44px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.3rem;
}
.secret h3 { margin-top: 14px; }
.secret .myth {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.secret .truth {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  margin-top: 16px;
}

/* ---- Stack slide ---- */
.stack {
  background: var(--ink);
  color: var(--paper);
  padding: 42px 36px;
  max-width: 720px;
  margin: 40px auto;
  border-radius: var(--radius);
  border: 3px solid var(--yellow);
  position: relative;
}
.stack::before {
  content: 'Here is everything you get';
  position: absolute;
  top: -15px; left: 28px;
  background: var(--yellow);
  color: var(--ink);
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.stack ol {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  counter-reset: stackcounter;
}
.stack li {
  counter-increment: stackcounter;
  padding: 16px 0 16px 52px;
  border-bottom: 1px dashed #3a302a;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.stack li::before {
  content: counter(stackcounter);
  position: absolute;
  left: 0; top: 14px;
  background: var(--yellow);
  color: var(--ink);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
}
.stack li .name { flex: 1; }
.stack li .name strong { display: block; margin-bottom: 2px; font-size: 1.05rem; color: #fff; }
.stack li .name .sub { font-size: 0.9rem; opacity: 0.78; font-weight: 400; }
.stack li .val { font-weight: 800; color: var(--yellow); font-family: var(--display); font-size: 1.1rem; white-space: nowrap; }
.stack .total {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 3px solid var(--yellow);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.stack .total .label {
  font-family: var(--body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.stack .total .value {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
}
.stack .total .strike {
  text-decoration: line-through;
  opacity: 0.55;
  font-size: 1.4rem;
  margin-right: 10px;
}
.stack .today {
  margin-top: 8px;
  text-align: center;
  padding: 22px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: var(--radius);
  font-family: var(--display);
  font-weight: 900;
}
.stack .today .small {
  display: block;
  font-size: 0.9rem;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.stack .today .big { font-size: 2.8rem; line-height: 1; }

/* ---- If/All ---- */
.ifall {
  background: var(--cream);
  padding: 30px 30px;
  border-left: 6px solid var(--yellow);
  margin: 16px 0;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.4;
}
.ifall .q { font-weight: 800; }

/* ---- Testimonial / case study card ---- */
.case {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  box-shadow: 6px 6px 0 var(--ink);
}
.case .headshot {
  width: 70px; height: 70px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.3rem;
  border: 3px solid var(--yellow);
  margin-right: 16px;
  vertical-align: middle;
}
.case .caseperson {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.case .caseperson .meta strong {
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
}
.case .caseperson .meta span {
  color: var(--mute);
  font-size: 0.95rem;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 24px 0;
  padding: 20px;
  background: var(--paper-warm);
  border-radius: var(--radius);
}
.metric {
  text-align: center;
}
.metric .label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mute);
  margin-bottom: 4px;
}
.metric .value {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--ink);
}
.metric .delta {
  display: block;
  font-size: 0.85rem;
  color: var(--green-bright);
  font-weight: 700;
}
.case blockquote {
  background: transparent;
  padding: 10px 0;
  border: none;
  border-left: 4px solid var(--yellow);
  padding-left: 20px;
  font-size: 1.15rem;
}

/* ---- Manifesto block ---- */
.manifesto-block {
  background: var(--ink);
  color: var(--paper);
  padding: 70px 50px;
  border-radius: var(--radius);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.manifesto-block h2 { color: var(--yellow); }
.manifesto-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  counter-reset: manifesto;
}
.manifesto-list li {
  counter-increment: manifesto;
  padding: 18px 0 18px 60px;
  position: relative;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.35;
  border-bottom: 1px solid #302820;
  font-weight: 600;
}
.manifesto-list li:last-child { border-bottom: none; }
.manifesto-list li::before {
  content: counter(manifesto, decimal-leading-zero);
  position: absolute;
  left: 0; top: 18px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.05em;
}

/* ---- Marginalia / handwritten ---- */
.hand {
  font-family: var(--hand);
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1.1;
  display: inline-block;
}
.hand.rot-l { transform: rotate(-3deg); }
.hand.rot-r { transform: rotate(2deg); }

.arrow-down {
  display: inline-block;
  width: 24px;
  height: 44px;
  position: relative;
  transform: rotate(-10deg);
}
.arrow-down::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
  transform: translateX(-50%);
}
.arrow-down::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: translateX(-50%) rotate(45deg);
}

/* ---- Guarantee badge ---- */
.guarantee {
  background: var(--green);
  color: #fff;
  padding: 36px 40px;
  border-radius: var(--radius);
  max-width: 720px;
  margin: 40px auto;
  display: flex;
  gap: 28px;
  align-items: center;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.guarantee .seal {
  flex-shrink: 0;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  border: 4px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
  line-height: 1;
}
.guarantee .seal .big { font-size: 2rem; }
.guarantee .seal .small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; margin-top: 4px; font-family: var(--body); font-weight: 800; }
.guarantee h3 { color: #fff; margin-bottom: 8px; }
.guarantee p { margin: 0; opacity: 0.95; }

/* ---- Forms ---- */
.form-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--ink);
  max-width: 460px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-field input {
  width: 100%;
  padding: 14px 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 1.05rem;
  background: #fff;
}
.form-field input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--yellow-soft); }
.form-trust {
  font-size: 0.85rem;
  color: var(--mute);
  text-align: center;
  margin-top: 10px;
}

/* ---- FAQ ---- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 20px 24px;
  margin-bottom: 14px;
  border-radius: var(--radius);
}
.faq summary {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.8rem; color: var(--red); transition: transform 0.15s; }
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { margin-bottom: 10px; }

/* ---- Enemies list ---- */
.enemy-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 30px 0;
}
.enemy-list li {
  background: var(--cream);
  padding: 18px 18px 18px 44px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  position: relative;
  font-weight: 600;
}
.enemy-list li::before {
  content: '✗';
  position: absolute;
  left: 14px; top: 14px;
  width: 22px; height: 22px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
}

.instead-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 30px 0;
}
.instead-list li {
  background: var(--cream);
  padding: 18px 18px 18px 44px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  position: relative;
  font-weight: 600;
}
.instead-list li::before {
  content: '✓';
  position: absolute;
  left: 14px; top: 14px;
  width: 22px; height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
}

/* ---- Scarcity / countdown ---- */
.scarcity {
  background: var(--paper-warm);
  border: 2px dashed var(--red);
  padding: 18px 22px;
  border-radius: var(--radius);
  max-width: 540px;
  margin: 28px auto;
  text-align: center;
}
.scarcity strong { color: var(--red); display: block; font-size: 1.05rem; margin-bottom: 4px; }

/* ---- Price drop row ---- */
.price-drop {
  text-align: center;
  padding: 30px 0;
}
.price-drop .was {
  text-decoration: line-through;
  color: var(--mute);
  font-size: 1.4rem;
}
.price-drop .now {
  font-family: var(--display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  display: block;
  line-height: 1;
}
.price-drop .small { display: block; font-size: 0.9rem; color: var(--mute); margin-top: 8px; letter-spacing: 0.08em; font-weight: 600; }

/* ---- Footer ---- */
footer.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0 40px;
  margin-top: 0;
}
footer.site-footer .signoff {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 10px;
}
footer.site-footer .handsig {
  font-family: var(--hand);
  font-size: 2.2rem;
  color: var(--paper);
}
footer.site-footer .meta {
  margin-top: 28px;
  font-size: 0.85rem;
  opacity: 0.65;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer.site-footer .meta a { color: var(--yellow); }

/* ---- Story (long form) ---- */
.story {
  max-width: 680px;
  margin: 0 auto;
}
.story p { font-size: 1.18rem; line-height: 1.7; }
.story .drop {
  float: left;
  font-family: var(--display);
  font-weight: 900;
  font-size: 5rem;
  line-height: 0.85;
  padding: 10px 14px 0 0;
  color: var(--red);
}

/* ---- Origin story teaser ---- */
.teaser {
  background: var(--cream);
  padding: 60px 50px;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}
.teaser .qlead {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ---- Small inline items ---- */
.badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge.red { background: var(--red); }
.badge.yellow { background: var(--yellow); color: var(--ink); }

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 780px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  section { padding: 60px 0; }
  .hero { padding: 60px 0 80px; }
  .domino, .teaser, .manifesto-block { padding: 30px 22px; }
  .guarantee { flex-direction: column; text-align: center; }
  .stack { padding: 30px 22px; }
  .nav { flex-wrap: wrap; gap: 16px; }
  .nav-links { width: 100%; justify-content: flex-start; }
}

/* ---- Dense bullet loops (opt-in) ---- */
.loops {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.loops li {
  padding: 12px 0 12px 44px;
  position: relative;
  font-size: 1.08rem;
  line-height: 1.5;
  border-bottom: 1px dashed var(--rule);
}
.loops li:last-child { border-bottom: none; }
.loops li::before {
  content: '';
  position: absolute;
  left: 8px; top: 18px;
  width: 0; height: 0;
  border-left: 12px solid var(--red);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* ---- Us vs. them columns ---- */
.vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 36px;
}
@media (max-width: 780px) {
  .vs { grid-template-columns: 1fr; }
}
.vs-col {
  padding: 30px;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
}
.vs-col.them { background: #f0e8d8; }
.vs-col.us { background: var(--ink); color: var(--paper); }
.vs-col h3 { text-transform: uppercase; letter-spacing: 0.08em; font-size: 1rem; margin-bottom: 16px; }
.vs-col.them h3 { color: var(--red); }
.vs-col.us h3 { color: var(--yellow); }
.vs-col ul { list-style: none; padding: 0; margin: 0; }
.vs-col li { padding: 8px 0; border-bottom: 1px dashed currentColor; opacity: 0.9; }
.vs-col li:last-child { border-bottom: none; }
