:root {
  --red: #c8102e;
  --red-dark: #920d20;
  --ink: #101113;
  --charcoal: #222428;
  --graphite: #3a3d42;
  --muted: #70757d;
  --paper: #ffffff;
  --ivory: #f5f0ea;
  --porcelain: #faf8f5;
  --line: #e8dfd6;
  --gold: #9a7b45;
  --glass: rgba(255, 255, 255, 0.12);
  --glass-strong: rgba(255, 255, 255, 0.22);
  --glass-dark: rgba(12, 14, 18, 0.34);
  --glass-border: rgba(255, 255, 255, 0.52);
  --glass-shadow: 0 22px 70px rgba(16, 17, 19, 0.12);
  --max: 1320px;
  --ease: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.95), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(200, 16, 46, 0.08), transparent 34%),
    linear-gradient(135deg, #fbf9f5 0%, #f0ece6 48%, #f7f2ee 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.74), transparent 18% 42%, rgba(200, 16, 46, 0.045) 62%, transparent 78%),
    radial-gradient(circle at 22% 74%, rgba(255, 255, 255, 0.82), transparent 26%),
    radial-gradient(circle at 78% 64%, rgba(154, 123, 69, 0.1), transparent 24%);
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.keep-together {
  white-space: nowrap;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.14)),
    rgba(250, 248, 245, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px) saturate(1.7) contrast(1.08);
  box-shadow: 0 12px 34px rgba(16, 17, 19, 0.06), inset 0 -1px 0 rgba(255, 255, 255, 0.34);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  color: var(--ink);
  padding: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  font-size: 0.98rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--graphite);
  font-size: 0.91rem;
  font-weight: 760;
  border-radius: 999px;
  transition: color var(--ease), background var(--ease), box-shadow var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.nav-action {
  margin-left: 10px;
  border: 1px solid rgba(200, 16, 46, 0.42);
  color: var(--red) !important;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px) saturate(1.6);
}

.nav-action:hover {
  color: #fff !important;
  background: rgba(200, 16, 46, 0.82);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px) saturate(1.65);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: block;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.72), rgba(5, 6, 8, 0.34) 45%, rgba(5, 6, 8, 0.04)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.76), rgba(5, 6, 8, 0.36) 34%, transparent 58%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
  transform: translateZ(0);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1320px);
  max-width: none;
  margin: 0 auto;
  padding: 54px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--red);
}

.hero h1 {
  margin-top: 24px;
  max-width: 920px;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.hero-lede {
  max-width: min(1180px, 78vw);
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.16rem, 2.2vw, 1.58rem);
  line-height: 1.42;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.24);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 32%),
    rgba(16, 17, 19, 0.58);
  color: #fff;
  font-weight: 850;
  backdrop-filter: blur(8px) saturate(1.6) contrast(1.08);
  box-shadow: 0 16px 42px rgba(16, 17, 19, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(200, 16, 46, 0.8);
  box-shadow: 0 18px 54px rgba(200, 16, 46, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button.secondary {
  border-color: rgba(16, 17, 19, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.14)),
    rgba(255, 255, 255, 0.2);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(16, 17, 19, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.button.secondary:hover {
  color: #fff;
}

.hero-meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 46px);
  width: min(calc(100% - 96px), var(--max));
  margin: 50px auto 0;
  padding: 0 0 62px;
  overflow: visible;
}

.hero-meta::before {
  content: none;
}

.hero-meta div {
  position: relative;
  padding: 20px 16px 8px 24px;
  border: 0;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 620;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.68);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08) 62%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 52%);
}

.hero-meta div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.hero-meta div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 22px rgba(200, 16, 46, 0.5);
}

.hero-meta div::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 50%);
  mix-blend-mode: screen;
  opacity: 0.5;
}

.hero-meta strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.78), rgba(8, 9, 11, 0.34), rgba(8, 9, 11, 0.12));
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 96px), 1540px);
  max-width: 1540px;
  margin-bottom: 48px;
  padding: 0;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.page-hero h1 {
  margin-top: 22px;
  max-width: 1540px;
  font-size: clamp(2.7rem, 4.55vw, 4.95rem);
  font-weight: 880;
}

.page-lede {
  max-width: 820px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.section {
  position: relative;
  padding: 94px 0;
}

.section:not(.dark)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 255, 255, 0.72), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.54), transparent 24%);
}

.section.tight {
  padding: 64px 0;
}

.section.dark {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.12), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(200, 16, 46, 0.18), transparent 28%),
    linear-gradient(135deg, #0d0f12 0%, #17191d 100%);
  color: #fff;
}

.section-kicker {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
  padding: 0;
}

.section-header-with-media {
  align-items: stretch;
}

.section-header-visual {
  display: grid;
  gap: 20px;
  align-content: start;
}

.section-header-visual img {
  width: 100%;
  min-height: 260px;
  aspect-ratio: 2.16 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.dark .section-header {
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.section-header h2 {
  margin-top: 12px;
  max-width: 980px;
  font-size: clamp(2.25rem, 4.8vw, 5rem);
  font-weight: 850;
}

.section-header p,
.muted {
  color: var(--muted);
}

.section-header > p,
.section-header-visual p {
  max-width: 680px;
}

.dark .section-header p,
.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 52px;
  align-items: center;
}

.editorial-split > .copy-stack {
  padding: 0;
}

.editorial-split.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px) saturate(1.5);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.14), transparent 36%),
    repeating-linear-gradient(108deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 86px);
  mix-blend-mode: screen;
}

.image-frame.small {
  min-height: 360px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 6px;
  background: var(--red);
}

.copy-stack {
  display: grid;
  gap: 22px;
}

.copy-stack h2 {
  font-size: clamp(2.15rem, 4vw, 4.5rem);
  font-weight: 850;
}

.copy-stack p {
  color: var(--muted);
  font-size: 1.07rem;
}

.statement {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.8vw, 2.8rem);
  line-height: 1.18;
  font-weight: 820;
}

.signal-grid,
.capability-grid,
.service-grid,
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.signal-card,
.capability-card,
.service-card,
.model-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12) 54%, rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px) saturate(1.65) contrast(1.06);
  box-shadow: 0 18px 52px rgba(16, 17, 19, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.signal-card:hover,
.capability-card:hover,
.service-card:hover,
.model-card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.16) 54%, rgba(255, 255, 255, 0.32)),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(16, 17, 19, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dark .signal-card,
.dark .capability-card,
.dark .model-card {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035) 56%, rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.dark .signal-card:hover,
.dark .capability-card:hover,
.dark .model-card:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05) 56%, rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.signal-card strong,
.capability-card strong,
.service-card strong,
.model-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-card h3,
.capability-card h3,
.service-card h3,
.model-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.feature-band {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: end;
  color: #fff;
  background: #111;
}

.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 7, 9, 0.82), rgba(6, 7, 9, 0.58) 42%, rgba(6, 7, 9, 0.18)),
    linear-gradient(0deg, rgba(6, 7, 9, 0.72), rgba(6, 7, 9, 0.12) 58%, rgba(6, 7, 9, 0.26));
}

.feature-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), var(--max));
  max-width: var(--max);
  margin-bottom: 64px;
  padding: 0;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.feature-band h2 {
  max-width: 980px;
  margin-top: 12px;
  font-size: clamp(2.3rem, 5vw, 5rem);
}

.feature-band p {
  max-width: 940px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: 36px;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1) 56%, rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px) saturate(1.65) contrast(1.06);
  box-shadow: 0 18px 54px rgba(16, 17, 19, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.service-detail:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

.service-detail h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

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

.service-meta div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.12) 58%, rgba(255, 255, 255, 0.26)),
    rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px) saturate(1.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-meta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-suite-section {
  padding-top: 88px;
}

.service-suite-header {
  grid-template-columns: 1fr;
  gap: 22px;
}

.service-suite-header h2 {
  max-width: min(100%, 1120px);
}

.service-suite-header > p {
  max-width: min(100%, 920px);
  margin-top: 0;
}

.service-suite {
  display: grid;
  gap: clamp(58px, 7vw, 96px);
  margin-top: 54px;
}

.service-module {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
  padding-bottom: clamp(58px, 6vw, 82px);
  border-bottom: 1px solid rgba(16, 17, 19, 0.1);
}

.service-module:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-module:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.service-module:nth-child(even) .service-module-media {
  order: 2;
}

.service-module-media {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 72px rgba(16, 17, 19, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.service-module-media::before,
.service-module-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.service-module-media::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(0deg, rgba(16, 17, 19, 0.16), transparent 34%);
  mix-blend-mode: screen;
}

.service-module-media::after {
  left: 18px;
  right: 18px;
  top: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
}

.service-module-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.service-module-copy h2 {
  max-width: 980px;
  margin-top: 14px;
  font-size: clamp(2.25rem, 4.6vw, 5.1rem);
}

.service-module-intro {
  max-width: 980px;
  margin-top: 22px;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.service-module-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.service-module-details > div {
  padding-top: 18px;
  border-top: 1px solid rgba(16, 17, 19, 0.14);
}

.service-module-details h3 {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-module-details p,
.service-output-list {
  color: var(--muted);
  font-size: 0.96rem;
}

.service-output-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-output-list li {
  position: relative;
  padding-left: 17px;
}

.service-output-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(200, 16, 46, 0.08);
}

.service-channel-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-channel-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.14);
  color: rgba(16, 17, 19, 0.76);
  font-size: 0.82rem;
  font-weight: 760;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 30px rgba(16, 17, 19, 0.05);
  backdrop-filter: blur(6px) saturate(1.5);
}

.timeline {
  display: grid;
  gap: 16px;
  border-top: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 110px minmax(220px, 0.52fr) minmax(0, 1fr);
  gap: 32px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.1) 56%, rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px) saturate(1.65) contrast(1.06);
  box-shadow: 0 18px 54px rgba(16, 17, 19, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.timeline-step span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(200, 16, 46, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.timeline-step h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.45rem);
}

.approach-process-section {
  padding-top: 88px;
}

.process-header {
  grid-template-columns: 1fr;
  gap: 22px;
}

.process-header h2 {
  max-width: min(100%, 1160px);
}

.process-header > p {
  max-width: min(100%, 960px);
  margin-top: 0;
}

.process-showcase {
  display: grid;
  gap: clamp(58px, 7vw, 92px);
  margin-top: 54px;
}

.process-step-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  padding-bottom: clamp(58px, 6vw, 80px);
  border-bottom: 1px solid rgba(16, 17, 19, 0.1);
}

.process-step-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.process-step-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.process-step-card:nth-child(even) .process-step-media {
  order: 2;
}

.process-step-media {
  position: relative;
  min-height: 390px;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 72px rgba(16, 17, 19, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.process-step-media::before,
.process-step-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.process-step-media::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 34%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(0deg, rgba(16, 17, 19, 0.16), transparent 36%);
  mix-blend-mode: screen;
}

.process-step-media::after {
  left: 18px;
  right: 18px;
  top: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
}

.process-step-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.process-step-copy {
  align-self: center;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border: 1px solid rgba(200, 16, 46, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.16)),
    rgba(255, 255, 255, 0.18);
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84), 0 14px 36px rgba(16, 17, 19, 0.06);
}

.process-step-copy h2 {
  max-width: 920px;
  font-size: clamp(2.15rem, 4vw, 4.35rem);
}

.process-step-copy > p {
  max-width: 980px;
  margin-top: 20px;
  color: var(--graphite);
  font-size: clamp(1.03rem, 1.22vw, 1.18rem);
}

.process-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.process-detail-grid > div {
  padding-top: 18px;
  border-top: 1px solid rgba(16, 17, 19, 0.14);
}

.process-detail-grid h3 {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-detail-grid p {
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: start;
}

.contact-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025) 58%, rgba(255, 255, 255, 0.08)),
    rgba(16, 17, 19, 0.58);
  color: #fff;
  backdrop-filter: blur(8px) saturate(1.65) contrast(1.08);
  box-shadow: var(--glass-shadow);
}

.contact-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.contact-card-body {
  padding: 30px;
}

.contact-card h2 {
  margin-bottom: 16px;
  font-size: 2rem;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card .muted {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list strong {
  color: #fff;
}

.contact-list a {
  color: #fff;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.14) 56%, rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px) saturate(1.7) contrast(1.06);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 0.86rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(200, 16, 46, 0.18);
  border-color: var(--red);
}

.form-note {
  min-height: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.14), transparent 28%),
    radial-gradient(circle at 86% 0%, rgba(200, 16, 46, 0.2), transparent 34%),
    linear-gradient(135deg, #101113 0%, #1a1d22 100%);
  color: #fff;
  padding: 78px 0;
}

.cta-band .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
  padding: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.cta-band h2 {
  max-width: 740px;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
}

.cta-band p {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 58%, rgba(255, 255, 255, 0.08)),
    rgba(8, 10, 13, 0.32);
  backdrop-filter: blur(8px) saturate(1.65) contrast(1.08);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-inquiry-form label {
  color: rgba(255, 255, 255, 0.82);
}

.cta-inquiry-form input,
.cta-inquiry-form select,
.cta-inquiry-form textarea {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cta-inquiry-form input::placeholder,
.cta-inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.cta-inquiry-form select option {
  color: var(--ink);
}

.cta-inquiry-form textarea {
  min-height: 120px;
}

.cta-inquiry-form .button {
  justify-self: start;
}

.cta-inquiry-form .form-note {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(200, 16, 46, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(10, 11, 13, 0.99), rgba(22, 24, 28, 0.99));
  color: rgba(255, 255, 255, 0.7);
  padding: 54px 0 26px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(480px, 920px);
  gap: clamp(44px, 5.6vw, 110px);
  align-items: center;
}

.footer-brand-block {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 850;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand-block p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
}

.footer-email {
  justify-self: start;
  color: #fff;
  font-weight: 820;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  justify-self: start;
  margin-top: 2px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 850;
}

.footer-button:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.14);
}

.footer-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 920px);
  aspect-ratio: 32 / 11;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.footer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.96) contrast(1.04);
  transform: scale(1.02);
}

.footer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 13, 0.12), transparent 42%),
    radial-gradient(circle at 86% 18%, rgba(200, 16, 46, 0.22), transparent 38%);
  pointer-events: none;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
}

@media (max-width: 960px) {
  .section-header,
  .editorial-split,
  .editorial-split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .signal-grid,
  .capability-grid,
  .service-grid,
  .model-grid,
  .service-meta,
  .service-module,
  .service-module:nth-child(even),
  .service-module-details,
  .process-step-card,
  .process-step-card:nth-child(even),
  .process-detail-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-visual {
    justify-self: stretch;
    max-width: 680px;
  }

  .service-module:nth-child(even) .service-module-media {
    order: 0;
  }

  .process-step-card:nth-child(even) .process-step-media {
    order: 0;
  }

  .service-module-media {
    min-height: 360px;
  }

  .process-step-media {
    min-height: 360px;
  }

  .timeline-step {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .timeline-step p {
    grid-column: 2;
  }

  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .feature-band h2,
  .page-hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.18)),
      rgba(250, 248, 245, 0.34);
    backdrop-filter: blur(10px) saturate(1.7) contrast(1.06);
    transition: max-height 220ms ease;
  }

  .site-header.nav-open .site-nav {
    max-height: 340px;
  }

  .site-nav a {
    min-height: 50px;
    padding: 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
  }

  .nav-action {
    margin-left: 0;
    border-left: 0;
    border-right: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.32));
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--max));
    max-width: 100%;
    overflow: hidden;
    padding: 54px 0 0;
  }

  .eyebrow {
    display: block;
    max-width: min(100%, 340px);
    font-size: 0.64rem;
    line-height: 1.35;
    letter-spacing: 0.09em;
    overflow-wrap: anywhere;
  }

  .eyebrow::before {
    display: block;
    width: 28px;
    margin-bottom: 8px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.2vw, 2.45rem);
    white-space: nowrap;
  }

  .hero-lede {
    max-width: min(100%, 350px);
    font-size: 1rem;
    line-height: 1.38;
    overflow-wrap: anywhere;
  }

  .hero-meta,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    width: min(calc(100% - 28px), var(--max));
    gap: 18px;
    margin-top: 34px;
    padding-bottom: 44px;
  }

  .hero-meta div {
    padding: 18px 0 4px 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
  }

  .hero-meta div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.24);
    border-top: 0;
    box-shadow: none;
  }

  .hero-actions,
  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .page-hero {
    min-height: 380px;
  }

  .page-hero-content {
    width: min(calc(100% - 28px), var(--max));
    margin-bottom: 28px;
    padding: 0;
  }

  .section {
    padding: 68px 0;
  }

  .image-frame,
  .image-frame.small {
    min-height: 310px;
  }

  .service-detail,
  .timeline-step {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .services-suite-section {
    padding-top: 68px;
  }

  .approach-process-section {
    padding-top: 68px;
  }

  .service-suite {
    gap: 54px;
    margin-top: 40px;
  }

  .process-showcase {
    gap: 54px;
    margin-top: 40px;
  }

  .service-module {
    gap: 24px;
    padding-bottom: 52px;
  }

  .process-step-card {
    gap: 24px;
    padding-bottom: 52px;
  }

  .service-module-media {
    min-height: 280px;
  }

  .process-step-media {
    min-height: 280px;
  }

  .service-module-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .process-step-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .service-module-details {
    gap: 18px;
    margin-top: 28px;
  }

  .process-detail-grid {
    gap: 18px;
    margin-top: 28px;
  }

  .service-channel-strip span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .timeline-step p {
    grid-column: auto;
  }

  .contact-form {
    padding: 22px;
  }

  .cta-inquiry-form {
    padding: 22px;
  }

  .site-footer {
    padding: 46px 0 24px;
  }

  .footer-inner {
    gap: 30px;
  }

  .footer-visual {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
