:root {
  --case-accent: #d0a54f;
  --case-accent-soft: rgba(208, 165, 79, 0.18);
  --case-accent-strong: #f1d9a1;
  --case-glow: rgba(113, 123, 178, 0.28);
  --case-surface: rgba(28, 31, 43, 0.9);
  --case-surface-strong: rgba(10, 12, 18, 0.96);
  --case-line: rgba(255, 255, 255, 0.1);
  --case-line-strong: rgba(255, 255, 255, 0.18);
  --case-text: #f7f8fc;
  --case-text-soft: rgba(247, 248, 252, 0.74);
  --case-text-muted: rgba(247, 248, 252, 0.5);
  --case-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

html,
body.website-project-body {
  background: #000;
}

body.website-project-body {
  color: var(--case-text);
  background:
    radial-gradient(circle at 18% 0%, var(--case-glow), transparent 28%),
    radial-gradient(circle at 82% 4%, color-mix(in srgb, var(--case-accent) 12%, transparent), transparent 24%),
    linear-gradient(180deg, #06070a 0%, #020203 32%, #000 100%);
}

body.website-project-body::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.015), transparent 24%);
  opacity: 0.36;
}

.website-project-body .page-noise {
  opacity: 0.08;
}

.website-project-header {
  color: rgba(255, 255, 255, 0.84);
}

.website-project-header.is-scrolled {
  background: rgba(5, 6, 10, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.website-project-header .header-inner {
  width: min(1180px, calc(100vw - 40px));
}

.website-project-nav {
  gap: 22px;
  color: rgba(255, 255, 255, 0.68);
}

.website-project-nav a:hover {
  color: rgba(255, 255, 255, 0.98);
}

.website-project-actions {
  justify-content: end;
}

.website-project-header-button,
.website-project-primary-button {
  min-height: 44px;
  padding-inline: 18px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: #09090b;
  font-size: 13px;
  font-weight: 600;
}

.website-project-header-button:hover,
.website-project-primary-button:hover {
  background: #fff;
}

.website-project-page {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 116px 0 108px;
  display: grid;
  gap: clamp(80px, 8vw, 104px);
}

.website-project-empty {
  display: grid;
  justify-items: center;
}

.website-project-empty-card {
  width: min(560px, 100%);
  padding: 36px;
  display: grid;
  gap: 14px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%),
    rgba(14, 17, 27, 0.92);
  box-shadow: var(--case-shadow);
  text-align: center;
}

.website-project-empty-card h1,
.case-hero-copy h1,
.case-facts h2,
.case-copy-block h2,
.case-section-head h2,
.case-cta-copy h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

.website-project-empty-card p,
.case-intro,
.case-fact-item dd,
.case-copy-block p,
.case-section-head p,
.case-proof-card p,
.case-cta-copy p,
.case-frame figcaption {
  margin: 0;
  color: var(--case-text-soft);
  font-size: 15px;
  line-height: 1.58;
  letter-spacing: -0.014em;
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 24px;
  align-items: end;
}

.case-hero-copy {
  display: grid;
  gap: 18px;
}

.case-eyebrow {
  margin: 0;
  color: var(--case-text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-hero-copy h1 {
  font-size: clamp(44px, 6vw, 70px);
  line-height: 0.92;
}

.case-intro {
  max-width: 760px;
  font-size: 17px;
}

.case-tag-row,
.case-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.case-tag,
.case-secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1;
}

.case-secondary-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.98);
}

.case-facts,
.case-proof-card,
.case-cta-panel {
  padding: 1px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(10, 12, 18, 0.96);
  box-shadow: var(--case-shadow);
}

.case-facts {
  overflow: hidden;
}

.case-facts h2 {
  padding: 24px 24px 0;
  font-size: 20px;
}

.case-fact-list,
.case-fact-item {
  display: grid;
}

.case-fact-list {
  gap: 0;
  padding: 12px 24px 24px;
  margin: 0;
}

.case-fact-item {
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-fact-item:first-child {
  border-top: 0;
}

.case-fact-item dt {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-facts h2,
.case-fact-item dd {
  color: rgba(255, 255, 255, 0.94);
}

.case-stage,
.case-gallery,
.case-proof {
  display: grid;
  gap: clamp(28px, 4vw, 36px);
}

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

.case-copy-block {
  padding: 34px;
  display: grid;
  gap: 16px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
    rgba(13, 15, 23, 0.92);
  box-shadow: var(--case-shadow);
}

.case-copy-block h2,
.case-section-head h2,
.case-cta-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 0.98;
}

.case-copy-block--secondary {
  background:
    radial-gradient(circle at 100% 0%, var(--case-accent-soft), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
    rgba(13, 15, 23, 0.92);
}

.case-section-head {
  width: min(var(--reading-measure-wide), 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

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

.case-frame {
  margin: 0;
  padding: 1px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(10, 12, 18, 0.96);
  box-shadow: var(--case-shadow);
  overflow: hidden;
}

.case-frame--hero .case-shot {
  min-height: 560px;
}

.case-frame--half .case-shot {
  min-height: 380px;
}

.case-frame figcaption {
  padding: 16px 20px 20px;
  background: rgba(7, 8, 12, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-shot {
  position: relative;
  overflow: hidden;
  background: var(--case-surface-strong);
}

.case-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.12) 38%, transparent 44% 100%),
    linear-gradient(70deg, transparent 0 55%, rgba(255, 255, 255, 0.08) 58%, transparent 64% 100%);
  opacity: 0.52;
}

.case-shot--light {
  color: #141926;
  background: #f2f4f7;
}

.case-shot--image {
  display: grid;
  place-items: center;
  background: #edf1f4;
}

.case-shot--image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: top center;
  background: #edf1f4;
}

.case-shot-topbar {
  position: relative;
  z-index: 1;
  min-height: 82px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-shot-topbar--light {
  border-bottom-color: rgba(20, 25, 38, 0.08);
}

.case-shot-brand,
.case-shot-nav,
.case-shot-contact,
.case-shot-signup {
  position: relative;
  z-index: 1;
}

.case-shot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.case-shot-brand--edval {
  color: #36505f;
}

.case-shot-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(208, 165, 79, 0.68);
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(180deg, rgba(208, 165, 79, 0.34), rgba(90, 70, 28, 0.72));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.case-shot-brand-mark--edval {
  border-radius: 14px;
  border-color: rgba(95, 154, 166, 0.28);
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(180deg, rgba(95, 154, 166, 0.92), rgba(62, 121, 132, 0.92));
}

.case-shot-nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-shot-nav--edval {
  color: rgba(53, 79, 91, 0.72);
  font-size: 12px;
  letter-spacing: -0.01em;
  text-transform: none;
}

.case-shot-contact,
.case-shot-signup {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
}

.case-shot-signup {
  background: #5f9aa6;
  color: #fff;
}

.case-shot-hero-body,
.case-shot-edval-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
  gap: 22px;
  min-height: calc(100% - 82px);
  padding: 34px 30px 28px;
}

.case-shot-edval-body {
  align-items: end;
}

.case-shot-hero-copy,
.case-shot-edval-copy {
  display: grid;
  align-content: end;
  gap: 14px;
}

.case-shot-hero-copy strong,
.case-shot-edval-copy strong,
.case-shot-merch-head h3,
.case-shot-contact-copy h3,
.case-shot-video-copy h3,
.case-shot-panel strong {
  margin: 0;
  letter-spacing: -0.05em;
}

.case-shot-hero-copy strong,
.case-shot-edval-copy strong {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.92;
}

.case-shot-hero-copy p,
.case-shot-edval-copy p,
.case-shot-merch-head p,
.case-shot-contact-copy p,
.case-shot-video-copy p,
.case-shot-panel p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.case-shot-hero-copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 30ch;
}

.case-shot-edval-copy p {
  color: rgba(20, 25, 38, 0.68);
  max-width: 34ch;
}

.case-shot-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.case-shot-button,
.case-shot-link {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-shot-button {
  background: rgba(255, 255, 255, 0.96);
  color: #111218;
}

.case-shot-button--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.case-shot-button--teal {
  background: #5f9aa6;
  color: #fff;
}

.case-shot-link {
  padding-inline: 0;
  border-radius: 0;
  color: rgba(20, 25, 38, 0.72);
  text-transform: none;
  letter-spacing: -0.01em;
}

.case-shot-athlete {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(135deg, rgba(84, 99, 126, 0.92), rgba(33, 40, 57, 0.96));
}

.case-shot-athlete-bar,
.case-shot-athlete-figure {
  position: absolute;
}

.case-shot-athlete-bar {
  top: 38%;
  left: 42%;
  width: 72%;
  height: 14px;
  border-radius: 999px;
  background: rgba(37, 30, 24, 0.78);
  transform: rotate(-15deg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.case-shot-athlete-figure {
  right: -4%;
  bottom: -8%;
  width: 74%;
  height: 94%;
  border-radius: 46% 42% 24% 24% / 30% 28% 14% 14%;
  background:
    radial-gradient(circle at 46% 18%, rgba(255, 229, 198, 0.72), transparent 16%),
    linear-gradient(180deg, rgba(233, 208, 187, 0.62), rgba(88, 68, 60, 0.52));
  filter: blur(0.2px);
}

.case-shot-footer-rail {
  position: relative;
  z-index: 1;
  padding: 0 30px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-shot-footer-rail span {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.case-shot--ct-hero {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, #343a4d 0%, #22283a 52%, #171b26 100%);
}

.case-shot--ct-merch,
.case-shot--ct-contact,
.case-shot--edval-hero,
.case-shot--edval-signup {
  background: #f5f6f7;
}

.case-shot-merch-head {
  position: relative;
  z-index: 1;
  padding: 30px 28px 0;
  display: grid;
  gap: 10px;
  text-align: center;
}

.case-shot-merch-head h3,
.case-shot-contact-copy h3,
.case-shot-video-copy h3 {
  color: #141926;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 0.96;
}

.case-shot-merch-head p,
.case-shot-contact-copy p {
  color: rgba(20, 25, 38, 0.64);
}

.case-shot-merch-grid {
  position: relative;
  z-index: 1;
  padding: 24px 24px 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.case-shot-merch-card {
  min-height: 212px;
  padding: 14px;
  display: flex;
  align-items: end;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 30%),
    #d6dde7;
  color: rgba(20, 25, 38, 0.72);
  font-size: 12px;
}

.case-shot-merch-card--one {
  background:
    radial-gradient(circle at 52% 14%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 30%),
    #b8d2e7;
}

.case-shot-merch-card--two {
  background:
    radial-gradient(circle at 52% 14%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 30%),
    #2c3344;
  color: rgba(255, 255, 255, 0.82);
}

.case-shot-merch-card--three {
  background:
    radial-gradient(circle at 52% 14%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 30%),
    #dfe3ea;
}

.case-shot-merch-card--four {
  background:
    radial-gradient(circle at 52% 14%, rgba(255, 255, 255, 0.28), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 30%),
    #cfd5df;
}

.case-shot-contact-grid {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
}

.case-shot-contact-copy {
  padding: 34px 28px;
  display: grid;
  align-content: center;
  gap: 14px;
  background: #fafafb;
}

.case-shot-contact-meta {
  margin-top: 8px;
  display: grid;
  gap: 6px;
}

.case-shot-contact-meta span,
.case-shot-video-copy span,
.case-shot-panel span {
  color: rgba(20, 25, 38, 0.5);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-shot-contact-meta strong {
  color: #141926;
  font-size: 14px;
  font-weight: 500;
}

.case-shot-form {
  padding: 34px 28px;
  display: grid;
  align-content: center;
  gap: 14px;
  background: #eef1f4;
}

.case-shot-form span {
  min-height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
}

.case-shot-form-area {
  min-height: 124px;
}

.case-shot-form-button {
  width: 110px;
  display: inline-grid;
  place-items: center;
  background: #32384a;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.case-shot--edval-hero {
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.78), transparent 18%),
    linear-gradient(135deg, #f9f9f8 0%, #eff3f5 52%, #dbe7ea 100%);
}

.case-shot-monitor {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 36% 32%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(135deg, rgba(214, 225, 231, 0.86), rgba(170, 191, 199, 0.92));
}

.case-shot-monitor::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 14%;
  width: 48%;
  height: 54%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.24);
  transform: skew(-6deg);
  box-shadow: 0 18px 30px rgba(95, 154, 166, 0.14);
}

.case-shot--edval-ai {
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, #132432 0%, #102b34 54%, #0e191f 100%);
}

.case-shot-video {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
  gap: 18px;
  align-items: center;
}

.case-shot-video-frame {
  min-height: 250px;
  padding: 18px;
  display: grid;
  align-content: end;
  gap: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(95, 154, 166, 0.3), rgba(7, 12, 18, 0.2)),
    rgba(7, 13, 19, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.case-shot-video-badge {
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.case-shot-video-play {
  width: 74px;
  height: 74px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.case-shot-video-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #102530;
}

.case-shot-video-lines {
  display: grid;
  gap: 10px;
}

.case-shot-video-lines span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.case-shot-video-lines span:nth-child(1) {
  width: 86%;
}

.case-shot-video-lines span:nth-child(2) {
  width: 72%;
}

.case-shot-video-lines span:nth-child(3) {
  width: 60%;
}

.case-shot-video-copy {
  display: grid;
  gap: 12px;
}

.case-shot-video-copy span {
  color: rgba(255, 255, 255, 0.48);
}

.case-shot-video-copy h3,
.case-shot-video-copy p {
  color: rgba(255, 255, 255, 0.92);
}

.case-shot-video-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.case-shot--edval-signup {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.56), transparent 22%),
    linear-gradient(135deg, #f5f7f7 0%, #edf3f3 54%, #e2ebec 100%);
}

.case-shot-panel-grid {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-shot-panel {
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(20, 25, 38, 0.06);
}

.case-shot-panel strong {
  color: #141926;
  font-size: 24px;
  line-height: 1.02;
}

.case-shot-panel p {
  color: rgba(20, 25, 38, 0.68);
}

.case-shot-panel--accent {
  background: linear-gradient(180deg, rgba(95, 154, 166, 0.94), rgba(72, 137, 147, 0.96));
}

.case-shot-panel--accent span,
.case-shot-panel--accent strong,
.case-shot-panel--accent p {
  color: rgba(255, 255, 255, 0.96);
}

.case-shot--fallback {
  display: grid;
  place-items: center;
  background: rgba(8, 11, 18, 0.96);
}

.case-shot-fallback-copy {
  padding: 34px;
  text-align: center;
}

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

.case-proof-card {
  min-height: 100%;
}

.case-proof-card h3 {
  margin: 0;
  padding: 26px 26px 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.case-proof-card p {
  padding: 0 26px 28px;
}

.case-cta-panel {
  overflow: hidden;
}

.case-cta-panel {
  background:
    radial-gradient(circle at 0% 0%, var(--case-accent-soft), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
    rgba(12, 14, 21, 0.96);
}

.case-cta-panel {
  padding: 30px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 24px;
  align-items: end;
}

.case-cta-copy {
  display: grid;
  gap: 12px;
}

.case-action-row--cta {
  justify-content: end;
}

html[data-theme="light"] body.website-project-body {
  background:
    radial-gradient(circle at 18% 0%, rgba(101, 135, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 4%, color-mix(in srgb, var(--case-accent) 10%, transparent), transparent 24%),
    linear-gradient(180deg, #eef3f8 0%, #edf1f7 32%, #eef2f7 100%);
}

html[data-theme="light"] body.website-project-body::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 18%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.04), transparent 24%);
}

html[data-theme="light"] .website-project-header {
  color: rgba(17, 19, 26, 0.82);
}

html[data-theme="light"] .website-project-header.is-scrolled {
  background: rgba(243, 245, 249, 0.9);
  border-bottom-color: rgba(17, 24, 39, 0.08);
}

html[data-theme="light"] .website-project-nav {
  color: rgba(17, 19, 26, 0.66);
}

html[data-theme="light"] .website-project-nav a:hover {
  color: rgba(17, 19, 26, 0.98);
}

html[data-theme="light"] .website-project-header-button,
html[data-theme="light"] .website-project-primary-button {
  background: rgba(17, 19, 26, 0.94);
  color: rgba(255, 255, 255, 0.96);
  border-color: rgba(17, 24, 39, 0.12);
}

html[data-theme="light"] .website-project-header-button:hover,
html[data-theme="light"] .website-project-primary-button:hover {
  background: rgba(17, 19, 26, 0.84);
}

html[data-theme="light"] .website-project-empty-card,
html[data-theme="light"] .case-copy-block,
html[data-theme="light"] .case-frame figcaption {
  background: rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .website-project-empty-card h1,
html[data-theme="light"] .case-hero-copy h1,
html[data-theme="light"] .case-facts h2,
html[data-theme="light"] .case-copy-block h2,
html[data-theme="light"] .case-section-head h2,
html[data-theme="light"] .case-cta-copy h2,
html[data-theme="light"] .case-proof-card h3 {
  color: rgba(17, 19, 26, 0.96);
}

html[data-theme="light"] .website-project-empty-card p,
html[data-theme="light"] .case-intro,
html[data-theme="light"] .case-fact-item dd,
html[data-theme="light"] .case-copy-block p,
html[data-theme="light"] .case-section-head p,
html[data-theme="light"] .case-proof-card p,
html[data-theme="light"] .case-cta-copy p,
html[data-theme="light"] .case-frame figcaption {
  color: rgba(17, 19, 26, 0.72);
}

html[data-theme="light"] .case-eyebrow,
html[data-theme="light"] .case-fact-item dt {
  color: rgba(17, 19, 26, 0.5);
}

html[data-theme="light"] .case-tag,
html[data-theme="light"] .case-secondary-link {
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(17, 19, 26, 0.04);
  color: rgba(17, 19, 26, 0.84);
}

html[data-theme="light"] .case-secondary-link:hover {
  background: rgba(17, 19, 26, 0.08);
  color: rgba(17, 19, 26, 0.98);
}

html[data-theme="light"] .case-facts,
html[data-theme="light"] .case-proof-card,
html[data-theme="light"] .case-cta-panel,
html[data-theme="light"] .case-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 240, 248, 0.94)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 64px rgba(30, 41, 59, 0.08);
}

html[data-theme="light"] .case-copy-block,
html[data-theme="light"] .case-copy-block--secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 252, 0.96));
  box-shadow: 0 24px 64px rgba(30, 41, 59, 0.08);
}

html[data-theme="light"] .case-fact-item {
  border-top-color: rgba(17, 24, 39, 0.08);
}

html[data-theme="light"] .case-frame figcaption {
  border-top-color: rgba(17, 24, 39, 0.08);
}

@media (max-width: 1080px) {
  .case-hero-grid,
  .case-story,
  .case-cta-panel {
    grid-template-columns: 1fr;
  }

  .case-action-row--cta {
    justify-content: start;
  }

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

@media (max-width: 860px) {
  .website-project-nav {
    display: none;
  }

  .case-gallery-grid,
  .case-proof-grid,
  .case-shot-panel-grid,
  .case-shot-merch-grid {
    grid-template-columns: 1fr;
  }

  .case-shot-hero-body,
  .case-shot-edval-body,
  .case-shot-contact-grid,
  .case-shot-video {
    grid-template-columns: 1fr;
  }

  .case-frame--hero .case-shot {
    min-height: 480px;
  }

  .case-frame--half .case-shot {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .website-project-page {
    width: min(1180px, calc(100vw - 24px));
    padding-top: 104px;
    gap: 54px;
  }

  .case-copy-block,
  .case-cta-panel,
  .case-shot-merch-head,
  .case-shot-contact-copy,
  .case-shot-form,
  .case-shot-video,
  .case-shot-panel-grid {
    padding-inline: 18px;
  }

  .case-facts h2,
  .case-fact-list {
    padding-inline: 18px;
  }

  .case-shot-topbar {
    min-height: auto;
    padding: 18px;
    align-items: start;
    flex-direction: column;
  }

  .case-shot-hero-body,
  .case-shot-edval-body {
    padding: 18px 18px 22px;
  }

  .case-shot-hero-copy strong,
  .case-shot-edval-copy strong {
    font-size: 34px;
  }

  .case-frame--hero .case-shot {
    min-height: 420px;
  }

  .case-frame--half .case-shot {
    min-height: 300px;
  }
}
