@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

:root {
  --bg-0: #07090e;
  --bg-1: #0d1017;
  --ink-0: #f5f7fa;
  --ink-1: #b4becc;
  --ember-500: #ff6b2c;
  --ember-400: #ff9e1b;
  --alarm-500: #e11d2e;
  --cool-400: #38bdf8;
  --glass-bg: rgba(255, 255, 255, 0.055);
  --glass-brd: rgba(255, 255, 255, 0.14);
  --glass-hi: rgba(255, 255, 255, 0.28);
  --radius: 20px;
  --shell: min(1180px, calc(100vw - 2.5rem));
  --measure: 68ch;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.65);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg-0);
  color: var(--ink-0);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.15rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 46px;
}

img,
svg,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--ember-400);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #ffc15e;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--ember-400);
  outline-offset: 2px;
}

::selection {
  background: var(--ember-500);
  color: var(--bg-0);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7em;
  color: var(--ink-0);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 1.2rem + 4vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 1.45rem + 2.2vw, 3.35rem);
}

h3 {
  font-size: clamp(1.25rem, 1.08rem + 0.6vw, 1.65rem);
}

p,
ul,
ol,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.6rem;
  background: var(--ink-0);
  color: var(--bg-0);
  font-weight: 700;
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  contain: strict;
}

.mesh-blob {
  position: absolute;
  width: min(48rem, 72vw);
  aspect-ratio: 1;
  border-radius: 48% 52% 62% 38% / 43% 40% 60% 57%;
  opacity: 0.2;
  filter: blur(86px);
  transform: translate3d(0, var(--parallax, 0), 0);
  animation: mesh-breathe 14s ease-in-out infinite alternate;
  will-change: transform;
}

.mesh-blob--ember {
  top: -18rem;
  right: -10rem;
  background: var(--ember-500);
}

.mesh-blob--alarm {
  top: 48%;
  left: -28rem;
  width: min(44rem, 70vw);
  background: var(--alarm-500);
  animation-delay: -7s;
}

.mesh-blob--cool {
  right: -25rem;
  bottom: -18rem;
  width: min(40rem, 68vw);
  background: var(--cool-400);
  animation-delay: -4s;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../img/noise.svg");
  background-size: 190px 190px;
  opacity: 0.035;
  mix-blend-mode: soft-light;
}

@keyframes mesh-breathe {
  from { opacity: 0.16; border-radius: 48% 52% 62% 38% / 43% 40% 60% 57%; }
  to { opacity: 0.24; border-radius: 58% 42% 40% 60% / 60% 46% 54% 40%; }
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 0 var(--glass-hi) inset,
              0 24px 60px -20px rgba(0, 0, 0, 0.65);
}

@supports not (backdrop-filter: blur(1px)) {
  .glass { background: #141922; }
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 50;
  width: var(--shell);
  margin: 0.8rem auto 0;
  border-radius: 999px;
  transition: background-color 180ms ease, transform 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-compact {
  background: rgba(13, 16, 23, 0.86);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  transform: translateY(-0.15rem);
}

.site-header__inner {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.8rem 0.7rem 1.15rem;
  transition: min-height 180ms ease;
}

.is-compact .site-header__inner {
  min-height: 3.8rem;
}

.site-branding,
.custom-logo-link,
.site-title {
  min-width: 0;
}

.custom-logo {
  width: auto;
  max-height: 2.8rem;
}

.site-title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  color: var(--ink-0);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(0.88rem, 0.75rem + 0.42vw, 1.12rem);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-title__mark {
  flex: 0 0 auto;
  width: 1.15rem;
  aspect-ratio: 0.78;
  border-radius: 70% 30% 64% 36% / 64% 46% 54% 36%;
  background: linear-gradient(150deg, var(--ember-400), var(--alarm-500));
  box-shadow: 0 0 24px rgba(255, 107, 44, 0.48);
  transform: rotate(12deg);
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 2.9rem;
  padding-inline: 1.25rem;
}

.button--primary {
  background: linear-gradient(135deg, var(--ember-400), var(--ember-500));
  color: #160904;
  box-shadow: 0 12px 30px -14px rgba(255, 107, 44, 0.9);
}

.button--primary:hover {
  color: #160904;
  box-shadow: 0 18px 34px -14px rgba(255, 107, 44, 1);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(7, 9, 14, 0.56);
  color: var(--ink-0);
}

.button--secondary:hover {
  border-color: var(--ember-400);
  color: var(--ink-0);
}

.site-main {
  position: relative;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 5.5rem));
  display: grid;
  place-items: start center;
  padding: 3.5rem 1.25rem 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% 12% 5%;
  z-index: -1;
  background: radial-gradient(circle at 66% 30%, rgba(255, 107, 44, 0.18), transparent 38%), radial-gradient(circle at 35% 72%, rgba(56, 189, 248, 0.1), transparent 36%);
}

.hero-stage {
  width: min(1120px, 100%);
  perspective: 1200px;
}

.hero-card {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(1.7rem, 5vw, 5rem);
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%), radial-gradient(circle at 88% 22%, rgba(255, 107, 44, 0.24), transparent 34%);
}

.hero-depth {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) - 4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 107, 44, 0.025));
  transform-style: preserve-3d;
}

.hero-depth--one {
  inset: 1.3rem;
  transform: translateZ(-24px);
}

.hero-depth--two {
  inset: 2.8rem 2.2rem 2rem 3rem;
  transform: translateZ(-52px) rotateZ(-0.6deg);
}

.hero-depth--three {
  inset: auto 3rem 2.4rem auto;
  width: 36%;
  height: 44%;
  border-color: rgba(255, 158, 27, 0.2);
  transform: translateZ(38px) rotateZ(4deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 930px;
  transform: translateZ(70px);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--ember-400);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: none;
  margin-bottom: 0.45em;
  background: linear-gradient(110deg, #ffffff 12%, #ffe3c7 64%, var(--ember-400));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero h1 span {
  display: block;
}

.hero-subline {
  max-width: 66ch;
  margin-bottom: 1.7rem;
  color: #d5dbe4;
  font-size: clamp(1.1rem, 0.99rem + 0.45vw, 1.35rem);
  line-height: 1.6;
}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 1.8rem;
  padding: 0;
  list-style: none;
}

.usp-list li {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(13, 16, 23, 0.88);
  color: #f5f7fa;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-line {
  margin-top: 1.25rem;
  color: #cbd2dc;
  font-size: 0.91rem;
}

.trust-line span:first-child {
  color: var(--ember-400);
}

.section {
  position: relative;
  padding: clamp(4.8rem, 8vw, 8.5rem) 0;
}

.section--tight {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.section-shell,
.content-main,
.site-footer__inner {
  width: var(--shell);
  margin-inline: auto;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(2rem, 4vw, 3.6rem);
}

.section-heading > p:not(.eyebrow) {
  max-width: var(--measure);
  color: var(--ink-1);
}

.video-section {
  padding-top: 1rem;
}

.video-shell {
  position: relative;
  width: min(100%, 1040px);
  overflow: hidden;
  padding: 0.65rem;
}

.video-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
  background: #07090e;
  color: var(--ink-0);
  cursor: pointer;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, filter 400ms ease;
}

.video-facade:hover img {
  transform: scale(1.015);
  filter: brightness(0.82);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(4rem, 8vw, 5.8rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ember-400), var(--alarm-500));
  box-shadow: 0 18px 42px -14px rgba(225, 29, 46, 0.9);
}

.video-play span {
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-top: 0.72rem solid transparent;
  border-bottom: 0.72rem solid transparent;
  border-left: 1.1rem solid white;
}

.video-consent {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 9, 14, 0.88);
  color: #e2e7ee;
  font-size: 0.75rem;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
}

.intro-grid,
.law-layout,
.practical-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.intro-grid > *,
.law-layout > *,
.practical-layout > *,
.timeline > * {
  min-width: 0;
}

.prose-copy {
  max-width: var(--measure);
  color: #d3dae4;
}

.prose-copy strong {
  color: var(--ink-0);
}

.media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #11151d;
  box-shadow: var(--shadow);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  pointer-events: none;
}

.media-frame img {
  width: 100%;
}

.target-grid,
.feature-grid,
.career-grid,
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.surface-card,
.career-card,
.fact-card {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(18, 23, 32, 0.88);
  box-shadow: 0 16px 40px -28px rgba(0, 0, 0, 0.92);
}

.surface-card {
  min-height: 190px;
  transform-origin: center bottom;
  transition: transform 220ms ease-out, border-color 220ms ease-out, background-color 220ms ease-out;
}

.surface-card:hover {
  transform: translateY(-6px) rotateX(4deg);
  border-color: rgba(255, 158, 27, 0.4);
  background: rgba(23, 28, 38, 0.94);
}

.surface-card p,
.career-card p,
.fact-card p {
  color: var(--ink-1);
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 158, 27, 0.26);
  border-radius: 0.8rem;
  background: rgba(255, 107, 44, 0.1);
  color: var(--ember-400);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  perspective: 1000px;
}

.timeline-card {
  min-height: 390px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  transform: rotateY(var(--timeline-tilt, 0deg)) translateZ(var(--timeline-depth, 0));
  transform-style: preserve-3d;
}

.timeline-card:nth-child(1) {
  --timeline-tilt: 3deg;
  --timeline-depth: -18px;
}

.timeline-card:nth-child(2) {
  --timeline-tilt: 0deg;
  --timeline-depth: 18px;
}

.timeline-card:nth-child(3) {
  --timeline-tilt: -3deg;
  --timeline-depth: -18px;
}

.day-number {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--ember-400);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-card ul,
.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline-card li,
.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: #ccd3de;
}

.timeline-card li + li,
.check-list li + li {
  margin-top: 0.65rem;
}

.timeline-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--ember-500);
  box-shadow: 0 0 12px rgba(255, 107, 44, 0.54);
}

.law-points {
  display: grid;
  gap: 0.9rem;
}

.law-point {
  padding: 1.2rem 1.25rem;
  border-left: 2px solid var(--ember-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(18, 23, 32, 0.78);
}

.law-point h3 {
  margin-bottom: 0.4rem;
}

.law-point p {
  color: var(--ink-1);
}

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

.career-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.salary {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffd6ad;
  font-size: 0.88rem;
  font-weight: 600;
}

.career-links {
  font-size: 0.86rem;
}

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

.fact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ember-400);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-list {
  margin: 0;
  color: var(--ink-1);
}

.notice {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 1rem;
  background: rgba(56, 189, 248, 0.07);
  color: #d8f2ff;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: rgba(18, 23, 32, 0.9);
}

.faq-item[open] {
  border-color: rgba(255, 158, 27, 0.35);
}

.faq-item summary {
  position: relative;
  padding: 1.2rem 3.4rem 1.2rem 1.25rem;
  color: var(--ink-0);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 107, 44, 0.12);
  color: var(--ember-400);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  max-width: var(--measure);
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-1);
}

.faq-answer p {
  margin: 0;
}

.closing-cta {
  padding-top: 3rem;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5.5rem);
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 30rem;
  aspect-ratio: 1;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.42), transparent 68%);
}

.cta-card h2 {
  max-width: 18ch;
}

.cta-card > p:not(.eyebrow) {
  max-width: 58ch;
  color: #d0d7e1;
}

.site-footer {
  padding: clamp(5rem, 9vw, 8rem) 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 11, 0.84);
}

.footer-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-intro p {
  color: var(--ink-1);
}

.footer-kicker {
  margin-bottom: 0.35rem;
  color: var(--ink-0);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-intro address {
  color: var(--ink-1);
  font-style: normal;
  text-align: right;
}

.footer-network {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding-block: 2.7rem;
}

.footer-group {
  min-width: 0;
}

.footer-group summary {
  color: var(--ink-0);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.footer-group ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-group li + li {
  margin-top: 0.55rem;
}

.footer-group a {
  color: var(--ink-1);
  font-size: 0.82rem;
  line-height: 1.35;
  text-decoration: none;
}

.footer-group a:hover {
  color: var(--ember-400);
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8e98a7;
  font-size: 0.78rem;
}

.content-main {
  min-height: 70vh;
  padding-block: clamp(7rem, 12vw, 10rem);
}

.content-card,
.error-card,
.comments-area,
.post-card {
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.content-card,
.error-card {
  max-width: 900px;
  margin-inline: auto;
}

.prose {
  color: #d3dae4;
}

.prose :where(p, ul, ol, table, blockquote) {
  max-width: var(--measure);
}

.prose h2,
.prose h3 {
  margin-top: 1.6em;
}

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

.prose th,
.prose td {
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

.prose th {
  background: rgba(255, 107, 44, 0.11);
  color: var(--ink-0);
}

.post-list {
  display: grid;
  gap: 1.25rem;
}

.post-card h2 a {
  color: var(--ink-0);
  text-decoration: none;
}

.search-form {
  margin-block: 1.5rem;
}

.search-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.search-form__row {
  display: flex;
  gap: 0.7rem;
}

.search-form input {
  min-width: 0;
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(7, 9, 14, 0.7);
  color: var(--ink-0);
}

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

  .career-card:last-child {
    grid-column: 1 / -1;
  }
}

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

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

  .timeline-card,
  .timeline-card:nth-child(n) {
    min-height: 0;
    transform: none;
  }

  .intro-grid,
  .law-layout,
  .practical-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --shell: min(100% - 1.25rem, 1180px);
  }

  body.admin-bar .site-header {
    top: 58px;
  }

  .glass {
    backdrop-filter: blur(10px) saturate(135%);
    -webkit-backdrop-filter: blur(10px) saturate(135%);
    background: rgba(20, 25, 34, 0.82);
  }

  .mesh-blob {
    filter: blur(58px);
    opacity: 0.15;
  }

  .site-header {
    top: 0.4rem;
    margin-top: 0.4rem;
  }

  .site-header__inner {
    min-height: 4rem;
    padding: 0.55rem 0.6rem 0.55rem 0.85rem;
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0.6rem 4rem;
  }

  .hero-card {
    min-height: 560px;
    padding: 2rem 1.25rem;
    transform: none;
  }

  .hero-content {
    transform: none;
  }

  .hero-depth--three {
    opacity: 0.5;
  }

  .section {
    padding-block: 4.5rem;
  }

  .video-shell {
    padding: 0.4rem;
  }

  .video-consent {
    display: none;
  }

  .footer-intro {
    display: grid;
  }

  .footer-intro address {
    text-align: left;
  }
}

@media (max-width: 580px) {
  .site-title span:last-child {
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .button--small {
    min-height: 2.7rem;
    padding-inline: 1rem;
    font-size: 0.88rem;
  }

  .hero-card {
    min-height: 600px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .target-grid,
  .feature-grid,
  .career-grid,
  .fact-grid,
  .footer-network {
    grid-template-columns: 1fr;
  }

  .career-card:last-child {
    grid-column: auto;
  }

  .surface-card,
  .career-card {
    min-height: 0;
  }

  .footer-network {
    gap: 0;
  }

  .footer-group {
    padding-block: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-legal,
  .search-form__row {
    flex-direction: column;
  }
}

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

  .mesh-blob {
    animation: none;
  }

  .site-header,
  .site-header__inner,
  .button,
  .hero-card,
  .video-facade img,
  .surface-card {
    transition: none;
  }

  .mesh-blob,
  .hero-card,
  .hero-content,
  .hero-depth,
  .surface-card,
  .surface-card:hover,
  .timeline-card,
  .timeline-card:nth-child(n),
  .button:hover,
  .video-facade:hover img {
    transform: none;
  }
}
