:root {
  color-scheme: dark;
  --bg: #080a0b;
  --panel: #101315;
  --panel-strong: #15191c;
  --line: #2b3034;
  --line-strong: #464d52;
  --text: #f3eee8;
  --muted: #a6a4a0;
  --accent: #ff681f;
  --accent-strong: #ff7a38;
  --accent-soft: #2a1710;
  --good: #70d49b;
  --warn: #f0bb61;
  --max: 1180px;
  --radius: 10px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

@view-transition {
  navigation: auto;
}

@keyframes page-exit {
  to {
    opacity: 0;
  }
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes signal-sweep {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0.35;
    transform: translateY(18px);
  }
}

::view-transition-old(root) {
  animation: page-exit 140ms var(--ease-in-out) both;
}

::view-transition-new(root) {
  animation: page-enter 220ms 30ms var(--ease-out) both;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--accent-strong);
}

a:focus-visible,
button:focus-visible,
.nav-links a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 25%);
  background: color-mix(in srgb, var(--bg), transparent 8%);
  backdrop-filter: blur(14px);
}

.site-nav {
  display: flex;
  width: min(var(--max), calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

.nav-menu {
  margin-left: auto;
}

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

.nav-links a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--panel);
  color: var(--text);
}

.lang-link {
  margin-left: 6px;
  border: 1px solid var(--line);
}

main {
  min-height: 68vh;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  z-index: 0;
  display: grid;
  isolation: isolate;
  overflow: clip;
  min-height: 620px;
  padding-block: 104px 84px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 18% 28%, rgb(255 104 31 / 10%), transparent 38%);
  content: "";
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 42%, var(--accent-strong) 50%, transparent 76%);
  content: "";
  pointer-events: none;
  transform: translateX(-100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: clamp(48px, 8vw, 118px);
  align-items: end;
}

.eyebrow,
.status {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 10px 17px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: transparent;
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), box-shadow 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.button:hover {
  border-color: var(--accent);
  color: var(--text);
}

.button:active {
  transform: scale(0.97);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 rgb(255 104 31 / 0%);
  color: #130905;
}

.button-primary:hover {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #130905;
}

.hero-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.hero-facts dd {
  margin: 0;
  font-size: 0.92rem;
}

.section {
  padding-block: 92px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.55rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section-heading p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
}

.status {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
}

.lane {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  padding: 34px 0;
  border-top: 1px solid var(--line);
  transition: background-color 200ms var(--ease-out);
}

.lane:last-child {
  border-bottom: 1px solid var(--line);
}

.lane h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.lane p {
  color: var(--muted);
}

.lane-content > :last-child {
  margin-bottom: 0;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.text-link {
  background: linear-gradient(var(--accent), var(--accent)) no-repeat 0 100% / 0 1px;
  color: var(--text);
  font-weight: 750;
  text-decoration-color: color-mix(in srgb, var(--text), transparent 45%);
  transition: background-size 220ms var(--ease-out), color 180ms var(--ease-out);
}

.text-link:hover,
.text-link:focus-visible {
  background-size: 100% 1px;
}

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

.fact,
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.fact {
  padding: 22px;
}

.fact strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.fact span {
  color: var(--muted);
  font-size: 0.93rem;
}

.card {
  padding: clamp(22px, 4vw, 34px);
}

.card:has(a) {
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.card:has(a):focus-within {
  border-color: color-mix(in srgb, var(--accent), var(--line) 45%);
  box-shadow: 0 16px 42px rgb(0 0 0 / 22%);
}

.card h2,
.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.card-featured {
  grid-column: 1 / -1;
  border-color: var(--accent);
  background: var(--accent-soft);
}

.label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clean-list,
.steps {
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--line);
}

.clean-list li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.steps {
  counter-reset: step;
  border-top: 1px solid var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.steps li::before {
  color: var(--accent);
  content: "0" counter(step);
  font-size: 0.78rem;
  font-weight: 850;
}

.evidence-gallery {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.evidence-figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f5f5f4;
  transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.evidence-image-link {
  display: block;
  overflow: hidden;
}

.evidence-image-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.evidence-figure img {
  width: 100%;
  height: auto;
  transition: filter 260ms var(--ease-out), transform 260ms var(--ease-out);
}

.evidence-figure figcaption {
  display: flex;
  padding: 14px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #d6d3d1;
  background: #111315;
  color: var(--muted);
  font-size: 0.87rem;
}

.page-hero {
  position: relative;
  z-index: 0;
  overflow: clip;
  isolation: isolate;
  padding-block: 98px 66px;
  border-bottom: 1px solid var(--line);
}

@media (prefers-reduced-motion: no-preference) {
  .hero::after,
  .page-hero::after {
    animation: signal-sweep 1100ms 360ms var(--ease-out) both;
  }

  .hero-grid > div > .eyebrow,
  .hero-grid > div > h1,
  .hero-grid > div > .hero-copy,
  .hero-grid > div > .actions,
  .hero-facts > div,
  .page-hero .wrap > .eyebrow,
  .page-hero .wrap > h1,
  .page-hero .wrap > h1 + p,
  .page-hero .wrap > .actions {
    animation: fade-rise 420ms var(--ease-out) both;
  }

  .hero-grid > div > h1,
  .page-hero .wrap > h1 {
    animation-delay: 60ms;
  }

  .hero-grid > div > .hero-copy,
  .page-hero .wrap > h1 + p {
    animation-delay: 120ms;
  }

  .hero-grid > div > .actions,
  .page-hero .wrap > .actions {
    animation-delay: 180ms;
  }

  .hero-facts > div:nth-child(1) {
    animation-delay: 220ms;
  }

  .hero-facts > div:nth-child(2) {
    animation-delay: 280ms;
  }

  .hero-facts > div:nth-child(3) {
    animation-delay: 340ms;
  }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .section-heading,
    .lane,
    .card,
    .fact,
    .steps > li,
    .evidence-figure {
      animation: reveal-up linear both;
      animation-range: entry 5% cover 24%;
      animation-timeline: view();
    }
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button-primary:hover {
    box-shadow: 0 10px 30px rgb(255 104 31 / 18%);
  }

  .lane:has(a):hover,
  .lane:has(a):focus-within {
    background: color-mix(in srgb, var(--panel), transparent 72%);
  }

  .card:has(a):hover {
    border-color: color-mix(in srgb, var(--accent), var(--line) 45%);
    box-shadow: 0 16px 42px rgb(0 0 0 / 22%);
    transform: translateY(-3px);
  }

  .evidence-figure:hover,
  .evidence-figure:focus-within {
    border-color: color-mix(in srgb, var(--accent), var(--line) 45%);
    box-shadow: 0 18px 48px rgb(0 0 0 / 28%);
    transform: translateY(-3px);
  }

  .evidence-image-link:hover img,
  .evidence-image-link:focus-visible img {
    filter: contrast(1.02);
    transform: scale(1.015);
  }
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.notice {
  padding: 18px 20px;
  border-left: 3px solid var(--warn);
  background: #1e180d;
  color: #e7d8bb;
}

.company-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.company-list dt {
  color: var(--muted);
}

.company-list dd {
  margin: 0;
  font-weight: 650;
}

.site-footer {
  padding-block: 48px;
  background: #050607;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  align-items: center;
  gap: 10px;
}

.footer-copy,
.footer-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 840px) {
  .site-nav {
    min-height: 62px;
    padding-block: 10px;
    flex-wrap: wrap;
    gap: 4px;
  }

  .nav-menu {
    width: 100%;
    margin-left: 0;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 7px 9px;
  }

  .lang-link {
    margin: 4px 0 0;
  }

  .hero {
    min-height: auto;
    padding-block: 80px 64px;
  }

  .hero-grid,
  .section-heading,
  .lane {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    margin-top: 18px;
  }

  .section {
    padding-block: 70px;
  }

  .fact-grid,
  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .site-nav,
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .brand-name {
    font-size: 0.83rem;
    letter-spacing: 0.09em;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts div,
  .company-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .evidence-figure figcaption {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}
