:root {
  color-scheme: dark;
  --bg: #050914;
  --bg-soft: #08101f;
  --panel: rgba(10, 18, 34, 0.86);
  --panel-strong: rgba(14, 25, 48, 0.94);
  --text: #f7f3ea;
  --muted: #b7c0cc;
  --subtle: #7f8c9d;
  --line: rgba(190, 207, 232, 0.16);
  --line-gold: rgba(239, 190, 112, 0.34);
  --gold: #f0be70;
  --gold-strong: #ffd99a;
  --violet: #8b62ff;
  --blue: #4aa4ff;
  --danger: #d58a68;
  --trust: #72d7b2;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 8%, rgba(74, 164, 255, 0.2), transparent 26rem),
    radial-gradient(circle at 50% 10%, rgba(139, 98, 255, 0.24), transparent 31rem),
    radial-gradient(circle at 12% 3%, rgba(240, 190, 112, 0.14), transparent 24rem),
    linear-gradient(180deg, #030713 0%, #07101d 48%, #030612 100%);
  color: var(--text);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 34rem),
    linear-gradient(90deg, rgba(3, 7, 18, 0.82), transparent 22%, transparent 78%, rgba(3, 7, 18, 0.82));
}

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.8vw, 5.08rem);
  font-weight: 780;
}

h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.5vw, 4.15rem);
  font-weight: 740;
}

h3 {
  font-size: 1.1rem;
}

ul,
ol {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(90deg, rgba(5, 9, 20, 0.93), rgba(8, 15, 31, 0.88), rgba(5, 9, 20, 0.93));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  filter:
    drop-shadow(0 10px 18px rgba(74, 164, 255, 0.18))
    drop-shadow(0 0 12px rgba(240, 190, 112, 0.1));
}

.brand span {
  display: grid;
  gap: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1.26rem;
  letter-spacing: 0.055em;
}

.brand small {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.3em;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
}

.header-nav a,
.header-cta,
.button,
.text-link,
.icon-strip a,
.site-footer a,
.tab-button {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.header-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.header-nav a.is-current,
.header-cta.is-current {
  color: var(--gold-strong);
}

.header-nav a.is-current {
  position: relative;
}

.header-nav a.is-current::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--violet), var(--blue));
  box-shadow: 0 0 18px rgba(240, 190, 112, 0.35);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 760;
}

.header-cta {
  min-width: max-content;
  padding: 0 18px;
  border: 1px solid rgba(240, 190, 112, 0.42);
  color: #17110a;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 16px 38px rgba(240, 190, 112, 0.18);
}

.header-cta:hover,
.button:hover,
.icon-strip a:hover {
  transform: translateY(-1px);
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 94px clamp(18px, 4vw, 34px);
}

.hero {
  position: relative;
  max-width: 1280px;
  padding-top: 76px;
  padding-bottom: 78px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px 18px 38px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background:
    radial-gradient(circle at 76% 46%, rgba(74, 164, 255, 0.16), transparent 23rem),
    radial-gradient(circle at 64% 18%, rgba(139, 98, 255, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow,
.card-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.72vw, 1.32rem);
  line-height: 1.48;
}

.hero-trust-list {
  display: grid;
  max-width: 640px;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.hero-trust-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-trust-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  box-shadow: 0 0 16px rgba(240, 190, 112, 0.34);
}

.gradient-text {
  color: var(--gold-strong);
  background: linear-gradient(100deg, var(--gold-strong), #8b62ff 58%, #57b8ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  overflow: hidden;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: transform 520ms ease;
}

.button:hover::after {
  transform: translateX(120%) skewX(-20deg);
}

.button-primary {
  color: #130e08;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 18px 44px rgba(240, 190, 112, 0.2);
}

.button-primary:hover {
  box-shadow:
    0 22px 58px rgba(240, 190, 112, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.button-secondary:hover,
.text-link:hover {
  border-color: rgba(240, 190, 112, 0.38);
  color: var(--gold-strong);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 11px;
  color: rgba(183, 192, 204, 0.82);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.8rem;
}

.trust-note {
  max-width: 620px;
  color: rgba(127, 140, 157, 0.92);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% 4% 15% 0;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(74, 164, 255, 0.28), transparent 58%),
    radial-gradient(circle, rgba(139, 98, 255, 0.34), transparent 64%);
  filter: blur(16px);
}

.hero-depth {
  position: absolute;
  inset: 58px 16px 74px;
  z-index: -1;
  border: 1px solid rgba(87, 184, 255, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 44%, rgba(139, 98, 255, 0.16), transparent 23rem),
    radial-gradient(circle at 70% 30%, rgba(240, 190, 112, 0.1), transparent 17rem);
  box-shadow:
    0 0 80px rgba(74, 164, 255, 0.12),
    inset 0 0 60px rgba(139, 98, 255, 0.1);
}

.crystal {
  position: absolute;
  top: 2%;
  left: -4%;
  z-index: 1;
  width: min(88%, 560px);
  filter:
    drop-shadow(0 38px 54px rgba(81, 67, 255, 0.56))
    drop-shadow(0 0 24px rgba(74, 164, 255, 0.24));
  animation: crystalPulse 9s ease-in-out infinite;
}

.hero-badges {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-badges span {
  position: absolute;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(13, 27, 52, 0.86), rgba(6, 12, 24, 0.78));
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 760;
  animation: floatBadge 7s ease-in-out infinite;
}

.badge-evidence {
  top: 13%;
  left: 4%;
  border-color: rgba(240, 190, 112, 0.38) !important;
}

.badge-risk {
  top: 24%;
  right: 5%;
  border-color: rgba(139, 98, 255, 0.4) !important;
  animation-delay: -1.8s !important;
}

.badge-backlog {
  bottom: 29%;
  left: 5%;
  border-color: rgba(74, 164, 255, 0.38) !important;
  animation-delay: -3.1s !important;
}

.badge-verdict {
  right: 11%;
  bottom: 39%;
  border-color: rgba(114, 215, 178, 0.38) !important;
  animation-delay: -4.3s !important;
}

.purpose-panel {
  position: absolute;
  right: 5%;
  bottom: 34px;
  z-index: 3;
  width: min(48%, 340px);
  border: 1px solid rgba(240, 190, 112, 0.22);
  border-radius: var(--radius);
  padding: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 190, 112, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(10, 18, 34, 0.88), rgba(5, 10, 21, 0.82));
  box-shadow:
    0 24px 76px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.purpose-panel h2 {
  margin-top: 10px;
  font-size: 1.06rem;
}

.purpose-panel p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.purpose-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.purpose-icons span {
  display: grid;
  gap: 7px;
  justify-items: center;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.purpose-icons img {
  width: 28px;
  height: 28px;
}

.reserved-note {
  display: none;
}

.icon-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: var(--max);
  margin: -18px auto 0;
  border: 1px solid rgba(240, 190, 112, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(74, 164, 255, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(13, 26, 50, 0.82), rgba(6, 12, 24, 0.78));
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.icon-strip a {
  display: grid;
  min-height: 142px;
  place-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.icon-strip a:hover {
  color: var(--text);
  background:
    radial-gradient(circle at 50% 20%, rgba(240, 190, 112, 0.12), transparent 7rem),
    rgba(255, 255, 255, 0.045);
}

.icon-strip a:last-child {
  border-right: 0;
}

.icon-strip img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 12px 18px rgba(74, 164, 255, 0.16));
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head.narrow {
  max-width: 760px;
}

.page-hero {
  position: relative;
  max-width: var(--max);
  padding-top: 86px;
  padding-bottom: 54px;
  isolation: isolate;
}

.page-hero::before,
.evidence-band::before,
.thanks-hero::before {
  content: "";
  position: absolute;
  inset: 34px clamp(18px, 4vw, 34px) 14px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background:
    radial-gradient(circle at 78% 20%, rgba(74, 164, 255, 0.14), transparent 22rem),
    radial-gradient(circle at 12% 0%, rgba(240, 190, 112, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.problem blockquote,
.case-card blockquote {
  margin: 0;
  color: var(--text);
}

.problem blockquote {
  max-width: 980px;
  padding: 30px;
  border: 1px solid var(--line-gold);
  border-left-width: 4px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(240, 190, 112, 0.12), rgba(255, 255, 255, 0.028));
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  line-height: 1.18;
}

.three-points,
.service-grid,
.case-grid,
.pricing-grid,
.verdict-grid,
.deliverable-grid,
.faq-grid,
.resource-grid,
.signal-card-grid,
.pillar-grid {
  display: grid;
  gap: 18px;
}

.three-points,
.service-grid,
.case-grid,
.deliverable-grid,
.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-card-grid,
.pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-grid,
.mini-timeline,
.two-column {
  display: grid;
  gap: 18px;
}

.timeline-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-points {
  margin-top: 24px;
}

.three-points article {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.three-points span {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 760;
}

.three-points h3,
.three-points p {
  margin-top: 10px;
}

.three-points p,
.service-card p,
.service-card li,
.security-card p,
.security-card li,
.allow-card li,
.deny-card li,
.case-card p,
.price-card p,
.deliverable-grid p,
.step-list p,
.faq-grid p,
.site-footer p,
.resource-grid p,
.signal-card-grid p,
.pillar-grid p,
.about-card p,
.diagnostic-copy p,
.diagnostic-scope li,
.evidence-list p,
.evidence-list li {
  color: var(--muted);
}

.service-card,
.security-card,
.allow-card,
.deny-card,
.case-card,
.price-card,
.faq-grid details,
.final-card,
.deliverable-grid article,
.resource-grid article,
.about-card,
.diagnostic-card,
.signal-card-grid article,
.pillar-grid article,
.evidence-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow);
}

.service-card::before,
.security-card::before,
.allow-card::before,
.deny-card::before,
.case-card::before,
.price-card::before,
.deliverable-grid article::before,
.resource-grid article::before,
.signal-card-grid article::before,
.pillar-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 34%),
    radial-gradient(circle at 78% 0%, rgba(74, 164, 255, 0.08), transparent 12rem);
  opacity: 0.9;
}

.service-card,
.case-card,
.price-card,
.deliverable-grid article,
.resource-grid article,
.signal-card-grid article,
.pillar-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.process-card,
.mini-timeline article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.026));
  box-shadow: var(--shadow);
}

.process-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.mini-timeline article {
  padding: 22px;
}

.process-card::before,
.mini-timeline article::before,
.evidence-band::after,
.thanks-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 36%),
    radial-gradient(circle at 82% 0%, rgba(240, 190, 112, 0.1), transparent 12rem);
}

.process-card > *,
.mini-timeline article > *,
.evidence-band > *,
.thanks-hero > * {
  position: relative;
  z-index: 1;
}

.process-card span,
.mini-timeline span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 190, 112, 0.35);
  border-radius: 999px;
  color: var(--gold-strong);
  background: rgba(240, 190, 112, 0.08);
  font-weight: 780;
}

.service-card > img,
.deliverable-grid img,
.resource-grid img,
.signal-card-grid img,
.pillar-grid img {
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 18px rgba(74, 164, 255, 0.16));
}

.service-card > *,
.security-card > *,
.allow-card > *,
.deny-card > *,
.case-card > *,
.price-card > *,
.deliverable-grid article > *,
.resource-grid article > *,
.signal-card-grid article > *,
.pillar-grid article > * {
  position: relative;
  z-index: 1;
}

.signal-card-grid article {
  min-height: 248px;
}

.pillar-grid article {
  min-height: 270px;
  align-items: center;
  text-align: center;
}

.process-card h2,
.price-card h2,
.deliverable-grid h3,
.resource-grid h2,
.pillar-grid h2,
.diagnostic-panel h2,
.case-card h2 {
  font-size: 1.24rem;
  line-height: 1.18;
}

.service-panel h2,
.page-hero + .section-pad .case-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.process-card p,
.mini-timeline p,
.pricing-note,
.evidence-band p,
.thanks-hero p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 30px;
  align-items: start;
}

.split-section .button {
  width: fit-content;
}

.evidence-band,
.thanks-hero {
  position: relative;
  display: grid;
  gap: 22px;
  isolation: isolate;
}

.evidence-band {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  align-items: center;
  column-gap: clamp(28px, 6vw, 74px);
}

.evidence-band .button {
  width: fit-content;
  justify-self: start;
  margin-top: 4px;
}

.evidence-band > p {
  max-width: 410px;
}

.evidence-band h2,
.thanks-hero h1 {
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.thanks-hero {
  min-height: 68vh;
  place-items: center;
  text-align: center;
}

.thanks-hero img {
  width: 86px;
  height: 86px;
  filter: drop-shadow(0 18px 22px rgba(74, 164, 255, 0.22));
}

.pillar-grid img {
  width: 56px;
  height: 56px;
}

.service-card.featured,
.price-card.featured,
.case-card.highlight {
  border-color: rgba(240, 190, 112, 0.44);
  background:
    radial-gradient(circle at 90% 0%, rgba(240, 190, 112, 0.15), transparent 13rem),
    linear-gradient(180deg, rgba(240, 190, 112, 0.13), rgba(255, 255, 255, 0.035));
}

.card-gold {
  border-color: rgba(240, 190, 112, 0.34) !important;
}

.card-trust {
  border-color: rgba(114, 215, 178, 0.28) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(114, 215, 178, 0.1), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.028)) !important;
}

.card-blue {
  border-color: rgba(74, 164, 255, 0.28) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 164, 255, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.028)) !important;
}

.card-risk {
  border-color: rgba(139, 98, 255, 0.3) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 98, 255, 0.13), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.028)) !important;
}

.price {
  color: var(--gold-strong) !important;
  font-size: 1.22rem;
  font-weight: 780;
}

.service-card ul,
.security-card ul,
.allow-card ul,
.deny-card ul,
.diagnostic-scope ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.text-link {
  width: fit-content;
  margin-top: auto;
  border-bottom: 1px solid rgba(240, 190, 112, 0.32);
  color: var(--gold);
  font-weight: 760;
}

.service-card:hover,
.security-card:hover,
.allow-card:hover,
.deny-card:hover,
.case-card:hover,
.price-card:hover,
.deliverable-grid article:hover,
.resource-grid article:hover,
.signal-card-grid article:hover,
.pillar-grid article:hover,
.tab-panel:hover,
.final-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 190, 112, 0.34);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 36px rgba(74, 164, 255, 0.08);
}

.premium-tabs {
  display: grid;
  gap: 18px;
}

.tab-list {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px;
  background:
    radial-gradient(circle at 50% 0%, rgba(74, 164, 255, 0.1), transparent 12rem),
    rgba(6, 12, 24, 0.72);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.tab-list.compact {
  width: 100%;
  justify-content: space-between;
}

.tab-button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 760;
  cursor: pointer;
}

.tab-button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.tab-button.is-active {
  color: #130e08;
  border-color: rgba(240, 190, 112, 0.36);
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 12px 34px rgba(240, 190, 112, 0.18);
}

.tab-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 34px);
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 164, 255, 0.1), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.tab-panel[hidden] {
  display: none;
}

.service-panel {
  display: grid;
  grid-template-columns: 76px minmax(220px, 0.7fr) minmax(320px, 1.3fr) auto;
  gap: 22px;
  align-items: center;
}

.service-panel > img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 16px 22px rgba(74, 164, 255, 0.18));
}

.tab-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tab-detail-grid div {
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(5, 9, 20, 0.42);
}

.tab-detail-grid strong,
.tab-detail-grid span {
  display: block;
}

.tab-detail-grid strong {
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tab-detail-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.case-panel {
  min-height: 260px;
}

.case-panel blockquote {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.diagnostic-tabs {
  align-self: start;
}

.diagnostic-panel {
  min-height: 306px;
}

.diagnostic-panel ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: var(--muted);
}

.security-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
}

.security-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.security-copy p:not(.eyebrow) {
  color: var(--muted);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.security-card,
.allow-card,
.deny-card {
  padding: 24px;
}

.security-card.wide {
  grid-column: 1 / -1;
}

.security-card h3,
.allow-card h3,
.deny-card h3 {
  margin-bottom: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.allow-card {
  border-color: rgba(114, 215, 178, 0.32);
}

.deny-card {
  border-color: rgba(213, 138, 104, 0.36);
}

.verdict {
  width: fit-content;
  margin-top: auto;
  padding: 7px 10px;
  border: 1px solid rgba(114, 215, 178, 0.38);
  border-radius: 999px;
  color: var(--trust) !important;
  font-size: 0.75rem;
  font-weight: 800;
}

.verdict.muted {
  border-color: rgba(240, 190, 112, 0.28);
  color: var(--gold) !important;
}

.step-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 48px minmax(160px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.step-list span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 190, 112, 0.34);
  border-radius: 999px;
  color: var(--gold);
}

.verdict-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.verdict-grid article {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.verdict-grid strong {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  word-break: break-word;
}

.verdict-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.evidence-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 32px;
  padding: clamp(28px, 5vw, 48px);
  border-color: rgba(240, 190, 112, 0.3);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 190, 112, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028));
}

.evidence-card h2 {
  margin-top: 14px;
  font-size: clamp(1.9rem, 3.4vw, 3.5rem);
}

.evidence-list {
  display: grid;
  gap: 18px;
}

.evidence-list ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.pricing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.price-card {
  min-height: 225px;
}

.pricing-note {
  margin-top: 18px;
  color: var(--subtle);
}

.pricing-page .pricing-category__intro {
  display: grid;
  max-width: 860px;
  gap: 14px;
  margin-bottom: 30px;
}

.pricing-page .pricing-category__intro h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
  text-wrap: balance;
}

.pricing-page .pricing-category__intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.pricing-page .orientation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pricing-page .orientation-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(5, 9, 20, 0.36);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pricing-page .orientation-item:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 190, 112, 0.4);
  background:
    linear-gradient(135deg, rgba(240, 190, 112, 0.09), rgba(74, 164, 255, 0.05)),
    rgba(5, 9, 20, 0.44);
}

.pricing-page .orientation-item:focus-visible,
.pricing-page .plan-details summary:focus-visible {
  outline: 3px solid rgba(240, 190, 112, 0.72);
  outline-offset: 4px;
}

.pricing-page .orientation-item span {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-page .orientation-item strong {
  margin-top: auto;
  color: var(--gold-strong);
  font-size: 0.82rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-page .pricing-category {
  display: grid;
  gap: 2px;
}

.pricing-page .plan-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.pricing-page .plan-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-page .plan-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-page .plan-grid--single {
  grid-template-columns: minmax(0, 720px);
  margin-inline: auto;
}

.pricing-page .plan-card {
  min-width: 0;
  min-height: 0;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
}

.pricing-page .plan-card h3 {
  max-width: 24ch;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.14;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.pricing-page .plan-card .price {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1;
  text-wrap: balance;
}

.pricing-page .billing-badge {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(240, 190, 112, 0.3);
  border-radius: 999px;
  color: var(--gold-strong) !important;
  background: rgba(240, 190, 112, 0.08);
  font-size: 0.8125rem !important;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.pricing-page .plan-question {
  color: var(--text) !important;
  font-size: 1.08rem !important;
  font-weight: 760;
  line-height: 1.4;
}

.pricing-page .plan-result,
.pricing-page .plan-scope li,
.pricing-page .plan-limits li,
.pricing-page .plan-details li,
.pricing-page .plan-card__meta span,
.pricing-page .pricing-payment-grid article > p:not(.eyebrow),
.pricing-page .two-column li {
  font-size: 1rem;
  line-height: 1.55;
}

.pricing-page .plan-result,
.pricing-page .plan-scope li,
.pricing-page .plan-details li,
.pricing-page .plan-card__meta span {
  color: var(--muted);
}

.pricing-page .plan-scope,
.pricing-page .plan-limits {
  display: grid;
  gap: 11px;
}

.pricing-page .plan-scope > strong,
.pricing-page .plan-limits > strong {
  color: var(--text);
  font-size: 0.88rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.pricing-page .plan-scope ul,
.pricing-page .plan-limits ul,
.pricing-page .plan-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.pricing-page .plan-limits {
  padding: 16px;
  border: 1px solid rgba(240, 190, 112, 0.2);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(5, 9, 20, 0.38);
}

.pricing-page .plan-limits li {
  color: var(--text);
}

.pricing-page .plan-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pricing-page .plan-card__meta p {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(5, 9, 20, 0.34);
}

.pricing-page .plan-card__meta strong {
  color: var(--gold);
  font-size: 0.8125rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.pricing-page .plan-details {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.pricing-page .plan-details summary {
  width: fit-content;
  cursor: pointer;
  color: var(--gold-strong);
  font-size: 1rem;
  font-weight: 780;
}

.pricing-page .plan-details summary::marker {
  color: var(--gold);
}

.pricing-page .plan-details[open] summary {
  margin-bottom: 14px;
}

.pricing-page .plan-card .cta-row {
  margin-top: auto;
}

.pricing-page .plan-card .button {
  min-height: 48px;
  text-align: center;
}

.pricing-page .commercial-cycle {
  width: fit-content;
  max-width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(114, 215, 178, 0.24);
  border-radius: var(--radius);
  background: rgba(114, 215, 178, 0.06);
  color: var(--text) !important;
  font-weight: 680;
}

.pricing-page .commercial-cycle span {
  padding-inline: 3px;
  color: var(--trust);
}

.pricing-page .pricing-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-page .pricing-payment-grid .allow-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.pricing-page .pricing-payment-grid h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  text-wrap: balance;
}

.pricing-page .pricing-currency-note {
  grid-column: 1 / -1;
  padding: 18px 20px;
  border: 1px solid rgba(74, 164, 255, 0.25);
  border-radius: var(--radius);
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 164, 255, 0.1), transparent 14rem),
    rgba(5, 9, 20, 0.46);
  font-size: 1rem;
  line-height: 1.55;
}

.pricing-page .final-card .cta-row {
  margin-top: 28px;
}

.pricing-page [id^="demo-doctor-"],
.pricing-page #trust-care,
.pricing-page [id^="launch-guard-"],
.pricing-page #fundready-evidence-pack,
.pricing-page #continuous-launch-guard {
  scroll-margin-top: 118px;
}

@media (max-width: 1120px) {
  .pricing-page .orientation-grid,
  .pricing-page .plan-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .pricing-page .orientation-grid,
  .pricing-page .plan-grid--three,
  .pricing-page .plan-grid--two,
  .pricing-page .pricing-payment-grid {
    grid-template-columns: 1fr;
  }

  .pricing-page .plan-grid--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
  }

  .pricing-page .plan-card__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-page .pricing-currency-note {
    grid-column: auto;
  }

  .pricing-page .plan-card .cta-row,
  .pricing-page .plan-card .button,
  .pricing-page .final-card .button {
    width: 100%;
  }

  .pricing-page .orientation-grid {
    gap: 7px;
  }

  .pricing-page .orientation-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 64px;
    gap: 4px 12px;
    padding: 8px 15px;
  }

  .pricing-page .orientation-item::after {
    grid-column: 2;
    grid-row: 1 / span 2;
    content: "↓";
    color: var(--gold);
    font-size: 1.1rem;
    line-height: 1;
  }

  .pricing-page .orientation-item span,
  .pricing-page .orientation-item strong {
    grid-column: 1;
  }

  .pricing-page .orientation-item span {
    font-size: 1rem;
    line-height: 1.35;
  }

  .pricing-page .orientation-item strong {
    margin-top: 0;
  }

  .pricing-page .pricing-category__intro {
    gap: 10px;
    margin-bottom: 20px;
  }

  .pricing-page .pricing-category {
    gap: 0;
  }

  .pricing-page .plan-grid {
    gap: 13px;
  }

  .pricing-page .plan-card {
    gap: 10px;
    padding: 18px;
  }

  .pricing-page .plan-scope,
  .pricing-page .plan-limits {
    gap: 8px;
  }

  .pricing-page .plan-scope ul,
  .pricing-page .plan-limits ul,
  .pricing-page .plan-details ul {
    gap: 5px;
  }

  .pricing-page .plan-limits {
    padding: 13px 14px;
  }

  .pricing-page .plan-card__meta {
    gap: 8px;
  }

  .pricing-page .plan-card__meta p {
    gap: 4px;
    padding: 10px;
  }

  .pricing-page .plan-details {
    padding-top: 8px;
  }

  .pricing-page .plan-details[open] summary {
    margin-bottom: 10px;
  }

  .pricing-page .commercial-cycle {
    padding: 11px 13px;
  }

  .pricing-page .pricing-payment-grid {
    gap: 14px;
  }

  .pricing-page .pricing-payment-grid .allow-card {
    gap: 10px;
  }

  .pricing-page .pricing-currency-note {
    padding: 15px 16px;
  }
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 30px;
  padding: clamp(28px, 5vw, 48px);
}

.about-card h2 {
  margin-top: 14px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.about-card > p {
  align-self: end;
  font-size: 1.05rem;
}

.diagnostic-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 56px);
  padding: clamp(30px, 5.5vw, 66px);
  border-color: rgba(240, 190, 112, 0.26);
  background:
    radial-gradient(circle at 0% 20%, rgba(139, 98, 255, 0.22), transparent 24rem),
    radial-gradient(circle at 100% 12%, rgba(240, 190, 112, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028));
}

.diagnostic-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.diagnostic-scope {
  display: grid;
  gap: 18px;
}

.diagnostic-scope div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(5, 9, 20, 0.42);
}

.diagnostic-scope .scope-include {
  border-color: rgba(114, 215, 178, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(114, 215, 178, 0.1), transparent 12rem),
    rgba(5, 9, 20, 0.52);
}

.diagnostic-scope .scope-exclude {
  border-color: rgba(213, 138, 104, 0.3);
  background:
    radial-gradient(circle at 100% 0%, rgba(213, 138, 104, 0.1), transparent 12rem),
    rgba(5, 9, 20, 0.52);
}

.diagnostic-scope h3 {
  margin-bottom: 12px;
}

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

.faq-grid details {
  padding: 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 760;
}

.faq-grid summary::marker {
  color: var(--gold);
}

.faq-grid p {
  margin-top: 12px;
}

.final-card {
  padding: clamp(28px, 6vw, 64px);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 190, 112, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028));
}

.final-card h2,
.final-card p {
  margin-top: 18px;
}

.final-card p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.final-card .hero-actions {
  margin-top: 28px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.28fr repeat(4, minmax(132px, 0.62fr));
  gap: 28px;
  padding: 54px clamp(20px, 4vw, 56px) 44px;
  border-top: 1px solid rgba(240, 190, 112, 0.16);
  color: var(--muted);
  background:
    radial-gradient(circle at 16% 0%, rgba(240, 190, 112, 0.1), transparent 18rem),
    radial-gradient(circle at 86% 0%, rgba(74, 164, 255, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(7, 13, 26, 0.86), rgba(2, 5, 12, 0.96));
}

.site-footer h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.96rem;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-footer .brand {
  margin-bottom: 12px;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  max-width: 780px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content {
  display: grid;
  max-width: 920px;
  gap: 18px;
}

.legal-content article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026));
  box-shadow: var(--shadow);
}

.legal-content article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 38%),
    radial-gradient(circle at 100% 0%, rgba(74, 164, 255, 0.08), transparent 12rem);
}

.legal-content article > * {
  position: relative;
  z-index: 1;
}

.legal-content h2 {
  font-size: 1.22rem;
}

.legal-content p {
  margin-top: 10px;
  color: var(--muted);
}

.legal-content a {
  color: var(--gold-strong);
  text-decoration: underline;
  text-decoration-color: rgba(240, 190, 112, 0.35);
  text-underline-offset: 4px;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@keyframes crystalPulse {
  0%,
  100% {
    filter:
      drop-shadow(0 38px 54px rgba(81, 67, 255, 0.56))
      drop-shadow(0 0 24px rgba(74, 164, 255, 0.24));
  }
  50% {
    filter:
      drop-shadow(0 44px 62px rgba(81, 67, 255, 0.64))
      drop-shadow(0 0 34px rgba(240, 190, 112, 0.18));
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: clamp(18px, 4vw, 42px);
    left: clamp(18px, 4vw, 42px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 8px;
    background: rgba(5, 9, 20, 0.98);
    box-shadow: var(--shadow);
  }

  .header-nav.is-open {
    display: flex;
  }

  .header-nav a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .header-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-grid,
  .security-section,
  .split-grid,
  .split-section,
  .evidence-band,
  .about-card,
  .diagnostic-card,
  .evidence-card {
    grid-template-columns: 1fr;
  }

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

  .signal-card-grid,
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .icon-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-right: clamp(18px, 4vw, 34px);
    margin-left: clamp(18px, 4vw, 34px);
  }

  .icon-strip a:nth-child(3) {
    border-right: 0;
  }

  .icon-strip a:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-panel {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .timeline-grid,
  .mini-timeline,
  .two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-panel .tab-detail-grid,
  .service-panel .button {
    grid-column: 1 / -1;
  }

  .tab-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 610px;
  }

  .crystal {
    left: 2%;
    width: min(78%, 520px);
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .section-pad {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .crystal {
    left: 50%;
    width: min(92%, 430px);
    transform: translateX(-50%);
  }

  .purpose-panel {
    right: 0;
    left: 0;
    width: 100%;
  }

  .three-points,
  .service-grid,
  .case-grid,
  .pricing-grid,
  .verdict-grid,
  .faq-grid,
  .security-grid,
  .resource-grid,
  .signal-card-grid,
  .pillar-grid,
  .timeline-grid,
  .mini-timeline,
  .two-column {
    grid-template-columns: 1fr;
  }

  .step-list li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .step-list p {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .tab-list {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 18px;
  }

  .tab-button {
    flex: 0 0 auto;
  }

  .service-tabs .tab-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    overflow-x: visible;
    gap: 8px;
  }

  .service-tabs .tab-button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    flex: 0 1 auto;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .service-panel > img {
    width: 56px;
    height: 56px;
  }

  .service-card,
  .case-card,
  .price-card,
  .resource-grid article,
  .signal-card-grid article,
  .pillar-grid article,
  .process-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.38rem;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-badges span {
    min-height: 31px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .badge-evidence {
    top: 7%;
    left: 2%;
  }

  .badge-risk {
    top: 14%;
    right: 0;
  }

  .badge-backlog {
    bottom: 40%;
    left: 1%;
  }

  .badge-verdict {
    right: 1%;
    bottom: 47%;
  }

  .purpose-panel {
    padding: 22px;
  }

  .brand small {
    letter-spacing: 0.2em;
  }

  .hero-actions,
  .final-card .hero-actions {
    flex-direction: column;
  }

  .hero-trust-list {
    gap: 8px;
  }

  .button {
    width: 100%;
  }

  .split-section .button,
  .evidence-band .button {
    width: 100%;
  }

  .premium-tabs {
    gap: 14px;
  }

  .tab-list.compact {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .tab-button {
    width: 100%;
  }

  .tab-panel {
    padding: 20px;
  }

  .diagnostic-panel {
    min-height: auto;
  }

  .purpose-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .icon-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .icon-strip a {
    min-height: 112px;
  }

  .icon-strip a:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .icon-strip a:nth-child(2n) {
    border-right: 0;
  }

  .icon-strip a:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Visual system v2: layout, CTA alignment and interaction guardrails */
:root {
  --site-max: 1220px;
  --site-wide: 1280px;
  --readable: 760px;
  --legal-max: 920px;
  --page-x: clamp(18px, 4vw, 34px);
  --section-y: clamp(70px, 7vw, 96px);
  --section-y-compact: clamp(52px, 5.6vw, 74px);
  --hero-shell: min(100% - (var(--page-x) * 2), var(--site-wide));
  --shine-speed: 560ms;
}

.section-shell,
.content-shell,
.readable-shell,
.legal-shell {
  width: min(100% - (var(--page-x) * 2), var(--site-max));
  margin-inline: auto;
}

.section-shell {
  padding-block: var(--section-y);
}

.icon-strip.section-shell {
  padding-block: 0;
}

.content-shell {
  padding-block: var(--section-y-compact);
}

.readable-shell {
  max-width: var(--readable);
}

.legal-shell {
  max-width: var(--legal-max);
  padding-block: var(--section-y-compact) var(--section-y);
}

.copy-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
}

.cta-row--center {
  justify-content: center;
}

.cta-row--split {
  justify-content: space-between;
}

.cta-row--compact {
  gap: 8px;
}

.section-pad {
  width: min(100% - (var(--page-x) * 2), var(--site-max));
  max-width: var(--site-max);
  padding: var(--section-y) 0;
}

.hero.section-shell {
  width: var(--hero-shell);
  max-width: var(--site-wide);
  min-height: calc(100svh - 82px);
  padding-top: clamp(34px, 4.5vh, 52px);
  padding-bottom: clamp(34px, 5vh, 56px);
}

.hero::before {
  inset: 18px 0;
}

.hero-grid {
  min-height: calc(100svh - 180px);
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(26px, 4vw, 50px);
  align-items: center;
}

.hero-copy {
  max-width: 620px;
  gap: clamp(12px, 1.6vh, 17px);
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(2.9rem, 4.72vw, 4.28rem);
  line-height: 0.98;
}

.hero-lead {
  max-width: 590px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.38;
}

.hero-trust-list {
  gap: 7px;
}

.hero-trust-list li {
  font-size: 0.9rem;
}

.hero-visual {
  min-height: min(660px, calc(100svh - 178px));
  transform: translateY(-14px);
}

.hero-visual::before {
  inset: -3% -1% 12% -4%;
  filter: blur(12px);
}

.hero-depth {
  inset: 20px -2px 68px;
}

.crystal {
  top: -2%;
  left: -7%;
  width: min(96%, 620px);
}

.hero-badges span {
  min-height: 40px;
  padding: 0 15px;
  font-size: 0.84rem;
}

.badge-evidence {
  top: 10%;
  left: 2%;
}

.badge-risk {
  top: 18%;
  right: 2%;
}

.badge-backlog {
  bottom: 34%;
  left: 2%;
}

.badge-verdict {
  right: 8%;
  bottom: 43%;
}

.purpose-panel {
  right: 0;
  bottom: 18px;
  width: min(56%, 420px);
  padding: 26px;
  border-color: rgba(240, 190, 112, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 190, 112, 0.16), transparent 14rem),
    radial-gradient(circle at 0% 100%, rgba(74, 164, 255, 0.12), transparent 13rem),
    linear-gradient(180deg, rgba(12, 22, 40, 0.92), rgba(5, 10, 21, 0.86));
}

.purpose-panel h2 {
  font-size: clamp(1.34rem, 1.9vw, 1.72rem);
  line-height: 1.08;
}

.purpose-panel p:not(.eyebrow) {
  font-size: 0.96rem;
  line-height: 1.55;
}

.purpose-icons img {
  width: 34px;
  height: 34px;
}

.trust-row {
  gap: 8px;
}

.trust-row span {
  min-height: 28px;
  padding: 0 10px;
}

.trust-note {
  max-width: 590px;
  font-size: 0.8rem;
  line-height: 1.38;
}

.page-hero.section-shell {
  position: relative;
  padding-top: clamp(58px, 7vw, 86px);
  padding-bottom: clamp(44px, 5vw, 58px);
}

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(2.45rem, 4.6vw, 4.35rem);
}

.page-hero p:not(.eyebrow) {
  max-width: var(--readable);
}

.page-hero .gradient-text,
.diagnostic-card .gradient-text {
  display: inline;
}

.split-section {
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  align-items: center;
}

.mini-timeline {
  gap: 16px;
}

.mini-timeline article,
.process-card {
  border-color: rgba(240, 190, 112, 0.2);
  background:
    radial-gradient(circle at 86% 0%, rgba(240, 190, 112, 0.11), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.mini-timeline article {
  min-height: 230px;
  padding: 28px;
}

.process-card {
  min-height: 300px;
  gap: 18px;
  padding: clamp(28px, 3.2vw, 36px);
}

.process-card span,
.mini-timeline span {
  width: 52px;
  height: 52px;
  font-size: 1.02rem;
  box-shadow:
    0 0 28px rgba(240, 190, 112, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.process-card h2,
.mini-timeline h3 {
  color: var(--text);
  font-size: clamp(1.38rem, 2.1vw, 1.8rem);
  line-height: 1.08;
}

.evidence-band {
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.7fr);
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 56px);
}

.evidence-band .cta-row,
.evidence-band > .button {
  grid-column: 1 / -1;
}

.evidence-band > .button {
  margin-top: 0;
}

.diagnostic-card {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 5vw, 64px);
}

.diagnostic-copy h2 {
  max-width: 520px;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.diagnostic-copy p:not(.eyebrow) {
  max-width: 610px;
  color: #d5dde8;
}

.diagnostic-tabs .tab-list {
  width: 100%;
}

.legal-content.legal-shell {
  display: grid;
  gap: 18px;
  width: min(100% - (var(--page-x) * 2), var(--legal-max));
  padding-top: var(--section-y-compact);
}

.legal-content article {
  padding: clamp(24px, 3vw, 34px);
}

.legal-content h2 {
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
}

.legal-content p {
  color: #c5cedb;
  font-size: 1rem;
  line-height: 1.65;
}

.button,
.header-cta,
.tab-button,
.icon-strip a,
.text-link,
.faq-grid summary,
.interactive-surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button::after,
.header-cta::after,
.tab-button::after,
.icon-strip a::after,
.text-link::after,
.faq-grid summary::after,
.interactive-surface::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: transform var(--shine-speed) ease;
}

.button:hover::after,
.header-cta:hover::after,
.tab-button:hover::after,
.icon-strip a:hover::after,
.text-link:hover::after,
.faq-grid summary:hover::after,
.interactive-surface:hover::after {
  transform: translateX(130%) skewX(-18deg);
}

.header-cta {
  box-shadow:
    0 16px 38px rgba(240, 190, 112, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 48px rgba(240, 190, 112, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.header-cta.is-current {
  color: #17110a;
}

.tab-button {
  overflow: hidden;
}

.faq-grid summary {
  display: block;
  min-height: 52px;
  margin: -20px;
  padding: 20px 20px 18px 34px;
  border-radius: inherit;
}

.faq-grid p {
  padding-top: 12px;
}

.text-link {
  border-radius: 999px;
  padding: 6px 2px;
}

.service-panel > .cta-row {
  grid-column: 2 / -1;
  justify-content: flex-start;
}

.final-card .cta-row {
  margin-top: 28px;
}

@media (max-width: 1120px) {
  .hero.section-shell {
    min-height: auto;
  }

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

  .hero-visual {
    min-height: 610px;
    transform: none;
  }

  .crystal {
    left: 2%;
    width: min(82%, 560px);
  }

  .purpose-panel {
    width: min(48%, 430px);
  }

  .split-section,
  .evidence-band,
  .diagnostic-card {
    grid-template-columns: 1fr;
  }

  .service-panel > .cta-row {
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  .section-shell,
  .content-shell,
  .readable-shell,
  .legal-shell,
  .section-pad {
    width: min(100% - (var(--page-x) * 2), var(--site-max));
  }

  .page-hero.section-shell {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.1rem);
  }

  .hero-visual {
    min-height: 570px;
  }

  .purpose-panel {
    right: 0;
    left: 0;
    width: 100%;
  }

  .evidence-band {
    padding: clamp(34px, 8vw, 46px) var(--page-x);
  }

  .diagnostic-card {
    padding: clamp(26px, 6vw, 42px);
  }
}

@media (max-width: 560px) {
  .cta-row,
  .cta-row--center,
  .cta-row--split,
  .cta-row--compact {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero.section-shell {
    padding-top: 42px;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .crystal {
    width: min(96%, 430px);
  }

  .purpose-panel {
    bottom: 8px;
    padding: 22px;
  }

  .evidence-band .cta-row,
  .evidence-band > .button {
    width: 100%;
  }

  .legal-content.legal-shell {
    width: min(100% - (var(--page-x) * 2), var(--legal-max));
  }
}

/* Official brand asset + systemic visual guardrails */
:root {
  --line: rgba(190, 207, 232, 0.095);
  --line-soft: rgba(190, 207, 232, 0.065);
  --line-glow: rgba(240, 190, 112, 0.16);
  --card-min: 260px;
  --card-pad: clamp(24px, 3vw, 34px);
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: contain;
  background: #040712;
  box-shadow:
    0 0 0 1px rgba(240, 190, 112, 0.16),
    0 16px 36px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(74, 164, 255, 0.14);
}

.site-footer .brand img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.hero::before,
.page-hero::before,
.evidence-band::before,
.thanks-hero::before {
  border-color: rgba(255, 255, 255, 0.035);
  background:
    radial-gradient(circle at 72% 18%, rgba(74, 164, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 12% 8%, rgba(240, 190, 112, 0.07), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.006));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.service-card,
.security-card,
.allow-card,
.deny-card,
.case-card,
.price-card,
.faq-grid details,
.final-card,
.resource-grid article,
.about-card,
.diagnostic-card,
.signal-card-grid article,
.pillar-grid article,
.evidence-card,
.process-card,
.mini-timeline article,
.tab-panel,
.legal-content article {
  border-color: var(--line-soft);
  background:
    radial-gradient(circle at 86% 0%, rgba(74, 164, 255, 0.055), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018));
}

.service-card,
.case-card,
.price-card,
.resource-grid article,
.signal-card-grid article,
.pillar-grid article,
.process-card {
  min-height: var(--card-min);
  padding: var(--card-pad);
}

.service-card img,
.case-card img,
.resource-grid img,
.signal-card-grid img,
.pillar-grid img,
.service-panel > img {
  width: clamp(44px, 5vw, 68px);
  height: clamp(44px, 5vw, 68px);
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
}

h1,
h2,
h3,
.service-card p,
.case-card p,
.price-card p,
.process-card p,
.resource-grid p,
.legal-content p {
  overflow-wrap: break-word;
}

h1,
h2 {
  text-wrap: balance;
}

.hero-grid {
  padding-inline: clamp(10px, 2vw, 22px);
}

.hero-copy {
  padding-left: clamp(8px, 2.2vw, 28px);
}

.hero-visual {
  min-height: min(690px, calc(100svh - 154px));
}

.hero-depth {
  inset: 4px -18px 50px;
  border-color: rgba(87, 184, 255, 0.06);
  background:
    radial-gradient(circle at 54% 42%, rgba(74, 164, 255, 0.14), transparent 21rem),
    radial-gradient(circle at 72% 22%, rgba(240, 190, 112, 0.08), transparent 16rem),
    radial-gradient(circle at 42% 72%, rgba(139, 98, 255, 0.2), transparent 18rem);
}

.hero-emblem {
  position: absolute;
  top: -5%;
  left: 3%;
  z-index: 1;
  width: min(94%, 650px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 32px;
  filter:
    drop-shadow(0 38px 58px rgba(81, 67, 255, 0.44))
    drop-shadow(0 0 34px rgba(74, 164, 255, 0.22))
    drop-shadow(0 0 22px rgba(240, 190, 112, 0.14));
  animation: crystalPulse 9s ease-in-out infinite;
}

.hero-badges {
  z-index: 3;
}

.badge-evidence {
  top: 9%;
  left: 4%;
}

.badge-risk {
  top: 18%;
  right: 1%;
}

.badge-backlog {
  bottom: 29%;
  left: 3%;
}

.purpose-panel {
  right: 0;
  bottom: 20px;
  width: min(52%, 400px);
  border-color: rgba(240, 190, 112, 0.18);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 190, 112, 0.11), transparent 13rem),
    linear-gradient(180deg, rgba(9, 17, 31, 0.82), rgba(5, 10, 21, 0.78));
}

.grid-4-balanced,
.signal-card-grid,
.pillar-grid,
.verdict-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-6-balanced,
.timeline-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-column {
  align-items: stretch;
}

.allow-card h2,
.deny-card h2,
.diagnostic-card h2,
.about-card h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.65rem);
}

.tab-panel {
  min-height: 0;
}

.case-panel,
.case-card {
  min-height: 0;
}

.case-card blockquote {
  max-width: 760px;
}

.card-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: var(--card-pad);
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 164, 255, 0.06), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

@media (max-width: 1120px) {
  .grid-6-balanced,
  .timeline-grid,
  .pricing-grid,
  .deliverable-grid,
  .verdict-grid--five,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-emblem {
    left: 50%;
    width: min(86%, 580px);
    transform: translateX(-50%);
  }

  .purpose-panel {
    width: min(48%, 430px);
  }
}

@media (max-width: 840px) {
  .brand img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-emblem {
    width: min(94%, 470px);
  }

  .grid-4-balanced,
  .signal-card-grid,
  .pillar-grid,
  .verdict-grid,
  .grid-6-balanced,
  .timeline-grid,
  .pricing-grid,
  .deliverable-grid,
  .verdict-grid--five,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tr {
    padding: 14px;
    border-bottom: 1px solid rgba(190, 207, 232, 0.12);
  }

  .comparison-table tr:last-child {
    border-bottom: 0;
  }

  .comparison-table td {
    padding: 10px 0;
    border: 0;
  }

  .comparison-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--gold-strong);
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

/* Final controlled polish: balanced service tabs, consistent pricing and lighter hero purpose panel */
.service-panel {
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  gap: 22px 24px;
}

.service-panel > .tab-detail-grid,
.service-panel > .cta-row {
  grid-column: 1 / -1;
}

.service-panel > .cta-row {
  margin-top: 2px;
}

.tab-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tab-detail-grid div {
  min-height: 142px;
  padding: 18px;
  border-color: rgba(190, 207, 232, 0.09);
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 164, 255, 0.06), transparent 10rem),
    rgba(5, 9, 20, 0.34);
}

.tab-detail-grid span {
  font-size: 0.94rem;
  line-height: 1.48;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  min-height: 246px;
}

.price-card .cta-row {
  margin-top: auto;
}

.price-card .button {
  min-width: 118px;
  justify-content: center;
}

.price {
  color: var(--text) !important;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 860;
  letter-spacing: 0;
}

.price-reference {
  margin-top: -8px;
  color: var(--gold-strong) !important;
  font-size: 0.94rem;
  font-weight: 720;
}

.comparison-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(240, 190, 112, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022));
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-right: 1px solid rgba(190, 207, 232, 0.08);
  border-bottom: 1px solid rgba(190, 207, 232, 0.1);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--gold-strong);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--muted);
  line-height: 1.55;
}

.comparison-table td:first-child {
  color: var(--text);
  font-weight: 760;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.deliverable-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.deliverable-grid article {
  min-height: 248px;
}

.deliverable-grid h3 {
  margin-top: 0;
}

.verdict-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.purpose-panel {
  right: clamp(8px, 1.8vw, 18px);
  bottom: clamp(16px, 3vw, 28px);
  width: min(38%, 326px);
  padding: 18px;
  border-color: rgba(240, 190, 112, 0.13);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 190, 112, 0.08), transparent 11rem),
    radial-gradient(circle at 0% 100%, rgba(74, 164, 255, 0.07), transparent 10rem),
    linear-gradient(180deg, rgba(9, 17, 31, 0.54), rgba(5, 10, 21, 0.48));
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}

.purpose-panel h2 {
  font-size: clamp(1.08rem, 1.4vw, 1.3rem);
}

.purpose-panel p:not(.eyebrow) {
  font-size: 0.84rem;
  line-height: 1.44;
}

.purpose-icons {
  margin-top: 12px;
  padding-top: 10px;
  gap: 6px;
}

.purpose-icons img {
  width: 26px;
  height: 26px;
}

.purpose-icons span {
  font-size: 0.58rem;
  line-height: 1.12;
}

@media (max-width: 1120px) {
  .service-panel {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .tab-detail-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purpose-panel {
    right: 0;
    bottom: 4px;
    width: min(46%, 350px);
  }
}

@media (max-width: 640px) {
  .service-panel {
    grid-template-columns: 1fr;
  }

  .service-panel > img,
  .service-panel > .tab-detail-grid,
  .service-panel > .cta-row {
    grid-column: auto;
  }

  .tab-detail-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .tab-detail-grid div {
    min-height: 0;
  }

  .purpose-panel {
    bottom: 8px;
    width: 100%;
  }
}

/* Lead capture and mobile hero conversion polish */
.lead-card {
  align-items: start;
}

.lead-safety {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.lead-safety span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(190, 207, 232, 0.1);
  border-radius: 999px;
  padding: 0 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.82rem;
}

.lead-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(190, 207, 232, 0.09);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 190, 112, 0.08), transparent 14rem),
    radial-gradient(circle at 0% 100%, rgba(74, 164, 255, 0.08), transparent 14rem),
    rgba(5, 9, 20, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 760;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(190, 207, 232, 0.13);
  border-radius: 14px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(2, 6, 15, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font: inherit;
  font-weight: 500;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(240, 190, 112, 0.46);
  outline-offset: 2px;
  border-color: rgba(240, 190, 112, 0.42);
}

.lead-form select {
  min-height: 48px;
  color-scheme: dark;
  font-size: 1rem;
}

.diagnostic-plan-field {
  display: grid;
  gap: 8px;
}

.diagnostic-plan-summary {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(240, 190, 112, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 190, 112, 0.08), transparent 12rem),
    rgba(2, 6, 15, 0.42);
}

.diagnostic-plan-summary__name {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.diagnostic-plan-summary__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.diagnostic-plan-summary__meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(190, 207, 232, 0.12);
  border-radius: 999px;
  color: var(--gold-strong);
  background: rgba(255, 255, 255, 0.035);
  font-size: 1rem;
  line-height: 1.35;
}

.diagnostic-plan-summary__meta span[hidden] {
  display: none;
}

.diagnostic-plan-summary__description,
.diagnostic-plan-status {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.diagnostic-plan-status:empty {
  display: none;
}

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

.form-note {
  margin-top: 14px;
  color: var(--subtle);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: #ffcf99;
}

.form-status[data-state="success"] {
  color: #9ff0c8;
}

.thanks-inline-link {
  display: inline-flex;
  margin-top: 6px;
}

.thanks-inline-link[hidden] {
  display: none;
}

@media (max-width: 760px) {
  .hero.section-shell {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual {
    display: grid;
    min-height: auto;
    gap: 14px;
    transform: none;
  }

  .hero-visual::before {
    inset: 8% 0 28%;
    border-radius: 40%;
    opacity: 0.82;
  }

  .hero-depth {
    inset: 12px 0 106px;
    border-radius: 32px;
    opacity: 0.75;
  }

  .hero-emblem {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 430px);
    margin-inline: auto;
    transform: none;
    border-radius: 26px;
    background:
      radial-gradient(circle at 50% 42%, rgba(74, 164, 255, 0.16), transparent 60%),
      #040712;
    box-shadow:
      0 0 0 1px rgba(240, 190, 112, 0.12),
      0 30px 70px rgba(61, 77, 255, 0.24),
      0 0 42px rgba(74, 164, 255, 0.12);
  }

  .hero-badges {
    position: relative;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    order: 2;
  }

  .hero-badges span,
  .badge-evidence,
  .badge-risk,
  .badge-backlog {
    position: static;
    min-height: 32px;
    animation: none;
  }

  .purpose-panel {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    order: 3;
    width: 100%;
    padding: 20px;
    border-color: rgba(240, 190, 112, 0.12);
    background:
      radial-gradient(circle at 100% 0%, rgba(240, 190, 112, 0.08), transparent 12rem),
      linear-gradient(180deg, rgba(9, 17, 31, 0.46), rgba(5, 10, 21, 0.4));
    backdrop-filter: blur(18px);
  }

  .purpose-icons span {
    font-size: 0.66rem;
  }

  .diagnostic-card.lead-card {
    grid-template-columns: 1fr;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }
}

/* Transparent official logo, final hero balance, FAQ page and form hardening */
.brand img {
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(240, 190, 112, 0.12),
    0 14px 32px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(74, 164, 255, 0.14);
}

.hero-emblem {
  border-radius: 0;
}

.hero-depth {
  inset: -8px -24px 42px;
  border: 0;
  background:
    radial-gradient(circle at 54% 42%, rgba(74, 164, 255, 0.18), transparent 21rem),
    radial-gradient(circle at 74% 24%, rgba(240, 190, 112, 0.12), transparent 17rem),
    radial-gradient(circle at 43% 74%, rgba(139, 98, 255, 0.24), transparent 18rem);
}

.hero.section-shell {
  overflow: clip;
  padding-bottom: clamp(46px, 6vh, 72px);
}

.hero-visual {
  min-height: min(710px, calc(100svh - 128px));
}

.purpose-panel {
  right: clamp(8px, 1vw, 14px);
  bottom: clamp(18px, 2.2vw, 28px);
  width: min(48%, 420px);
  padding: 16px;
  border-color: rgba(240, 190, 112, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 190, 112, 0.055), transparent 10rem),
    radial-gradient(circle at 0% 100%, rgba(74, 164, 255, 0.045), transparent 10rem),
    linear-gradient(180deg, rgba(9, 17, 31, 0.38), rgba(5, 10, 21, 0.32));
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px);
}

.purpose-panel h2 {
  font-size: clamp(1rem, 1.18vw, 1.18rem);
}

.purpose-panel p:not(.eyebrow) {
  display: none;
  font-size: 0.8rem;
  line-height: 1.38;
}

.purpose-panel .eyebrow {
  font-size: 0.68rem;
}

.purpose-icons {
  margin-top: 8px;
  padding-top: 8px;
}

.purpose-icons img {
  width: 18px;
  height: 18px;
}

.purpose-icons span {
  font-size: 0;
  gap: 0;
}

.resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.faq-page {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
}

.faq-search {
  display: grid;
  gap: 10px;
  max-width: 620px;
  color: var(--text);
  font-weight: 760;
}

.faq-search input {
  width: 100%;
  border: 1px solid rgba(190, 207, 232, 0.14);
  border-radius: 999px;
  padding: 14px 18px;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(74, 164, 255, 0.08), transparent 12rem),
    rgba(5, 9, 20, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.22);
  font: inherit;
}

.faq-search input:focus {
  outline: 2px solid rgba(240, 190, 112, 0.46);
  outline-offset: 3px;
}

.faq-category-grid {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.faq-category {
  display: grid;
  gap: 18px;
}

.faq-grid--page {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid--page details {
  min-height: 118px;
}

.faq-grid--page summary {
  cursor: pointer;
}

.faq-grid--page details[hidden],
.faq-category[hidden] {
  display: none;
}

@media (max-width: 1120px) {
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .purpose-panel {
    right: clamp(8px, 2vw, 18px);
    bottom: clamp(22px, 3.5vw, 38px);
    width: min(42%, 320px);
  }
}

@media (max-width: 760px) {
  .brand img {
    box-shadow:
      0 0 0 1px rgba(240, 190, 112, 0.1),
      0 10px 24px rgba(0, 0, 0, 0.2),
      0 0 22px rgba(74, 164, 255, 0.12);
  }

  .hero-emblem {
    background:
      radial-gradient(circle at 50% 42%, rgba(74, 164, 255, 0.18), transparent 62%),
      radial-gradient(circle at 72% 26%, rgba(240, 190, 112, 0.12), transparent 48%);
    box-shadow:
      0 30px 70px rgba(61, 77, 255, 0.2),
      0 0 46px rgba(74, 164, 255, 0.14);
  }

  .purpose-panel {
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 20px;
  }

  .purpose-panel p:not(.eyebrow) {
    display: block;
  }

  .purpose-icons img {
    width: 26px;
    height: 26px;
  }

  .purpose-icons span {
    font-size: 0.66rem;
    gap: 7px;
  }

  .resource-grid,
  .faq-grid--page {
    grid-template-columns: 1fr;
  }
}

.thanks-brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(136px, 15vw, 190px);
  aspect-ratio: 1;
  margin-inline: auto;
  isolation: isolate;
}

.thanks-brand-mark::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 38% 32%, rgba(74, 164, 255, 0.34), transparent 56%),
    radial-gradient(circle at 72% 34%, rgba(240, 190, 112, 0.18), transparent 48%),
    radial-gradient(circle at 52% 78%, rgba(139, 98, 255, 0.34), transparent 54%);
  filter: blur(18px);
}

.thanks-hero .thanks-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 22px 34px rgba(81, 67, 255, 0.34))
    drop-shadow(0 0 24px rgba(74, 164, 255, 0.16));
}

.thanks-check-badge {
  position: absolute;
  right: 3%;
  bottom: 8%;
  display: grid;
  place-items: center;
  width: clamp(38px, 4.4vw, 54px);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 190, 112, 0.5);
  border-radius: 50%;
  color: #061020;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.92), transparent 32%),
    linear-gradient(135deg, #ffe1a1, #f1b85f 58%, #c88631);
  box-shadow:
    0 14px 30px rgba(240, 190, 112, 0.2),
    0 0 28px rgba(74, 164, 255, 0.12);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
}

@media (max-width: 760px) {
  .hero.section-shell {
    overflow: visible;
  }

  .hero-visual {
    min-height: 0;
  }

  .thanks-brand-mark {
    width: clamp(118px, 38vw, 150px);
  }
}

/* Final purpose card typography polish */
.purpose-panel {
  border-color: rgba(240, 190, 112, 0.09);
  background:
    radial-gradient(circle at 92% 12%, rgba(240, 190, 112, 0.06), transparent 9rem),
    radial-gradient(circle at 12% 100%, rgba(74, 164, 255, 0.04), transparent 10rem),
    linear-gradient(180deg, rgba(9, 17, 31, 0.34), rgba(5, 10, 21, 0.3));
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.purpose-panel-title {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.08rem, 1.34vw, 1.3rem);
  font-weight: 900;
  line-height: 1.04;
  text-shadow: 0 0 20px rgba(74, 164, 255, 0.1);
}

.purpose-panel-title span {
  background: linear-gradient(105deg, #ffd990 0%, #b78cff 48%, #66bbff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.purpose-icons {
  opacity: 0.82;
}

@media (max-width: 760px) {
  .purpose-panel-title {
    max-width: 100%;
    font-size: clamp(1.15rem, 6vw, 1.48rem);
  }

  .purpose-icons {
    opacity: 1;
  }
}

/* Final responsive guard: new premium sections must stay readable on tablet/mobile */
.deliverable-grid,
.verdict-grid--five {
  align-items: stretch;
}

.deliverable-grid h3,
.deliverable-grid p,
.verdict-grid strong,
.verdict-grid p {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.verdict-grid strong {
  line-height: 1.25;
}

@media (max-width: 1120px) {
  .deliverable-grid,
  .verdict-grid--five {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 640px) {
  .deliverable-grid,
  .verdict-grid--five {
    grid-template-columns: minmax(0, 1fr);
  }

  .deliverable-grid article,
  .verdict-grid article {
    min-width: 0;
    min-height: 0;
    padding: 22px;
  }

  .deliverable-grid h3 {
    font-size: 1.15rem;
    line-height: 1.22;
  }

  .verdict-grid strong {
    font-size: 0.86rem;
    letter-spacing: 0.03em;
  }

  .verdict-grid p {
    margin-top: 10px;
    line-height: 1.55;
  }
}

/* Prospect fit and sanitized deliverable preview */
.prospect-fit-section {
  padding-bottom: var(--section-y-compact);
}

.deliverable-preview-section {
  padding-block: var(--section-y-compact);
}

.prospect-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.prospect-fit-card,
.deliverable-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow);
}

.prospect-fit-card {
  min-width: 0;
  padding: 28px;
}

.prospect-fit-card::before,
.deliverable-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(74, 164, 255, 0.08), transparent 13rem);
}

.prospect-fit-card--ideal {
  border-color: rgba(114, 215, 178, 0.3);
}

.prospect-fit-card--not-fit {
  border-color: rgba(213, 138, 104, 0.3);
}

.prospect-fit-card > *,
.deliverable-preview > * {
  position: relative;
  z-index: 1;
}

.prospect-fit-card img,
.deliverable-preview-finding img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 12px 18px rgba(74, 164, 255, 0.16));
}

.prospect-fit-card h3,
.deliverable-preview h3 {
  margin-top: 18px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.prospect-fit-card ul {
  display: grid;
  gap: 13px;
  margin-top: 20px;
  padding-left: 1.2rem;
  color: var(--muted);
}

.prospect-fit-card li::marker {
  color: var(--gold);
}

.deliverable-preview {
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
}

.deliverable-preview-header,
.deliverable-preview-finding,
.deliverable-preview-status {
  display: flex;
  gap: 18px;
}

.deliverable-preview-header {
  align-items: start;
  justify-content: space-between;
}

.deliverable-preview-status {
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 760;
}

.deliverable-preview-status .badge-verdict {
  margin: 0;
}

.deliverable-preview-finding {
  align-items: start;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(190, 207, 232, 0.13);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(5, 10, 21, 0.3);
}

.deliverable-preview-label,
.deliverable-preview-details dt {
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.deliverable-preview-finding p:last-child {
  margin-top: 8px;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 720;
  line-height: 1.38;
}

.deliverable-preview-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.deliverable-preview-details div {
  min-width: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(190, 207, 232, 0.14);
}

.deliverable-preview-details dd {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.deliverable-preview-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.deliverable-preview-link {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 18px;
  border: 1px solid rgba(240, 190, 112, 0.44);
  border-radius: 999px;
  color: var(--gold-strong);
  background:
    linear-gradient(135deg, rgba(240, 190, 112, 0.1), rgba(74, 164, 255, 0.04)),
    rgba(5, 10, 21, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.2);
  font-weight: 780;
}

.deliverable-preview-link:hover {
  border-color: rgba(240, 190, 112, 0.68);
  color: #fff2d5;
  background:
    linear-gradient(135deg, rgba(240, 190, 112, 0.16), rgba(74, 164, 255, 0.07)),
    rgba(5, 10, 21, 0.58);
  transform: translateY(-1px);
}

.prospect-fit-card h3,
.prospect-fit-card li,
.deliverable-preview h3,
.deliverable-preview-finding p,
.deliverable-preview-details dt,
.deliverable-preview-details dd,
.deliverable-preview-note,
.deliverable-preview-status {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

@media (max-width: 760px) {
  .prospect-fit-grid,
  .deliverable-preview-details {
    grid-template-columns: 1fr;
  }

  .deliverable-preview-header {
    flex-direction: column;
  }

  .deliverable-preview-status {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .prospect-fit-card,
  .deliverable-preview {
    padding: 22px;
  }

  .deliverable-preview-finding {
    gap: 14px;
    margin-top: 22px;
    padding: 18px;
  }

  .prospect-fit-card img,
  .deliverable-preview-finding img {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .deliverable-preview-link {
    width: 100%;
  }
}

/* Localized post-submit visual hierarchy */
.diagnostic-tabs .tab-list.compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 6px;
  overflow: visible;
  border-radius: 16px;
  padding: 6px;
}

.diagnostic-tabs .tab-button {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border-color: rgba(190, 207, 232, 0.1);
  border-radius: 11px;
  padding: 0 10px;
  color: #c5cedb;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
  text-align: center;
}

.diagnostic-tabs .tab-button:hover {
  border-color: rgba(240, 190, 112, 0.24);
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
}

.diagnostic-tabs .tab-button.is-active,
.diagnostic-tabs .tab-button[aria-selected="true"] {
  border-color: rgba(240, 190, 112, 0.48);
  color: #17110a;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 24px rgba(240, 190, 112, 0.16);
}

/* Public report document */
.report-viewer {
  padding: 56px 24px 88px;
}

.report-document {
  --report-ink: #172033;
  --report-muted: #586477;
  --report-line: #d8dee8;
  --report-soft: #edf1f6;
  --report-gold: #9a6a20;
  width: min(100%, 1040px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 232, 0.82);
  border-radius: 6px;
  color: var(--report-ink);
  background: #f7f9fc;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  font-size: 16px;
  line-height: 1.65;
}

.report-document h1,
.report-document h2,
.report-document h3,
.report-document p,
.report-document dl,
.report-document ol,
.report-document ul {
  max-width: none;
}

.report-document h1,
.report-document h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--report-ink);
  letter-spacing: 0;
}

.report-document h1 {
  font-size: clamp(3rem, 5vw, 3.625rem);
  line-height: 1.08;
}

.report-document h2 {
  font-size: clamp(1.75rem, 3vw, 2rem);
  line-height: 1.25;
}

.report-document h3 {
  color: var(--report-ink);
  font-size: 1.4rem;
  line-height: 1.35;
}

.report-cover {
  display: flex;
  min-height: 680px;
  flex-direction: column;
  padding: 64px 72px 54px;
  border-bottom: 1px solid var(--report-line);
  background:
    linear-gradient(145deg, rgba(10, 34, 69, 0.05), transparent 48%),
    #f7f9fc;
}

.report-cover-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.report-cover-brand img {
  width: 58px;
  height: 58px;
}

.report-cover-brand div {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
}

.report-cover-brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}

.report-cover-brand span {
  margin-top: 4px;
  color: var(--report-gold);
  font-size: 0.875rem;
  font-weight: 760;
  letter-spacing: 0.18em;
}

.report-cover-copy {
  max-width: 720px;
  margin-top: auto;
  padding: 76px 0 54px;
}

.report-kicker,
.report-section-heading p,
.report-action-grid section > span {
  color: var(--report-gold);
  font-size: 0.875rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-cover-service {
  margin-top: 22px;
  color: #24446f;
  font-size: 1.35rem;
  font-weight: 760;
}

.report-cover-summary {
  max-width: 660px;
  margin-top: 18px;
  color: var(--report-muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.report-cover-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--report-line);
  border-bottom: 1px solid var(--report-line);
}

.report-cover-meta div {
  min-width: 0;
  padding: 17px 16px;
  border-right: 1px solid var(--report-line);
}

.report-cover-meta div:first-child {
  padding-left: 0;
}

.report-cover-meta div:last-child {
  border-right: 0;
}

.report-cover-meta dt,
.report-review-grid dt,
.report-finding-details dt {
  color: var(--report-muted);
  font-size: 0.875rem;
  font-weight: 760;
}

.report-cover-meta dd,
.report-review-grid dd,
.report-finding-details dd {
  margin: 7px 0 0;
  color: var(--report-ink);
}

.report-cover-note {
  margin-top: 18px;
  color: var(--report-muted);
  font-size: 0.9rem;
}

.report-section {
  padding: 64px 72px;
  border-bottom: 1px solid var(--report-line);
}

.report-section-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}

.report-section-heading > span {
  padding-top: 5px;
  color: var(--report-gold);
  font-size: 1rem;
  font-weight: 800;
}

.report-section-heading h2 {
  margin-top: 7px;
}

.report-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--report-line);
  border-left: 1px solid var(--report-line);
}

.report-review-grid div {
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--report-line);
  border-bottom: 1px solid var(--report-line);
}

.report-summary-layout {
  display: grid;
  gap: 32px;
}

.report-prose {
  display: grid;
  max-width: 760px;
  gap: 18px;
  color: var(--report-muted);
}

.report-outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.report-outcome {
  min-width: 0;
  padding: 20px 22px;
  border: 1px solid var(--report-outcome-border, #d7b36d);
  border-top: 4px solid var(--report-outcome-accent, #a86e18);
  background: var(--report-outcome-surface, #fbf5e9);
}

.report-outcome--warning {
  --report-outcome-accent: #a86e18;
  --report-outcome-border: #d7b36d;
  --report-outcome-surface: #fbf5e9;
}

.report-outcome--needs-fixes {
  --report-outcome-accent: #bd5f3e;
  --report-outcome-border: #dfaa96;
  --report-outcome-surface: #fcf1ec;
}

.report-outcome--blocked {
  --report-outcome-accent: #983f3b;
  --report-outcome-border: #d0a09d;
  --report-outcome-surface: #faeeee;
}

.report-outcome-context,
.report-outcome-code {
  color: var(--report-outcome-accent);
  font-size: 0.875rem;
  font-weight: 780;
  line-height: 1.5;
}

.report-outcome-context {
  text-transform: uppercase;
}

.report-document .report-outcome-result {
  margin-top: 8px;
  color: var(--report-ink);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.35;
}

.report-outcome-code {
  margin-top: 8px;
  overflow-wrap: break-word;
}

.report-outcome-description {
  margin-top: 10px;
  color: var(--report-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.report-executive-decisions {
  overflow: hidden;
  border-top: 1px solid #c6d0dc;
  border-bottom: 1px solid #c6d0dc;
  background: #edf1f6;
}

.report-executive-decisions-header {
  padding: 22px 28px 0;
}

.report-executive-decisions-header h3 {
  font-size: 1.2rem;
  font-weight: 720;
  line-height: 1.35;
}

.report-decision-list {
  margin-top: 12px;
}

.report-decision-row {
  --report-decision-accent: #8d5e17;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
  padding: 26px 28px;
  border-left: 3px solid var(--report-decision-accent);
  background: rgba(247, 249, 252, 0.54);
  text-align: left;
}

.report-decision-row + .report-decision-row {
  margin-top: 24px;
  border-top: 1px solid #c6d0dc;
}

.report-decision-row--gate {
  --report-decision-accent: #31577e;
}

.report-decision-index {
  color: var(--report-decision-accent);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.15;
}

.report-decision-label {
  color: var(--report-decision-accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.report-decision-copy h4 {
  margin: 8px 0 0;
  color: var(--report-ink);
  font-size: 1.625rem;
  font-weight: 740;
  line-height: 1.25;
}

.report-decision-support {
  margin-top: 12px;
  color: var(--report-muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.report-strength-list > li > span {
  color: var(--report-gold);
  font-size: 0.875rem;
  font-weight: 800;
}

.report-strength-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--report-line);
  list-style: none;
}

.report-strength-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--report-line);
}

.report-strength-list strong {
  color: var(--report-ink);
  font-size: 1.08rem;
}

.report-strength-list p {
  margin-top: 6px;
  color: var(--report-muted);
}

.report-section-intro {
  max-width: 720px;
  margin: -10px 0 42px 68px;
  color: var(--report-muted);
}

.report-evidence-disclosure {
  max-width: 720px;
  margin: -18px 0 42px 68px;
  padding-left: 16px;
  border-left: 2px solid #b8c3d0;
  color: var(--report-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.report-finding {
  padding: 44px 0 48px;
  border-top: 3px solid #aeb9c8;
}

.report-finding + .report-finding {
  margin-top: 10px;
}

.report-finding-header {
  display: grid;
  break-after: avoid;
}

.report-finding-identity {
  display: grid;
  gap: 6px;
}

.report-finding-reference {
  display: block;
  color: var(--report-ink);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.report-finding-category {
  margin: 0;
  color: var(--report-muted);
  font-size: 0.9375rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.report-finding-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.report-tag {
  display: inline-flex;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid #c8d0dc;
  border-radius: 4px;
  color: #36445a;
  background: #eef2f7;
  font-size: 0.875rem;
  font-weight: 780;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.report-tag--priority {
  border-color: #dfcda8;
  color: #754b12;
  background: #f8f0df;
}

.report-tag--status {
  border-color: #d9b9b5;
  color: #7e3730;
  background: #f8e9e7;
}

.report-tag--critical,
.report-tag--blocked {
  border-color: #c89f9a;
  color: #742c26;
  background: #f4dcda;
}

.report-tag--notice {
  border-color: #c4d4e8;
  color: #24446f;
  background: #eaf1f8;
}

.report-finding-title-block {
  max-width: 860px;
  margin-top: 24px;
}

.report-finding-title-block > span {
  color: var(--report-gold);
  font-size: 0.875rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.report-finding-title-block h3 {
  margin-top: 8px;
  font-size: 1.8rem;
  font-weight: 740;
  line-height: 1.25;
}

.report-finding-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  border-top: 1px solid var(--report-line);
  border-left: 1px solid var(--report-line);
}

.report-finding-details div {
  min-width: 0;
  padding: 20px 22px;
  border-right: 1px solid var(--report-line);
  border-bottom: 1px solid var(--report-line);
}

.report-evidence-figure {
  display: grid;
  gap: 22px;
  max-width: 680px;
  margin: 32px auto 0;
  padding: 24px;
  border: 1px solid #cbd4df;
  background: #f3f6f9;
  text-align: left;
}

.report-evidence-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--report-line);
}

.report-evidence-header > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.report-evidence-reference,
.report-evidence-label,
.report-evidence-figure h5 {
  color: var(--report-gold);
  font-size: 0.875rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.report-evidence-reference {
  color: var(--report-ink);
}

.report-evidence-header h4 {
  margin: 10px 0 0;
  color: var(--report-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.report-evidence-figure img {
  display: block;
  width: min(100%, 620px);
  height: auto;
  margin: 0 auto;
  border: 1px solid #d4d9e1;
  background: #ffffff;
}

.report-evidence-figure figcaption {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.report-evidence-figure figcaption div {
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid var(--report-line);
}

.report-evidence-figure h5 {
  margin: 0;
}

.report-evidence-figure figcaption p,
.report-evidence-methodology {
  margin: 8px 0 0;
  color: var(--report-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.report-evidence-methodology {
  padding-top: 16px;
  border-top: 1px solid var(--report-line);
  font-size: 0.9375rem;
}

.report-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--report-line);
}

.report-action-grid section {
  min-width: 0;
  padding: 26px 24px 4px 0;
}

.report-action-grid section + section {
  padding-left: 24px;
  border-left: 1px solid var(--report-line);
}

.report-action-grid h3 {
  margin-top: 12px;
  font-size: 1.2rem;
}

.report-action-grid p {
  margin-top: 10px;
  color: var(--report-muted);
}

.report-action-grid ul {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-left: 1.1rem;
  color: var(--report-muted);
}

.report-action-grid li::marker {
  color: var(--report-gold);
}

.report-limits {
  margin-top: 36px;
  padding-left: 24px;
  border-left: 3px solid #ad756d;
}

.report-limits h3 {
  font-size: 1.2rem;
}

.report-limits p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--report-muted);
}

.report-required-note {
  color: var(--report-ink) !important;
  font-weight: 680;
}

.report-document-footer {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 24px 72px;
  color: var(--report-muted);
  background: #edf1f6;
  font-size: 0.875rem;
}

.report-document-footer strong {
  color: var(--report-ink);
}

.report-document-footer span:last-child {
  text-align: right;
}

.report-document h1,
.report-document h2,
.report-document h3,
.report-document dd,
.report-document p,
.report-document li,
.report-document strong,
.report-document span {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

@media (max-width: 760px) {
  .report-viewer {
    padding: 20px 12px 48px;
  }

  .report-document {
    font-size: 16px;
  }

  .report-cover,
  .report-section {
    padding: 44px 24px;
  }

  .report-cover {
    min-height: 620px;
  }

  .report-document h1 {
    font-size: 2.125rem;
  }

  .report-document h2 {
    font-size: 1.65rem;
  }

  .report-cover-meta,
  .report-review-grid,
  .report-finding-details,
  .report-action-grid {
    grid-template-columns: 1fr;
  }

  .report-cover-meta div,
  .report-cover-meta div:first-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--report-line);
  }

  .report-cover-meta div:last-child {
    border-bottom: 0;
  }

  .report-section-heading {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .report-action-grid section,
  .report-action-grid section + section {
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid var(--report-line);
  }

  .report-section-intro {
    margin-left: 0;
  }

  .report-evidence-disclosure {
    margin-left: 0;
  }

  .report-evidence-figure {
    padding: 20px;
  }

  .report-evidence-figure figcaption {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .report-finding-title-block h3 {
    font-size: 1.45rem;
    line-height: 1.3;
  }

  .report-outcome {
    padding: 18px 16px;
  }

  .report-outcomes {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .report-executive-decisions-header {
    padding: 22px 20px 0;
  }

  .report-decision-row {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    padding: 24px 20px;
  }

  .report-decision-row + .report-decision-row {
    margin-top: 24px;
  }

  .report-document-footer {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .report-document-footer span:last-child {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .report-viewer {
    padding-inline: 8px;
  }

  .report-cover,
  .report-section {
    padding-inline: 20px;
  }

  .report-evidence-figure {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
  }

  .report-evidence-figure img {
    width: 100%;
  }

  .report-cover-brand img {
    width: 50px;
    height: 50px;
  }

  .report-cover-copy {
    padding-block: 56px 40px;
  }

  .report-decision-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .report-decision-index {
    font-size: 1.625rem;
  }
}

@page {
  size: A4;
  margin: 10mm 10mm 14mm;
}

@media print {
  html,
  body {
    color: #172033;
    background: #ffffff !important;
  }

  body::before,
  .site-header,
  .site-footer {
    display: none !important;
  }

  .report-viewer {
    padding: 0;
  }

  .report-document {
    width: 100%;
    max-width: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .report-cover {
    min-height: 245mm;
    padding: 14mm 12mm;
    break-after: page;
  }

  .report-section {
    padding: 4.5mm 6mm;
  }

  .report-document {
    font-size: 10.5pt;
    line-height: 1.42;
  }

  .report-section-heading {
    margin-bottom: 3mm;
  }

  .report-finding {
    padding: 2.5mm 0 3mm;
  }

  .report-finding-title-block,
  .report-finding-details {
    margin-top: 2.5mm;
  }

  .report-finding-details div {
    padding: 2mm 2.5mm;
  }

  .report-executive-decisions-header,
  .report-decision-row,
  .report-strength-list li,
  .report-document-footer {
    break-inside: avoid;
  }

  .report-finding-header {
    break-inside: avoid;
    break-after: avoid;
  }

  .report-review-grid,
  .report-action-grid section,
  .report-outcome,
  .report-limits,
  .report-finding-details div {
    break-inside: auto;
  }

  .report-evidence-figure {
    gap: 4mm;
    max-width: none;
    padding: 5mm;
    break-inside: avoid;
  }

  .report-evidence-header {
    padding-bottom: 3mm;
  }

  .report-evidence-figure img {
    width: auto;
    max-width: 100%;
    max-height: 172mm;
  }

  .report-evidence-figure figcaption {
    gap: 4mm;
  }

  .report-evidence-figure figcaption div,
  .report-evidence-methodology {
    padding-top: 3mm;
  }

  .report-document-footer {
    position: static;
    padding: 8mm 12mm;
    background: #edf1f6 !important;
  }
}
