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

:root {
  --ink: #07070b;
  --ink-2: #0d0c14;
  --panel: #12101b;
  --panel-2: #171421;
  --paper: #f5f3ee;
  --white: #ffffff;
  --muted: #a8a4b3;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #ff4365;
  --violet: #8f19ff;
  --blue: #1e18ff;
  --cyan: #39f5d2;
  --yellow: #f6db62;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  /* Responsive type roles: display, page, section, content, and card. */
  --type-display: clamp(50px, 6.8vw, 104px);
  --type-page-title: clamp(48px, 6.7vw, 100px);
  --type-section-title: clamp(38px, 4.4vw, 60px);
  --type-content-title: clamp(32px, 3.5vw, 48px);
  --type-feature-card-title: clamp(26px, 2.5vw, 36px);
  --type-card-title: 24px;
  --type-card-title-large: clamp(25px, 2.2vw, 28px);
  --leading-display: 0.97;
  --leading-section-title: 1;
  --tracking-display: -0.055em;
  --tracking-section-title: -0.05em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 5%, rgba(143, 25, 255, 0.15), transparent 25rem),
    radial-gradient(circle at 85% 28%, rgba(255, 67, 101, 0.09), transparent 30rem),
    var(--ink);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

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

.container {
  width: calc(100% - 80px);
  max-width: var(--max);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 99px;
  background: var(--paper);
  color: var(--ink);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 11, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 150px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.nav-links > a:not(.button) {
  color: #d9d6df;
}

.nav-links > a:not(.button):hover,
.nav-links > a[aria-current="page"] {
  color: var(--white);
}

.nav-links .button {
  min-height: 42px;
  padding: 0 9px 0 17px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  color: var(--paper);
}

.nav-links .button::after {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: var(--white);
  font-size: 12px;
  box-shadow: 0 0 18px rgba(143, 25, 255, 0.28);
}

.nav-links .button:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--white);
  font: 700 14px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button::after {
  content: "↗";
  font-size: 16px;
}

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

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--paper);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--cyan);
  font: 700 12px/1.2 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.display,
.page-title,
.section-title {
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-display);
}

.display {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: var(--type-display);
  font-weight: 770;
}

.display em,
.section-title em,
.page-title em {
  color: var(--pink);
  font-style: normal;
}

.lede {
  max-width: 720px;
  color: #cbc7d2;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 104px) 0 64px;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 5%;
  right: -14%;
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  border: 1px solid rgba(143, 25, 255, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 38%, rgba(255, 67, 101, 0.42), transparent 14%),
    radial-gradient(circle at 44% 58%, rgba(30, 24, 255, 0.56), transparent 28%),
    radial-gradient(circle at center, rgba(143, 25, 255, 0.24), transparent 63%);
  filter: blur(4px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-media {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #090812;
  box-shadow: var(--shadow), 0 0 80px rgba(72, 23, 183, 0.17);
}

.video-frame::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--cyan);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.video-frame.is-buffering::after {
  opacity: 1;
  animation: video-spin 0.8s linear infinite;
}

@keyframes video-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 7, 11, 0.8);
  color: var(--white);
  font: 700 11px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.section {
  padding: clamp(72px, 8vw, 120px) 0;
}

.section-tight {
  padding: 56px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
}

.section-title {
  max-width: 820px;
  margin-bottom: 0;
  font-size: var(--type-section-title);
  font-weight: 760;
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-section-title);
}

.section-copy {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.proof-item {
  min-height: 160px;
  padding: 32px;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.proof-item span {
  color: var(--muted);
}

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

.product-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #12101a, #0d0c13);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
}

.product-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--card-glow, rgba(143, 25, 255, 0.3));
  filter: blur(75px);
  opacity: 0.65;
}

.product-card:nth-child(2) {
  --card-glow: rgba(255, 67, 101, 0.34);
}

.product-card:nth-child(3) {
  --card-glow: rgba(57, 245, 210, 0.2);
}

.product-card:nth-child(4) {
  --card-glow: rgba(30, 24, 255, 0.34);
}

.product-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.product-logo img {
  width: auto;
  height: 68px;
  max-width: 88%;
  object-fit: contain;
}

.product-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  margin-bottom: 12px;
  font-size: var(--type-feature-card-title);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.product-body p {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.product-body .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 750;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.case-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.case-visual img {
  width: 100%;
}

.case-visual--gameplay {
  aspect-ratio: 16 / 9;
  background: #030306;
  isolation: isolate;
}

.case-visual--gameplay img {
  height: 100%;
  object-fit: contain;
}

.case-visual--gameplay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 -45px 80px rgba(7, 7, 11, 0.16);
}

.case-copy h2,
.case-copy h3 {
  margin-bottom: 22px;
  font-size: var(--type-section-title);
  letter-spacing: var(--tracking-section-title);
  line-height: var(--leading-section-title);
}

.case-copy p {
  color: #c6c1cd;
  font-size: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0;
}

.metric {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 38px;
  padding: 21px 0;
  color: #b5b0be;
  font: 700 12px var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

.marquee-track span::after {
  content: "●";
  margin-left: 38px;
  color: var(--violet);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 76px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 67, 101, 0.42), transparent 23%),
    radial-gradient(circle at 77% 72%, rgba(30, 24, 255, 0.5), transparent 33%),
    #14101f;
}

.cta-panel h2 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: var(--type-section-title);
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-section-title);
}

.cta-panel p {
  max-width: 650px;
  margin-bottom: 32px;
  color: #d0cbd7;
  font-size: 19px;
}

.site-footer {
  padding: 60px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  width: 170px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 400px;
  color: var(--muted);
}

.footer-links h4 {
  color: #7f798b;
  font: 700 11px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: #d5d1da;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: #777280;
  font-size: 12px;
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 108px) 0 76px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(143, 25, 255, 0.14), transparent 42%),
    radial-gradient(circle at 87% 30%, var(--page-glow, rgba(255, 67, 101, 0.17)), transparent 25rem);
}

.page-title {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: var(--type-page-title);
  font-weight: 770;
}

.page-logo {
  width: fit-content;
  max-width: min(680px, 92vw);
  margin-bottom: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.page-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 112px;
}

.page-hero .lede {
  max-width: 790px;
}

.feature-video {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #090812;
  box-shadow: var(--shadow);
}

.feature-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #090812;
}

.video-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  color: var(--muted);
  font: 600 12px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 116px;
}

.sticky-copy h2,
.split-copy h2 {
  margin-bottom: 22px;
  font-size: var(--type-section-title);
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-section-title);
}

.sticky-copy p,
.split-copy p {
  color: var(--muted);
  font-size: 18px;
}

.stack {
  display: grid;
  gap: 14px;
}

.stack-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.stack-card::before {
  content: attr(data-index);
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(255, 255, 255, 0.14);
  font: 700 40px var(--mono);
}

.stack-card h3,
.capability h3,
.outcome h3 {
  font-size: var(--type-card-title);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.stack-card h3 {
  margin-bottom: 8px;
}

.stack-card p {
  max-width: 580px;
  margin-bottom: 0;
  padding-right: 42px;
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.capability {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.capability .number {
  display: block;
  margin-bottom: 70px;
  color: var(--pink);
  font: 700 12px var(--mono);
}

.capability h3 {
  margin-bottom: 12px;
}

.capability p {
  margin: 0;
  color: var(--muted);
}

.full-bleed-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.full-bleed-image img {
  width: 100%;
}

.quote {
  max-width: 1020px;
  margin: 0 auto;
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-align: center;
}

.quote cite {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font: 600 12px var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.outcome {
  display: grid;
  grid-template-columns: 72px 0.8fr 1.2fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.outcome .index {
  color: var(--cyan);
  font: 700 12px var(--mono);
}

.outcome h3 {
  margin: 0;
}

.outcome p {
  margin: 0;
  color: var(--muted);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.research-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.research-card .tag {
  color: var(--cyan);
  font: 700 11px var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.research-card h3 {
  margin: 40px 0 16px;
  font-size: var(--type-card-title-large);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.case-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
}

.case-aside {
  position: sticky;
  top: 116px;
  height: fit-content;
}

.case-aside dl {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.case-aside div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.case-aside dt {
  color: #777280;
  font: 700 10px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-aside dd {
  margin: 5px 0 0;
  color: #d9d5df;
}

.case-aside h2 {
  font-size: var(--type-card-title);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.case-main h2 {
  margin: 54px 0 20px;
  font-size: var(--type-content-title);
  line-height: var(--leading-section-title);
  letter-spacing: -0.045em;
}

.case-main h2:first-child {
  margin-top: 0;
}

.case-main p {
  color: #c3bec9;
  font-size: 18px;
}

.case-callout {
  margin: 42px 0;
  padding: 32px;
  border-left: 3px solid var(--pink);
  background: rgba(255, 255, 255, 0.035);
  font-size: 24px;
  line-height: 1.35;
}

.matter-showcase-section {
  position: relative;
}

.matter-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(57, 245, 210, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 26%, rgba(30, 24, 255, 0.16), transparent 29rem),
    radial-gradient(circle at 18% 86%, rgba(57, 245, 210, 0.08), transparent 25rem),
    linear-gradient(145deg, #0b0b10, #08080c 68%);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.42);
}

.matter-showcase::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  opacity: 0.75;
}

.matter-showcase::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(57, 245, 210, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(30, 24, 255, 0.14) inset;
  pointer-events: none;
}

.forge-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: clamp(32px, 7vw, 90px);
  padding-bottom: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}

.forge-heading .eyebrow {
  margin-bottom: 18px;
}

.forge-heading h2 {
  margin: 0;
  font-size: var(--type-section-title);
  line-height: var(--leading-section-title);
  letter-spacing: var(--tracking-section-title);
}

.forge-heading h2 em {
  color: var(--cyan);
  font-style: normal;
}

.forge-heading > p {
  margin: 0;
  color: #b8b4bf;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
}

.forge-workflow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  padding: clamp(42px, 6vw, 72px) 0;
}

.forge-callouts {
  display: grid;
  gap: 30px;
}

.forge-callout {
  position: relative;
  padding: 0 0 0 20px;
  border-left: 1px solid rgba(57, 245, 210, 0.45);
}

.forge-callout::after {
  content: "";
  position: absolute;
  top: 23px;
  right: clamp(-88px, -7vw, -48px);
  width: clamp(38px, 6vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, rgba(57, 245, 210, 0.8), rgba(57, 245, 210, 0));
}

.forge-callout span,
.forge-status {
  color: var(--cyan);
  font: 700 10px/1.2 var(--mono);
  letter-spacing: 0.12em;
}

.forge-callout h3 {
  margin: 8px 0 6px;
  font-size: 19px;
  line-height: 1.2;
}

.forge-callout p {
  margin: 0;
  color: #928e9a;
  font-size: 14px;
  line-height: 1.5;
}

.forge-interface {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(57, 245, 210, 0.035) inset;
}

.forge-interface-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 3px 10px;
  color: #8d8994;
  font: 650 10px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.forge-interface-bar > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(57, 245, 210, 0.75);
}

.forge-interface-bar strong {
  margin-left: auto;
  color: var(--cyan);
  font-weight: 700;
}

.forge-interface img {
  width: 100%;
  border-radius: 10px;
  background: #292929;
}

.forge-interface figcaption {
  position: absolute;
  right: 24px;
  bottom: -16px;
  max-width: min(82%, 470px);
  padding: 10px 14px;
  border: 1px solid rgba(57, 245, 210, 0.25);
  border-radius: 9px;
  background: #111117;
  color: #d9d5df;
  font: 600 11px/1.4 var(--mono);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
}

.forge-output {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(34px, 6vw, 70px);
  padding-top: clamp(38px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.forge-output-copy h3 {
  margin: 12px 0 10px;
  font-size: var(--type-feature-card-title);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.forge-output-copy p {
  margin: 0;
  color: #96929e;
  font-size: 14px;
  line-height: 1.55;
}

.forge-orbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.8vw, 22px);
}

.forge-orb {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.forge-orb-frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015) 68%);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45), 0 0 28px rgba(57, 245, 210, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.forge-orb:hover .forge-orb-frame {
  transform: translateY(-5px) scale(1.025);
  border-color: rgba(57, 245, 210, 0.38);
}

.forge-orb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: fill;
}

.forge-orb figcaption {
  margin-top: 10px;
  color: #7f7b88;
  font: 650 9px/1.2 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.not-found {
  min-height: 76vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--violet);
  font: 700 clamp(80px, 20vw, 240px)/0.8 var(--mono);
}

.not-found h1 {
  font-size: var(--type-content-title);
  line-height: var(--leading-section-title);
  letter-spacing: -0.045em;
}

.dialog-open {
  overflow: hidden;
}

.contact-dialog {
  width: min(980px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 12%, rgba(143, 25, 255, 0.18), transparent 25rem),
    radial-gradient(circle at 96% 92%, rgba(255, 67, 101, 0.13), transparent 24rem),
    #0b0a11;
  color: var(--paper);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.72);
}

.contact-dialog::backdrop {
  background: rgba(4, 3, 8, 0.82);
  backdrop-filter: blur(10px);
}

.contact-dialog [hidden] {
  display: none !important;
}

.contact-dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 6vw, 76px);
  padding: clamp(34px, 5vw, 64px);
}

.contact-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
  font: 300 26px/1 var(--sans);
  cursor: pointer;
}

.contact-close:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.contact-intro {
  align-self: start;
  padding-top: 8px;
}

.contact-intro h2 {
  margin: 22px 0 24px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-intro > p:last-child {
  margin: 0;
  color: #aaa5b3;
  font-size: 17px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field > span {
  color: #d5d1dc;
  font-size: 13px;
  font-weight: 700;
}

.contact-field small {
  margin-left: 6px;
  color: #77717f;
  font-size: 11px;
  font-weight: 500;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: var(--paper);
  font: 500 16px/1.45 var(--sans);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input {
  height: 48px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 136px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(57, 245, 210, 0.72);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(57, 245, 210, 0.09);
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-turnstile {
  min-height: 65px;
}

.contact-status {
  min-height: 20px;
  margin: -8px 0 -4px;
  color: #aaa5b3;
  font-size: 13px;
}

.contact-status[data-state="error"] {
  color: #ff879c;
}

.contact-submit {
  width: fit-content;
  min-width: 150px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.contact-success {
  align-self: center;
  padding: 40px 0;
}

.contact-success > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #27c7d7);
  color: var(--ink);
  font-size: 25px;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(57, 245, 210, 0.22);
}

.contact-success h3 {
  margin: 0 0 12px;
  font-size: 34px;
  letter-spacing: -0.035em;
}

.contact-success p {
  margin: 0;
  color: #aaa5b3;
  font-size: 17px;
}

/* Resources */
.resource-hub-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) 0 clamp(58px, 7vw, 96px);
}

.resource-hub-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -12%;
  top: -34%;
  width: min(680px, 62vw);
  aspect-ratio: 1;
  border: 1px solid rgba(143, 25, 255, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 35%, rgba(255, 67, 101, 0.27), transparent 20%),
    radial-gradient(circle at 52% 62%, rgba(30, 24, 255, 0.34), transparent 38%);
  filter: blur(2px);
}

.resource-hub-hero .page-title {
  max-width: 940px;
}

.resource-hub-section {
  padding: 0 0 clamp(84px, 10vw, 142px);
}

.resource-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.resource-filters a {
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.resource-filters a:hover,
.resource-filters a[aria-current="page"] {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
}

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

.resource-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #12101a, #0d0c13);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
}

.resource-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0a0910;
}

.resource-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.resource-card:hover .resource-card-media img {
  transform: scale(1.025);
}

.resource-card-placeholder {
  position: relative;
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 67, 101, 0.34), transparent 22%),
    radial-gradient(circle at 42% 64%, rgba(30, 24, 255, 0.48), transparent 38%),
    #0c0a14;
}

.resource-card-placeholder::before,
.resource-card-placeholder::after,
.resource-card-placeholder span {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%) rotate(45deg);
}

.resource-card-placeholder::after {
  width: 27%;
  border-color: rgba(57, 245, 210, 0.24);
}

.resource-card-placeholder span {
  width: 12%;
  border-color: rgba(255, 67, 101, 0.45);
  background: rgba(143, 25, 255, 0.12);
}

.resource-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 4vw, 38px);
}

.resource-card-meta,
.resource-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 18px;
  color: #8d8796;
  font: 700 10px/1.3 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.resource-card-meta span,
.resource-article-meta span {
  color: var(--cyan);
}

.resource-card h2 {
  margin: 22px 0 12px;
  font-size: var(--type-feature-card-title);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.resource-card p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
}

.resource-card .text-link {
  margin-top: auto;
}

.resource-empty {
  min-height: 360px;
  display: grid;
  place-content: center;
  justify-items: start;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.resource-empty h2 {
  margin-bottom: 12px;
  font-size: var(--type-content-title);
  line-height: 1;
  letter-spacing: -0.045em;
}

.resource-empty p:last-child {
  margin: 0;
  color: var(--muted);
}

.resource-pagination {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) auto minmax(92px, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: clamp(36px, 5vw, 60px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.resource-pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.resource-pagination a,
.resource-pagination-ellipsis {
  min-width: 40px;
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.resource-pagination a:hover,
.resource-pagination a[aria-current="page"] {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
}

.resource-pagination .resource-pagination-direction {
  width: max-content;
  padding-inline: 14px;
}

.resource-pagination .resource-pagination-direction:last-child {
  justify-self: end;
}

.resource-article {
  padding-bottom: clamp(50px, 7vw, 90px);
}

.resource-article-header {
  padding: clamp(58px, 7vw, 92px) 0 clamp(42px, 5vw, 64px);
}

.resource-article-narrow {
  width: calc(100% - 80px);
  max-width: 760px;
  margin-inline: auto;
}

.resource-back {
  display: inline-block;
  margin-bottom: 24px;
  color: #a9a4b2;
  font-size: 13px;
  font-weight: 700;
}

.resource-back:hover {
  color: var(--paper);
}

.resource-article-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(420px, 43vw, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 67, 101, 0.2), transparent 30%),
    radial-gradient(circle at 22% 75%, rgba(30, 24, 255, 0.28), transparent 36%),
    var(--panel);
  box-shadow: var(--shadow);
}

.resource-article-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 11, 0.16) 0%, rgba(7, 7, 11, 0.36) 40%, rgba(7, 7, 11, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 7, 11, 0.8) 0%, rgba(7, 7, 11, 0.35) 68%, rgba(7, 7, 11, 0.16) 100%);
}

.resource-article-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.resource-article-hero-content {
  width: min(900px, 84%);
  min-width: 0;
  padding: clamp(30px, 5vw, 68px);
}

.resource-article-hero .resource-article-meta {
  margin-bottom: 20px;
}

.resource-article-hero h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(46px, 6.5vw, 82px);
  font-weight: 770;
  line-height: 0.96;
  letter-spacing: -0.055em;
  overflow-wrap: break-word;
  text-wrap: balance;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.36);
}

.resource-article-dek {
  max-width: 720px;
  margin-bottom: 18px;
  color: #ddd9e2;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.resource-byline {
  margin: 0;
  color: #817b8a;
  font: 650 11px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-prose {
  color: #d1ccd7;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.75;
}

.resource-prose > p,
.resource-prose > ul,
.resource-prose > ol,
.resource-prose > blockquote,
.resource-prose > pre,
.resource-prose > .resource-media {
  margin-block: 0 28px;
}

.resource-prose h2,
.resource-prose h3,
.resource-prose h4 {
  margin: 64px 0 20px;
  color: var(--paper);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.resource-prose h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.resource-prose h3 {
  font-size: clamp(26px, 3vw, 34px);
}

.resource-prose h4 {
  font-size: 23px;
}

.resource-prose a:not(.button) {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(57, 245, 210, 0.4);
  text-underline-offset: 4px;
}

.resource-prose strong {
  color: var(--paper);
}

.resource-prose ul,
.resource-prose ol {
  padding-left: 1.4em;
}

.resource-prose li {
  margin: 8px 0;
  padding-left: 6px;
}

.resource-prose blockquote {
  padding: 12px 0 12px 28px;
  border-left: 3px solid var(--pink);
  color: var(--paper);
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.resource-prose blockquote p {
  margin: 0;
}

.resource-prose hr {
  margin: 56px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.resource-prose code {
  padding: 0.12em 0.34em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  color: #f2eff5;
  font: 0.88em/1.5 var(--mono);
}

.resource-prose pre {
  overflow-x: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0d0c13;
}

.resource-prose pre code {
  padding: 0;
  border: 0;
  background: none;
}

.resource-media {
  width: min(1040px, calc(100vw - 80px));
  margin-left: 50%;
  transform: translateX(-50%);
}

.resource-media img,
.resource-media video {
  width: 100%;
  max-height: 760px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #090812;
  object-fit: contain;
}

.resource-media figcaption {
  margin-top: 11px;
  color: #7e7887;
  font: 600 11px/1.5 var(--mono);
}

.resource-source {
  margin-top: 54px !important;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.resource-article-cta {
  padding-top: 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 76px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(13, 12, 20, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a {
    padding: 12px 14px;
  }

  .section-header,
  .case-study,
  .split,
  .case-layout {
    grid-template-columns: 1fr;
  }

  .sticky-copy,
  .case-aside {
    position: static;
  }

  .capability-grid,
  .research-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .forge-heading,
  .forge-workflow,
  .forge-output {
    grid-template-columns: 1fr;
  }

  .forge-heading,
  .forge-workflow,
  .forge-output {
    gap: 34px;
  }

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

  .forge-callout::after {
    display: none;
  }

  .forge-output-copy {
    max-width: 560px;
  }

  .contact-dialog-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-intro {
    max-width: 620px;
    padding-right: 36px;
  }
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand {
    width: 132px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero::after {
    opacity: 0.65;
  }

  .hero-media {
    margin-top: 46px;
    border-radius: 18px;
  }

  .contact-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 20px;
  }

  .contact-dialog-shell {
    gap: 26px;
    padding: 34px 20px 24px;
  }

  .contact-field-row {
    grid-template-columns: 1fr;
  }

  .contact-intro h2 {
    margin-top: 18px;
  }

  .product-grid,
  .capability-grid,
  .research-grid,
  .resource-grid,
  .proof-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .resource-pagination {
    grid-template-columns: 1fr 1fr;
  }

  .resource-pagination-pages {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .product-card {
    min-height: 0;
    padding: 28px;
  }

  .product-logo {
    margin-bottom: 26px;
  }

  .product-logo img {
    height: 60px;
  }

  .proof-item + .proof-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .capability .number {
    margin-bottom: 40px;
  }

  .outcome {
    grid-template-columns: 44px 1fr;
  }

  .outcome p {
    grid-column: 2;
  }

  .footer-meta,
  .video-caption {
    flex-direction: column;
  }

  .cta-panel {
    padding: 42px 26px;
    border-radius: 22px;
  }

  .matter-showcase {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .forge-callouts {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .forge-interface {
    padding: 8px;
    border-radius: 14px;
  }

  .forge-interface-bar {
    font-size: 8px;
  }

  .forge-interface figcaption {
    position: static;
    max-width: none;
    margin-top: 8px;
  }

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

  .forge-orb:last-child {
    width: calc(50% - 11px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .resource-article-narrow {
    width: calc(100% - 28px);
  }

  .resource-back {
    margin-bottom: 20px;
  }

  .resource-article-hero {
    min-height: 480px;
    border-radius: 18px;
  }

  .resource-article-hero-content {
    width: 100%;
    padding: 26px 22px 30px;
  }

  .resource-article-hero h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .resource-media {
    width: calc(100vw - 28px);
  }
}

@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 {
    opacity: 1;
    transform: none;
  }
}
