:root {
  color-scheme: light;
  --ink: #090e1f;
  --ink-soft: #1f2b45;
  --muted: #667085;
  --paper: #f3f7fc;
  --surface: #ffffff;
  --line: #d8e0ec;
  --blue: #1256d8;
  --blue-deep: #0d2d73;
  --cyan: #18b7d4;
  --orange: #ff6b1a;
  --green: #0d9276;
  --gold: #e0b525;
  --shadow-soft: 0 18px 44px rgba(15, 23, 42, 0.1);
  --shadow-strong: 0 28px 80px rgba(15, 23, 42, 0.2);
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, var(--paper) 42%, #ffffff 100%);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.section-anchor {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.section-inner {
  width: min(1480px, calc(100% - 72px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 42px;
  color: #ffffff;
  transition:
    min-height 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 74px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 0;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 10px;
}

.brand span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.08;
}

.brand strong {
  font-size: 22px;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 13px;
  opacity: 0.74;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.main-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 9px 13px;
  color: currentColor;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
  outline: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible {
  border-color: rgba(18, 86, 216, 0.16);
  background: rgba(18, 86, 216, 0.08);
}

.main-nav .nav-cta {
  margin-left: 8px;
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(255, 107, 26, 0.28);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  background: #ff7a2f;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: currentColor;
  padding: 8px 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: calc(var(--header-h) + 36px) 42px 28px;
  background:
    linear-gradient(90deg, rgba(7, 10, 22, 0.98) 0%, rgba(8, 13, 30, 0.95) 44%, rgba(9, 14, 31, 0.82) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 72px),
    #090e1f;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(18, 86, 216, 0.18) 38% 39%, transparent 39% 100%),
    linear-gradient(300deg, transparent 0 62%, rgba(255, 107, 26, 0.15) 62% 63%, transparent 63% 100%);
  opacity: 0.85;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0), var(--paper));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 530px;
  align-items: center;
  gap: clamp(24px, 4vw, 76px);
}

.hero-copy {
  flex: 1 1 540px;
  min-width: 340px;
  max-width: 780px;
}

.eyebrow,
.section-kicker,
.case-type {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(58px, 6vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.25vw, 23px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 14px 22px;
  font-weight: 950;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(255, 107, 26, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-stage {
  position: relative;
  flex: 1.12 1 680px;
  min-width: 520px;
  height: clamp(420px, 34vw, 570px);
}

.hero-screen {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

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

.hero-screen-main {
  right: 8%;
  bottom: 3%;
  z-index: 4;
  width: 74%;
  aspect-ratio: 16 / 10;
  transform: rotate(3deg);
}

.hero-screen-top {
  top: 0;
  right: -9%;
  z-index: 1;
  width: 70%;
  aspect-ratio: 16 / 10;
  opacity: 0.8;
  transform: rotate(-4deg);
}

.hero-screen-left {
  top: 24%;
  left: 0;
  z-index: 3;
  width: 50%;
  aspect-ratio: 16 / 10;
  transform: rotate(5deg);
}

.hero-screen-right {
  right: -15%;
  bottom: 18%;
  z-index: 2;
  width: 44%;
  aspect-ratio: 16 / 10;
  transform: rotate(-2deg);
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: flex;
  max-width: 880px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.hero-proof div {
  flex: 1 1 220px;
  min-width: 0;
  padding: 20px 24px 10px 0;
}

.hero-proof dt {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 950;
  line-height: 1;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.intro-band,
.portfolio-section,
.product-section,
.services-section,
.process-section,
.contact-section {
  padding: 82px 0;
}

.intro-band {
  background:
    linear-gradient(180deg, #edf4ff 0%, #f7fbff 100%);
}

.intro-layout {
  display: flex;
  align-items: stretch;
  gap: clamp(28px, 5vw, 76px);
}

.intro-label {
  flex: 0 1 300px;
  min-width: 220px;
}

.intro-main {
  display: flex;
  flex: 1 1 900px;
  min-width: 0;
  flex-direction: column;
  gap: 22px;
}

.intro-main h2 {
  flex: 0 1 auto;
  max-width: 960px;
  margin: 0;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.04;
}

.intro-main p {
  flex: 0 1 auto;
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.value-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.value-strip article {
  display: flex;
  flex: 1 1 250px;
  min-width: 220px;
  flex-direction: column;
  border: 1px solid rgba(18, 86, 216, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 22px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.value-strip span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
}

.value-strip strong {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.12;
}

.value-strip p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.portfolio-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 76px);
  margin-bottom: 26px;
}

.section-heading-main {
  flex: 1 1 640px;
  min-width: 0;
}

.section-heading h2,
.product-copy h2,
.process-intro h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.05;
}

.section-heading > p {
  flex: 0.78 1 360px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink-soft);
  padding: 9px 15px;
  cursor: pointer;
  font-weight: 950;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
  outline: none;
}

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

.case-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 18px;
}

.case-card {
  display: flex;
  flex: 0 1 calc((100% - 36px) / 3);
  max-width: calc((100% - 36px) / 3);
  min-width: 0;
  min-height: 452px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.065);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.case-card-featured {
  flex-grow: 0;
  flex-basis: calc((100% - 36px) / 3);
}

.case-card.is-hidden {
  display: none;
}

.case-card:hover,
.case-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(18, 86, 216, 0.28);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  outline: none;
}

.case-visual {
  position: relative;
  display: flex;
  min-height: 205px;
  aspect-ratio: 16 / 9;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background: #101827;
}

.case-card-featured .case-visual {
  min-height: 205px;
}

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

.case-visual-cover img {
  object-fit: cover;
}

.case-visual-contained {
  align-items: center;
  justify-content: center;
  padding: 0;
  background:
    linear-gradient(145deg, #eef3fb, #ffffff 46%, #e9eef7),
    #f5f7fb;
}

.case-visual-contained img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: none;
}

.case-visual-portrait {
  padding: 24px;
  background: linear-gradient(135deg, rgba(9, 14, 31, 0.95), rgba(13, 45, 115, 0.78));
}

.case-visual-portrait img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.58;
}

.visual-title-overlay {
  position: relative;
  z-index: 2;
  max-width: 330px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 950;
  line-height: 1.02;
}

.case-visual em {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 8px 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.case-card:hover .case-visual em,
.case-card:focus-visible .case-visual em {
  opacity: 1;
  transform: translateY(0);
}

.case-visual-mockup {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  padding: 26px;
  color: #ffffff;
}

.case-visual-mockup span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.case-visual-mockup strong {
  max-width: 390px;
  font-size: 31px;
  line-height: 1.08;
}

.mock-window {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42%;
  min-width: 150px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.mock-window::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 46%;
  height: 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 28px 0 rgba(255, 255, 255, 0.22),
    0 56px 0 rgba(255, 255, 255, 0.22);
}

.mock-window i {
  position: absolute;
  right: 18px;
  width: 36px;
  height: 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.22);
}

.mock-window i:nth-child(1) {
  top: 18px;
}

.mock-window i:nth-child(2) {
  top: 46px;
}

.mock-window i:nth-child(3) {
  top: 74px;
}

.visual-council {
  background:
    linear-gradient(135deg, rgba(13, 69, 57, 0.98), rgba(16, 146, 118, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 34px);
}

.visual-artist {
  background:
    linear-gradient(135deg, rgba(132, 24, 58, 0.98), rgba(255, 107, 26, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 32px);
}

.visual-football {
  background:
    linear-gradient(135deg, rgba(14, 53, 26, 0.98), rgba(213, 177, 50, 0.92)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 32px);
}

.visual-future {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 107, 26, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(5, 9, 20, 0.98), rgba(13, 55, 145, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 36px);
}

.case-body {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.case-body h3 {
  min-width: 0;
  margin: 0;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.case-body p:not(.case-type) {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15.5px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.tag-row span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 6px;
  background: #edf3ff;
  color: var(--blue-deep);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 950;
}

.product-section {
  background:
    linear-gradient(180deg, #eaf1fb 0%, #f3f8ff 100%);
}

.product-layout {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.product-copy {
  flex: 0.72 1 430px;
  min-width: 320px;
}

.product-copy h2 {
  font-size: clamp(34px, 3.4vw, 54px);
}

.product-copy p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-weight: 850;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--green);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 2px solid var(--orange);
  color: var(--blue-deep);
  font-weight: 950;
}

.product-shot {
  flex: 1.28 1 680px;
  min-width: 0;
  margin: 0;
}

.product-shot img {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.product-shot figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.services-section {
  background:
    linear-gradient(135deg, #070b18 0%, #0b1227 52%, #0d2d73 140%);
  color: #ffffff;
}

.services-section .section-heading h2,
.services-section .section-heading > p {
  color: #ffffff;
}

.services-section .section-heading > p {
  opacity: 0.76;
}

.services-section .section-kicker {
  color: var(--gold);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-item {
  display: flex;
  flex: 1 1 360px;
  min-height: 220px;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 24px;
}

.service-code {
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
}

.service-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
}

.service-item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.service-item p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15.5px;
}

.process-section {
  background: #ffffff;
}

.process-layout {
  display: flex;
  align-items: flex-start;
  gap: clamp(34px, 6vw, 92px);
}

.process-intro {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  flex: 0 1 470px;
  min-width: 300px;
}

.process-intro h2 {
  font-size: clamp(34px, 3.4vw, 54px);
}

.process-list {
  display: flex;
  flex: 1 1 760px;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 70px);
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-number {
  flex: 0 0 70px;
  color: var(--orange);
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
}

.process-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.process-copy strong {
  display: block;
  font-size: 25px;
  line-height: 1.15;
}

.process-copy p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-section {
  background:
    linear-gradient(100deg, rgba(9, 14, 31, 0.98), rgba(17, 58, 145, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 70px),
    #0a1021;
  color: #ffffff;
}

.contact-layout {
  display: flex;
  align-items: center;
  gap: clamp(36px, 6vw, 110px);
}

.contact-copy {
  flex: 1 1 760px;
  min-width: 0;
}

.contact-copy h2,
.contact-copy .section-kicker {
  color: #ffffff;
}

.contact-copy .section-kicker {
  color: var(--orange);
}

.contact-copy p {
  max-width: 880px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.button-secondary.light {
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.company-card {
  display: flex;
  flex: 0 1 450px;
  min-width: 320px;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
}

.company-card strong {
  color: #ffffff;
  font-size: 24px;
}

.site-footer {
  padding: 24px 0;
  background: #050914;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

@media (max-width: 1180px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    padding-inline: 24px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    padding: 10px;
    box-shadow: var(--shadow-strong);
  }

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

  .main-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-inline: 24px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    flex: 0 1 auto;
    max-width: 880px;
  }

  .hero-stage {
    flex: 0 1 auto;
    width: min(100%, 860px);
    min-width: 0;
    align-self: center;
  }

  .intro-layout,
  .intro-main,
  .section-heading,
  .product-layout,
  .process-layout,
  .contact-layout {
    flex-direction: column;
  }

  .intro-label,
  .intro-main,
  .intro-main h2,
  .intro-main p,
  .section-heading-main,
  .section-heading > p,
  .product-copy,
  .product-shot,
  .process-intro,
  .process-list,
  .contact-copy,
  .company-card {
    flex-basis: auto;
    min-width: 0;
    width: 100%;
  }

  .process-intro {
    position: static;
  }

  .section-heading {
    align-items: flex-start;
  }

  .case-card,
  .case-card-featured {
    flex-basis: calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 760px) {
  .section-inner {
    width: min(1480px, calc(100% - 32px));
  }

  .brand img {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 34px) 16px 28px;
  }

  .hero-inner {
    min-height: auto;
    width: 100%;
    overflow: hidden;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 62px);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stage {
    flex: 0 0 250px;
    max-width: 100%;
    height: 250px;
    margin-top: 22px;
    overflow: visible;
  }

  .hero-screen-main {
    width: 86%;
    right: 6%;
    top: 28px;
    bottom: auto;
  }

  .hero-screen-top,
  .hero-screen-right {
    display: none;
  }

  .hero-screen-left {
    left: -4%;
    top: 0;
    width: 52%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border-top: 0;
  }

  .hero-proof div {
    flex-basis: auto;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px;
  }

  .hero-proof dt {
    font-size: 24px;
  }

  .hero-proof dd {
    font-size: 11px;
    line-height: 1.15;
  }

  .intro-band,
  .portfolio-section,
  .product-section,
  .services-section,
  .process-section,
  .contact-section {
    padding: 64px 0;
  }

  .intro-label,
  .intro-main h2,
  .intro-main p,
  .section-heading-main,
  .section-heading > p,
  .product-copy,
  .product-shot,
  .process-intro,
  .process-list,
  .contact-copy,
  .company-card {
    flex-basis: auto;
    min-width: 0;
    width: 100%;
  }

  .section-heading h2,
  .product-copy h2,
  .process-intro h2,
  .contact-copy h2,
  .intro-main h2 {
    font-size: 34px;
  }

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

  .filter-button {
    width: 100%;
  }

  .case-card,
  .case-card-featured {
    min-width: 0;
    min-height: auto;
    flex-basis: 100%;
    max-width: none;
  }

  .case-card-featured .case-visual,
  .case-visual {
    min-height: 220px;
  }

  .case-body {
    padding: 22px;
  }

  .case-body h3 {
    font-size: 24px;
  }

  .case-visual-mockup strong,
  .visual-title-overlay {
    font-size: 25px;
  }

  .mock-window {
    opacity: 0.45;
  }

  .service-item {
    min-height: 230px;
    flex-basis: 100%;
  }

  .process-list li {
    gap: 18px;
  }

  .process-number {
    flex-basis: 52px;
    font-size: 30px;
  }

  .process-copy strong {
    font-size: 22px;
  }

  .process-copy p {
    font-size: 16px;
  }

  .company-card {
    padding: 24px;
  }
}

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

  .hero-stage {
    flex-basis: 260px;
    height: 260px;
  }

  .case-visual-contained {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
