:root {
  --gold: #e8b84a;
  --gold-bright: #ffdd79;
  --gold-soft: rgba(232, 184, 74, 0.12);
  --teal: #13d9c0;
  --teal-soft: rgba(19, 217, 192, 0.1);
  --blue: #3ec7ff;
  --bg-deep: #030d17;
  --bg: #061321;
  --panel: #0a1b2c;
  --panel-2: #0d2235;
  --text: #f4f8fb;
  --muted: #8da5b8;
  --muted-bright: #b8cad5;
  --line: #19384d;
  --line-soft: rgba(99, 151, 181, 0.17);
  --shadow: 0 24px 76px rgba(0, 0, 0, 0.34);
  --radius: 14px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --header-height: 72px;
  --tabs-height: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--tabs-height) + 24px);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% -5%, rgba(20, 128, 169, 0.17), transparent 33%),
    radial-gradient(circle at 4% 45%, rgba(232, 184, 74, 0.07), transparent 28%),
    linear-gradient(145deg, var(--bg-deep), var(--bg));
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(78, 186, 212, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 186, 212, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: rgba(232, 184, 74, 0.28);
  color: #fff;
}

.copy-block {
  display: block;
}

html[data-language="en"] .copy-hu,
html[data-language="hu"] .copy-en {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--bg-deep);
  padding: 10px 14px;
  color: var(--text);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 220;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--teal));
  box-shadow: 0 0 18px rgba(232, 184, 74, 0.5);
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(24px, 4.2vw, 64px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(2, 12, 20, 0.93);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.public-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.public-brand b {
  margin-left: -4px;
  border: 1px solid rgba(232, 184, 74, 0.3);
  border-radius: 5px;
  padding: 2px 5px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.public-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  margin-left: 30px;
}

.public-nav a {
  position: relative;
  color: #c2ced6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.public-nav a:not(.public-login-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform 180ms ease;
}

.public-nav a:hover,
.public-nav a:focus-visible,
.public-nav a.active {
  color: var(--gold-bright);
}

.public-nav a:hover::after,
.public-nav a:focus-visible::after,
.public-nav a.active::after {
  transform: scaleX(1);
}

.public-login-link {
  border: 1px solid rgba(232, 184, 74, 0.38);
  border-radius: 9px;
  background: rgba(232, 184, 74, 0.08);
  padding: 9px 14px;
}

.public-login-link:hover,
.public-login-link:focus-visible {
  border-color: rgba(232, 184, 74, 0.65);
  background: rgba(232, 184, 74, 0.13);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 26px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 6px 9px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.language-switch button {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.language-switch button:hover,
.language-switch button:focus-visible,
.language-switch button.active {
  color: var(--gold-bright);
}

.translation-note {
  margin-left: 5px;
  border-left: 1px solid var(--line-soft);
  padding-left: 9px;
  color: var(--gold);
  white-space: nowrap;
}

.public-menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 34, 53, 0.72);
  padding: 8px 11px;
  color: var(--text);
  cursor: pointer;
}

.section-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: var(--tabs-height);
  padding: 0 20px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(3, 16, 27, 0.94);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  margin: 0 4px;
  border-radius: 7px;
  padding: 7px 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.section-nav a:hover,
.section-nav a:focus-visible,
.section-nav a.active {
  background: var(--gold-soft);
  color: var(--gold-bright);
}

.publication-hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - var(--header-height) - var(--tabs-height));
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.publication-hero-image,
.summary-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.publication-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 10, 17, 0.96) 0%, rgba(2, 13, 22, 0.85) 37%, rgba(2, 13, 22, 0.28) 70%, rgba(2, 13, 22, 0.44) 100%),
    linear-gradient(0deg, var(--bg-deep) 0%, transparent 42%, rgba(2, 12, 20, 0.18) 100%);
}

.publication-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(78, 186, 212, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 186, 212, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000, transparent 66%);
}

.hero-shell,
.section-shell,
.site-footer-inner,
.summary-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(38px, 6vw, 88px);
  align-items: end;
  padding: clamp(88px, 11vh, 150px) 0 86px;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--muted-bright);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.publication-hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(54px, 6.5vw, 98px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-wrap: balance;
}

.publication-hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-subtitle {
  max-width: 720px;
  margin: 28px 0 0;
  color: #d4dfe6;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 400;
  line-height: 1.34;
}

.hero-lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted-bright);
  font-size: 16px;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(99, 151, 181, 0.25);
  border-radius: 9px;
  padding: 12px 18px;
  color: #d7e0e6;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(232, 184, 74, 0.55);
  color: #fff;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #f7d674, #d99a25);
  box-shadow: 0 14px 36px rgba(184, 119, 18, 0.23);
  color: #091019;
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 42px rgba(184, 119, 18, 0.34);
  color: #091019;
}

.button.ghost {
  background: rgba(7, 25, 39, 0.64);
  backdrop-filter: blur(10px);
}

.hero-record {
  align-self: end;
  border: 1px solid rgba(108, 157, 181, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 39, 58, 0.78), rgba(4, 17, 29, 0.88));
  box-shadow: var(--shadow);
  padding: 12px 22px;
  backdrop-filter: blur(15px);
}

.hero-record-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}

.hero-record-row:last-child {
  border-bottom: 0;
}

.hero-record strong {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.hero-record span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: grid;
  place-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 22px;
  background: linear-gradient(var(--gold), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.section-shell {
  padding: clamp(88px, 10vw, 138px) 0;
}

.section-rule {
  border-top: 1px solid var(--line-soft);
}

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

.section-number {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 13px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.section-number::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.question-copy h2,
.download-copy h2,
.summary-title,
.summary-article h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.section-heading h2,
.question-copy h2,
.download-copy h2 {
  max-width: 830px;
  font-size: clamp(38px, 5vw, 70px);
}

.section-intro {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted-bright);
  font-size: 17px;
}

.question-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.question-copy .section-kicker,
.download-copy .section-kicker {
  color: var(--gold);
}

.question-copy p {
  margin: 24px 0 0;
  color: var(--muted-bright);
  font-size: 17px;
}

.thesis-quote {
  position: relative;
  margin: 34px 0 0;
  border-left: 1px solid var(--gold);
  padding: 4px 0 4px 28px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(23px, 2.8vw, 36px);
  line-height: 1.35;
}

.evidence-card {
  border: 1px solid rgba(108, 157, 181, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(13, 39, 58, 0.84), rgba(6, 21, 34, 0.9));
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 38px);
}

.card-label {
  margin: 0 0 20px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.evidence-line {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}

.evidence-line:last-child {
  border-bottom: 0;
}

.evidence-line i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(19, 217, 192, 0.55);
}

.evidence-line strong {
  color: #d9e3e9;
  font-size: 13px;
}

.evidence-line span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-grid,
.concept-grid,
.audience-grid,
.download-grid {
  display: grid;
  gap: 18px;
}

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

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

.proof-card,
.concept-card,
.audience-card,
.download-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(12, 37, 55, 0.86), rgba(5, 18, 30, 0.91));
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.17);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.proof-card:hover,
.concept-card:hover,
.audience-card:hover,
.download-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 184, 74, 0.32);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.25);
}

.proof-card {
  min-height: 265px;
  padding: 30px;
}

.proof-card::before,
.concept-card::before,
.download-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(62, 199, 255, 0.22), transparent 72%);
}

.card-index {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.proof-card h3,
.concept-card h3,
.audience-card h3,
.download-card h3,
.state-card h3 {
  margin: 22px 0 12px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}

.proof-card p,
.concept-card p,
.audience-card p,
.download-card p,
.state-card p {
  margin: 0;
  color: var(--muted-bright);
  font-size: 14px;
  line-height: 1.72;
}

.concept-card {
  min-height: 250px;
  padding: 34px;
}

.concept-card h3 {
  margin-top: 16px;
  color: #eff5f8;
  font-size: 31px;
}

.evidence-chain {
  margin-top: 42px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(5, 19, 31, 0.65);
  padding: 28px;
}

.chain-label {
  margin: 0 0 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.chain-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  align-items: center;
}

.chain-step {
  position: relative;
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 10px 18px;
  border: 1px solid var(--line-soft);
  background: rgba(10, 31, 48, 0.78);
  color: #dbe5ea;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.chain-step:first-child {
  border-radius: 9px 0 0 9px;
}

.chain-step:last-child {
  border-radius: 0 9px 9px 0;
}

.chain-step + .chain-step {
  border-left: 0;
}

.chain-step::after {
  content: "";
  position: absolute;
  right: -5px;
  z-index: 2;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  border-top: 1px solid rgba(232, 184, 74, 0.46);
  border-right: 1px solid rgba(232, 184, 74, 0.46);
  background: var(--panel);
}

.chain-step:last-child::after {
  display: none;
}

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

.state-card {
  --state-color: var(--teal);
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--state-color) 34%, transparent);
  border-radius: var(--radius);
  background: linear-gradient(155deg, color-mix(in srgb, var(--state-color) 9%, #0b2638), rgba(5, 18, 30, 0.94));
  padding: 28px;
}

.state-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--state-color);
  opacity: 0.08;
  filter: blur(4px);
}

.state-card.allow { --state-color: #6fe3b1; }
.state-card.hold { --state-color: #f4c56a; }
.state-card.escalate { --state-color: #70c9f4; }
.state-card.refuse { --state-color: #f17878; }

.state-code {
  color: var(--state-color);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.state-card h3 {
  margin-top: 60px;
  font-size: 29px;
}

.state-card p {
  font-size: 13px;
}

.audience-card {
  padding: 30px;
}

.audience-card h3 {
  margin-top: 0;
  color: var(--gold-bright);
  font-size: 25px;
}

.clean-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 18px;
  color: var(--muted-bright);
  font-size: 13px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.scope-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--line-soft);
}

.scope-stat {
  min-height: 128px;
  background: rgba(6, 23, 37, 0.94);
  padding: 24px;
}

.scope-stat strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.scope-stat span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.coverage-block {
  margin-top: clamp(64px, 8vw, 104px);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(64px, 8vw, 96px);
}

.coverage-heading {
  margin-bottom: 36px;
}

.coverage-grid .concept-card {
  min-height: 100%;
}

.download-section {
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 84% 24%, rgba(232, 184, 74, 0.1), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(62, 199, 255, 0.08), transparent 30%);
}

.download-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 44px;
}

.integrity-note {
  border-left: 1px solid var(--teal);
  padding: 8px 0 8px 22px;
  color: var(--muted-bright);
  font-size: 14px;
}

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

.download-card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  padding: 28px;
}

.download-card.primary-download {
  border-color: rgba(232, 184, 74, 0.34);
  background: linear-gradient(145deg, rgba(70, 52, 20, 0.36), rgba(7, 23, 38, 0.94));
}

.file-type {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-card h3 {
  margin-top: 18px;
  font-size: 25px;
}

.download-card .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
}

.download-card .text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.download-card:hover .text-link::after {
  transform: translate(2px, -2px);
}

.supplementary-record {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  border: 1px dashed rgba(232, 184, 74, 0.34);
  border-radius: var(--radius);
  background: rgba(30, 39, 41, 0.38);
  padding: clamp(24px, 4vw, 34px);
}

.supplementary-record h3,
.supplementary-record p {
  margin-top: 0;
}

.supplementary-record h3 {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.supplementary-record p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted-bright);
  font-size: 13px;
}

.citation-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(13, 43, 61, 0.92), rgba(5, 18, 30, 0.95));
  padding: clamp(26px, 4vw, 40px);
}

.citation-panel h3 {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.citation-text {
  margin: 0;
  color: var(--muted-bright);
  font-size: 14px;
}

.copy-button {
  min-width: 142px;
  border: 1px solid rgba(232, 184, 74, 0.34);
  border-radius: 9px;
  background: var(--gold-soft);
  padding: 11px 15px;
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease;
}

.copy-button:hover,
.copy-button:focus-visible {
  border-color: rgba(232, 184, 74, 0.65);
  background: rgba(232, 184, 74, 0.17);
}

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

.about-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(7, 25, 39, 0.72);
  padding: 30px;
}

.about-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.about-card p {
  margin: 0;
  color: var(--muted-bright);
  font-size: 14px;
}

.about-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 750;
}

.legal-notice {
  margin: 24px 0 0;
  border-left: 1px solid var(--line);
  padding-left: 20px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(2, 12, 20, 0.78);
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  min-height: 112px;
  padding: 26px 0;
}

.footer-brand {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-meta {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateY(18px);
  border: 1px solid rgba(232, 184, 74, 0.32);
  border-radius: 50%;
  background: rgba(5, 19, 31, 0.88);
  color: var(--gold-bright);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: rgba(232, 184, 74, 0.15);
}

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

.reveal.is-visible {
  transform: none;
  opacity: 1;
}

/* Executive summary */
.summary-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(20, 128, 169, 0.15), transparent 30%),
    linear-gradient(145deg, var(--bg-deep), var(--bg));
}

.summary-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  isolation: isolate;
}

.summary-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 12, 20, 0.97), rgba(2, 12, 20, 0.8) 52%, rgba(2, 12, 20, 0.37)),
    linear-gradient(0deg, var(--bg-deep), transparent 58%);
}

.summary-hero-image {
  z-index: -3;
  object-position: center 38%;
}

.summary-shell {
  position: relative;
  padding: 82px 0 64px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 38px;
  color: var(--muted-bright);
  font-size: 12px;
  font-weight: 700;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--gold-bright);
}

.summary-title {
  max-width: 820px;
  font-size: clamp(48px, 6vw, 84px);
}

.summary-deck {
  margin: 18px 0 0;
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary-article {
  width: min(850px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 110px;
}

.summary-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--line-soft);
}

.summary-meta div {
  background: rgba(7, 25, 39, 0.92);
  padding: 18px;
}

.summary-meta strong,
.summary-meta span {
  display: block;
}

.summary-meta strong {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-meta span {
  margin-top: 7px;
  color: #d9e3e9;
  font-size: 12px;
}

.status-note {
  margin: 20px 0 26px;
  border: 1px solid rgba(19, 217, 192, 0.2);
  border-left: 2px solid var(--teal);
  border-radius: 9px;
  background: var(--teal-soft);
  padding: 17px 20px;
  color: var(--muted-bright);
  font-size: 13px;
}

.summary-article section {
  padding: 54px 0;
  border-top: 1px solid var(--line-soft);
}

.summary-article section:first-of-type {
  margin-top: 44px;
}

.summary-article h2 {
  margin-bottom: 22px;
  color: var(--text);
  font-size: clamp(34px, 4vw, 48px);
}

.summary-article p {
  margin: 0 0 18px;
  color: var(--muted-bright);
  font-size: 16px;
  line-height: 1.82;
}

.summary-article .summary-quote {
  margin: 34px 0;
  border-left: 1px solid var(--gold);
  padding: 4px 0 4px 28px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
}

.summary-states {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.summary-state {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(8, 28, 43, 0.7);
  padding: 20px;
}

.summary-state strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.summary-state p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.decisive-question {
  margin-top: 28px;
  border: 1px solid rgba(232, 184, 74, 0.25);
  border-radius: var(--radius);
  background: var(--gold-soft);
  padding: 28px;
}

.decisive-question p {
  margin: 0 0 12px;
}

.decisive-question p:last-child {
  margin-bottom: 0;
  color: var(--text);
}

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

  .public-menu-toggle {
    display: inline-flex;
  }

  .public-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(3, 16, 27, 0.98);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .public-nav.open {
    display: flex;
  }

  .public-nav a {
    border-radius: 8px;
    padding: 13px 14px;
  }

  .public-nav a::after {
    display: none;
  }

  .public-nav a:hover,
  .public-nav a:focus-visible,
  .public-nav a.active {
    background: var(--gold-soft);
  }

  .public-login-link {
    margin-top: 4px;
  }

  .language-switch {
    margin-left: 12px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

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

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

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  .public-header {
    padding: 0 18px;
  }

  .public-brand {
    gap: 8px;
    font-size: 12px;
  }

  .public-brand img {
    width: 30px;
    height: 30px;
  }

  .public-brand b {
    display: none;
  }

  .language-switch {
    padding: 5px 7px;
  }

  .section-nav {
    justify-content: flex-start;
  }

  .publication-hero {
    min-height: 760px;
  }

  .publication-hero-image {
    object-position: 65% center;
  }

  .publication-hero::before {
    background:
      linear-gradient(90deg, rgba(1, 10, 17, 0.96), rgba(2, 13, 22, 0.74) 72%, rgba(2, 13, 22, 0.6)),
      linear-gradient(0deg, var(--bg-deep), transparent 46%);
  }

  .hero-shell {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 32px;
    padding: 78px 0 72px;
  }

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

  .hero-record-row {
    display: block;
    padding: 13px 10px;
    border-right: 1px solid var(--line-soft);
  }

  .hero-record-row:nth-child(2n) {
    border-right: 0;
  }

  .hero-record-row:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .hero-record span {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .question-grid,
  .download-intro {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 14px;
  }

  .section-number {
    padding-top: 0;
  }

  .proof-grid,
  .audience-grid,
  .concept-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .chain-step,
  .chain-step:first-child,
  .chain-step:last-child {
    border: 0;
    border-radius: 0;
  }

  .chain-step::after {
    display: none;
  }

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

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

  .supplementary-record {
    grid-template-columns: 1fr;
  }

  .copy-button {
    justify-self: start;
  }

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

@media (max-width: 560px) {
  .hero-shell,
  .section-shell,
  .site-footer-inner,
  .summary-shell,
  .summary-article {
    width: min(100% - 32px, 1180px);
  }

  .public-brand span {
    letter-spacing: 0.1em;
  }

  .public-menu-toggle {
    padding: 7px 9px;
  }

  .section-nav a {
    padding: 7px 11px;
    font-size: 9px;
  }

  .publication-hero {
    min-height: 820px;
  }

  .publication-hero h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-record {
    padding: 8px 12px;
  }

  .hero-record strong {
    font-size: 16px;
  }

  .section-shell {
    padding: 76px 0;
  }

  .section-heading h2,
  .question-copy h2,
  .download-copy h2 {
    font-size: 42px;
  }

  .state-grid,
  .download-grid,
  .summary-states {
    grid-template-columns: 1fr;
  }

  .state-card {
    min-height: 238px;
  }

  .state-card h3 {
    margin-top: 42px;
  }

  .scope-stat {
    padding: 19px;
  }

  .scope-stat strong {
    font-size: 29px;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }

  .summary-hero {
    min-height: 390px;
  }

  .summary-title {
    font-size: 49px;
  }

  .summary-meta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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