:root {
  --black: #050505;
  --panel: #111111;
  --panel-2: #181818;
  --red: #f50707;
  --red-dark: #bd0000;
  --white: #ffffff;
  --off-white: #f5f5f3;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 18px max(24px, calc((100% - 1180px) / 2));
  border: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  border-color: transparent;
  background: rgba(5, 5, 5, 0.65);
  box-shadow: none;
}

.site-header.is-scrolled .brand {
  width: 128px;
  min-width: 128px;
}

.site-header.is-scrolled .site-nav a {
  padding: 10px 13px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 128px;
  min-width: 128px;
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-nav .nav-cta {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav .is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 42px;
  min-height: 100svh;
  padding: 160px max(32px, calc((100vw - 1180px) / 2)) 72px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.64) 46%, rgba(5, 5, 5, 0.36) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.14) 52%, rgba(5, 5, 5, 0.74) 100%),
    url("assets/technology.jpeg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -30vh;
  width: 44vw;
  height: 44vw;
  border: 1px solid rgba(245, 7, 7, 0.26);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(245, 7, 7, 0.12);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: 100%;
  min-width: 0;
  max-width: 830px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

.contact-block {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
}

.contact-direct .contact-link {
  color: var(--black);
  text-decoration: none;
  transition: color 160ms ease;
}

.contact-direct .contact-link:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
}

.button-secondary.dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel {
  width: 100%;
  min-width: 0;
  align-self: end;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 300px;
  padding: 20px 26px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.4), rgba(17, 17, 17, 0.9));
  box-shadow: var(--shadow);
  transform: translateY(-42px);
  backdrop-filter: blur(20px);
}

.panel-label {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 32px;
  line-height: 1;
}

.hero-panel p {
  color: var(--muted);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.panel-grid span,
.check-grid span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.panel-link:hover,
.panel-link:focus-visible {
  background: var(--red-dark);
}

.section {
  padding: 108px max(32px, calc((100vw - 1180px) / 2));
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.intro {
  background: var(--off-white);
  color: var(--black);
}

.intro .section-kicker,
.services .section-kicker,
.trust .section-kicker,
.team .section-kicker,
.contact .section-kicker {
  color: var(--red);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 72px;
  align-items: start;
}

.intro p {
  max-width: 620px;
  color: #373737;
  font-size: 22px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 44px;
  color: var(--red);
  font-weight: 900;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.services {
  background: #0b0b0b;
}

.ai-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  background: linear-gradient(135deg, #151515, #050505);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ai-spotlight h2 {
  max-width: 860px;
  margin-bottom: 20px;
}

.ai-spotlight p:not(.section-kicker) {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
}

.ai-spotlight-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(245, 7, 7, 0.35);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(245, 7, 7, 0.18), rgba(17, 17, 17, 1));
}

.ai-spotlight-panel span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.service-groups {
  display: grid;
  gap: 54px;
}

.service-group {
  display: grid;
  gap: 18px;
}

.service-group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.service-group-heading .section-kicker {
  margin-bottom: 0;
}

.service-group-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

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

.service-card {
  min-height: 248px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(245, 7, 7, 0.7);
  background: var(--panel-2);
}

.service-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card.featured {
  background: linear-gradient(145deg, rgba(245, 7, 7, 0.24), rgba(17, 17, 17, 1));
  border-color: rgba(245, 7, 7, 0.48);
}

.security-band {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  min-height: 720px;
  background: var(--black);
}

.security-media {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.78)),
    url("assets/datacenter.jpeg") center / cover no-repeat;
}

.security-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px max(32px, calc((100vw - 1180px) / 2)) 84px 64px;
}

.security-content p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 30px;
}

.trust {
  background: var(--off-white);
  color: var(--black);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.logo-wall img {
  width: 100%;
  height: 126px;
  padding: 28px;
  border: 1px solid #deded9;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.team {
  background: var(--black);
}

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

.person-card {
  min-height: 226px;
  padding: 22px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--off-white);
  color: var(--black);
}

.person-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.person-card p {
  min-height: 48px;
  color: #4b4b4b;
}

.person-card a {
  display: block;
  margin-top: 7px;
  font-weight: 900;
}

.person-card.hiring {
  background: linear-gradient(145deg, var(--red), #7b0000);
  color: var(--white);
}

.person-card.hiring p {
  color: rgba(255, 255, 255, 0.82);
}

.detail-content .people-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.detail-content .person-card {
  min-height: 160px;
  padding: 28px;
}

.detail-content .person-card h3 {
  font-size: 24px;
}

.detail-content .person-card p {
  min-height: auto;
  font-size: 17px;
}

.detail-content .person-card a {
  font-size: 16px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 78px max(32px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #171717, #050505);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact h2 {
  max-width: 740px;
  margin-bottom: 16px;
}

.contact p:not(.section-kicker) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(32px, calc((100vw - 1180px) / 2));
  background: var(--black);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.site-footer img {
  width: 92px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

.site-footer p {
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: end;
  padding: 160px max(32px, calc((100vw - 1180px) / 2)) 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.54)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.1)),
    url("assets/technology.jpeg") center / cover no-repeat;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 920px;
}

.page-hero.has-media .page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: end;
  max-width: 1180px;
}

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

.page-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.78);
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 16px;
  object-fit: contain;
}

.page-hero-media figcaption {
  padding: 11px 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
}

.detail {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 76px;
  background: var(--off-white);
  color: var(--black);
}

.detail-full {
  grid-template-columns: 1fr !important;
  max-width: 100%;
  margin: 0 auto;
  gap: 24px;
  padding: 108px max(48px, calc((100vw - 1400px) / 2));
}

.detail-full .detail-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-full .detail-content article {
  padding: 40px 50px;
}

.detail-full .people-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.detail-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 10px;
}

.detail-aside span {
  display: block;
  padding: 13px 14px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  color: #202020;
  font-weight: 900;
}

.detail-content {
  display: grid;
  gap: 18px;
}

.detail-content article {
  padding: 34px;
  border: 1px solid #deded9;
  border-radius: 8px;
  background: var(--white);
}

.detail-content h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
}

.detail-content p {
  max-width: 820px;
  margin-bottom: 0;
  color: #3c3c3c;
  font-size: 19px;
}

.related {
  background: #0b0b0b;
}

.legal-section {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-width: 0;
  gap: 54px;
  background: var(--off-white);
  color: var(--black);
}

.legal-content {
  min-width: 0;
  max-width: 100%;
  padding: 42px;
  border: 1px solid #deded9;
  border-radius: 8px;
  background: var(--white);
  overflow-wrap: anywhere;
}

.legal-content h2 {
  margin: 44px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-size: clamp(21px, 2.2vw, 28px);
}

.legal-content p,
.legal-content li {
  max-width: 100%;
  color: #373737;
  font-size: 17px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--red);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.legal-source {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid #deded9;
  font-size: 15px;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  transition: transform 160ms ease, border-color 160ms ease;
}

.mini-card:hover,
.mini-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(245, 7, 7, 0.7);
}

.mini-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.mini-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.inline-button {
  width: auto;
  margin-top: 22px;
}

.service-scope {
  background: var(--off-white);
  color: var(--black);
  padding-top: 0;
}

.scope-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.scope-card,
.process-grid article {
  min-height: 230px;
  padding: 22px;
  border-radius: 8px;
}

.scope-card {
  border: 1px solid #deded9;
  background: var(--white);
}

.scope-card-link {
  display: block;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.scope-card-link:hover,
.scope-card-link:focus-visible {
  border-color: var(--red);
  box-shadow: 0 18px 42px rgba(245, 7, 7, 0.12);
  transform: translateY(-3px);
}

.scope-card span,
.process-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.scope-card h3,
.process-grid h3 {
  margin-bottom: 12px;
}

.scope-card p {
  color: #444444;
}

.scope-card strong {
  display: inline-block;
  margin-top: 20px;
  color: var(--red);
  font-size: 15px;
}

.process {
  background: #0b0b0b;
}

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

.process-grid article {
  border: 1px solid var(--line);
  background: var(--panel);
}

.process-grid p {
  color: var(--muted);
}

.outcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #171717, #050505);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome h2 {
  max-width: 780px;
  margin-bottom: 16px;
}

.outcome p:not(.section-kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.ai-overview {
  background: #0b0b0b;
}

.dgx-preview,
.dgx-product {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 44px;
  align-items: center;
  background: #0b0b0b;
}

.dgx-preview {
  border-top: 1px solid var(--line);
}

.dgx-product {
  background: linear-gradient(135deg, #0b0b0b, #151515);
}

.dgx-preview-copy p:not(.section-kicker),
.dgx-product-copy p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.dgx-preview-media,
.dgx-product-media,
.dgx-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.dgx-preview-media img,
.dgx-product-media img,
.dgx-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dgx-preview-media {
  min-height: 0;
}

.dgx-product-media {
  min-height: 0;
}

.dgx-preview-media img,
.dgx-product-media img {
  aspect-ratio: 16 / 9;
  height: auto;
}

.dgx-preview-media figcaption,
.dgx-product-media figcaption,
.dgx-image-card figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.ai-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.ai-feature {
  width: 100%;
  min-width: 0;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(245, 7, 7, 0.14), rgba(17, 17, 17, 1));
}

.ai-feature span {
  display: block;
  margin-bottom: 46px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.ai-feature p {
  color: var(--muted);
}

.ai-feature h3,
.ai-feature p,
.model-row span,
.api-form label {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.model-section {
  background: var(--off-white);
  color: var(--black);
}

.dgx-specs {
  background: var(--off-white);
  color: var(--black);
}

.dgx-spec-card {
  min-height: 260px;
}

.dgx-gallery {
  background: #0b0b0b;
}

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

.dgx-image-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
}

.dgx-image-card img {
  aspect-ratio: 16 / 9;
  height: auto;
  padding: 14px;
  background: #050505;
  object-fit: contain;
}

.model-table {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #deded9;
  border-radius: 8px;
  background: var(--white);
}

.model-hosting-note {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 16px;
  margin-bottom: 24px;
}

.model-hosting-note > div {
  padding: 22px;
  border: 1px solid #deded9;
  border-radius: 8px;
  background: var(--white);
}

.model-hosting-note span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-hosting-note h3 {
  max-width: 620px;
  margin-bottom: 10px;
  color: var(--black);
}

.model-hosting-note p {
  max-width: 760px;
  margin-bottom: 0;
  color: #444444;
}

.model-note {
  max-width: 880px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.model-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.95fr 0.95fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-top: 1px solid #e8e8e2;
  color: #242424;
}

.model-row-link {
  transition: background 160ms ease, color 160ms ease;
}

.model-row-link:hover,
.model-row-link:focus-visible {
  background: #fff1f1;
}

.model-row:first-child {
  border-top: 0;
}

.model-head {
  background: #111111;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-row strong,
.model-row small {
  display: block;
}

.model-row small {
  margin-top: 4px;
  color: #666666;
  font-weight: 800;
}

.model-row .audio-label {
  margin-top: 14px;
  color: #242424;
}

.model-card-hint {
  color: var(--red);
}

.model-head small {
  color: rgba(255, 255, 255, 0.7);
}

.model-audio {
  width: 100%;
  max-width: 260px;
  height: 38px;
  margin-top: 12px;
  display: block;
}

.model-card-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  background: var(--off-white);
  color: var(--black);
}

.model-card-intro {
  align-self: start;
  min-width: 0;
  padding: 34px;
  border: 1px solid #deded9;
  border-radius: 8px;
  background: var(--white);
}

.model-card-intro h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 58px);
}

.model-card-intro p {
  max-width: 760px;
  color: #3f3f3f;
  font-size: 20px;
}

.model-card-intro h2,
.model-card-intro p {
  overflow-wrap: anywhere;
}

.model-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  gap: 12px;
}

.model-fact-grid article {
  min-width: 0;
  min-height: 132px;
  padding: 18px;
  border: 1px solid #deded9;
  border-radius: 8px;
  background: var(--white);
}

.model-fact-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-fact-grid strong {
  color: #171717;
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.model-fit-section {
  padding-top: 96px;
}

.model-use-card {
  min-height: 250px;
}

.model-limit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #3c3c3c;
  font-size: 19px;
}

.api-request {
  background: #0b0b0b;
}

.api-form {
  display: grid;
  gap: 16px;
  max-width: 980px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

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

.api-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 900;
}

.api-form input,
.api-form select,
.api-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
  padding: 13px 14px;
}

.api-form select option {
  background: #111111;
}

.api-form textarea {
  resize: vertical;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 146px;
  }

  .hero-panel {
    min-height: auto;
    transform: none;
  }

  .intro-grid,
  .security-band,
  .contact,
  .detail,
  .legal-section,
  .ai-spotlight,
  .outcome,
  .page-hero.has-media .page-hero-inner,
  .dgx-preview,
  .dgx-product,
  .model-card-section {
    grid-template-columns: 1fr;
  }

  .security-content {
    padding: 64px 32px;
  }

  .service-grid,
  .people-grid,
  .ai-feature-grid,
  .scope-grid,
  .dgx-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .process-grid {
    grid-template-columns: 1fr;
  }

  .model-hosting-note {
    grid-template-columns: 1fr;
  }

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

  .detail-aside {
    position: static;
  }

  .legal-content {
    padding: 30px;
  }

  .model-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
    background: rgba(5, 5, 5, 0.86);
    border-color: var(--line);
    backdrop-filter: blur(18px);
  }

  .brand {
    width: 96px;
    min-width: 96px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    min-height: auto;
    padding: 132px 20px 58px;
  }

  .page-hero {
    min-height: auto;
    padding: 132px 20px 58px;
  }

  .page-hero .eyebrow {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.35;
  }

  .page-hero p:not(.eyebrow) {
    max-width: min(32ch, 100%);
    font-size: 18px;
  }

  .page-hero-media {
    max-width: 360px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .hero-copy,
  .intro p,
  .contact p:not(.section-kicker) {
    font-size: 17px;
  }

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

  .ai-spotlight-panel {
    padding: 18px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 70px 20px;
  }

  .intro-grid {
    gap: 22px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    max-width: 12ch;
  }

  .dgx-preview-copy h2,
  .dgx-product-copy h2 {
    max-width: 12ch;
  }

  .dgx-preview-copy p:not(.section-kicker),
  .dgx-product-copy p:not(.section-kicker) {
    max-width: 29ch;
  }

  .text-link {
    margin-top: 18px;
  }

  .service-group-heading {
    display: block;
  }

  .service-group-heading span {
    display: block;
    margin-top: 8px;
  }

  .service-grid,
  .people-grid,
  .ai-feature-grid,
  .scope-grid,
  .process-grid,
  .dgx-image-grid,
  .check-grid,
  .logo-wall,
  .mini-card-grid,
  .model-fact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 210px;
  }

  .service-card span {
    margin-bottom: 34px;
  }

  .ai-feature {
    min-height: 220px;
  }

  .dgx-preview-media,
  .dgx-product-media,
  .dgx-image-card,
  .dgx-image-card img {
    min-height: 0;
    height: auto;
  }

  .ai-feature span {
    margin-bottom: 34px;
  }

  .api-form {
    padding: 18px;
  }

  .legal-content {
    justify-self: start;
    width: calc(100vw - 64px);
    max-width: 100%;
    padding: 22px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 16px;
    line-height: 1.65;
    word-break: break-word;
  }

  .security-media {
    min-height: 360px;
  }

  .security-content {
    padding: 54px 20px 64px;
  }

  .logo-wall img {
    height: 110px;
  }

  .contact {
    padding: 64px 20px;
  }

  .detail {
    gap: 28px;
  }

  .detail-content article {
    padding: 24px;
  }

  .detail-content h2 {
    font-size: 30px;
    line-height: 1.08;
    max-width: 11ch;
  }

  .detail-content p {
    font-size: 18px;
    max-width: 27ch;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
  }
}
