:root {
  --bg: #090b0c;
  --panel: #101315;
  --panel-soft: #15191b;
  --text: #f4f4f1;
  --muted: #a7aaa8;
  --line: #414548;
  --line-soft: #282c2e;
  --red: #ff493f;
  --green: #46c979;
  --yellow: #f3c744;
  --orange: #ff8a34;
  --teal: #48d2c4;
  --risk-color: var(--red);
  --max: 1260px;
  --pad: clamp(22px, 5vw, 56px);
  color-scheme: dark;
}

html[data-risk-band="green"] { --risk-color: var(--green); }
html[data-risk-band="yellow"] { --risk-color: var(--yellow); }
html[data-risk-band="orange"] { --risk-color: var(--orange); }
html[data-risk-band="red"] { --risk-color: var(--red); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .13;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 52% 12%, rgba(255,255,255,.055), transparent 34%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
.skip-link { position: fixed; left: -9999px; top: 12px; z-index: 100; }
.skip-link:focus { left: 12px; background: white; color: #111; padding: 12px 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header,
.hero,
.section,
footer {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--line);
  z-index: 20;
}
.brand {
  color: var(--text);
  text-decoration: none;
  font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif;
  font-stretch: condensed;
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 900;
}
.brand i { color: var(--red); font-style: normal; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: clamp(25px, 4vw, 52px); }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}
.lang-switch b { color: #f1f1ef; font-weight: 600; opacity: .86; }
.lang-switch b.active { color: var(--red); opacity: 1; }
.lang-switch span { color: #777b7d; }
.menu-button {
  width: 44px;
  height: 42px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  display: grid;
  align-content: center;
  gap: 7px;
  cursor: pointer;
}
.menu-button span { display: block; height: 3px; background: var(--text); border-radius: 10px; transition: transform .2s, opacity .2s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
.menu-panel {
  position: absolute;
  top: calc(100% + 1px);
  right: var(--pad);
  width: min(340px, calc(100vw - var(--pad) * 2));
  background: #111416f5;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px #000b;
  backdrop-filter: blur(18px);
  display: none;
  padding: 12px 24px;
}
.menu-panel.open { display: grid; }
.menu-panel a { text-decoration: none; padding: 17px 0; border-bottom: 1px solid var(--line-soft); font-weight: 700; }
.menu-panel a:last-child { border-bottom: 0; color: var(--red); }

.hero {
  padding-top: clamp(38px, 6vw, 74px);
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  align-items: center;
  column-gap: clamp(32px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
}
.hero-copy { padding-bottom: 10px; }
.report-kicker,
.section-index {
  margin: 0;
  color: var(--risk-color);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .095em;
}
.report-id { color: #73787a; margin-left: 14px; }
.hero h1,
.section h2 {
  font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif;
  font-stretch: condensed;
  letter-spacing: -.045em;
  line-height: .99;
}
.hero h1 {
  max-width: 660px;
  margin: 22px 0 20px;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 900;
  text-wrap: balance;
  white-space: pre-line;
}
.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #c4c7c5;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.45;
}
.primary-button {
  margin-top: 28px;
  min-height: 60px;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  background: var(--red);
  border: 1px solid #ff6a61;
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 0 36px rgba(255,73,63,.15) inset;
  cursor: pointer;
}
.primary-button:hover { background: #ff5a50; }
.primary-button > span:last-child { font-size: 30px; line-height: 1; font-weight: 300; }

.risk-wheel {
  width: min(100%, 520px);
  aspect-ratio: 1;
  justify-self: end;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.risk-wheel::after {
  content: "";
  position: absolute;
  inset: 18%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--risk-color) 14%, transparent), transparent 66%);
  filter: blur(22px);
}
.risk-wheel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .18s ease; }
.risk-wheel-copy { position: relative; z-index: 1; display: grid; justify-items: center; transform: translateY(2%); }
.risk-label { color: var(--risk-color); font-size: clamp(14px, 1.7vw, 22px); font-weight: 900; letter-spacing: .02em; }
.risk-wheel-copy strong { display: flex; align-items: baseline; margin: 1px 0 0; font-size: clamp(74px, 9vw, 130px); letter-spacing: -.08em; line-height: .95; }
.risk-wheel-copy strong small { font-size: .46em; letter-spacing: -.05em; margin-left: 5px; }
.risk-level { margin-top: 10px; color: var(--risk-color); font-size: clamp(12px, 1.35vw, 18px); font-weight: 900; letter-spacing: .13em; }

.score-picker {
  grid-column: 1 / -1;
  margin-top: clamp(30px, 5vw, 58px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.score-picker-copy { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 16px; }
.score-picker-copy > span { font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.score-picker-copy small { color: var(--muted); font-size: 12px; }
.score-options { display: grid; grid-template-columns: repeat(10, 1fr); gap: 8px; }
.score-card {
  --card-color: var(--red);
  min-width: 0;
  padding: 12px 10px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  text-align: left;
  background: linear-gradient(145deg, color-mix(in srgb, var(--card-color) 12%, #101315), #0d0f10 72%);
  border: 1px solid #303436;
  border-top: 3px solid var(--card-color);
  cursor: pointer;
  transition: border-color .2s, transform .2s, background .2s;
}
.score-card:hover { transform: translateY(-3px); border-color: var(--card-color); }
.score-card[aria-pressed="true"] { border-color: var(--card-color); background: color-mix(in srgb, var(--card-color) 22%, #111416); box-shadow: 0 0 24px color-mix(in srgb, var(--card-color) 18%, transparent); }
.score-card-label { grid-column: 1 / -1; margin-bottom: 8px; color: var(--card-color); font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.score-card strong { font-size: 30px; line-height: 1; }
.score-card small { color: #8c9092; font-size: 11px; }
.score-1, .score-2 { --card-color: var(--green); }
.score-3, .score-4, .score-5 { --card-color: var(--yellow); }
.score-6, .score-7 { --card-color: var(--orange); }
.score-8, .score-9, .score-10 { --card-color: var(--red); }

.section { padding-top: clamp(52px, 7vw, 92px); padding-bottom: clamp(52px, 7vw, 92px); border-bottom: 1px solid var(--line); }
.section-title-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr); gap: clamp(30px, 8vw, 110px); align-items: end; margin-bottom: 28px; }
.section h2 { margin: 10px 0 0; font-size: clamp(39px, 4.8vw, 66px); font-weight: 900; }
.section-title-row > p { margin: 0 0 5px; color: var(--muted); line-height: 1.55; }
.section-index { color: var(--teal); }
.compact-title { grid-template-columns: 1fr; margin-bottom: 20px; }

.news-list { border-top: 1px solid var(--line); }
.news-item {
  min-height: 134px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 120px 22px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.warning-icon {
  width: 52px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 3px solid var(--red);
  border-radius: 10px 10px 18px 18px;
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
}
.news-copy { display: grid; gap: 5px; }
.news-meta { display: flex; align-items: center; gap: 12px; color: #a9adae; font-size: 12px; }
.news-meta b { color: var(--red); font-size: 13px; letter-spacing: .045em; }
.news-meta time::before { content: "·"; margin-right: 12px; color: #6d7274; }
.news-copy > strong { font-size: clamp(18px, 2.2vw, 29px); line-height: 1.08; letter-spacing: -.025em; }
.news-copy > small { color: #9fa3a4; font-size: 13px; }
.news-risk { min-height: 78px; padding-left: 22px; display: grid; align-content: center; border-left: 1px solid var(--line); }
.news-risk small { color: var(--red); font-size: 11px; font-weight: 900; }
.news-risk strong { font-size: 42px; line-height: 1; }
.news-risk em { font-style: normal; font-size: .55em; font-weight: 500; }
.row-arrow { color: white; font-size: 38px; font-weight: 200; }
.news-item:hover .row-arrow { color: var(--red); transform: translateX(3px); }
.watch-list { display: flex; align-items: center; gap: 18px; padding-top: 22px; overflow-x: auto; color: #9fa3a4; white-space: nowrap; font-size: 12px; }
.watch-list b { color: var(--teal); font-size: 10px; letter-spacing: .08em; }
.watch-list a { color: white; }
.disclaimer { max-width: 900px; margin: 22px 0 0; color: #73787a; font-size: 11px; line-height: 1.55; }

.consequence-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(35px, 7vw, 92px); }
.method-list { list-style: none; margin: 0; padding: 0; }
.method-list li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.method-list li:first-child { border-top: 1px solid var(--line); }
.method-list > li > strong { color: var(--teal); font-size: 36px; line-height: 1; letter-spacing: -.04em; }
.method-list span { display: grid; gap: 6px; }
.method-list b { font-size: 15px; }
.method-list small { color: #a5a9aa; line-height: 1.4; }
.consequence-list { border-top: 1px solid var(--line); }
.consequence-list article { min-height: 78px; display: grid; grid-template-columns: 38px 1fr 20px; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); }
.consequence-list article > span:last-child { font-size: 30px; font-weight: 200; }
.consequence-icon { color: var(--teal); font-size: 25px; }
.consequence-list h3 { margin: 0; font-size: 18px; }
.consequence-list p { display: none; margin: 6px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.consequence-list article:hover p { display: block; }

.access-note { margin: 0 0 17px; display: flex; align-items: center; gap: 11px; color: #d7d9d7; }
.lock-icon { width: 16px; height: 14px; border: 2px solid var(--teal); border-radius: 2px; position: relative; }
.lock-icon::before { content: ""; position: absolute; left: 2px; right: 2px; bottom: 10px; height: 9px; border: 2px solid var(--teal); border-bottom: 0; border-radius: 8px 8px 0 0; }
.masked-catalogue { border: 1px solid #54595c; border-radius: 10px; padding: 14px 22px; background: linear-gradient(145deg, #202427, #15191b); box-shadow: 0 22px 55px #0005; overflow: hidden; position: relative; }
.masked-catalogue::after { content: ""; position: absolute; inset: 0; backdrop-filter: blur(1.4px); pointer-events: none; background: linear-gradient(90deg, transparent 0 15%, rgba(20,24,26,.16) 48%, transparent); }
.masked-catalogue > div { min-height: 48px; display: grid; grid-template-columns: 32px 100px 1fr 102px; align-items: center; gap: 12px; color: #c7c9c8; }
.masked-catalogue span { font-size: 24px; }
.masked-catalogue strong { font-weight: 500; filter: blur(.45px); }
.masked-catalogue i { height: 5px; background: repeating-linear-gradient(90deg, #707476 0 5px, transparent 5px 9px); opacity: .48; filter: blur(2px); }
.masked-catalogue time { text-align: right; }
.catalogue-actions { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 25px; align-items: start; }
.catalogue-actions a { color: var(--teal); text-decoration: none; font-weight: 800; font-size: 16px; }
.catalogue-actions a span:last-child { margin-left: 18px; font-size: 25px; }
.catalogue-actions p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

.form-title { margin-bottom: 18px; }
.audit-form { display: grid; gap: 9px; }
.audit-form > label:not(.consent) { min-height: 54px; display: grid; grid-template-columns: 42px 1fr; align-items: center; border: 1px solid #555a5d; border-radius: 4px; background: rgba(12,15,16,.52); }
.field-icon { color: #9ca1a3; font-size: 21px; text-align: center; }
.audit-form input[type="url"], .audit-form input[type="email"], .audit-form input[type="tel"] { width: 100%; height: 52px; border: 0; outline: none; background: transparent; color: white; font-size: 16px; }
.audit-form input::placeholder { color: #a5a9aa; opacity: 1; }
.audit-form > label:focus-within { border-color: var(--teal); }
.consent { max-width: 780px; display: flex; gap: 13px; align-items: flex-start; color: #babdbc; font-size: 12px; line-height: 1.45; }
.consent input { appearance: none; width: 26px; height: 26px; flex: 0 0 26px; margin: 2px 0 0; border: 1px solid #727779; border-radius: 3px; background: transparent; }
.consent input:checked { background: var(--teal); box-shadow: inset 0 0 0 6px var(--bg); }
.consent a { color: var(--teal); }
.submit-button { width: 100%; margin-top: 2px; border-radius: 4px; }
.submit-button:disabled { opacity: .6; cursor: wait; }
.form-status { margin: 2px 0 0; min-height: 18px; font-size: 12px; }
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }
.privacy { margin-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.privacy summary { padding-top: 15px; color: white; cursor: pointer; }
.privacy p { max-width: 820px; line-height: 1.6; }
.trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

footer { min-height: 92px; display: flex; align-items: center; gap: 30px; }
footer div { margin-left: auto; display: flex; align-items: center; gap: clamp(20px, 5vw, 80px); color: #d0d2d1; font-size: 13px; }
footer div a { text-decoration: none; }
footer div a:hover { color: var(--teal); }

@media (max-width: 900px) {
  :root { --pad: clamp(28px, 5.3vw, 46px); }
  .hero { grid-template-columns: minmax(0, 1.2fr) minmax(285px, .8fr); column-gap: 18px; }
  .hero h1 { font-size: clamp(47px, 6.5vw, 56px); }
  .risk-wheel { width: min(100%, 390px); }
  .score-picker-copy { align-items: start; flex-direction: column; gap: 5px; }
  .score-options { grid-template-columns: repeat(10, minmax(42px, 1fr)); gap: 7px; overflow-x: auto; padding: 3px; }
  .score-card { aspect-ratio: 1; min-width: 46px; padding: 0; place-items: center; grid-template-columns: 1fr; border: 2px solid var(--card-color); border-radius: 50%; background: color-mix(in srgb, var(--card-color) 9%, #101315); text-align: center; }
  .score-card-label, .score-card small { display: none; }
  .score-card strong { font-size: clamp(19px, 3vw, 28px); }
  .score-card[aria-pressed="true"] { box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--card-color), 0 0 22px var(--card-color); }
  .section-title-row { grid-template-columns: 1fr; gap: 15px; }
  .news-item { grid-template-columns: 62px minmax(0, 1fr) 105px 16px; gap: 16px; }
  .consequence-layout { grid-template-columns: .8fr 1.2fr; gap: 34px; }
}

@media (max-width: 720px) {
  :root { --pad: 22px; }
  .site-header { min-height: 70px; }
  .hero { grid-template-columns: 1fr; padding-top: 42px; }
  .hero-copy { order: 1; }
  .risk-wheel { order: 2; width: min(90vw, 430px); justify-self: center; margin-top: 14px; }
  .score-picker { order: 3; margin-top: 20px; }
  .hero h1 { font-size: clamp(43px, 12.5vw, 58px); }
  .hero-lead { font-size: 17px; }
  .primary-button { width: 100%; }
  .score-options { grid-template-columns: repeat(5, 1fr); overflow: visible; gap: 12px; }
  .score-card { width: 100%; min-width: 0; }
  .section h2 { font-size: clamp(38px, 11vw, 50px); }
  .news-item { min-height: 122px; grid-template-columns: 45px minmax(0, 1fr) 64px 10px; gap: 10px; }
  .warning-icon { width: 39px; height: 37px; border-width: 2px; font-size: 23px; }
  .news-meta { flex-wrap: wrap; gap: 5px; font-size: 10px; }
  .news-meta b { font-size: 11px; }
  .news-meta time::before { margin-right: 5px; }
  .news-copy > strong { font-size: 18px; }
  .news-copy > small { display: none; }
  .news-risk { min-height: 65px; padding-left: 9px; }
  .news-risk strong { font-size: 30px; }
  .news-risk small { font-size: 8px; }
  .row-arrow { font-size: 29px; }
  .consequence-layout { grid-template-columns: 1fr; }
  .consequence-list p { display: none !important; }
  .catalogue-actions { grid-template-columns: 1fr; }
  .masked-catalogue { padding: 10px 14px; }
  .masked-catalogue > div { grid-template-columns: 28px 82px 1fr 85px; gap: 6px; font-size: 12px; }
  .form-title { grid-template-columns: 1fr; }
  footer { min-height: auto; padding-top: 28px; padding-bottom: 28px; align-items: flex-start; flex-direction: column; }
  footer div { margin-left: 0; width: 100%; display: grid; gap: 12px; }
}

@media (max-width: 430px) {
  .brand { font-size: 23px; }
  .header-actions { gap: 22px; }
  .lang-switch { gap: 8px; font-size: 14px; }
  .menu-button { width: 38px; }
  .hero h1 { margin-top: 16px; }
  .risk-wheel { width: 100%; }
  .score-picker-copy small { font-size: 11px; }
  .news-item { grid-template-columns: 38px minmax(0, 1fr) 55px 8px; }
  .warning-icon { width: 33px; height: 32px; }
  .news-risk { border-left: 0; padding-left: 0; }
  .news-risk strong { font-size: 27px; }
  .masked-catalogue > div { grid-template-columns: 24px 70px 1fr 75px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
