/* Eagle Point v8.3 — palette swapped to the ui-ux-pro-max "B2B Service"
   system (deep slate-navy, near-white, soft borders) with the accent tuned to
   the logo's teal. Calm authority instead of electric blue; nothing saturated
   enough to hurt at full brightness. Type + layout unchanged from v8.2. */

:root {
  --bg: #f8fafc;
  --bg-tint: #f1f5f9;
  --card: #ffffff;
  --ink: #0f172a;
  --ink-soft: #334155;
  --primary: #0e7490;
  --primary-deep: #0f172a;
  --accent: #0e7490;
  --accent-deep: #155e75;
  --border: #e2e8f0;
  --good: #047857;
  --bad: #dc2626;

  --display: "Poppins", -apple-system, "Segoe UI", sans-serif;
  --body: "Open Sans", -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --s1: 8px; --s2: 14px; --s3: 22px; --s4: 34px; --s5: 52px; --s6: 80px;

  --lift: 0 10px 30px -12px rgba(15, 23, 42, 0.22);
  --lift-sm: 0 4px 14px -6px rgba(15, 23, 42, 0.18);

  --max: 1720px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }

body {
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ---------- type: display + middle register + body ---------- */
h1, h2 { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; line-height: 1.3; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h1 em, h2 em { font-style: normal; color: var(--primary); }
p { max-width: 74ch; }
a { color: var(--primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
strong { font-weight: 700; }

.mono { font-family: var(--mono); }
.eyebrow { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.eyebrow b { color: var(--accent-deep); font-weight: 700; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

/* ---------- ledger rows ---------- */
.ledger-row {
  display: block;
  border-top: 2px solid var(--primary-deep); padding: clamp(26px, 4vw, 52px) 0;
}

/* ---------- header ---------- */
header.site {
  border-bottom: 2px solid var(--primary-deep);
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 50;
}
.nav { max-width: var(--max); margin: 0 auto; padding: 12px clamp(20px, 4vw, 56px); display: flex; align-items: center; gap: 28px; }
.nav .brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); margin-right: auto; }
.nav .brand img { height: 56px; width: auto; }
.nav .brand .bt { line-height: 1.1; }
.nav .brand .bt strong { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.015em; color: var(--primary-deep); }
.nav .brand .bt span { font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--ink-soft); }
.nav .item {
  display: inline-flex; align-items: center; margin: 0; padding: 6px 2px;
  border: 0; color: var(--ink); background: transparent; cursor: pointer;
  font-family: var(--body); font-size: 0.98rem; font-weight: 600; line-height: 1.4;
  text-decoration: none;
}
.nav .item:hover { color: var(--primary); }
.nav .cta {
  font-family: var(--display); font-size: 0.95rem; font-weight: 600;
  color: #fff; background: var(--accent); padding: 12px 22px; text-decoration: none;
  border: 0; cursor: pointer; white-space: nowrap;
  border-radius: 8px; box-shadow: var(--lift-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.nav .cta:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--lift); }
.dd { position: relative; display: flex; align-items: center; }
.dd .menu {
  display: none; position: absolute; top: calc(100% + 10px); left: -16px; min-width: 320px;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 8px; box-shadow: var(--lift);
}
.dd.open .menu { display: block; }
.dd .menu a { display: block; padding: 12px 14px; color: var(--ink); text-decoration: none; font-size: 0.95rem; border-radius: 8px; }
.dd .menu a small { display: block; font-family: var(--mono); font-size: 0.7rem; color: var(--ink-soft); margin-top: 2px; }
.dd .menu a:hover { background: var(--bg-tint); }
.dd .menu a b { color: var(--primary-deep); }
@media (max-width: 860px) {
  header.site { background: #fff; backdrop-filter: none; }
  .nav { flex-wrap: wrap; gap: 10px 18px; }
  .nav .brand img { height: 42px; }
  .nav .brand .bt strong { font-size: 1.2rem; }
  .dd.open { flex: 1 0 100%; align-items: stretch; flex-direction: column; }
  .dd.open .item { align-self: flex-start; }
  .dd .menu { position: static; width: 100%; min-width: 0; box-shadow: none; border: none; border-left: 2px solid var(--border); border-radius: 0; display: none; }
  .dd.open .menu { display: block; }
}

/* ---------- hero ---------- */
.hero {
  padding: clamp(36px, 5vw, 72px) 0 clamp(30px, 4vw, 56px);
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
  gap: clamp(28px, 4vw, 72px); align-items: start;
}
.hero-receipt { max-width: none; margin-top: var(--s4); }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-receipt { margin-top: var(--s1); }
}
.hero .kicker { margin-bottom: var(--s3); }
.hero .lede { margin-top: var(--s3); font-size: 1.17rem; color: var(--ink-soft); max-width: 62ch; }
.hero .actions { margin-top: var(--s4); display: flex; gap: var(--s2); flex-wrap: wrap; }

.btn {
  display: inline-block; text-decoration: none; font-family: var(--display); font-weight: 600; font-size: 1.02rem;
  padding: 15px 28px; border: 2px solid var(--primary-deep); color: var(--primary-deep); background: #fff;
  border-radius: 10px; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: var(--lift-sm); }
.btn.primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--lift); }
.btn:hover { background: var(--bg-tint); transform: translateY(-2px); }
.btn:focus-visible, .nav .cta:focus-visible, a:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ---------- findings card ---------- */
.receipt {
  background: var(--card); border: 2px solid var(--primary-deep); border-radius: 14px;
  box-shadow: var(--lift);
  padding: var(--s3) var(--s3) var(--s2); max-width: 560px;
}
.receipt .rhead {
  display: flex; justify-content: space-between; align-items: baseline; gap: var(--s2);
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--primary);
  border-bottom: 1px solid var(--border); padding-bottom: var(--s1); margin-bottom: var(--s2);
}
.rline { display: flex; align-items: baseline; gap: 8px; font-family: var(--mono); font-size: 0.87rem; padding: 8px 0; color: var(--ink-soft); border-bottom: 1px solid #eef2f7; }
.rline .lbl { flex-shrink: 0; }
.rline .dots { flex: 1; }
.rline .val { flex-shrink: 1; min-width: 0; text-align: right; overflow-wrap: anywhere; font-weight: 600; color: var(--ink); }
.rline .val.bad { color: var(--bad); }
.rline .val.good { color: var(--good); }

.stamp {
  display: inline-block; font-family: var(--mono); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-deep); border: 2px solid var(--accent-deep);
  padding: 4px 12px; transform: rotate(-3deg); border-radius: 4px; background: #ecfeff;
}
.stamp.pass { color: var(--good); border-color: var(--good); background: #ecfeff; }
@media (prefers-reduced-motion: no-preference) {
  .stampable .stamp { opacity: 0; transform: rotate(-3deg) scale(1.6); }
  .stampable.stamped .stamp { opacity: 1; transform: rotate(-3deg) scale(1); transition: all 0.28s cubic-bezier(.2,1.4,.4,1); }
}

/* ---------- three-leg band: cards with presence ---------- */
.legband {
  border-top: 2px solid var(--primary-deep);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 34px);
  padding: clamp(28px, 4vw, 52px) 0;
}
.legband .leg {
  display: flex; flex-direction: column;
  background: var(--bg-tint); border: 1px solid var(--border); border-radius: 14px;
  padding: var(--s3) var(--s3) var(--s2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.legband .leg:hover { transform: translateY(-4px); box-shadow: var(--lift); }
.legband .leg .claim { font-family: var(--display); font-weight: 700; font-size: clamp(1.15rem, 1.9vw, 1.6rem); margin-top: var(--s1); line-height: 1.18; max-width: none; }
.legband .leg .claim .strike { color: var(--ink-soft); font-weight: 500; }
.legband .leg p.body { font-size: clamp(0.95rem, 1.1vw, 1.05rem); margin-top: var(--s2); color: var(--ink-soft); }
.legband .leg .measure {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); margin-top: var(--s2); border-top: 2px dashed var(--border); padding-top: var(--s1);
}
.legband .leg .go { margin-top: auto; padding-top: var(--s2); font-weight: 700; font-family: var(--display); }
@media (max-width: 680px) { .legband { grid-template-columns: 1fr; gap: var(--s3); } }

/* ---------- tables ---------- */
.tablewrap { overflow-x: auto; border: 2px solid var(--primary-deep); border-radius: 14px; background: var(--card); box-shadow: var(--lift); }
table.compare { border-collapse: collapse; width: 100%; min-width: 720px; font-size: 0.94rem; }
table.compare th, table.compare td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
table.compare thead th {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--primary-deep);
}
table.compare .us { background: #ecfeff; border-left: 4px solid var(--accent); }
table.compare thead th.us { background: var(--accent); }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare td.rowlabel { font-weight: 700; }
.asof { font-family: var(--mono); font-size: 0.78rem; color: var(--ink-soft); margin-top: var(--s2); max-width: 80ch; }

/* ---------- quote band ---------- */
.quoteband { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%); color: #eef4ff; margin-top: 48px; }
.quoteband .inner { max-width: var(--max); margin: 0 auto; padding: clamp(26px, 3.5vw, 44px) clamp(20px, 4vw, 56px); text-align: center; }
.quoteband blockquote { font-family: var(--display); font-size: clamp(1.05rem, 1.7vw, 1.85rem); font-style: italic; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; max-width: none; white-space: nowrap; margin: 0 auto; }
.quoteband .attr { margin-top: var(--s3); font-family: var(--mono); font-size: 0.78rem; color: #94b8c9; }

.checklist { list-style: none; }
.checklist li { padding: 12px 0 12px 36px; position: relative; max-width: 66ch; }
.checklist li::before { content: "▸"; position: absolute; left: 8px; color: var(--accent); font-weight: 700; }
.checklist.horiz { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 var(--s4); }
.checklist.horiz li { max-width: none; }
@media (max-width: 680px) { .checklist.horiz { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
footer.site { border-top: 2px solid var(--primary-deep); margin-top: clamp(48px, 7vw, 90px); background: var(--bg-tint); }
footer.site .inner { max-width: var(--max); margin: 0 auto; padding: var(--s5) clamp(20px, 4vw, 56px); display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--s4); }
footer.site h4 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: var(--s2); }
footer.site a { color: var(--ink); text-decoration: none; display: block; padding: 4px 0; font-size: 0.97rem; }
footer.site a:hover { color: var(--primary); }
footer.site .fineprint { font-family: var(--mono); font-size: 0.74rem; color: var(--ink-soft); margin-top: var(--s2); line-height: 1.8; }
@media (max-width: 780px) { footer.site .inner { grid-template-columns: 1fr; gap: var(--s3); } }

.pagehead { padding: clamp(40px, 6vw, 76px) 0 clamp(34px, 4.5vw, 60px); }
.pagehead h1 { max-width: none; font-size: clamp(1.95rem, 3.35vw, 2.77rem); }
.pagehead .lede { margin-top: var(--s3); font-size: 1.13rem; color: var(--ink-soft); max-width: none; }

/* mobile call bar */
.callbar { display: none; }
@media (max-width: 820px) {
  .callbar {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--accent); color: #fff; text-align: center; text-decoration: none;
    font-family: var(--display); font-weight: 700; font-size: 1.05rem; padding: 15px 10px;
    box-shadow: 0 -4px 14px rgba(15, 23, 42, 0.25);
  }
  body { padding-bottom: 58px; }
  .nav .brand .bt span { display: none; }
}

@media (max-width: 900px) { .quoteband blockquote { white-space: normal; } }

/* the section directly under the full-bleed band draws no top rule */
.ledger-row.after-band { border-top: none; }

/* long-form statement headline (Codex hero, Billy 2026-07-08) */
h1.statement { font-size: clamp(1.55rem, 2.9vw, 2.6rem); line-height: 1.22; letter-spacing: -0.015em; max-width: 34ch; }


/* ---------- findings card v2: report-style rows with status pills ---------- */
.findings { background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--lift); padding: 26px 28px 18px; }
.findings .fhead { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.findings .fhead h3 { font-size: 1.15rem; margin: 0; }
.findings .fhead .tag { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); white-space: nowrap; }
.frow { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 13px 0; border-bottom: 1px solid #eef2f7; }
.frow:last-of-type { border-bottom: none; }
.frow .flabel { font-size: 0.99rem; color: var(--ink); }
.pill {
  flex-shrink: 0; font-family: var(--display); font-weight: 600; font-size: 0.82rem;
  padding: 5px 13px; border-radius: 999px; white-space: nowrap;
}
.pill.red { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.pill.amber { background: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.pill.green { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.pill.navy { background: var(--bg-tint); color: var(--primary-deep); border: 1px solid var(--border); }
@media (max-width: 480px) { .frow { flex-direction: column; align-items: flex-start; gap: 6px; } }


/* ---------- mini report cover: faithful to the real Visibility Audit deliverable ---------- */
.reportcard {
  background: radial-gradient(120% 90% at 20% 10%, #14455e 0%, #0d2f42 45%, #0a2534 100%);
  border-radius: 18px; box-shadow: var(--lift);
  padding: 30px 26px 26px; color: #eef6f9; text-align: center;
}
.reportcard .rc-title { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 1.7rem; letter-spacing: 0.01em; }
.reportcard .rc-sub { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8fc1d4; margin-top: 6px; }
.rings { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
@media (max-width: 1100px) { .rings { grid-template-columns: repeat(2, 1fr); } }
.ring { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ring .dial {
  width: 86px; height: 86px; border-radius: 50%;
  display: grid; place-items: center; position: relative;
}
.ring .dial::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--arc); }
.ring .dial::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: #0d3145; }
.ring .num { position: relative; z-index: 1; font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 1.65rem; color: #fff; line-height: 1; }
.ring .num small { display: block; font-family: var(--body); font-size: 0.6rem; color: #9db9c6; font-weight: 400; margin-top: 3px; }
.ring .rlabel { font-family: var(--body); font-weight: 700; font-size: 0.78rem; color: #ffffff; line-height: 1.25; }
.ring .rstatus { font-family: var(--body); font-weight: 600; font-size: 0.7rem; }
.ring .rstatus.crit { color: #f28b82; }
.ring .rstatus.found { color: #f5c66b; }
.reportcard .rc-note { margin-top: 22px; font-size: 0.9rem; color: #bcd6e0; max-width: 44ch; margin-left: auto; margin-right: auto; }

/* hero without a right-column card */
.hero.solo { grid-template-columns: 1fr; }
.hero.solo .lede { max-width: 74ch; }

/* full-width card row that follows a ledger heading */
.legband.fullrow { padding-top: 0; padding-bottom: clamp(20px, 3vw, 40px); }

/* left-rail section heading (no margin column) */
.sechead { padding: clamp(22px, 3vw, 40px) 0 6px; }

/* attribution right-aligns to the quote's ending period */
.quoteband .qwrap { display: inline-block; text-align: left; }
.quoteband .attr { display: block; text-align: right; max-width: none; text-decoration: none; }
.quoteband .attr:hover { color: #c7e9f4; text-decoration: underline; }

/* third-party testimonials reuse the quote band without overpowering the page */
.quoteband.testimonial-band {
  background: #172b49;
  box-shadow: 0 0 0 100vmax #172b49;
  clip-path: inset(0 -100vmax);
}
.quoteband.testimonial-band blockquote {
  max-width: none;
  white-space: normal;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.5;
}
.wrap > .quoteband.testimonial-band .inner { padding-left: 0; padding-right: 0; }
@media (max-width: 700px) {
  .quoteband.testimonial-band blockquote { font-size: 1.1rem; }
  .quoteband.testimonial-band .attr { text-align: left; }
}

/* bordered content section used on the home page */
.words { position: relative; border-top: 2px solid var(--primary-deep); padding: clamp(26px, 4vw, 52px) 0 0; }

/* ---------- second look: price card + faq ---------- */
.pricewrap { display: grid; grid-template-columns: minmax(0, 1fr) 400px; grid-template-areas: "copy card" "next card"; column-gap: var(--s4); row-gap: 0; align-items: start; }
.price-copy { grid-area: copy; }
.pricecard { grid-area: card; background: var(--card); border: 2px solid var(--primary-deep); border-radius: 16px; box-shadow: var(--lift); padding: 26px 30px 24px; }
@media (max-width: 980px) {
  .pricewrap { grid-template-columns: 1fr; grid-template-areas: "copy" "card" "next"; row-gap: var(--s4); }
}
.pricecard .peyebrow { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); font-weight: 600; }
.pricecard .pnum { font-family: var(--display); font-weight: 700; font-size: 3.1rem; line-height: 1; margin-top: 10px; letter-spacing: -0.02em; }
.pricecard .pnum span { font-family: var(--mono); font-size: 0.7rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-left: 10px; }
.pricecard ul { list-style: none; margin-top: 16px; }
.pricecard li { padding: 9px 0 9px 26px; position: relative; font-size: 0.95rem; color: var(--ink-soft); }
.pricecard li::before { content: "\25B8"; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }
.pricecard .pcredit { margin-top: 14px; background: var(--bg-tint); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 0.92rem; color: var(--ink-soft); }
.pricecard .actions { margin-top: 18px; }
.faq details { max-width: 920px; }
.faq summary { cursor: pointer; list-style: none; display: flex; gap: 14px; align-items: baseline; padding: 17px 0; font-family: var(--display); font-weight: 600; font-size: 1.06rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+"; font-family: var(--mono); color: var(--accent); font-weight: 700; flex: none; }
.faq details[open] summary::before { content: "\2212"; }
.faq details > p { padding: 0 0 18px 30px; color: var(--ink-soft); max-width: 78ch; }

.ledger-row.norail { display: block; }

.ledger-row.norail p { max-width: none; }

.ledger-row.norail .checklist li { max-width: none; }
.ledger-row.norail .faq details, .ledger-row.norail .faq details > p { max-width: none; }

/* sanitized audit excerpts gallery */
.excerpts { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); margin-top: 26px; }
@media (max-width: 1100px) { .excerpts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .excerpts { grid-template-columns: 1fr; } }
.excerpts a { display: block; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #fff;
  box-shadow: var(--lift-sm); transition: transform 0.2s ease, box-shadow 0.2s ease; text-decoration: none; }
.excerpts a:hover { transform: translateY(-4px); box-shadow: var(--lift); }
.excerpts img { display: block; width: 100%; height: auto; }
.excerpts .cap { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); padding: 10px 14px; border-top: 1px solid var(--border); }

/* sample-report carousel */
.carousel { margin: 26px auto 0; max-width: 1460px; }
.carousel .cspread { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 1.6vw, 24px); }
@media (max-width: 700px) { .carousel .cspread { grid-template-columns: 1fr; } }
.carousel .cstage { display: block; position: relative; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; background: #fff; box-shadow: var(--lift); }
.carousel .cstage.empty { visibility: hidden; }
.carousel .cstage img { display: block; width: 100%; height: auto; }
.carousel .cbar { display: flex; align-items: center; gap: 14px; margin-top: 14px; }
.carousel .cbtn { font-family: var(--display); font-weight: 600; font-size: 0.95rem; color: var(--ink);
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 10px 18px; cursor: pointer;
  box-shadow: var(--lift-sm); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.carousel .cbtn:hover { transform: translateY(-2px); box-shadow: var(--lift); }
.carousel .cbtn:disabled { opacity: 0.35; cursor: default; transform: none; box-shadow: none; }
.carousel .ccount { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-left: auto; }

/* pagehead details */
.pagehead .eyebrow { font-size: 0.85rem; }
.processmap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 40px);
  padding-bottom: 6px;
  overflow-x: auto;
  list-style: none;
}
.processmap li {
  display: flex;
  flex: none;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 12px;
  color: var(--ink);
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--lift-sm);
}
.processmap b {
  display: grid;
  width: 30px;
  height: 30px;
  flex: none;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
}
.processmap span { font-family: var(--display); font-size: 0.98rem; font-weight: 600; white-space: nowrap; }

.pagehead .sub { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--primary); margin-top: var(--s2); max-width: none; white-space: nowrap; text-wrap: nowrap; }

@media (max-width: 680px) {
  .pagehead .sub { white-space: normal; text-wrap: wrap; }
}

/* ---------- operations: one continuous Second Look story ---------- */
.operations-page .pagehead { padding-bottom: clamp(24px, 3vw, 40px); }
.operations-page .ledger-row { border-top: 0; padding: clamp(34px, 5vw, 66px) 0; }
.operations-page .ops-assessment { padding-top: clamp(22px, 2.5vw, 34px); }
.ops-positioning { margin-top: clamp(26px, 3vw, 38px); font-family: var(--display); font-weight: 700; font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.15; color: var(--ink); }
.ops-output { margin-top: 0; }
.ops-output h2 { margin-top: 8px; }
.ops-output .checklist { margin-top: 18px; }
.operations-page .ops-copy { margin-top: 16px; color: var(--ink-soft); }
.ops-next { grid-area: next; margin-top: clamp(28px, 3vw, 42px); }
.ops-next h2 { margin-top: 8px; }
.ops-next .body { margin-top: 16px; color: var(--ink-soft); }
.ops-next .checklist { margin-top: 18px; }
.ops-fit-list { margin-top: 22px; }
.ops-faq { margin-top: clamp(48px, 6vw, 78px); }
.ops-faq h2 { margin-bottom: 22px; }
.ops-faq .actions { margin-top: 30px; }

@media (max-width: 680px) {
  .operations-page .ledger-row { padding: 30px 0; }
  .ops-next { margin-top: 0; }
}
