:root {
  --navy: #0d1b3c;
  --navy-deep: #081428;
  --navy-mid: #152952;
  --blue: #336bf6;
  --blue-dark: #2858e0;
  --blue-soft: #6d92f7;
  --blue-tint: #e9f0fe;
  --gold: #ffd500;
  --gold-soft: #ffe04d;
  --ink: #0d1b3c;
  --slate: #5c6675;
  --slate-light: #8893a2;
  --line: #e5e9f0;
  --line-soft: #eff2f7;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-panel: #eef2f9;
  --maxw: 1240px;
  --header-nav-h: 78px;
  --header-total-h: var(--header-nav-h);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.eyebrow.center::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 2px;
  transition: all .2s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1;
}

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.btn-outline-dark:hover {
  border-color: var(--navy);
  background: var(--bg-soft);
}

.btn .arr {
  font-size: 16px;
  transition: transform .2s ease;
}

.btn:hover .arr { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header > header {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  flex: none;
}

.brand-logo--footer {
  height: 44px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: color .15s;
}

.nav-links a:hover { color: var(--blue); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn {
  padding: 11px 20px;
  font-size: 13.5px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  color: var(--navy);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 12% 0%, rgba(51, 107, 246, .18), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}

.hero-left {
  padding: 84px 64px 84px 0;
  color: #fff;
}

.hero-left .eyebrow { color: var(--gold); }
.hero-left .eyebrow::before { background: var(--gold); }

.hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 56px);
  margin: 0;
  font-weight: 500;
}

.hero .sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .82);
  margin-top: 26px;
  max-width: 540px;
  line-height: 1.62;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0 60px 64px;
}

.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
}

.doc {
  background: #fff;
  border-radius: 4px;
  padding: 18px 18px 20px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .5);
  position: relative;
  overflow: hidden;
}

.doc:nth-child(1) {
  transform: translateY(-14px);
  animation: doc-float-a 5s ease-in-out infinite;
}

.doc:nth-child(2) {
  transform: translateY(14px);
  animation: doc-float-b 5s ease-in-out 0.6s infinite;
}

@keyframes doc-float-a {
  0%, 100% { transform: translateY(-14px); }
  50% { transform: translateY(-20px); }
}

@keyframes doc-float-b {
  0%, 100% { transform: translateY(14px); }
  50% { transform: translateY(20px); }
}

.doc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.doc-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  padding: 4px 7px;
  border-radius: 2px;
}

.doc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: dot-pulse 2.4s ease-in-out infinite;
}

.doc-ln {
  transform-origin: left center;
  animation: ln-reveal 0.7s ease forwards;
  opacity: 0;
}

.doc:nth-child(1) .doc-ln:nth-of-type(1) { animation-delay: 0.15s; }
.doc:nth-child(1) .doc-ln:nth-of-type(2) { animation-delay: 0.25s; }
.doc:nth-child(2) .doc-ln:nth-of-type(1) { animation-delay: 0.2s; }
.doc:nth-child(2) .doc-ln:nth-of-type(2) { animation-delay: 0.3s; }
.doc:nth-child(2) .doc-row-side .doc-ln:nth-child(1) { animation-delay: 0.85s; }
.doc:nth-child(2) .doc-row-side .doc-ln:nth-child(2) { animation-delay: 0.95s; }
.doc:nth-child(2) .doc-row-side .doc-ln:nth-child(3) { animation-delay: 1.05s; }

.doc-title {
  font-family: "Newsreader";
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.ln {
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  margin-bottom: 7px;
}

.ln.w90 { width: 90%; }
.ln.w70 { width: 70%; }
.ln.w55 { width: 55%; }
.ln.w80 { width: 80%; }

/* --- Hero doc visualizations --- */
.doc-viz { margin-top: 14px; }

.doc-viz--bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 42px;
}

.doc-viz--bars .bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(var(--blue-soft), var(--blue));
  border-radius: 2px 2px 0 0;
  opacity: .85;
  transform: scaleY(0);
  transform-origin: bottom center;
  animation: bar-grow 0.65s cubic-bezier(0.34, 1.35, 0.64, 1) forwards;
  animation-delay: calc(0.35s + var(--i) * 0.07s);
}

.doc-viz--donut {
  width: 46px;
  height: 46px;
  flex: none;
  margin-top: 4px;
}

.donut-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 62%, var(--blue-soft) 62% 82%, var(--line) 82% 100%);
  position: relative;
  transform: scale(0);
  animation: donut-enter 0.9s cubic-bezier(0.34, 1.2, 0.64, 1) forwards 0.35s,
             donut-idle 5s ease-in-out 1.4s infinite;
}

.donut-ring::after {
  content: "";
  position: absolute;
  inset: 13px;
  background: #fff;
  border-radius: 50%;
}

@keyframes bar-grow {
  to { transform: scaleY(1); }
}

@keyframes ln-reveal {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@keyframes donut-enter {
  to { transform: scale(1); }
}

@keyframes donut-idle {
  0%, 100% { filter: brightness(1); transform: scale(1); }
  50% { filter: brightness(1.06); transform: scale(1.04); }
}

.doc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 8px;
}

.doc-row-side {
  flex: 1;
  margin-left: 12px;
}

.deliverables--duo {
  grid-template-columns: 1fr 1fr;
  max-width: 420px;
  margin-left: auto;
}

.doc-spaced { margin-top: 14px; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }

.sec-soft { background: var(--bg-soft); }
.sec-navy { background: var(--navy); color: #fff; }

.sec-head {
  max-width: 760px;
  margin-bottom: 54px;
  background: transparent;
  backdrop-filter: none;
  border: none;
  position: static;
}

.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-top: 18px;
}

.sec-head p {
  font-size: 17px;
  color: var(--slate);
  margin-top: 18px;
  line-height: 1.62;
}

.sec-navy h2 { color: #fff; }
.sec-navy .sec-head p { color: rgba(255, 255, 255, .74); }
.sec-navy .eyebrow { color: var(--gold); }
.sec-navy .eyebrow::before { background: var(--gold); }

/* value prop benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.benefit {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: .2s;
}

.benefit:hover {
  border-color: var(--blue-soft);
  box-shadow: 0 18px 40px -24px rgba(13, 27, 60, .3);
}

.benefit .num {
  font-family: "Newsreader";
  font-size: 30px;
  color: var(--blue);
  font-weight: 500;
  line-height: 1;
}

.benefit h3 {
  font-size: 21px;
  margin: 16px 0 12px;
}

.benefit p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

.strong-line {
  margin-top: 48px;
  padding: 28px 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  font-family: "Newsreader";
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.4;
  border-left: 3px solid var(--gold);
}

.strong-line em {
  color: var(--gold-soft);
  font-style: italic;
}

/* capabilities */
.caps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.cap {
  background: #fff;
  padding: 38px 32px;
  transition: .2s;
}

.cap:hover { background: var(--bg-soft); }

.cap .ico {
  width: 46px;
  height: 46px;
  border-radius: 3px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cap .ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
}

.cap h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.cap p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.62;
}

.cap-examples {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--slate-light);
  line-height: 1.5;
}

/* audiences */
.auds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aud {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: .2s;
}

.aud:hover {
  box-shadow: 0 22px 50px -28px rgba(13, 27, 60, .4);
  transform: translateY(-3px);
}

.aud-top {
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.aud-body {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aud h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.aud p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.62;
  margin-bottom: 0;
}

/* catalogs */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 30px;
  transition: .2s;
}

.catalog-card:hover {
  border-color: var(--blue-soft);
  box-shadow: 0 18px 40px -24px rgba(13, 27, 60, .25);
}

.catalog-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.catalog-card p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.62;
  margin-bottom: 24px;
  flex: 1;
}

.catalog-card .btn {
  align-self: flex-start;
}

.caps-cta {
  margin-top: 40px;
  text-align: center;
}

/* reports page */
.reports-page.is-gated {
  overflow: hidden;
}

.reports-main {
  padding: 72px 0 88px;
}

.reports-hero .sec-head p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--slate);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.report-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  animation: report-in .5s ease both;
  animation-delay: var(--card-delay, 0s);
}

@keyframes report-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.report-card:hover {
  border-color: var(--blue-soft);
  box-shadow: 0 18px 40px -24px rgba(13, 27, 60, .25);
  transform: translateY(-2px);
}

.report-cover {
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line-soft);
}

.report-cover__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(160deg, #f8fafd 0%, #e8eef8 100%);
}

.report-cover__canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .35s ease;
}

.report-card.has-cover .report-cover__canvas {
  opacity: 1;
}

.report-cover__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 20px;
}

.report-cover__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(255, 255, 255, .85);
  padding: 6px 10px;
  border-radius: 2px;
}

.report-cover__mark {
  align-self: flex-end;
  font-family: "Newsreader", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: rgba(13, 27, 60, .12);
  letter-spacing: -0.02em;
}

.report-card__body {
  padding: 22px 22px 16px;
  flex: 1;
}

.report-card__body h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.report-card__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.report-card__btn {
  margin: 0 22px 22px;
  align-self: flex-start;
}

.reports-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--slate);
  padding: 48px 0;
}

/* email gate */
.gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.gate.is-hidden,
.gate[hidden] {
  display: none !important;
}

.reports-main[hidden] {
  display: none !important;
}

.gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 40, .55);
  backdrop-filter: blur(6px);
}

.gate__panel {
  position: relative;
  width: min(100%, 460px);
  background: #fff;
  border-radius: 6px;
  padding: 38px 36px 32px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .45);
}

.gate__panel h2 {
  font-size: clamp(24px, 4vw, 30px);
  margin: 12px 0 10px;
}

.gate__desc {
  font-size: 14.5px;
  color: var(--slate);
  margin-bottom: 22px;
  line-height: 1.6;
}

.gate__form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.gate__error {
  font-size: 13px;
  color: #c0392b;
  margin: 4px 0 10px;
}

.gate__back {
  display: inline-block;
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--slate);
  transition: color .15s;
}

.gate__back:hover {
  color: var(--navy);
}

.ezlaunch-frame {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  visibility: hidden;
}

/* contact form */
.form-card {
  background: #fff;
  border-radius: 6px;
  padding: 38px 36px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .5);
}

.form-card h3 {
  font-size: 23px;
  margin-bottom: 6px;
}

.form-card .fsub {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.field input,
.field select {
  font-family: "Inter";
  font-size: 14px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-soft);
  color: var(--ink);
  transition: .15s;
  width: 100%;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(51, 107, 246, .12);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 20px;
}

.check input {
  margin-top: 3px;
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
  flex: none;
}

.check label {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.5;
}

.form-card .btn {
  width: 100%;
  justify-content: center;
}

/* closing / contact */
.closing {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, var(--navy-mid));
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy .eyebrow {
  color: var(--gold);
}

.contact-copy .eyebrow::before {
  background: var(--gold);
}

.contact-copy h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  margin-top: 18px;
  max-width: 520px;
}

.contact-copy p.cls {
  font-size: 17px;
  color: rgba(255, 255, 255, .78);
  margin-top: 20px;
  max-width: 520px;
  line-height: 1.6;
}

.process-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 28px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  letter-spacing: 0.02em;
}

.process-arrow {
  color: var(--gold);
  font-weight: 400;
}

.contact-mail {
  display: inline-flex;
  margin-top: 24px;
  font-size: 14px;
}

/* footer */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .65);
  padding: 54px 0 40px;
}

.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.foot-brand .brand { margin-bottom: 14px; }

.foot-brand .brand-tagline {
  max-width: 340px;
  font-size: 14px;
}

.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  font-style: normal;
}

.foot-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
  transition: color .15s ease;
}

.foot-contact a:hover { color: var(--blue-soft); }

.foot-contact__icon {
  width: 18px;
  height: 18px;
  flex: none;
  opacity: .85;
}

.disclaimer {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
  margin-top: 26px;
  max-width: 920px;
}

.foot-bottom {
  margin-top: 26px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links,
  .nav-cta .btn { display: none; }

  .menu-btn { display: block; }

  .hero-grid { grid-template-columns: 1fr; }

  .hero-left { padding: 64px 0 20px; }

  .hero-right { padding: 10px 0 64px; }

  .benefits,
  .caps,
  .auds,
  .catalog-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .reports-grid { grid-template-columns: repeat(2, 1fr); }

  .caps { gap: 1px; }

  .deliverables--duo {
    max-width: none;
    margin-left: 0;
  }
}

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

  section { padding: 56px 0; }

  .reports-grid { grid-template-columns: 1fr; }

  .deliverables { grid-template-columns: 1fr 1fr; }

  .form-card { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .doc-viz--bars .bar,
  .donut-ring,
  .doc-ln,
  .doc-dot {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .doc-viz--bars .bar {
    transform: scaleY(1);
  }

  .donut-ring {
    transform: scale(1);
  }

  .doc:nth-child(1),
  .doc:nth-child(2) {
    animation: none !important;
  }

  .doc:nth-child(1) { transform: translateY(-14px); }
  .doc:nth-child(2) { transform: translateY(14px); }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-total-h) 0 0;
  background: #fff;
  z-index: 50;
  padding: 32px;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .btn {
  margin-top: 18px;
  justify-content: center;
}
