:root {
  --white: #ffffff;
  --black: #000000;
  --ink: #101010;
  --muted: #787878;
  --red: #ff4a34;
  --blue: #23bbea;
  --green: #13b15a;
  --blue-soft: rgba(35, 187, 234, 0.23);
  --purple: #9656e2;
  --yellow: #f8b938;
  --shell: min(1300px, calc(100vw - 48px));
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

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

a {
  color: inherit;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: var(--shell);
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 223px;
  height: 62px;
  text-decoration: none;
}

.brand::after {
  content: "Contested";
  position: absolute;
  left: 22px;
  top: 50%;
  color: var(--white);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 58px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%) scale(0.9);
  transition: transform 180ms ease;
}

.site-nav a:nth-child(1)::before {
  color: var(--purple);
}

.site-nav a:nth-child(2)::before {
  color: var(--red);
}

.site-nav a:nth-child(3)::before {
  color: #62c450;
}

.site-nav a:hover::before {
  transform: translateY(-50%) scale(1.25);
}

.button {
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 32px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-outline {
  border-color: var(--blue);
  background: var(--white);
  color: var(--black);
}

.button-light {
  background: var(--white);
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(420px, 1fr);
  align-items: end;
  gap: 62px;
  padding: 24px 0 46px;
}

.hero h1 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 430px;
  margin: 16px 0 20px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-actions .button {
  min-width: 145px;
}

.hero-media {
  overflow: hidden;
  aspect-ratio: 714 / 453;
  border-radius: var(--radius);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blue-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  min-height: 242px;
  padding: 54px 80px 72px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(19, 177, 90, 0.98), rgba(19, 177, 90, 0.86)),
    url("assets/footer-texture.png") center / cover no-repeat,
    var(--green);
  color: var(--white);
}

.blue-band h2,
.blue-band p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.blue-band h2 {
  max-width: 360px;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.08;
}

.blue-band p {
  max-width: 630px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.blue-band strong {
  position: absolute;
  right: -13px;
  bottom: -3px;
  color: var(--white);
  font-size: clamp(58px, 9.2vw, 122px);
  font-weight: 800;
  line-height: 0.8;
}

.interrupts {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 70px;
  align-items: center;
  padding: 60px 0;
}

.interrupts h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.12;
}

.interrupt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.interrupt-cards article {
  min-height: 140px;
  padding: 24px;
  border-radius: 12px;
  background: #f3f3f3;
}

.card-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 8px;
  background: rgba(150, 86, 226, 0.14);
  color: var(--purple);
  font-size: 22px;
  font-weight: 800;
}

.interrupt-cards h3,
.interrupt-cards p {
  margin: 0;
}

.interrupt-cards h3 {
  font-size: 16px;
}

.interrupt-cards p {
  margin-top: 8px;
  color: #4c4c4c;
  font-size: 13px;
  line-height: 1.45;
}

.manifesto {
  display: grid;
  grid-template-columns: 430px 1px 1fr;
  gap: 54px;
  align-items: center;
  min-height: 287px;
  padding: 54px 110px;
  border-radius: var(--radius);
  background: #030b18;
  color: var(--white);
}

.manifesto h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.12;
}

.manifesto h2 span {
  display: block;
}

.manifesto h2 span:last-child,
.manifesto strong {
  color: var(--blue);
}

.manifesto-rule {
  width: 1px;
  height: 173px;
  background: var(--blue);
}

.manifesto-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  align-items: start;
  max-width: 620px;
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.manifesto-copy > span:first-child {
  flex-basis: 100%;
}

.manifesto-copy .theyre {
  color: var(--white);
}

.word-rotator {
  position: relative;
  display: inline-grid;
  min-width: 180px;
  height: 28px;
  overflow: hidden;
  font-weight: 800;
  color: var(--blue);
}

.word-rotator span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(100%);
  animation: rotateWords 8s infinite;
}

.word-rotator span:nth-child(2) {
  animation-delay: 2s;
}

.word-rotator span:nth-child(3) {
  animation-delay: 4s;
}

.word-rotator span:nth-child(4) {
  animation-delay: 6s;
}

@keyframes rotateWords {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  8%,
  24% {
    opacity: 1;
    transform: translateY(0);
  }

  32%,
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

.why {
  padding: 98px 0 72px;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 86px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 43px;
}

.why-grid article {
  display: flex;
  flex-direction: column;
  min-height: 291px;
  padding: 28px 18px 22px;
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.why-grid article img {
  width: 100%;
  height: 145px;
  margin-bottom: auto;
  object-fit: contain;
  object-position: center;
}

.why-grid h3,
.why-grid p {
  margin: 0;
}

.why-grid h3 {
  font-size: 20px;
}

.why-grid p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
}

.case-studies {
  padding: 48px 0 66px;
}

.eyebrow {
  margin: 0 0 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-studies > h2 {
  margin: 0 0 40px;
  text-align: center;
  font-size: 40px;
}

.case-switcher {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: stretch;
}

.case-stage {
  position: relative;
  min-height: 760px;
}

.feature-case {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  gap: 28px;
  min-height: 760px;
  padding: 24px;
  border-radius: 16px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.985);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.case-logo-corner {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 3;
  display: flex;
  width: 174px;
  height: 88px;
  align-items: flex-start;
}

.case-logo-corner img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left top;
}

.feature-case.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.case-collage {
  position: relative;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.ocsc-collage,
.techcare-media,
.altering-media,
.parbar-media {
  display: grid;
  gap: 12px;
}

.ocsc-collage {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 122px repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ocsc-logo {
  position: absolute;
  left: 24px;
  top: 0;
  z-index: 2;
  width: 66px;
  height: 122px;
  object-fit: contain;
}

.case-collage .tile,
.simple-case-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 6px 4px 4px rgba(248, 185, 56, 0.29);
}

.tile-marisol {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
}

.tile-trish {
  grid-column: 3;
  grid-row: 2;
}

.tile-gnarly {
  grid-column: 4;
  grid-row: 2 / 4;
}

.tile-team {
  grid-column: 1 / 3;
  grid-row: 4;
}

.tile-wristbands {
  grid-column: 3;
  grid-row: 3;
}

.tile-fan {
  grid-column: 4;
  grid-row: 4;
}

.simple-case-media {
  overflow: hidden;
  border-radius: 18px;
  background: #151515;
}

.simple-case-media img {
  position: static;
  box-shadow: none;
}

.techcare-media img,
.altering-media img,
.altering-media video,
.parbar-media video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 6px 4px 4px rgba(248, 185, 56, 0.29);
}

.techcare-media {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 120px 1.05fr 0.9fr;
}

.media-techcare-hero {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  height: 100%;
}

.media-techcare-article {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  height: 100%;
}

.media-techcare-linkedin {
  grid-column: 1;
  grid-row: 3;
  width: 100%;
  height: 100%;
}

.media-techcare-post {
  grid-column: 2;
  grid-row: 3;
  width: 100%;
  height: 100%;
}

.altering-media {
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-rows: 118px 1fr 124px;
}

.media-altering-main {
  grid-column: 2;
  grid-row: 2 / 4;
  width: 100%;
  height: 100%;
}

.download-stat {
  grid-column: 1 / 3;
  grid-row: 3;
  align-self: end;
  z-index: 3;
  width: 62%;
  padding: 18px 22px;
  border-radius: 12px;
  background: #151515;
  color: var(--white);
}

.download-stat small {
  display: block;
  margin-bottom: 14px;
  color: #8f8f8f;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-stat strong {
  font-size: 36px;
}

.parbar-media {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 118px repeat(2, minmax(0, 1fr));
}

.media-parbar-video {
  width: 100%;
  height: 100%;
}

.media-parbar-video:first-child {
  grid-column: 1;
  grid-row: 2 / 4;
}

.media-parbar-video:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}

.media-parbar-video:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

.media-parbar-video:nth-child(4) {
  grid-column: 2;
  grid-row: 3;
}

.media-parbar-video:nth-child(5) {
  grid-column: 3;
  grid-row: 3;
}

.case-content {
  display: flex;
  flex-direction: column;
  padding: 4px 0 0;
}

.case-content h3 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  text-align: right;
}

.case-content p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.14;
}

.case-content p strong {
  color: var(--yellow);
}

.feature-case[data-case="ocsc"] .case-content h3 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.55vw, 46px);
}

.feature-case[data-case="ocsc"] .case-content p {
  font-size: 16px;
  line-height: 1.12;
}

.feature-case[data-case="ocsc"] .metrics {
  margin-top: auto;
}

.case-card-altering .case-logo-corner img {
  max-width: 165px;
}

.case-card-parbar .case-logo-corner {
  width: 167px;
  height: 88px;
}

.case-quote {
  margin: auto 10px 0;
  padding: 22px 28px;
  border: 1px solid #2a2a2a;
  border-radius: 29px;
  background: rgba(21, 21, 21, 0.68);
  box-shadow: 6px 4px 4px rgba(248, 185, 56, 0.46);
  color: #f5f5f5;
  font-size: 15px;
  font-style: italic;
  line-height: 1.18;
  text-align: right;
}

.case-quote::before {
  content: "“";
  float: left;
  color: var(--yellow);
  font-size: 72px;
  font-style: normal;
  font-weight: 800;
  line-height: 0.75;
}

.case-quote cite {
  display: block;
  margin-top: 18px;
  font-style: italic;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: auto 36px 0;
}

.metrics span {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 78px;
  padding: 12px 20px;
  border: 1px solid #5b5b5b;
  border-radius: 9px;
  background: #4a4a4a;
  color: var(--white);
}

.metrics small {
  color: #efefef;
  font-size: 13px;
}

.metrics strong {
  font-size: 28px;
}

.case-result {
  margin-top: 8px;
  color: var(--yellow);
  font-size: 18px;
  line-height: 1.12;
  text-align: center;
}

.case-tabs {
  display: grid;
  gap: 27px;
}

.case-tab {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  padding: 18px;
  border: 0;
  border-radius: 16px;
  background: #e6e6e6;
  color: var(--black);
  cursor: pointer;
  font: inherit;
  text-align: right;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.case-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.case-tab.is-active {
  display: none;
  opacity: 0.45;
  cursor: default;
}

.case-tab img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.case-tab[data-case-tab="ocsc"] img {
  object-fit: contain;
  padding: 28px;
}

.case-tab span {
  position: relative;
  display: block;
  margin-left: auto;
  max-width: 160px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.12;
}

.brand-strip {
  max-width: 930px;
  margin: 76px auto 0;
  text-align: center;
}

.brand-strip h2 {
  margin: 0;
  font-size: 34px;
}

.brand-strip p {
  margin: 8px 0 24px;
}

.logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px 34px;
  align-items: center;
}

.logos img {
  max-height: 58px;
  width: 100%;
  object-fit: contain;
}

.how {
  padding: 52px 0 64px;
}

.how-panel {
  position: relative;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 80px;
  overflow: hidden;
  min-height: 595px;
  padding: 94px 92px;
  border-radius: 16px;
  background:
    url("assets/How_background.png") center / cover no-repeat,
    var(--purple);
  color: var(--white);
}

.how-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(150, 86, 226, 0.76), rgba(150, 86, 226, 0.18) 64%, rgba(150, 86, 226, 0.04));
  pointer-events: none;
}

.steps-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.steps-copy h3,
.steps-copy p {
  margin: 0;
}

.steps-copy h3 {
  font-size: 16px;
}

.steps-copy p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.steps-title {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  display: grid;
  justify-items: end;
  font-size: clamp(58px, 8vw, 79px);
  font-weight: 800;
  line-height: 0.92;
  text-align: right;
}

.footballer-icon {
  width: clamp(54px, 7vw, 86px);
  height: auto;
  margin: 0 22px 8px 0;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 56px;
  align-items: center;
  min-height: 149px;
  padding: 25px 44px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 74, 52, 0.97), rgba(255, 74, 52, 0.78)),
    url("assets/footer-texture.png") center / cover no-repeat,
    var(--red);
  color: var(--white);
}

.final-cta h2,
.final-cta p {
  margin: 0;
}

.final-cta h2 {
  font-size: 32px;
  line-height: 1.18;
}

.final-cta p {
  font-size: 20px;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 64px 0 56px;
  font-size: 20px;
  font-weight: 800;
}

.site-footer a:first-child {
  justify-self: start;
}

.site-footer a:last-child {
  justify-self: end;
}

.footer-brand {
  display: inline-flex;
  width: 166px;
  height: 116px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.privacy-page {
  background: #f6f7f9;
}

.privacy-main {
  padding: 44px 0 24px;
}

.privacy-hero {
  padding: 64px 0 28px;
}

.privacy-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.privacy-back:hover {
  color: var(--black);
}

.privacy-hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 800;
  line-height: 0.95;
}

.privacy-hero p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.privacy-card {
  border: 1px solid #e1e4ea;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.08);
}

.privacy-content {
  max-width: none;
  padding: clamp(28px, 5vw, 56px);
  color: #334155;
  font-size: 16px;
  line-height: 1.75;
}

.privacy-content > *:first-child {
  margin-top: 0;
}

.privacy-content h1 {
  display: none;
}

.privacy-content h2 {
  margin: 42px 0 16px;
  color: #0f172a;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.18;
}

.privacy-content h3 {
  margin: 28px 0 12px;
  color: #0f172a;
  font-size: 20px;
}

.privacy-content p,
.privacy-content ul,
.privacy-content ol {
  margin: 0 0 18px;
}

.privacy-content ul,
.privacy-content ol {
  padding-left: 24px;
}

.privacy-content li {
  margin: 8px 0;
}

.privacy-content a {
  color: #0055db;
  font-weight: 700;
}

.privacy-content strong {
  color: #0f172a;
}

.privacy-content section {
  border-top: 1px solid #e2e8f0;
  margin-top: 36px;
  padding-top: 34px;
}

.privacy-content section:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.privacy-content .not-prose {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.privacy-content .not-prose > div {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  padding: 20px;
}

.privacy-content .not-prose h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.privacy-content .not-prose:has(a[href^="#what-information-do-we-collect"]) {
  display: block;
}

.privacy-content .not-prose:has(a[href^="#what-information-do-we-collect"]) > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  border: 0;
  background: transparent;
  padding: 0;
}

.privacy-content .not-prose:has(a[href^="#what-information-do-we-collect"]) a {
  display: block;
  border: 1px solid #d8dee8;
  border-radius: 12px;
  background: #f8fafc;
  padding: 12px 14px;
  color: #334155;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.privacy-content .not-prose:has(a[href^="#what-information-do-we-collect"]) a:hover {
  border-color: #0055db;
  background: #eef5ff;
  color: #0055db;
}

.privacy-content .overflow-x-auto {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
}

.privacy-content table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
  line-height: 1.45;
}

.privacy-content th,
.privacy-content td {
  border: 1px solid #cbd5e1;
  padding: 13px 15px;
  vertical-align: top;
}

.privacy-content th {
  background: #eef2f7;
  color: #0f172a;
  font-weight: 800;
}

.privacy-content tbody tr:nth-child(even) td {
  background: #f8fafc;
}

.privacy-content td:first-child {
  color: #0f172a;
  font-weight: 800;
}

.privacy-content td:last-child {
  width: 110px;
  text-align: center;
  font-weight: 800;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(920px, calc(100vw - 36px));
  }

  .site-header {
    gap: 18px;
  }

  .brand {
    width: 180px;
  }

  .brand::after {
    left: 18px;
    font-size: 27px;
  }

  .site-nav {
    gap: 36px;
  }

  .hero,
  .interrupts,
  .feature-case,
  .how-panel,
  .blue-band,
  .manifesto,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
  }

  .hero-media {
    order: -1;
  }

  .interrupt-cards,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto {
    gap: 28px;
    padding: 46px;
  }

  .manifesto-rule {
    width: 100%;
    height: 1px;
  }

  .case-switcher {
    grid-template-columns: 1fr;
  }

  .case-stage {
    min-height: 760px;
  }

  .case-tabs {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .case-tab {
    min-height: 170px;
  }

  .feature-case {
    grid-template-columns: 1fr;
  }

  .case-collage {
    min-height: 360px;
  }

  .steps-title {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 540px);
  }

  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open {
    flex-wrap: wrap;
  }

  .site-header.is-open .site-nav {
    display: grid;
    flex-basis: 100%;
    gap: 20px;
    padding: 18px 0;
  }

  .site-header.is-open .header-cta {
    display: inline-flex;
  }

  .brand {
    width: 168px;
    height: 52px;
  }

  .brand::after {
    left: 17px;
    font-size: 25px;
  }

  .hero {
    gap: 28px;
    padding-top: 18px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p,
  .section-heading p {
    font-size: 18px;
  }

  .hero-actions {
    gap: 14px;
  }

  .blue-band,
  .manifesto,
  .how-panel,
  .final-cta {
    padding: 28px;
  }

  .blue-band strong {
    position: static;
    font-size: 56px;
  }

  .interrupt-cards,
  .why-grid,
  .case-tabs,
  .logos,
  .metrics {
    grid-template-columns: 1fr;
  }

  .case-stage {
    min-height: 1120px;
  }

  .feature-case {
    position: relative;
    display: none;
    min-height: auto;
    padding: 18px;
  }

  .feature-case.is-active {
    display: grid;
  }

  .case-content h3 {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .case-content h3 {
    text-align: left;
  }

  .case-content p {
    font-size: 16px;
  }

  .metrics {
    margin: 18px 0 0;
  }

  .ocsc-logo {
    width: 58px;
    height: 106px;
  }

  .case-tab {
    min-height: 132px;
  }

  .logos {
    gap: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    text-align: center;
  }

  .site-footer a:first-child,
  .site-footer a:last-child {
    justify-self: center;
  }

  .privacy-content .not-prose:has(a[href^="#what-information-do-we-collect"]) > div {
    grid-template-columns: 1fr;
  }
}
