/* ============================================================
   TORO AI — Design System (site.css)
   War room meets elite AI operations command center.
   Tokens live in colors_and_type.css (loaded first).
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle command-center grid texture + ambient red haze fixed behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 120% 80% at 50% 0%, #000 30%, transparent 75%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Layout primitives ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); position: relative; z-index: 1; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.divider { height: 1px; background: var(--red); border: 0; opacity: 0.55;
  box-shadow: 0 0 24px 0 rgba(204,0,0,0.5); position: relative; z-index: 1; }

/* ---- Typography ---- */
.kicker {
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: ""; width: 28px; height: 2px; background: var(--red); display: inline-block;
}
.kicker--center { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--head); font-weight: 800; line-height: 1;
  text-transform: uppercase; letter-spacing: -0.005em; text-wrap: balance; }

.h-hero { font-family: var(--display); font-size: clamp(2.6rem, 5.6vw, 4.8rem); font-weight: 400;
  letter-spacing: 0.005em; line-height: 1.08; }
.h-section { font-family: var(--display); font-size: clamp(2.05rem, 4.4vw, 3.8rem); font-weight: 400;
  letter-spacing: 0.005em; line-height: 1.12; }
.h-sub { font-family: var(--head); font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.005em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

.lead { font-family: var(--body); font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  color: var(--muted-2); line-height: 1.6; font-weight: 400; text-transform: none; letter-spacing: 0; }
p { color: var(--muted-2); text-wrap: pretty; }
.dim { color: var(--muted); }
.red { color: var(--red); }
.red-text-glow { color: var(--red); text-shadow: 0 0 30px rgba(204,0,0,0.55); }
.eyebrow-stars { color: var(--red); letter-spacing: 0.18em; font-size: 1rem; }
.stars-line { display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem); color: var(--white); }

/* ---- CTA button ---- */
.btn {
  --cut: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--head); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: clamp(1rem, 1.3vw, 1.18rem);
  padding: 20px 38px; background: var(--red); color: var(--white);
  border: 1px solid var(--red);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
  cursor: pointer; transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, background .22s;
  box-shadow: 0 0 0 0 rgba(204,0,0,0);
  position: relative; line-height: 1;
}
.btn:hover { transform: translateY(-2px); background: #e00000;
  box-shadow: 0 14px 40px -8px rgba(204,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.1); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--white); border: 1px solid var(--hairline-2); }
.btn--ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--red); color: var(--white);
  box-shadow: 0 0 0 1px rgba(204,0,0,0.4); }
.btn .arrow { font-size: 1.1em; }
.btn--lg { padding: 24px 46px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.btn--block { width: 100%; }

.cta-row { margin-top: clamp(28px, 4vw, 44px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,0.86); backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--hairline);
}
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 10px var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand__logo { height: 62px; width: auto; filter: drop-shadow(0 4px 18px rgba(204,0,0,0.45)); transition: transform .25s; }
.brand:hover .brand__logo { transform: scale(1.03); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 1rem; color: var(--muted-2); transition: color .2s; position: relative; padding: 4px 0;
}
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width .25s; }
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta .btn { padding: 13px 24px; font-size: 0.98rem; --cut: 10px; }
.nav__toggle { display: none; background: none; border: 1px solid var(--hairline-2); width: 46px; height: 42px;
  border-radius: 4px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 22px; height: 2px; background: var(--white); display: block; transition: .25s; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: #050505;
  border-left: 1px solid var(--hairline); transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.2,1);
  z-index: 79; padding: 96px 32px 32px; display: flex; flex-direction: column; gap: 6px;
}
.nav.open .nav__mobile { transform: translateX(0); }
.nav__mobile a { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 1.4rem; padding: 14px 0; border-bottom: 1px solid var(--hairline); color: var(--muted-2); }
.nav__mobile a:hover { color: var(--white); }
.nav__mobile .btn { margin-top: 22px; }
.nav__scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; pointer-events: none;
  transition: opacity .3s; z-index: 78; }
.nav.open .nav__scrim { opacity: 1; pointer-events: auto; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker { background: var(--red); overflow: hidden; position: relative; z-index: 2;
  border-top: 1px solid rgba(0,0,0,0.25); border-bottom: 1px solid rgba(0,0,0,0.25); }
.ticker__track { display: inline-flex; align-items: center; white-space: nowrap;
  animation: tick 48s linear infinite; will-change: transform; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { font-family: var(--head); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: clamp(0.95rem, 1.5vw, 1.15rem); color: var(--white);
  padding: 15px 0; display: inline-flex; align-items: center; }
.ticker__item::after { content: "●"; margin: 0 28px; font-size: 0.6em; opacity: 0.6; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(120px, 14vh, 168px) 0 clamp(56px, 7vw, 84px);
  overflow: hidden; }
.hero__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 72% 28%, rgba(204,0,0,0.32), transparent 62%),
    radial-gradient(50% 50% at 20% 80%, rgba(204,0,0,0.12), transparent 70%); }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(24px, 4vw, 60px);
  align-items: center; position: relative; z-index: 1; }
.hero__bull { position: relative; display: flex; justify-content: center; align-items: center; min-width: 0; }
.hero__bull img { width: auto; max-width: 100%; max-height: 460px; filter: drop-shadow(0 30px 80px rgba(204,0,0,0.5)); }

/* ---- Charging-bull nostril smoke ---- */
.bullsmoke { position: relative; display: inline-block; line-height: 0; font-size: 0; }
.bullsmoke__emit { position: absolute; width: 0; height: 0; pointer-events: none; z-index: 2; }
.bullsmoke__emit--l { left: 72.5%; top: 38%; }
.bullsmoke__emit--r { left: 75.5%; top: 41.5%; }
.puff { position: absolute; left: 0; top: 0; width: 32px; height: 32px; margin: -16px 0 0 -16px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 55%, rgba(255,150,120,0.5), rgba(224,70,55,0.34) 34%, rgba(150,120,124,0.2) 56%, rgba(150,150,160,0.06) 70%, transparent 78%);
  filter: blur(3px); opacity: 0; will-change: transform, opacity;
  animation: puff var(--dur, 2.4s) ease-out infinite; animation-delay: var(--delay, 0s); }
@keyframes puff {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.3); }
  16%  { opacity: var(--op, 0.72); }
  55%  { opacity: calc(var(--op, 0.72) * 0.5); }
  100% { opacity: 0; transform: translate(var(--dx, 34px), var(--dy, -70px)) scale(2.3); }
}
@media (prefers-reduced-motion: reduce) { .puff { animation: none; opacity: 0; } }
.hero h1 { margin: 22px 0 44px; text-wrap: normal; }
.hero h1 .wht { color: var(--white); }
.hero__stars { margin-bottom: 26px; }

/* Stat blocks */
.statgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline); margin-top: clamp(28px,4vw,40px); }
.statgrid--4 { grid-template-columns: repeat(4, 1fr); }
.stat { background: var(--card); padding: clamp(20px,2.4vw,30px) clamp(16px,1.8vw,24px);
  position: relative; overflow: hidden; transition: background .25s; }
.stat:hover { background: var(--card-2); }
.stat__num { font-family: var(--display); font-weight: 400; color: var(--red);
  font-size: clamp(2.3rem, 4vw, 3.4rem); line-height: 0.9; text-shadow: 0 0 34px rgba(204,0,0,0.45); }
.stat__label { font-family: var(--body); font-size: 0.82rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.05em; margin-top: 12px; line-height: 1.35; font-weight: 500; }

/* ============================================================
   GENERIC SECTION HEADER
   ============================================================ */
.shead { max-width: 880px; }
.shead--center { margin: 0 auto; text-align: center; }
.shead .kicker { margin-bottom: 22px; }
.shead h2 { margin-bottom: 16px; color: var(--red); }
/* Subheading: same condensed family as the heading, smaller — so the
   headline flows into the subhead instead of washing out as thin body text. */
.shead .lead { margin-top: 2px; font-family: var(--head); font-weight: 600;
  text-transform: none; color: var(--white); letter-spacing: 0.005em;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem); line-height: 1.2; }
.shead .lead + .lead { margin-top: 10px; color: var(--muted-2); }

/* Quote block */
.quote { font-family: var(--head); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; color: var(--white);
  border-left: 3px solid var(--red); padding: 6px 0 6px 28px; margin: clamp(30px,4vw,44px) 0; }
.quote .red { color: var(--red); }

/* ============================================================
   LISTS — pain (❌) and check (✅)
   ============================================================ */
.plist { display: flex; flex-direction: column; gap: 2px; margin: 8px 0;
  border-left: 2px solid rgba(204,0,0,0.4); }
.plist li { list-style: none; position: relative; padding: 14px 18px 14px 50px;
  background: linear-gradient(90deg, rgba(204,0,0,0.06), transparent 80%);
  color: var(--muted-2); font-size: var(--fs-body); line-height: 1.55; }
.plist li .x { position: absolute; left: 18px; top: 14px; color: var(--red); font-weight: 700; line-height: 1.55; }

.clist { display: grid; gap: 10px; margin: 8px 0; }
.clist li { list-style: none; position: relative; padding: 14px 18px 14px 50px;
  background: var(--card); border: 1px solid var(--hairline);
  color: var(--muted-2); font-size: var(--fs-body); line-height: 1.55; transition: border-color .2s, background .2s; }
.clist li:hover { border-color: rgba(204,0,0,0.4); background: var(--card-2); }
.clist li .ck { position: absolute; left: 18px; top: 14px; line-height: 1.55; }
.clist li b, .clist li strong { color: var(--white); font-weight: 600; }

/* ============================================================
   NUMBERED COMPONENT CARDS
   ============================================================ */
/* Detailed component blocks (with Truth/Fix tables) */
.comps { display: grid; gap: 22px; margin-top: clamp(34px, 4vw, 46px); }
.comp { background: var(--card); border: 1px solid var(--hairline); position: relative; overflow: hidden;
  padding: clamp(24px, 3vw, 44px); transition: border-color .3s, box-shadow .3s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 26px 100%, 0 calc(100% - 26px)); }
.comp::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(100% 60% at 0% 0%, rgba(204,0,0,0.08), transparent 50%); opacity: 0; transition: opacity .3s; }
.comp:hover { border-color: rgba(204,0,0,0.45); box-shadow: 0 26px 70px -30px var(--glow-strong); }
.comp:hover::before { opacity: 1; }
.comp__head { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 30px); position: relative; z-index: 1;
  padding-bottom: clamp(20px, 2.4vw, 28px); border-bottom: 1px solid var(--hairline); margin-bottom: clamp(22px,2.6vw,30px); }
.comp__num { font-family: var(--display); font-weight: 400; font-size: clamp(3.2rem, 6.5vw, 5.6rem);
  color: var(--red); opacity: 0.24; line-height: 0.78; flex: 0 0 auto; text-shadow: 0 0 40px rgba(204,0,0,0.4); }
.comp__id { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.78rem; color: var(--muted); margin-bottom: 6px; }
.comp__name { font-family: var(--display); font-weight: 400; text-transform: uppercase; color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.9rem); line-height: 0.95; letter-spacing: 0.01em; }
.comp__name .tm { color: var(--red); font-size: 0.5em; vertical-align: super; }
.comp__role { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: clamp(0.85rem, 1.3vw, 1rem); color: var(--red); margin-top: 8px; }
.comp__body { position: relative; z-index: 1; }
.comp__featlabel { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.82rem; color: var(--muted); margin: clamp(22px, 2.6vw, 30px) 0 14px; }
.comp__checks { grid-template-columns: 1fr 1fr; gap: 4px 28px; }
.comp__checks li { background: transparent; border: 0; border-bottom: 1px solid var(--hairline); padding: 10px 0 10px 34px; }
.comp__checks li .ck { left: 0; top: 10px; }
.comp__checks li:hover { background: transparent; }
.comp__tagline { margin-top: clamp(22px, 2.6vw, 30px); font-family: var(--head); font-weight: 800; text-transform: uppercase;
  color: var(--red); font-size: clamp(1.1rem, 1.8vw, 1.45rem); line-height: 1.1; letter-spacing: 0.01em;
  border-left: 3px solid var(--red); padding-left: 18px; }
/* checks-first order (precall): add breathing room between tagline and the stats table */
.comp__tagline + .tbl-scroll { margin-top: clamp(24px, 3vw, 34px); }
@media (max-width: 860px) {
  .comp__checks { grid-template-columns: 1fr; }
  .comp__head { flex-wrap: wrap; }
}

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.ncard { position: relative; background: var(--card); border: 1px solid var(--hairline);
  padding: clamp(26px, 3vw, 38px) clamp(22px,2.5vw,32px) clamp(26px,3vw,36px);
  overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 22px 100%, 0 calc(100% - 22px)); }
.ncard::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(120% 80% at 0% 0%, rgba(204,0,0,0.12), transparent 55%); opacity: 0; transition: opacity .3s; }
.ncard:hover { border-color: rgba(204,0,0,0.55); transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px var(--glow-strong), inset 0 0 0 1px rgba(204,0,0,0.15); }
.ncard:hover::before { opacity: 1; }
.ncard__num { font-family: var(--display); font-weight: 400; font-size: clamp(4.5rem, 8vw, 7rem);
  line-height: 0.8; color: var(--red); opacity: 0.2; position: absolute; top: 8px; left: 18px; z-index: 0; }
.ncard__body { position: relative; z-index: 1; }
.ncard__tag { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.78rem; color: var(--muted); margin-bottom: 6px; padding-top: 38px; }
.ncard__name { font-family: var(--head); font-weight: 800; text-transform: uppercase; color: var(--white);
  font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1; margin-bottom: 4px; }
.ncard__name .tm { color: var(--red); font-size: 0.6em; vertical-align: super; -webkit-text-fill-color: var(--red); }
.ncard__role { font-family: var(--body); font-size: 0.8rem; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 18px; }
.ncard .clist { margin-top: 16px; }
.ncard .clist li { background: transparent; border: 0; padding: 7px 0 7px 34px; border-bottom: 1px solid var(--hairline);
  font-size: 0.96rem; }
.ncard .clist li .ck { left: 0; top: 7px; }
.ncard .clist li:hover { background: transparent; }
.ncard__tagline { margin-top: 20px; font-family: var(--head); font-weight: 700; text-transform: uppercase;
  color: var(--red); font-size: 1.05rem; line-height: 1.15; letter-spacing: 0.01em; }

/* ============================================================
   TABLES — truth/fix + comparison
   ============================================================ */
.tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--hairline);
  background: var(--card); }
table.tf, table.cmp { width: 100%; border-collapse: collapse; min-width: 560px; }
table.tf th, table.cmp th { font-family: var(--head); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.95rem; text-align: left; padding: 16px 22px; }
table.tf thead th:first-child { background: #0d0d0d; color: var(--muted); border-bottom: 1px solid var(--hairline); }
table.tf thead th:last-child { background: var(--red); color: var(--white); border-bottom: 1px solid var(--red); }
table.tf td { padding: 16px 22px; vertical-align: top; border-bottom: 1px solid var(--hairline);
  font-size: var(--fs-body); line-height: 1.5; color: var(--muted-2); }
table.tf td:first-child { color: var(--muted); width: 50%; }
table.tf td:last-child { color: var(--white); background: rgba(204,0,0,0.05); }
table.tf tr:last-child td { border-bottom: 0; }
table.tf td .cite { color: var(--dim); font-size: 0.85em; }

table.cmp th, table.cmp td { padding: 18px 22px; border-bottom: 1px solid var(--hairline); text-align: left; }
table.cmp thead th { font-size: 0.9rem; }
table.cmp thead th:nth-child(2) { color: var(--muted); }
table.cmp thead th:nth-child(3) { background: var(--red); color: #fff; }
table.cmp td { font-family: var(--body); color: var(--muted-2); font-size: 1.05rem; }
table.cmp td:first-child { font-family: var(--head); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; color: var(--white); font-size: 1.05rem; }
table.cmp td:nth-child(2) { color: var(--muted); }
table.cmp td:nth-child(3) { background: rgba(204,0,0,0.08); color: #fff; font-weight: 600;
  font-family: var(--head); font-size: 1.15rem; text-transform: uppercase; }
table.cmp tr:last-child td { border-bottom: 0; }

/* ============================================================
   CALLOUT / banner
   ============================================================ */
.callout { border: 1px solid rgba(204,0,0,0.4); background:
  linear-gradient(120deg, rgba(204,0,0,0.14), rgba(204,0,0,0.04) 60%, transparent);
  padding: clamp(30px,4vw,52px); position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%); }
.callout::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(204,0,0,0.18);
  pointer-events: none; }
.callout h3, .callout .big { font-family: var(--head); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem); line-height: 1.05; color: var(--white); }
.bigred { font-family: var(--display); font-weight: 400; text-transform: uppercase; color: var(--red);
  font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1; text-shadow: 0 0 40px rgba(204,0,0,0.5); }

/* Story / data narrative */
.story p { font-size: var(--fs-body); line-height: 1.7; color: var(--muted-2);
  margin-bottom: 14px; max-width: 760px; }
.story p strong { color: var(--white); }
.story .punch { font-family: var(--head); font-weight: 800; text-transform: uppercase; color: var(--white);
  font-size: clamp(1.4rem, 2.6vw, 2rem); }

/* math list */
.mathlist { max-width: 720px; }
.mathlist p { font-size: var(--fs-body); padding: 10px 0; border-bottom: 1px solid var(--hairline);
  color: var(--muted-2); }
.mathlist p strong { color: var(--red); font-family: var(--head); font-weight: 800; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 18px; }
.tcard { background: var(--card); border: 1px solid var(--hairline); padding: 30px;
  display: flex; flex-direction: column; gap: 16px; transition: border-color .25s, transform .25s; }
.tcard:hover { border-color: rgba(204,0,0,0.35); transform: translateY(-3px); }
.tcard .stars { color: var(--red); letter-spacing: 0.12em; font-size: 0.95rem; }
.tcard p { color: var(--muted-2); font-size: var(--fs-body); line-height: 1.6; font-style: italic; }
.tcard .who { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--white); font-size: 0.95rem; margin-top: auto; }

/* two-col promise */
.promise { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.promise__col { background: var(--card); border: 1px solid var(--hairline); padding: clamp(26px,3vw,38px); }
.promise__col h3 { margin-bottom: 20px; font-size: 1.3rem; }
.promise__col--never h3 { color: var(--red); }
.promise__col--always h3 { color: #fff; }

/* options grid (revplug) */
.opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 16px; }
.opt { background: var(--card); border: 1px solid var(--hairline); padding: 28px; }
.opt.win { border-color: var(--red); background: linear-gradient(180deg, rgba(204,0,0,0.1), var(--card));
  box-shadow: 0 20px 60px -24px var(--glow-strong); }
.opt h4 { font-size: 1.25rem; margin-bottom: 16px; }
.opt.win h4 { color: var(--red); }
.opt dl { display: grid; gap: 12px; }
.opt dt { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.75rem; color: var(--muted); }
.opt dd { color: var(--muted-2); font-size: var(--fs-body); line-height: 1.55; margin-bottom: 6px; }

/* bonuses */
.bonus { display: grid; gap: 14px; }
.bonus__item { background: var(--card); border: 1px solid var(--hairline); padding: 26px 28px;
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; transition: border-color .25s; }
.bonus__item:hover { border-color: rgba(204,0,0,0.4); }
.bonus__no { font-family: var(--display); font-weight: 400; color: var(--red); font-size: 2.4rem; line-height: 0.8;
  opacity: 0.85; }
.bonus__item h4 { font-size: 1.2rem; margin-bottom: 8px; text-transform: none; font-family: var(--head);
  font-weight: 700; letter-spacing: 0; }
.bonus__item h4 .val { color: var(--red); font-size: 0.85em; }
.bonus__item p { font-size: var(--fs-body); color: var(--muted-2); line-height: 1.6; margin-bottom: 10px; }
.bonus__impact { font-family: var(--mono); font-size: 0.8rem; color: var(--red); text-transform: uppercase;
  letter-spacing: 0.04em; }

/* FAQ accordion */
.faq { display: grid; gap: 12px; max-width: 920px; }
.faq__item { background: var(--card); border: 1px solid var(--hairline); transition: border-color .25s; }
.faq__item[open] { border-color: rgba(204,0,0,0.4); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex;
  justify-content: space-between; gap: 18px; align-items: center; font-family: var(--head); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(1.05rem,1.6vw,1.3rem); color: var(--white); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .pm { color: var(--red); font-size: 1.6rem; line-height: 1; transition: transform .25s; flex: 0 0 auto; }
.faq__item[open] summary .pm { transform: rotate(45deg); }
.faq__item .faq__a { padding: 0 26px 24px; color: var(--muted-2); line-height: 1.65; font-size: var(--fs-body); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--hairline); padding: clamp(50px,6vw,80px) 0 40px; position: relative; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(204,0,0,0.04)); }
.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 44px;
  border-bottom: 1px solid var(--hairline); }
.footer__brand img { height: 120px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); max-width: 320px; font-size: 0.96rem; }
.footer__col h5 { font-family: var(--head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); font-size: 0.85rem; margin-bottom: 18px; }
.footer__col a { display: block; padding: 7px 0; color: var(--muted-2); font-size: 0.98rem; transition: color .2s; }
.footer__col a:hover { color: var(--red); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding-top: 28px; flex-wrap: wrap; }
.footer__copy { color: var(--dim); font-size: 0.88rem; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 42px; height: 42px; border: 1px solid var(--hairline); display: flex;
  align-items: center; justify-content: center; color: var(--muted-2); transition: .2s; }
.footer__social a:hover { border-color: var(--red); color: var(--red); background: rgba(204,0,0,0.08); }
.footer__social svg { width: 18px; height: 18px; }
.footer__contact { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__contact a { color: var(--muted-2); font-size: 0.92rem; }
.footer__contact a:hover { color: var(--red); }

/* ============================================================
   PAGE WIPE
   ============================================================ */
.wipe { position: fixed; inset: 0; background: var(--red); z-index: 999;
  transform: translateX(100%); pointer-events: none;
  animation: wipeOut .6s cubic-bezier(.76,0,.24,1) both; }
@keyframes wipeOut { 0% { transform: translateX(0); } 100% { transform: translateX(100%); } }
.wipe.nav-in { animation: none; transition: transform .5s cubic-bezier(.76,0,.24,1);
  transform: translateX(-100%); }
.wipe.nav-in.go { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) { .wipe { animation: none; transform: translateX(100%); } }
.wipe__mark { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--head); font-weight: 900; font-size: 4rem; color: rgba(0,0,0,0.25);
  text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .ticker__track { animation: none; }
}

/* ============================================================
   PRECALL standalone bits
   ============================================================ */
.precall-top { text-align: center; padding: clamp(40px,6vw,70px) 0 0; }
.precall-top .bullsmoke { margin: 0 auto 10px; }
.precall-top img { height: clamp(160px, 26vw, 300px); width: auto;
  filter: drop-shadow(0 24px 60px rgba(204,0,0,0.5)); }
.precall-bottom { text-align: center; padding: clamp(40px,6vw,60px) 0 10px; }
.precall-bottom img { height: clamp(110px, 18vw, 170px); width: auto; margin: 0 auto;
  filter: drop-shadow(0 18px 50px rgba(204,0,0,0.45)); }
.minicopy { text-align: center; color: var(--dim); font-size: 0.85rem; padding: 30px 0 50px; }

/* contact iframe */
.embed { border: 1px solid var(--hairline); background: var(--card); padding: 8px; max-width: 760px;
  box-shadow: 0 30px 80px -30px var(--glow-strong); }
.embed iframe { width: 100%; border: 0; min-height: 680px; height: 680px; display: block; background: transparent;
  border-radius: 2px; }

/* manifesto (about) */
.mfesto { display: grid; gap: 16px; margin-top: clamp(26px, 3vw, 38px); }
.mfesto__item { background: var(--card); border: 1px solid var(--hairline); padding: clamp(22px, 2.6vw, 34px);
  transition: border-color .25s, transform .25s; }
.mfesto__item:hover { border-color: rgba(204,0,0,0.4); transform: translateY(-3px); }
.mfesto__item h3 { font-size: clamp(1.2rem, 1.9vw, 1.6rem); margin-bottom: 12px; line-height: 1.05; }
.mfesto--never .mfesto__item h3 { color: var(--red); }
.mfesto--always .mfesto__item h3 { color: #fff; }
.mfesto__item p { color: var(--muted-2); font-size: 1.05rem; line-height: 1.65; }

/* legal pages */
.legal { max-width: 860px; }
.legal h2 { font-size: clamp(1.4rem,2.4vw,1.9rem); margin: 38px 0 14px; color: var(--white); }
.legal h3 { font-size: 1.15rem; margin: 24px 0 10px; color: var(--red); }
.legal p { margin-bottom: 14px; color: var(--muted-2); line-height: 1.7; }
.legal .meta { color: var(--muted); font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.03em; }
.legal ul { margin: 0 0 14px 0; padding-left: 22px; color: var(--muted-2); }
.legal li { margin-bottom: 6px; }

/* hidden SEO */
.vx-seo-content { position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); clip-path: inset(50%); white-space: nowrap; border: 0; padding: 0; margin: -1px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__bull { max-width: 460px; margin: 0 auto; order: -1; }
  .statgrid, .statgrid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .brand__logo { height: 46px; }
  .promise { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .statgrid, .statgrid--4 { grid-template-columns: 1fr 1fr; }
  .bonus__item { grid-template-columns: 1fr; gap: 8px; }
  .btn { width: 100%; }
  .cta-row .btn { width: 100%; }
  .quote { font-size: 1.5rem; }
}
@media (max-width: 460px) {
  .statgrid, .statgrid--4 { grid-template-columns: 1fr; }
}

/* ---- Mobile: restack tables into cards (no horizontal scroll) ---- */
@media (max-width: 680px) {
  .tbl-scroll { overflow: visible; border: 0; background: transparent; }

  table.tf, table.tf tbody, table.tf tr, table.tf td { display: block; width: 100%; }
  table.tf { min-width: 0; }
  table.tf thead { display: none; }
  table.tf tr { background: var(--card); border: 1px solid var(--hairline); margin-bottom: 12px; }
  table.tf tr:last-child { margin-bottom: 0; }
  table.tf td { border-bottom: 0; padding: 16px 18px; width: 100% !important; }
  table.tf td:first-child { color: var(--muted-2); background: transparent; border-bottom: 1px solid var(--hairline); }
  table.tf td:last-child { background: rgba(204,0,0,0.07); color: #fff; }
  table.tf td::before { display: block; font-family: var(--head); font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.14em; font-size: 0.72rem; margin-bottom: 7px; }
  table.tf td:first-child::before { content: "The Truth"; color: var(--muted); }
  table.tf td:last-child::before { content: "The Fix"; color: var(--red); }

  table.cmp, table.cmp tbody, table.cmp tr, table.cmp td { display: block; width: 100%; }
  table.cmp { min-width: 0; }
  table.cmp thead { display: none; }
  table.cmp tr { background: var(--card); border: 1px solid var(--hairline); margin-bottom: 12px; padding-bottom: 4px; }
  table.cmp tr:last-child { margin-bottom: 0; }
  table.cmp td { border-bottom: 0; padding: 12px 18px; }
  table.cmp td:first-child { font-size: 1.15rem; border-bottom: 1px solid var(--hairline); padding: 16px 18px; }
  table.cmp td:nth-child(2), table.cmp td:nth-child(3) { display: flex; justify-content: space-between;
    align-items: baseline; gap: 16px; }
  table.cmp td:nth-child(2)::before, table.cmp td:nth-child(3)::before { font-family: var(--head); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }
  table.cmp td:nth-child(2)::before { content: "Without RevPlug AI™"; color: var(--muted); }
  table.cmp td:nth-child(3)::before { content: "With RevPlug AI™"; color: #fff; }
}
