/* =========================================================
   Atti X — stylesheet (v2)
   Matches the book's actual brand: navy + lime green + white
   ========================================================= */

:root {
  /* Brand palette — sampled directly from the book cover */
  --navy: #1e3a5f;
  --navy-deep: #14263f;
  --navy-mid: #354b63;
  --navy-soft: #5a6d85;

  --lime: #7ba71c;
  --lime-bright: #9dc93a;
  --lime-deep: #5a7a14;

  --white: #ffffff;
  --off-white: #fafaf7;
  --paper: #f5f4ef;

  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --ink-mute: #6b6b6b;
  --ink-faint: #a0a0a0;

  --rule: rgba(26, 26, 26, 0.12);
  --rule-strong: rgba(26, 26, 26, 0.22);
  --rule-navy: rgba(30, 58, 95, 0.18);

  --sans: "Mulish", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --max: 1240px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--lime); color: var(--navy-deep); }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}

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

/* Trademark superscript — small and subtle */
.tm {
  font-size: 0.42em;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.08em;
  letter-spacing: 0;
  opacity: 0.75;
}

.attix-italic {
  font-style: italic;
  font-weight: 800;
  color: var(--lime);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.nav__brand { display: flex; align-items: center; gap: 0.55rem; }
.nav__logo-img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.nav__status {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-deep);
  background: rgba(123, 167, 28, 0.12);
  border: 1px solid rgba(123, 167, 28, 0.35);
  padding: 0.22rem 0.55rem;
  margin-left: 0.6rem;
  font-weight: 700;
  border-radius: 2px;
  white-space: nowrap;
  align-self: center;
}
@media (max-width: 600px) {
  .nav__status {
    font-size: 0.52rem;
    padding: 0.18rem 0.4rem;
    margin-left: 0.4rem;
  }
}
.nav__wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-mid);
}
.nav__links a { transition: color 0.2s; }
.nav__links a:hover { color: var(--lime-deep); }
.nav__cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 2px;
}
.nav__cta:hover { background: var(--lime); color: var(--navy-deep) !important; }
.nav__menu {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav__menu span { display: block; width: 22px; height: 2px; background: var(--navy); }

@media (max-width: 840px) {
  .nav__links { display: none; }
  .nav__menu { display: flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    padding: 1rem var(--pad);
  }
  .nav__links.is-open a { padding: 0.8rem 0; border-bottom: 1px solid var(--rule); }
  .nav__links.is-open a:last-child { border: 0; }
}

.nav--dark {
  background: rgba(20, 38, 63, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav--dark .nav__wordmark { color: var(--white); }
.nav--dark .nav__links a { color: rgba(255,255,255,0.85); }
.nav--dark .nav__links a:hover { color: var(--lime-bright); }
.nav--dark .nav__cta { background: var(--lime); color: var(--navy-deep) !important; }
.nav--dark .nav__cta:hover { background: var(--white); color: var(--navy-deep) !important; }
.nav--dark .nav__menu span { background: var(--white); }
.nav__links--active { color: var(--lime) !important; }
.nav--dark .nav__links--active { color: var(--lime-bright) !important; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad) clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0;
  font-weight: 800;
  color: var(--navy);
}
.hero__title--italic {
  display: block;
  font-style: italic;
  color: var(--navy-soft);
  font-weight: 700;
  padding-left: clamp(1rem, 4vw, 3rem);
}
.hero__title--accent {
  display: block;
  color: var(--lime);
  font-weight: 800;
  padding-left: clamp(0.5rem, 2vw, 1.5rem);
}

.hero__rule {
  width: 60px;
  height: 3px;
  background: var(--navy);
  margin: 1.8rem 0 1.5rem;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  max-width: 36em;
  margin: 0 0 2.2rem;
  color: var(--ink-soft);
}

.hero__ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.hero__meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-soft);
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.sep { color: var(--lime); }

.hero__cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__cover img {
  width: 100%;
  max-width: 500px;
  height: auto;
  box-shadow:
    0 20px 40px -10px rgba(20, 38, 63, 0.3),
    0 8px 16px -6px rgba(20, 38, 63, 0.2);
}
.hero__flag {
  position: absolute;
  top: 6%;
  right: 2%;
  background: var(--lime);
  color: var(--navy-deep);
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  transform: rotate(3deg);
  font-weight: 800;
  box-shadow: 0 6px 16px -6px rgba(123, 167, 28, 0.55);
}
.flag__label { display: block; }
.flag__label--strong { font-weight: 800; font-size: 0.88rem; }

.hero__ticker {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  white-space: nowrap;
  background: var(--off-white);
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
  width: calc(100% + 2 * var(--pad));
}
.ticker__track {
  display: inline-block;
  animation: ticker 36s linear infinite;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 600;
  color: var(--navy-mid);
  letter-spacing: 0.02em;
}
.ticker__track > span { padding: 0 1.2rem; }
.ticker__dot { color: var(--lime); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
  text-align: center;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--lime); color: var(--navy-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--outline { background: transparent; border: 2px solid var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--lime { background: var(--lime); color: var(--navy-deep); }
.btn--lime:hover { background: var(--lime-bright); color: var(--navy-deep); }
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 1.2rem 1.8rem; font-size: 0.92rem; }

/* ============ SECTION NUMBERS ============ */
.section__num {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 800;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--navy);
}

/* ============ THESIS (navy section) ============ */
.thesis {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: var(--navy);
  color: var(--white);
}
.thesis__inner { max-width: var(--max); margin: 0 auto; }
.thesis__num {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-bright);
  font-weight: 800;
  margin-bottom: 1.2rem;
  display: inline-block;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--lime-bright);
}
.thesis__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  max-width: 18ch;
  margin: 0 0 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.thesis__title--emph { color: var(--lime-bright); }
.thesis__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 70ch;
  margin-bottom: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 700px) { .thesis__cols { grid-template-columns: 1fr; gap: 1rem; } }
.thesis__col p { margin: 0 0 1rem; color: rgba(255,255,255,0.92); font-size: 1.02rem; line-height: 1.6; }
.thesis__col strong { color: var(--white); font-weight: 800; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  background: rgba(255,255,255,0.06);
  padding: 2.2rem 1.8rem;
  border-left: 3px solid var(--lime-bright);
  transition: background 0.3s;
}
.pillar:hover { background: rgba(255,255,255,0.1); }
.pillar__num {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--lime-bright);
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.pillar h3 { font-size: 1.4rem; line-height: 1.2; margin-bottom: 0.9rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.pillar p { margin: 0; font-size: 0.96rem; color: rgba(255,255,255,0.85); line-height: 1.55; }

/* ============ LINES OF SIGHT (white) ============ */
.lines {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: var(--white);
}
.lines__inner { max-width: var(--max); margin: 0 auto; }
.lines__header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}
.lines__header .section__num { margin: 0 auto 1.5rem; }
.lines__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.lines__header h2 em { color: var(--lime); font-style: italic; }
.lines__lede { max-width: 52ch; margin: 0 auto; color: var(--ink-soft); font-size: 1.02rem; }

.lines__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .lines__grid { grid-template-columns: 1fr; } }

.line {
  background: var(--off-white);
  padding: 2.2rem 1.8rem 1.8rem;
  border-top: 4px solid var(--navy);
  transition: transform 0.3s, box-shadow 0.3s;
}
.line:hover { transform: translateY(-3px); box-shadow: 0 15px 30px -15px rgba(20,38,63,0.2); }
.line--urgent {
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid var(--lime-bright);
}
.line__sigil {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 1.2rem;
}
.line--urgent .line__sigil { color: var(--lime-bright); }
.line__label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.line--urgent .line__label { color: var(--lime-bright); }
.line__title { font-size: 2.1rem; font-weight: 800; margin-bottom: 0.8rem; color: var(--navy); letter-spacing: -0.02em; }
.line--urgent .line__title { color: var(--white); }
.line__q {
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
}
.line--urgent .line__q { color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.18); }
.line__list { list-style: none; margin: 0 0 1.3rem; padding: 0; font-size: 0.92rem; }
.line__list li { padding: 0.4rem 0 0.4rem 1.3rem; position: relative; color: var(--ink-soft); }
.line--urgent .line__list li { color: rgba(255,255,255,0.88); }
.line__list li::before {
  content: "•"; position: absolute; left: 0; color: var(--lime);
  font-weight: 800; font-size: 1.2em; line-height: 1; top: 0.35em;
}
.line--urgent .line__list li::before { color: var(--lime-bright); }
.line__note {
  font-size: 0.88rem; color: var(--ink-mute); line-height: 1.55;
  padding-top: 1rem; border-top: 1px solid var(--rule); margin: 0;
}
.line--urgent .line__note { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.15); }
.line__note strong { color: var(--lime); }
.line--urgent .line__note strong { color: var(--lime-bright); }

/* ============ EVIDENCE (navy) ============ */
.evidence {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.evidence__inner { max-width: var(--max); margin: 0 auto; position: relative; }
.evidence__num {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-bright);
  font-weight: 800;
  margin-bottom: 1.2rem;
  display: inline-block;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--lime-bright);
}
.evidence__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
  color: var(--white);
  max-width: 20ch;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.evidence__lede {
  max-width: 60ch;
  color: rgba(255,255,255,0.75);
  margin: 0 0 3rem;
  font-size: 1rem;
  line-height: 1.65;
}

.tiers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

.tier {
  background: rgba(255,255,255,0.06);
  padding: 1.8rem 1.5rem;
  border-top: 4px solid var(--lime-bright);
}
.tier--secondary { border-top-color: #d4a043; }
.tier--tertiary { border-top-color: rgba(255,255,255,0.35); }
.tier__tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--lime-bright);
}
.tier--secondary .tier__tag { color: #e8b55c; }
.tier--tertiary .tier__tag { color: rgba(255,255,255,0.55); }

.tier h3 { font-size: 1.5rem; color: var(--white); font-weight: 800; letter-spacing: -0.01em; margin-bottom: 0.6rem; }
.tier__rule {
  font-size: 0.95rem; color: rgba(255,255,255,0.92);
  margin: 0 0 1.2rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-style: italic; font-weight: 500;
}
.tier ul { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.55; }
.tier ul li { padding: 0.32rem 0; padding-left: 1.1rem; position: relative; }
.tier ul li::before { content: "•"; position: absolute; left: 0.25rem; color: var(--lime-bright); font-weight: 800; }

.evidence__tag {
  margin-top: 2.5rem;
  font-size: 1.1rem;
  color: var(--white);
  max-width: 52ch;
  line-height: 1.5;
  font-weight: 600;
  padding-left: 1.5rem;
  border-left: 4px solid var(--lime-bright);
  font-style: italic;
}

/* ============ BOOK (white) ============ */
.book {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: var(--white);
}
.book__inner { max-width: var(--max); margin: 0 auto; }
.book__header { margin-bottom: 3rem; }
.book__header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  max-width: 22ch;
  margin-bottom: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.book__lede {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--lime-deep);
  max-width: 52ch;
  line-height: 1.4;
  font-weight: 600;
  font-style: italic;
  margin: 0;
}

.book__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 960px) {
  .book__layout { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .book__art { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .book__layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

.book__art { position: sticky; top: 100px; }
.book__art img { width: 100%; height: auto; box-shadow: 0 15px 30px -15px rgba(20,38,63,0.25); }

.book__toc h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--navy);
}

.toc { margin: 0; padding: 0; }
.toc__part { padding: 1rem 0; border-bottom: 1px solid var(--rule); }
.toc__part dt {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy-soft); font-weight: 800; margin-bottom: 0.55rem;
}
.toc__part dd {
  margin: 0.3rem 0; font-size: 1rem; font-weight: 500; color: var(--ink);
  display: flex; align-items: baseline; gap: 0.7rem;
}
.toc__part dd span { font-size: 0.86rem; color: var(--ink-mute); font-weight: 400; }
.toc__part--hero dt { color: var(--lime-deep); }
.toc__part--hero dd { font-weight: 700; }

.book__buy { background: var(--navy); color: var(--white); position: sticky; top: 100px; }
.buy__head {
  padding: 1.8rem 1.6rem;
  background: var(--navy-deep);
  border-bottom: 3px solid var(--lime);
  text-align: center;
}
.buy__mark { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: var(--white); }
.buy__mark-accent { color: var(--lime-bright); }
.buy__tag { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 0.45rem; font-style: italic; font-weight: 500; }
.buy__body { padding: 1.6rem 1.6rem 1.8rem; }
.buy__specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.1rem 1rem; margin-bottom: 1.5rem;
  padding-bottom: 1.3rem; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.buy__specs > div { padding: 0.5rem 0; display: flex; flex-direction: column; gap: 0.2rem; }
.buy__specs span {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 600;
}
.buy__specs strong { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.buy__body .btn { margin-bottom: 0.6rem; }
.buy__body .btn--primary { background: var(--lime); color: var(--navy-deep); }
.buy__body .btn--primary:hover { background: var(--white); color: var(--navy-deep); }
.buy__body .btn--outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.buy__body .btn--outline:hover { background: var(--white); color: var(--navy-deep); border-color: var(--white); }
.buy__note {
  font-family: var(--mono); font-size: 0.66rem;
  color: rgba(255,255,255,0.5); letter-spacing: 0.02em;
  line-height: 1.6; margin: 1rem 0 0; text-align: center;
}

/* ============ PULL / VERIFY CTA (lime) ============ */
.pull {
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad);
  background: var(--lime);
  color: var(--navy-deep);
  position: relative;
}
.pull__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 3.5rem; align-items: center;
}
@media (max-width: 900px) { .pull__inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.pull__quote {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
}
.pull__attr {
  margin-top: 1.3rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 600;
}

.verify-badge {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.3rem 1.5rem;
  background: var(--navy-deep); color: var(--white);
  transition: transform 0.3s;
}
.verify-badge:hover { transform: translateY(-3px); background: var(--navy); }
.verify-badge__qr {
  width: 72px; height: 72px; flex-shrink: 0;
  background: var(--white); padding: 5px; color: var(--navy-deep);
}
.verify-badge__text { display: flex; flex-direction: column; gap: 0.15rem; }
.verify-badge__line1 {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); font-weight: 600;
}
.verify-badge__line2 {
  font-size: 1.5rem; font-weight: 800;
  color: var(--lime-bright); letter-spacing: -0.01em; line-height: 1;
}
.verify-badge__sub { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.35rem; }

/* ============ JOIN (dark navy, with art) ============ */
.join {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.join__art {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  opacity: 0.25;
  background-image: url('../assets/many-art.jpg');
  background-size: cover;
  background-position: center;
  pointer-events: none;
  mask-image: linear-gradient(to left, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%);
}
@media (max-width: 900px) { .join__art { display: none; } }
.join__inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.join__header { text-align: center; margin-bottom: 3rem; }
.join__header .section__num { color: var(--lime-bright); border-color: var(--lime-bright); margin: 0 auto 1.5rem; }
.join__title {
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; margin-bottom: 1.3rem;
  color: var(--white); font-weight: 800; letter-spacing: -0.02em;
}
.join__emph { color: var(--lime-bright); font-style: italic; }
.join__lede { max-width: 52ch; margin: 0 auto; color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.55; }
.join__lede strong { color: var(--white); font-weight: 700; }

.signup {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.signup__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .signup__row { grid-template-columns: 1fr; } }

.field { display: block; margin-bottom: 1.1rem; }
.field__label {
  display: block;
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; font-weight: 600;
}
.field input[type="text"], .field input[type="email"] {
  width: 100%; padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--sans); font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 2px;
}
.field input:focus { outline: 0; border-color: var(--lime-bright); background: rgba(255,255,255,0.08); }
.field input::placeholder { color: rgba(255,255,255,0.35); }

.field--check { padding: 0; border: 0; margin: 1.5rem 0; }
.field--check legend {
  padding: 0; margin-bottom: 0.8rem;
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 600;
}
.field__checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.5rem; }
@media (max-width: 500px) { .field__checks { grid-template-columns: 1fr; } }
.field__checks label {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans); font-size: 0.92rem; color: var(--white);
  cursor: pointer; padding: 0.25rem 0; transition: color 0.2s;
}
.field__checks label:hover { color: var(--lime-bright); }

input[type="checkbox"] {
  appearance: none; width: 16px; height: 16px;
  border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.05);
  cursor: pointer; position: relative; flex-shrink: 0;
  transition: all 0.2s; border-radius: 2px;
}
input[type="checkbox"]:checked { background: var(--lime-bright); border-color: var(--lime-bright); }
input[type="checkbox"]:checked::after {
  content: "✓"; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%); color: var(--navy-deep);
  font-size: 12px; font-weight: 800; line-height: 1;
}

.field--consent {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 1.1rem 1.2rem;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--lime-bright);
  margin: 1.4rem 0;
}
.field--consent input { margin-top: 0.25rem; }
.field--consent span { font-size: 0.86rem; color: rgba(255,255,255,0.72); line-height: 1.55; }

.signup__legal {
  margin-top: 1.4rem;
  font-family: var(--mono); font-size: 0.7rem;
  color: rgba(255,255,255,0.5); line-height: 1.7; letter-spacing: 0.02em;
}

.signup__success {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 3rem 2.5rem; text-align: center;
}
.success__mark {
  width: 58px; height: 58px; line-height: 58px; border-radius: 50%;
  background: var(--lime-bright); color: var(--navy-deep);
  margin: 0 auto 1.3rem; font-size: 1.8rem; font-weight: 800;
}
.signup__success h3 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 0.9rem; letter-spacing: -0.01em; }
.signup__success p { color: rgba(255,255,255,0.72); max-width: 52ch; margin: 0 auto 2rem; line-height: 1.6; }
.success__actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.success__actions .btn--outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.success__actions .btn--outline:hover { background: var(--white); color: var(--navy-deep); border-color: var(--white); }

.for-few {
  margin-top: 3.2rem;
  padding: 2rem 2.2rem;
  background: rgba(123, 167, 28, 0.08);
  border: 1px solid rgba(157, 201, 58, 0.25);
  border-left: 4px solid var(--lime-bright);
}
.for-few__tag {
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime-bright); margin-bottom: 0.8rem; font-weight: 700;
}
.for-few h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 0.8rem; font-weight: 800; letter-spacing: -0.01em; }
.for-few p { color: rgba(255,255,255,0.78); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.1rem; }
.for-few__link {
  font-family: var(--mono); font-size: 0.88rem;
  color: var(--lime-bright); letter-spacing: 0.05em; font-weight: 600;
  transition: color 0.2s;
}
.for-few__link:hover { color: var(--white); }

/* ============ AUTHOR ============ */
.author {
  padding: clamp(4rem, 8vw, 6rem) var(--pad);
  background: var(--off-white);
  border-top: 1px solid var(--rule);
}
.author__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 3rem; align-items: start;
}
@media (max-width: 800px) { .author__inner { grid-template-columns: 1fr; gap: 2rem; } }

.author__portrait {
  width: 280px; height: 340px;
  background: var(--navy); position: relative; overflow: hidden;
  border-top: 4px solid var(--lime);
}
.author__initials {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 7rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.04em; line-height: 1;
}

.author__body h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; margin-bottom: 1.3rem;
  color: var(--navy); letter-spacing: -0.02em;
}
.author__body p {
  color: var(--ink-soft); font-size: 1rem; line-height: 1.65;
  margin-bottom: 1rem; max-width: 56ch;
}
.author__sig {
  margin-top: 2rem !important;
  color: var(--lime-deep) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  font-style: italic;
}

/* ============ FOOTER ============ */
.foot {
  background: var(--navy-deep); color: rgba(255,255,255,0.7);
  padding: 3.5rem var(--pad) 0; position: relative; overflow: hidden;
}
.foot__inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }

.foot__brand {
  padding-bottom: 2.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2.3rem;
}
.foot__mark { font-size: 2.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1; margin-bottom: 0.6rem; }
.foot__mark span { color: var(--lime-bright); }
.foot__brand p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 42ch; margin: 0; font-style: italic; font-weight: 500; }

.foot__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 700px) { .foot__cols { grid-template-columns: 1fr 1fr; } }
.foot__cols h4 {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lime-bright); font-weight: 700; margin-bottom: 1rem;
}
.foot__cols a { display: block; padding: 0.35rem 0; color: rgba(255,255,255,0.65); font-size: 0.93rem; transition: color 0.2s; }
.foot__cols a:hover { color: var(--white); }

.foot__bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0; border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 1rem;
}
.foot__bar-right { display: flex; gap: 0.8rem; }

/* ============ HERO BRAND LOCKUP (real logo image from book) ============ */
.hero__brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.3rem;
  margin-bottom: 1.8rem;
}
.hero__logo-img {
  height: clamp(60px, 9vw, 110px);
  width: auto;
  flex-shrink: 0;
}
.tm--hero { font-size: 0.6rem; margin-top: 0.4rem; }
.tm--nav { font-size: 0.55rem; margin-left: 0.15rem; }

@media (max-width: 600px) {
  .hero__logo-img { height: 54px; }
}

/* ============ ENGINE SECTION (white, with the stamp) ============ */
.engine {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: var(--white);
  border-top: 1px solid var(--rule);
}
.engine__inner { max-width: var(--max); margin: 0 auto; }

.engine__split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .engine__split { grid-template-columns: 1fr; gap: 3rem; }
}

.engine__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.engine__title--accent {
  color: var(--lime-deep);
  display: block;
  margin-top: 0.3em;
}
.engine__lede {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0;
}

/* The stamp — visible trustmark, circular seal */
.stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}
.stamp__ring {
  width: 260px;
  height: 260px;
  max-width: 100%;
}
.stamp__ring svg { width: 100%; height: 100%; display: block; }
.stamp__caption {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.5;
  text-align: center;
  max-width: 30ch;
  margin: 0;
}

/* Engine "what it does" grid */
.engine__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .engine__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .engine__grid { grid-template-columns: 1fr; }
}

.engine-card {
  background: var(--off-white);
  padding: 1.8rem 1.5rem;
  border-top: 3px solid var(--lime);
}
.engine-card__num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--lime-deep);
  font-weight: 700;
  margin-bottom: 1rem;
}
.engine-card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 800;
  margin: 0 0 0.7rem;
  letter-spacing: -0.015em;
}
.engine-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============ DOMAINS SECTION (off-white, replaces old "lines") ============ */
.domains {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: var(--off-white);
}
.domains__inner { max-width: var(--max); margin: 0 auto; }

.domains__header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}
.domains__header .section__num { margin: 0 auto 1.5rem; }
.domains__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.domains__lede {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
}

.domains__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .domains__grid { grid-template-columns: 1fr; } }

.domain {
  background: var(--white);
  padding: 2.2rem 1.8rem 1.8rem;
  border-top: 4px solid var(--navy);
  transition: transform 0.3s, box-shadow 0.3s;
}
.domain:hover { transform: translateY(-3px); box-shadow: 0 15px 30px -15px rgba(20,38,63,0.2); }
.domain--urgent {
  background: var(--navy);
  color: var(--white);
  border-top: 4px solid var(--lime-bright);
}
.domain__sigil {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 1.2rem;
}
.domain--urgent .domain__sigil { color: var(--lime-bright); }
.domain__label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.domain--urgent .domain__label { color: var(--lime-bright); }
.domain__title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.domain--urgent .domain__title { color: var(--white); }
.domain__q {
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
}
.domain--urgent .domain__q { color: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.18); }
.domain__list { list-style: none; margin: 0; padding: 0; font-size: 0.92rem; }
.domain__list li { padding: 0.4rem 0 0.4rem 1.3rem; position: relative; color: var(--ink-soft); line-height: 1.5; }
.domain--urgent .domain__list li { color: rgba(255,255,255,0.88); }
.domain__list li::before {
  content: "•"; position: absolute; left: 0; color: var(--lime);
  font-weight: 800; font-size: 1.2em; line-height: 1; top: 0.35em;
}
.domain--urgent .domain__list li::before { color: var(--lime-bright); }

/* ============ THE STANDARD SECTION (navy, with pledges) ============ */
.standard {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.standard__inner { max-width: var(--max); margin: 0 auto; }
.standard__header { margin-bottom: 3.5rem; max-width: 72ch; }
.section__num--light { color: var(--lime-bright); border-color: var(--lime-bright); }

.standard__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.standard__lede {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0;
  max-width: 62ch;
}

/* The Discipline callout — the one-wrong-discredits-a-thousand principle */
.standard__discipline {
  margin-top: 2.2rem;
  padding: 1.8rem 2rem;
  background: rgba(123, 167, 28, 0.12);
  border: 1px solid rgba(157, 201, 58, 0.3);
  border-left: 5px solid var(--lime-bright);
  max-width: 64ch;
}
.discipline__label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-bright);
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.discipline__quote {
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--white);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}

/* The tier cards - reuse much of .tier/.tiers from original CSS */
.standard .tiers {
  list-style: none;
  margin: 0 0 3.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .standard .tiers { grid-template-columns: 1fr; } }

.standard .tier {
  background: rgba(255,255,255,0.06);
  padding: 1.8rem 1.5rem;
  border-top: 4px solid var(--lime-bright);
}
.tier__badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 4px 10px;
  margin-bottom: 1rem;
  background: var(--lime-bright);
  color: var(--navy-deep);
}
.tier__badge--secondary { background: #d4a043; color: var(--navy-deep); }
.tier__badge--tertiary { background: rgba(255,255,255,0.35); color: var(--navy-deep); }

.standard .tier h3 { font-size: 1.4rem; color: var(--white); font-weight: 800; letter-spacing: -0.01em; margin: 0 0 0.6rem; }
.standard .tier__rule {
  font-size: 0.94rem; color: rgba(255,255,255,0.92);
  margin: 0 0 1.1rem; padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-style: italic; font-weight: 500;
}
.standard .tier ul { list-style: none; padding: 0; margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.55; }
.standard .tier ul li { padding: 0.28rem 0; padding-left: 1.1rem; position: relative; }
.standard .tier ul li::before { content: "•"; position: absolute; left: 0.25rem; color: var(--lime-bright); font-weight: 800; }

/* Pledges grid below tiers */
.standard__pledges {
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.standard__pledges-title {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-bright);
  font-weight: 700;
  margin: 0 0 2rem;
}
.pledge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .pledge-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pledge-grid { grid-template-columns: 1fr; } }

.pledge {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pledge__mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime-bright);
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}
.pledge__mark svg { width: 22px; height: 22px; }
.pledge strong {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.pledge span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* ============ BOOK COPY (back-cover language, verbatim) ============ */
.book__layout {
  /* Override earlier: three-column — art, copy, buy */
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 1000px) {
  .book__layout { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .book__buy { grid-column: 1 / -1; max-width: 420px; margin: 1rem auto 0; }
}
@media (max-width: 640px) {
  .book__layout { grid-template-columns: 1fr; gap: 2rem; }
  .book__buy { max-width: none; }
}

.book__copy {
  padding: 0 0.5rem;
}
.book-copy__kicker {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--navy);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.book-copy__p {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.65;
}
.book-copy__highlight {
  margin: 1.5rem 0;
  padding: 1.1rem 1.3rem;
  background: rgba(123, 167, 28, 0.1);
  border-left: 4px solid var(--lime);
  font-weight: 800;
  color: var(--lime-deep);
  font-size: 1.02rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-style: italic;
}
.book-copy__close {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--rule);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
}

/* "You are being farmed" banner below the book - echoes the book cover */
.book__bar {
  margin-top: 3rem;
  padding: 1.2rem 1rem;
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  text-align: center;
}
.book__bar-text {
  font-family: var(--sans);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--navy);
}

/* ============ VERIFY HOMEPAGE SECTION (full ledger) ============ */
.verify {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.verify__inner { max-width: var(--max); margin: 0 auto; }

.verify__header { max-width: 58ch; margin-bottom: 3rem; }
.verify__title {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1;
  margin: 0 0 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.verify__title--accent {
  display: inline-block;
  color: var(--lime-bright);
  font-style: italic;
  padding-left: 0.2em;
}
.verify__lede {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 60ch;
}

/* Search form */
.verify__search { margin-bottom: 2rem; }
.verify-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 1.4rem;
  border-radius: 2px;
}
.verify-form__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.verify-form__row {
  display: flex;
  gap: 0.7rem;
  align-items: stretch;
}
@media (max-width: 600px) { .verify-form__row { flex-direction: column; } }
.verify-form__row input {
  flex: 1;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: var(--sans);
  font-size: 1.02rem;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 2px;
  min-width: 0;
}
.verify-form__row input:focus {
  outline: 0;
  border-color: var(--lime-bright);
  background: rgba(255,255,255,0.08);
}
.verify-form__row input::placeholder { color: rgba(255,255,255,0.36); }
.verify-form__row .btn { flex-shrink: 0; white-space: nowrap; }

.verify-form__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--mono);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
}
.verify-form__legend strong {
  color: var(--lime-bright);
  font-weight: 800;
  margin-right: 0.35rem;
  letter-spacing: 0.08em;
}

/* Results header */
.verify__results-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.verify__results-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-bright);
  font-weight: 700;
}
.verify__results-note {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}
.verify__results-note a {
  color: var(--lime-bright);
  transition: color 0.2s;
}
.verify__results-note a:hover { color: var(--white); }

/* Ledger list */
.verify__ledger {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.ledger-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 1.2rem 1.5rem;
  padding: 1.3rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--lime-bright);
  transition: background 0.2s, border-color 0.2s;
}
.ledger-item:hover {
  background: rgba(255,255,255,0.07);
  border-left-color: var(--lime);
}
.ledger-item[data-tier="secondary"] { border-left-color: #d4a043; }
.ledger-item[data-tier="tertiary"] { border-left-color: rgba(255,255,255,0.4); }

@media (max-width: 700px) {
  .ledger-item {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}

.ledger-item__id {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.2rem;
}
.ledger-item__code {
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--lime-bright);
  letter-spacing: 0.06em;
}
.ledger-item__chapter {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.ledger-item__body { min-width: 0; }
.ledger-item__claim {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
  margin: 0 0 0.65rem;
  letter-spacing: -0.005em;
}
.ledger-item__source {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.source-icon {
  color: var(--lime-bright);
  font-weight: 800;
  margin-right: 0.35rem;
}

.ledger-item__tier {
  align-self: center;
}
.tier-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.45rem 0.75rem;
  white-space: nowrap;
}
.tier-badge--primary {
  background: var(--lime-bright);
  color: var(--navy-deep);
}
.tier-badge--secondary {
  background: #d4a043;
  color: var(--navy-deep);
}
.tier-badge--tertiary {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}
@media (max-width: 700px) {
  .ledger-item__tier { justify-self: start; }
}

/* Method block */
.verify__method {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 0;
}
.verify__method-rule {
  background: var(--lime-bright);
}
.verify__method-content {
  padding-left: 1.8rem;
}
.verify__method-kicker {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-bright);
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.verify__method-text {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 62ch;
  margin: 0 0 1.6rem;
}
.verify__method-text a {
  color: var(--lime-bright);
  border-bottom: 1px solid rgba(157, 201, 58, 0.35);
  transition: border-color 0.2s;
}
.verify__method-text a:hover { border-color: var(--lime-bright); }
.verify__method-content .btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.verify__method-content .btn--ghost:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}

/* ============ FAQ SECTION ============ */
.faq {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  background: var(--off-white);
  border-top: 1px solid var(--rule);
}
.faq__inner { max-width: var(--max); margin: 0 auto; }
.faq__header { margin-bottom: 3rem; max-width: 72ch; }
.faq__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.faq__lede {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 60ch;
  margin: 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .faq__grid { grid-template-columns: 1fr; } }

.faq-card {
  background: var(--white);
  padding: 1.8rem 1.8rem 1.7rem;
  border-left: 3px solid var(--lime);
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.faq-card__q {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-card__a {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ============ SCROLL-ACTIVE NAV ============ */
.nav__links a.is-active {
  color: var(--lime-deep);
  position: relative;
}
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--lime);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .ticker__track { animation: none !important; }
}
@media (max-width: 480px) {
  .hero__ctas .btn { width: 100%; justify-content: center; }
}
