:root {
  --pr-red: #EC3013;
  --pr-paper: #F1EFEA;
  --pr-ink: #201E1D;
  --pr-grey: #6E6A64;
  --pr-rule: #CFCAC2;
  --pr-tint: #EAE7E1;
  --pr-body: #4A4744;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--pr-paper);
  color: var(--pr-ink);
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pr-red); text-decoration: none; }
a:hover { color: #C42B10; }
::selection { background: var(--pr-red); color: #fff; }
summary::-webkit-details-marker { display: none; }
summary { list-style: none; cursor: pointer; }
h1, h2, h3, p { margin: 0; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

@media (max-width: 640px) {
  .wrap { padding: 0 22px; }
}

/* Scroll progress */
.progress-track { position: fixed; left: 0; top: 0; right: 0; height: 3px; z-index: 120; background: transparent; }
.progress-bar { height: 100%; width: 0%; background: var(--pr-red); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(241,239,234,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--pr-rule);
}
.header-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; color: var(--pr-ink); }
.brand-dot { position: relative; width: 24px; height: 24px; flex: none; display: block; }
.brand-dot-core, .brand-dot-ping { position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%; }
.brand-dot-core { background: var(--pr-red); }
.brand-dot-ping { border: 1.5px solid var(--pr-red); opacity: 0; animation: pr-ping 2.8s cubic-bezier(.2,.6,.35,1) infinite; }
.brand-name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .24em; text-transform: uppercase; white-space: nowrap; }
.accent { color: var(--pr-red); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) { font-size: 13.5px; font-weight: 600; color: var(--pr-grey); }

@media (max-width: 640px) {
  .nav a:not(.btn) { display: none; }
}

@keyframes pr-ping {
  0% { transform: scale(1); opacity: .85; }
  70% { opacity: .12; }
  100% { transform: scale(3.6); opacity: 0; }
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--pr-red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
}
.btn-small { font-size: 13px; padding: 11px 20px; }
.btn-large { font-size: 16px; padding: 18px 36px; }
.btn-outline { background: none; border: 1px solid var(--pr-ink); color: var(--pr-ink); }
.btn-link { font-weight: 700; font-size: 16px; color: var(--pr-ink); border-bottom: 2px solid var(--pr-red); padding-bottom: 2px; }

/* Sections */
.section { padding: 104px 0; border-bottom: 1px solid var(--pr-rule); }
.section-tint { background: var(--pr-tint); position: relative; overflow: hidden; }
.eyebrow { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--pr-grey); }
.step { color: var(--pr-red); margin-right: 14px; font-weight: 700; }
.rule { width: 64px; height: 4px; background: var(--pr-red); margin: 22px 0 28px; }

.h-large { font-weight: 900; font-size: clamp(30px,4vw,56px); line-height: 1.04; letter-spacing: -.032em; margin: 26px 0 0; max-width: 24ch; text-wrap: pretty; }
.h-large-2 { font-weight: 900; font-size: clamp(32px,4.6vw,64px); line-height: 1.02; letter-spacing: -.035em; margin: 26px 0 0; max-width: 18ch; }
.h-medium { font-weight: 900; font-size: clamp(28px,3.4vw,46px); line-height: 1.06; letter-spacing: -.03em; margin: 26px 0 0; max-width: 26ch; }
.h-small { font-weight: 900; font-size: clamp(22px,2.4vw,30px); letter-spacing: -.025em; }
.h-small-2 { font-weight: 900; font-size: clamp(26px,3.2vw,42px); line-height: 1.06; letter-spacing: -.03em; max-width: 16ch; }

.two-col { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 48px; margin-top: 44px; }
.two-col p, .lead { font-size: clamp(17px,1.5vw,20px); line-height: 1.62; color: var(--pr-body); }
.lead { font-size: clamp(18px,1.7vw,22px); margin-top: 30px; max-width: 42ch; }
.lead-2 { font-size: 16.5px; line-height: 1.62; color: var(--pr-body); margin-top: 14px; max-width: 44ch; }
.lead-3 { font-size: clamp(17px,1.6vw,21px); line-height: 1.6; color: var(--pr-body); margin-top: 26px; max-width: 46ch; }

.cta-row { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; align-items: center; }

/* Hero */
.hero { position: relative; min-height: min(94vh,940px); display: flex; align-items: center; padding: 76px 0 90px; overflow: hidden; border-bottom: 2px solid var(--pr-ink); }
.hero-glyph {
  position: absolute; left: 0; right: 0; top: 0; bottom: -4%; pointer-events: none;
  -webkit-mask: linear-gradient(to bottom, rgba(0,0,0,1) 76%, rgba(0,0,0,0) 100%);
  mask: linear-gradient(to bottom, rgba(0,0,0,1) 76%, rgba(0,0,0,0) 100%);
  background:
    radial-gradient(circle at 82% 28%, rgba(236,48,19,.16) 0%, rgba(236,48,19,0) 42%),
    repeating-linear-gradient(115deg, rgba(32,30,29,.05) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(25deg, rgba(32,30,29,.05) 0 1px, transparent 1px 68px);
}
.hero-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, rgba(241,239,234,.96) 0%, rgba(241,239,234,.88) 30%, rgba(241,239,234,.4) 54%, rgba(241,239,234,.08) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-copy { max-width: min(660px,100%); }

.glyph-radial {
  position: absolute; left: 24%; right: -16%; top: 50%; height: min(780px,104%);
  margin-top: min(-390px,-52%); pointer-events: none; opacity: .5;
  -webkit-mask: radial-gradient(72% 66% at 56% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 88%);
  mask: radial-gradient(72% 66% at 56% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 88%);
  background: repeating-radial-gradient(circle at 60% 50%, rgba(32,30,29,.09) 0 1px, transparent 1px 46px);
}
.glyph-radial-red {
  left: 44%; right: -18%; top: -12%; bottom: -12%; height: auto; margin-top: 0; opacity: .35;
  -webkit-mask: radial-gradient(60% 58% at 58% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 76%);
  mask: radial-gradient(60% 58% at 58% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 76%);
  background: repeating-radial-gradient(circle at 58% 50%, rgba(236,48,19,.14) 0 1px, transparent 1px 40px);
}
.section-contact { position: relative; overflow: hidden; }

/* Grids */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 14px; margin-top: 52px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 14px; margin-top: 52px; }

.card { background: var(--pr-paper); border: 1px solid var(--pr-rule); padding: 36px 30px 34px; transition: transform .45s cubic-bezier(.2,.7,.2,1), background .3s ease; }
.card[data-tilt]:hover { transform: translateY(-6px); background: #fff; }
.card-pad { padding: 40px 32px; }
.card-num { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .2em; color: var(--pr-red); }
.card h3 { margin: 16px 0 0; font-weight: 900; font-size: 23px; letter-spacing: -.02em; }
.card p { margin: 10px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--pr-grey); }
.card-title { margin: 0; font-weight: 900; font-size: 24px; letter-spacing: -.025em; }
.card-desc { margin: 14px 0 0 !important; font-size: 15.5px; line-height: 1.6; color: var(--pr-grey); }
.card-divider { height: 1px; background: var(--pr-rule); margin: 22px 0 18px; }
.card-list { margin: 0 !important; font-size: 15px; line-height: 1.9 !important; color: var(--pr-body); }

/* Split section */
.split { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 56px; margin-top: 74px; align-items: start; }
.tier-list { display: flex; flex-direction: column; gap: 2px; margin-top: 32px; background: var(--pr-rule); border: 1px solid var(--pr-rule); }
.tier-row { background: var(--pr-paper); padding: 16px 20px; display: grid; grid-template-columns: 112px 1fr; gap: 18px; align-items: baseline; }
.tier-text { font-size: 15px; color: var(--pr-body); }
.tier-text-muted { color: var(--pr-grey); }

.tag { font-family: 'Archivo', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .14em; padding: 5px 9px; white-space: nowrap; justify-self: start; display: inline-block; }
.tag-imminent { background: var(--pr-red); color: #fff; }
.tag-watch { border: 1px solid var(--pr-grey); color: var(--pr-body); }
.tag-pipeline { border: 1px solid var(--pr-rule); color: var(--pr-grey); }

.table-card { border: 1px solid var(--pr-ink); background: var(--pr-paper); }
.table-head, .table-row {
  display: grid; grid-template-columns: 34px 1.4fr 1fr 108px 92px; gap: 14px; align-items: center;
}
.table-head {
  padding: 13px 20px; border-bottom: 1px solid var(--pr-ink); background: var(--pr-ink); color: var(--pr-paper);
  font-family: 'Archivo', sans-serif; font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
}
.table-row { padding: 16px 20px; border-bottom: 1px solid var(--pr-rule); font-size: 14.5px; }
.table-row-last { border-bottom: none; }
.row-num { color: var(--pr-grey); font-weight: 700; }
.row-brand { font-weight: 700; }
.row-cat { color: var(--pr-grey); }
.row-score { display: flex; align-items: center; gap: 9px; }
.bar-track { flex: 1; height: 5px; background: #DAD6CE; display: block; }
.bar-fill { display: block; height: 100%; transform: scaleX(0); transform-origin: left; }
.score-num { font-weight: 800; font-size: 12.5px; width: 20px; }
.table-footnote { margin: 0; padding: 12px 20px; border-top: 1px solid var(--pr-rule); font-size: 12.5px; color: var(--pr-grey); }

@media (max-width: 720px) {
  .table-head, .table-row { grid-template-columns: 24px 1.2fr 1fr 84px; font-size: 13px; }
  .table-head div:nth-child(5), .table-row > div:nth-child(5) { display: none; }
}

/* Callout */
.section-callout { padding: clamp(84px,10vw,140px) 0; background: var(--pr-red); color: #fff; position: relative; overflow: hidden; }
.callout-text { font-weight: 900; font-size: clamp(30px,5.4vw,78px); line-height: 1; letter-spacing: -.04em; max-width: 22ch; text-wrap: pretty; }
.callout-mark {
  position: absolute; right: -14%; bottom: -42%; width: min(700px,78vw); height: min(700px,78vw); pointer-events: none; opacity: .16;
  background: radial-gradient(circle at 50% 50%, transparent 55%, #fff 56%, #fff 58%, transparent 59%),
              radial-gradient(circle at 50% 50%, transparent 70%, #fff 71%, #fff 73%, transparent 74%);
}

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 56px; margin-top: 34px; align-items: start; }
.faq-item { border-top: 1px solid var(--pr-rule); }
.faq-item-last { border-bottom: 1px solid var(--pr-rule); }
.faq-item summary { padding: 22px 0; font-weight: 700; font-size: 17px; display: flex; justify-content: space-between; gap: 20px; }
.faq-icon { color: var(--pr-red); flex: none; }
.faq-item p { margin: 0 0 24px; font-size: 15.5px; line-height: 1.65; color: var(--pr-grey); max-width: 58ch; }

/* Footer */
.site-footer { border-top: 2px solid var(--pr-ink); background: var(--pr-tint); padding: 44px 0 40px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--pr-grey); }
.footer-copy { margin: 0; font-size: 13px; color: var(--pr-grey); }

/* Reveal defaults (animated in via script.js) */
[data-rv] { opacity: 0; transform: translateY(28px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
[data-rv].is-visible { opacity: 1; transform: none; }
[data-row] { opacity: 0; transform: translateX(-38px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
[data-row].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  [data-rv], [data-row] { opacity: 1 !important; transform: none !important; }
  .bar-fill { transform: scaleX(1) !important; }
}
