:root {
  --black: #0a0a0a;
  --charcoal: #1c1c1c;
  --grey: #595959;
  --light-grey: #d9d9d9;
  --off-white: #f7f7f5;
  --white: #ffffff;
  --green: #00c853;
  --amber: #ffb300;

  --font-display: "Space Grotesk", Inter, system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", Consolas, monospace;

  --max: 1180px;
  --header-h: 76px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-light: 0 22px 60px rgba(10, 10, 10, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--white);
  color: var(--black);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  background: var(--white);
  color: var(--black);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(45deg, #fff 25%, transparent 25%),
    linear-gradient(-45deg, #fff 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #fff 75%),
    linear-gradient(-45deg, transparent 75%, #fff 75%);
  background-size: 4px 4px;
  background-position: 0 0, 0 2px, 2px -2px, -2px 0;
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.25s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}

.nav-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  position: relative;
  display: inline-grid;
  gap: 0.05rem;
  color: var(--white);
  line-height: 1;
  padding-bottom: 0.3rem;
  flex: 0 0 auto;
}

.brand-main {
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.53em;
  margin-left: 0.1rem;
  color: rgba(255, 255, 255, 0.76);
}

.brand-arc {
  position: absolute;
  left: 0;
  right: 0.16rem;
  bottom: 0;
  height: 9px;
  border-bottom: 2px solid currentColor;
  border-radius: 0 0 999px 999px;
  transform: skewX(-10deg);
}

.footer-brand {
  margin-bottom: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: transparent;
  position: relative;
  z-index: 1200;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  border-radius: 999px;
  transition: transform 0.25s ease;
}

body.nav-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

main,
.site-footer,
.cookie-banner,
.back-to-top {
  position: relative;
  z-index: 2;
}

.section {
  padding: clamp(5rem, 8vw, 8rem) 1rem;
}

.section-black {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 26rem),
    radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.05), transparent 22rem),
    var(--black);
  color: var(--white);
}

.section-white {
  background: var(--white);
  color: var(--charcoal);
}

.section-grey {
  background: var(--off-white);
  color: var(--charcoal);
}

.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding-top: clamp(5rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: clamp(2.5rem, 7vw, 5.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow.dark {
  color: var(--grey);
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(0, 200, 83, 0.12);
  animation: pulse 1.8s ease-in-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 {
  margin-top: 1.1rem;
  max-width: 11ch;
  font-size: clamp(4rem, 9vw, 8.5rem);
}

h2 {
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  max-width: 980px;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.hero-sub {
  max-width: 680px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.12rem, 2.1vw, 1.35rem);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: currentColor;
  border-color: rgba(255, 255, 255, 0.28);
}

.section-white .btn-secondary,
.section-grey .btn-secondary,
.cookie-banner .btn-secondary {
  border-color: rgba(10, 10, 10, 0.2);
}

.btn-secondary:hover {
  border-color: currentColor;
}

.system-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  transform: rotate(1deg);
}

.system-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

.mono {
  font-family: var(--font-mono);
}

.arc-visual {
  padding: 1.5rem 1.2rem 0.5rem;
}

.arc-visual svg {
  width: 100%;
  height: auto;
}

.grid-line {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  fill: none;
}

.grid-line.faint {
  opacity: 0.45;
}

.signal-line {
  stroke: var(--white);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: drawSignal 2.2s ease forwards 0.35s;
}

.node {
  fill: var(--green);
  opacity: 0;
  animation: nodeIn 0.5s ease forwards;
}

.node-1 {
  animation-delay: 1.2s;
}

.node-2 {
  animation-delay: 1.55s;
}

.node-3 {
  animation-delay: 1.9s;
}

.system-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.system-stats div {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.system-stats div:last-child {
  border-right: 0;
}

.system-stats strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
}

.system-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.terminal {
  padding: 1rem 1.1rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

.terminal p {
  margin: 0.28rem 0;
}

.terminal span {
  color: var(--green);
}

.proof-strip {
  width: min(var(--max), 100%);
  margin: clamp(2.5rem, 5vw, 5rem) auto 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip p {
  margin: 0;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.section-heading p {
  max-width: 760px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-bottom: 2.5rem;
}

.section-intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--light-grey);
  border-bottom: 0;
  border-right: 0;
}

.service-card {
  min-height: 315px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-right: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.25s ease, color 0.25s ease;
}

.service-card:hover {
  background: var(--black);
  color: var(--white);
}

.service-card:hover p,
.service-card:hover .service-index {
  color: rgba(255, 255, 255, 0.68);
}

.service-wide {
  grid-column: span 2;
}

.service-index {
  font-family: var(--font-mono);
  color: var(--grey);
  font-size: 0.8rem;
}

.service-card p {
  margin: 1rem 0 0;
  color: var(--grey);
  transition: color 0.25s ease;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.work-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2vw, 1.7rem);
  box-shadow: var(--shadow-dark);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.work-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.work-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.48);
}

.work-card p,
.work-card li {
  color: rgba(255, 255, 255, 0.64);
}

.work-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.private-proof {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.64);
}

.private-proof p {
  margin: 0;
}

.private-proof span {
  color: var(--green);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about-copy p:not(.eyebrow) {
  color: var(--grey);
  max-width: 820px;
  font-size: 1.05rem;
}

.credential-panel {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.brand-large {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 1.4rem;
  margin-bottom: 1rem;
}

.brand-large span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.09em;
}

.brand-large small {
  font-family: var(--font-mono);
  letter-spacing: 0.62em;
  color: rgba(255, 255, 255, 0.66);
}

.credential-list {
  display: grid;
  gap: 0.6rem;
}

.credential-list p {
  margin: 0;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
}

.credential-list p:last-child {
  border-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--light-grey);
  border: 1px solid var(--light-grey);
}

.process-step {
  background: var(--off-white);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.process-step span {
  font-family: var(--font-mono);
  color: var(--grey);
  font-size: 0.8rem;
}

.process-step p {
  color: var(--grey);
  margin-bottom: 0;
}

.engagements {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--light-grey);
  background: var(--white);
}

.engagements div {
  padding: 1.1rem;
  border-right: 1px solid var(--light-grey);
}

.engagements div:last-child {
  border-right: 0;
}

.engagements span {
  color: var(--black);
  font-weight: 800;
}

.engagements p {
  color: var(--grey);
  margin-bottom: 0;
}

.contact-section a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.reply-note {
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-dark);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  padding: 0.85rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field select {
  color-scheme: dark;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form .btn {
  justify-self: start;
}

.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  align-self: center;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 1.2fr;
  gap: 2rem;
}

.footer-grid h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 0;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  margin: 0.3rem 0;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: min(940px, calc(100% - 2rem));
  margin: 0 auto;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  color: var(--black);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28);
  z-index: 1500;
}

.cookie-banner.show {
  display: grid;
  animation: slideUp 0.3s ease both;
}

.cookie-banner p {
  margin: 0.2rem 0 0;
  color: var(--grey);
}

.cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.cookie-banner .btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.cookie-banner .btn-primary:hover {
  background: var(--white);
  color: var(--black);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(0, 200, 83, 0.12);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(0, 200, 83, 0.02);
  }
}

@keyframes drawSignal {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes nodeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    background: var(--black);
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  body.nav-open .nav-links {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: clamp(1.7rem, 6vw, 3.5rem);
    font-family: var(--font-display);
    letter-spacing: -0.06em;
  }

  .hero-grid,
  .split,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .system-card,
  .credential-panel {
    max-width: 620px;
  }

  .credential-panel {
    position: static;
  }

  .service-grid,
  .work-grid,
  .process-grid,
  .engagements,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-wide {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 70px;
  }

  .nav-shell {
    width: min(var(--max), calc(100% - 1rem));
  }

  .brand-main {
    font-size: 1.48rem;
  }

  .brand-sub {
    font-size: 0.5rem;
  }

  .section,
  .hero {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .hero-actions,
  .contact-form .btn {
    justify-self: stretch;
  }

  .system-stats {
    grid-template-columns: 1fr;
  }

  .system-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .system-stats div:last-child {
    border-bottom: 0;
  }

  .service-grid,
  .work-grid,
  .process-grid,
  .engagements,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 240px;
  }

  .work-meta {
    margin-bottom: 3rem;
  }

  .private-proof {
    display: grid;
  }

  .engagements div {
    border-right: 0;
    border-bottom: 1px solid var(--light-grey);
  }

  .engagements div:last-child {
    border-bottom: 0;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}