:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-deep: #04060a;
  --surface: #10141c;
  --surface-raised: #161b25;
  --surface-soft: #0c1017;
  --line: #262d3a;
  --line-soft: rgba(153, 166, 188, 0.16);
  --text: #f7f8fa;
  --muted: #9aa4b4;
  --muted-strong: #c6ccd5;
  --red: #e3343d;
  --red-bright: #ff515a;
  --blue: #65aaff;
  --green: #43ca78;
  --amber: #e3aa47;
  --max: 1420px;
  --content: 1180px;
  --radius: 18px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 0%, rgba(72, 107, 166, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 22rem, var(--bg-deep));
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  content: "";
  pointer-events: none;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.72rem 1rem;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg-deep);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.content-width {
  width: min(calc(100% - 3rem), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 3rem), 850px);
  margin-inline: auto;
}

.breadcrumbs {
  padding-top: 1rem;
  color: var(--muted-strong);
  font-size: 0.8rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 0.65rem;
  color: var(--muted);
  content: "/";
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(123, 138, 160, 0.16);
  background: rgba(6, 8, 12, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.72rem;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.brand-name {
  line-height: 1;
}

.brand-name span {
  color: var(--red);
}

.brand-sub {
  display: block;
  margin-top: 0.35rem;
  color: #7f8999;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
}

.nav-links a {
  padding: 0.62rem 0.72rem;
  border-radius: 9px;
  color: #b2bac7;
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.62rem 0.72rem;
  border-radius: 9px;
  color: #b2bac7;
  font-size: 0.86rem;
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary:hover,
.nav-menu[open] summary,
.nav-menu.is-current summary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-menu summary span {
  color: var(--blue);
  font-size: 0.8rem;
  transition: transform 160ms ease;
}

.nav-menu[open] summary span {
  transform: rotate(180deg);
}

.nav-menu-panel {
  position: absolute;
  z-index: 120;
  top: calc(100% + 0.7rem);
  left: 0;
  display: grid;
  width: 240px;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 13, 19, 0.99);
  box-shadow: var(--shadow);
}

.nav-menu-panel a {
  padding: 0.72rem 0.8rem;
}

.nav-links .nav-contact {
  margin-left: 0.35rem;
  border: 1px solid rgba(227, 52, 61, 0.5);
  color: #fff;
}

.nav-links .nav-signin {
  margin-left: 0.25rem;
  border: 1px solid var(--line);
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-2px) rotate(-45deg);
}

.announcement {
  border-bottom: 1px solid var(--line-soft);
  background: #0b0e14;
}

.announcement .container {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(67, 202, 120, 0.72);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.hero-home {
  padding-top: clamp(3.5rem, 6vw, 6rem);
}

.hero-home::after {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -14rem;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: rgba(227, 52, 61, 0.08);
  filter: blur(90px);
  content: "";
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(600px, 1.42fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1.04;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3.25rem, 6.2vw, 6.8rem);
}

.hero-home h1 {
  font-size: clamp(3.4rem, 5vw, 5.6rem);
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5.4vw, 5.9rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: -0.025em;
}

p {
  margin: 0 0 1.2rem;
}

.lead {
  max-width: 62ch;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 1.75vw, 1.35rem);
  line-height: 1.7;
}

.hero-copy .lead {
  max-width: 54ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: #485266;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.button-primary {
  border-color: #c62a34;
  background: #c62a34;
  color: #fff;
  box-shadow: 0 18px 44px rgba(227, 52, 61, 0.2);
}

.button-primary:hover {
  border-color: #b5232e;
  background: #b5232e;
}

.button-blue {
  border-color: rgba(101, 170, 255, 0.45);
  color: #d9eaff;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #b5bdc9;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-points li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.product-frame {
  position: relative;
  padding: 0.55rem;
  border: 1px solid #2c3442;
  border-radius: 20px;
  background: #090c11;
  box-shadow: var(--shadow);
}

.product-frame::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(101, 170, 255, 0.32), transparent 42%, rgba(227, 52, 61, 0.34));
  content: "";
  transform: translate(8px, 10px);
  filter: blur(14px);
  opacity: 0.55;
}

.frame-bar {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0.55rem 0.55rem;
  color: #808a99;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.frame-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #a9cdb5;
}

.frame-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.product-frame img {
  width: 100%;
  border: 1px solid #202735;
  border-radius: 12px;
  background: #0a0d12;
}

.capture-caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.capture-caption strong {
  color: var(--muted-strong);
}

.capture-label {
  flex: 0 0 auto;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-band {
  border-block: 1px solid var(--line-soft);
  background: #0b0e14;
}

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

.proof-item {
  min-height: 116px;
  padding: 1.55rem;
  border-left: 1px solid var(--line-soft);
}

.proof-item:last-child {
  border-right: 1px solid var(--line-soft);
}

.proof-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 1rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section-tight {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.section-dark {
  border-block: 1px solid var(--line-soft);
  background: rgba(10, 13, 19, 0.86);
}

.section-redline {
  border-top: 1px solid rgba(227, 52, 61, 0.35);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.6rem);
}

.section-intro p:last-child {
  justify-self: end;
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
}

.section-intro h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

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

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

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

.feature-card,
.outcome-card,
.detail-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 2vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(23, 28, 39, 0.92), rgba(13, 17, 24, 0.92));
}

.feature-card::before,
.outcome-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent 72%);
  content: "";
}

.card-index {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-card p,
.outcome-card p,
.detail-card p {
  color: var(--muted);
}

.feature-card a,
.outcome-card a {
  color: #d8e9ff;
  font-weight: 800;
}

.product-spine {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.module-card {
  min-height: 300px;
}

.module-card.core {
  grid-column: span 6;
}

.module-card.guardian,
.module-card.insight {
  grid-column: span 3;
}

.module-card.smart,
.module-card.cloud {
  grid-column: span 6;
}

.module-card.smart {
  grid-column: span 5;
}

.module-card.propulsion {
  grid-column: span 7;
  min-height: 340px;
  background:
    radial-gradient(circle at 88% 12%, rgba(227, 52, 61, 0.18), transparent 32%),
    linear-gradient(145deg, #151923, #0d1118);
}

.module-card.propulsion::before {
  background: linear-gradient(90deg, var(--red-bright), transparent 72%);
}

.module-card.automation {
  grid-column: span 6;
}

.module-card.people {
  grid-column: span 3;
}

.module-card.people::before {
  background: linear-gradient(90deg, #73d6ff, var(--red), transparent 78%);
}

.module-card.guardian::before {
  background: linear-gradient(90deg, var(--blue), transparent 72%);
}

.module-card.insight::before {
  background: linear-gradient(90deg, var(--amber), transparent 72%);
}

.card-state,
.state-row,
.state-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.card-state {
  margin-bottom: 1.5rem;
}

.state-row {
  margin-bottom: 1.1rem;
}

.capability-state {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.3rem 0.58rem;
  border: 1px solid rgba(67, 202, 120, 0.45);
  border-radius: 999px;
  background: rgba(67, 202, 120, 0.08);
  color: #a9e8bf;
  font-family: var(--font-mono);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.capability-state.development {
  border-color: rgba(101, 170, 255, 0.48);
  background: rgba(101, 170, 255, 0.08);
  color: #b9d7ff;
}

.capability-state.research {
  border-color: rgba(227, 170, 71, 0.48);
  background: rgba(227, 170, 71, 0.08);
  color: #f0cd8e;
}

.state-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.8rem;
  margin: -1rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.state-legend span:not(.capability-state) {
  margin-right: 0.65rem;
}

.event-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.event-step {
  min-height: 255px;
  padding: 1.55rem;
  background: var(--surface-soft);
}

.event-step strong {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.insight-flow .event-step strong {
  color: var(--amber);
}

.event-step p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.capability-panel {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.capability-panel h3 {
  max-width: 18ch;
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(320px, 0.75fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.spotlight.reverse {
  grid-template-columns: minmax(320px, 0.75fr) minmax(420px, 1.15fr);
}

.spotlight.reverse .spotlight-copy {
  order: -1;
}

.spotlight-copy h2 {
  max-width: 11ch;
}

.feature-list,
.check-list,
.plain-list {
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  margin-top: 0.75rem;
  padding-left: 1.65rem;
  color: var(--muted-strong);
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
  content: "";
}

.plain-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted-strong);
}

.media-card {
  margin: 0;
}

.media-card > a {
  display: block;
  border-radius: var(--radius);
  text-decoration: none;
}

.media-card picture,
.media-card img {
  width: 100%;
}

.media-card img {
  border: 1px solid #2a3240;
  border-radius: var(--radius);
  background: #080b10;
  box-shadow: var(--shadow);
}

.media-card figcaption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.2rem 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.media-card.compact img {
  box-shadow: none;
}

.cloud-signin-card {
  width: min(100%, 430px);
  justify-self: center;
}

.cloud-signin-card picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 0.59;
  border: 1px solid #2a3240;
  border-radius: var(--radius);
  background: #080b10;
  box-shadow: var(--shadow);
}

.cloud-signin-card img {
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: left center;
  box-shadow: none;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

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

.media-grid .wide {
  grid-column: 1 / -1;
}

.brand-film-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 82% 22%, rgba(227, 52, 61, 0.14), transparent 32rem),
    linear-gradient(135deg, #070a10 0%, #0b1019 48%, #07090e 100%);
}

.brand-film-section::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(101, 170, 255, 0.06), transparent 40%);
  content: "";
  pointer-events: none;
}

.brand-film-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(620px, 1.38fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.brand-film-copy h2 {
  max-width: 9ch;
}

.brand-film-player {
  min-width: 0;
}

.brand-film-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #313a49;
  border-radius: var(--radius);
  background: #020305;
  box-shadow: var(--shadow);
}

.brand-film-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.2rem 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #0a0d12;
  box-shadow: var(--shadow);
}

.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.gallery-tabs button {
  flex: 0 0 auto;
  padding: 0.62rem 0.9rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.gallery-tabs button:hover,
.gallery-tabs button[aria-selected="true"] {
  border-color: rgba(227, 52, 61, 0.42);
  background: rgba(227, 52, 61, 0.08);
  color: var(--text);
}

.gallery-panel {
  margin: 0;
  padding: 0.75rem;
}

.js .gallery-panel[hidden] {
  display: none;
}

.gallery-panel img {
  width: 100%;
  border: 1px solid #232a36;
  border-radius: 12px;
}

.gallery-panel figcaption {
  padding: 0.9rem 0.25rem 0.15rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.architecture-node {
  position: relative;
  min-height: 170px;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.architecture-node:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -1.05rem;
  width: 1.25rem;
  color: var(--red-bright);
  font-weight: 900;
  content: "→";
  transform: translateY(-50%);
}

.architecture-node strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.architecture-node span {
  color: var(--muted);
  font-size: 0.87rem;
}

.architecture-node.local {
  border-color: rgba(227, 52, 61, 0.55);
}

.architecture-node.cloud {
  border-color: rgba(101, 170, 255, 0.45);
}

.boundary-note {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--blue);
  background: rgba(101, 170, 255, 0.06);
  color: var(--muted-strong);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.workflow-step {
  min-height: 230px;
  padding: 1.7rem;
  background: var(--surface-soft);
}

.workflow-step strong {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--red-bright);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.workflow-step p {
  color: var(--muted);
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-soft);
}

.data-table th,
.data-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: #dce4ef;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-table td {
  color: var(--muted);
  font-size: 0.9rem;
}

.data-table td:first-child {
  color: var(--text);
  font-weight: 800;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.quote-panel,
.cta-panel,
.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(227, 52, 61, 0.1), transparent 42%),
    var(--surface);
}

.quote-panel::after,
.cta-panel::after {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(101, 170, 255, 0.08);
  filter: blur(55px);
  content: "";
  pointer-events: none;
}

.cta-panel h2,
.contact-panel h1 {
  max-width: 14ch;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: 1.2rem;
}

.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 9, 13, 0.62);
}

.contact-card a {
  color: #d7e9ff;
  font-weight: 800;
}

.legal-copy h1 {
  max-width: 14ch;
}

.legal-copy h2 {
  margin-top: 3rem;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
}

.legal-copy p,
.legal-copy li {
  color: var(--muted-strong);
}

.legal-copy a {
  color: #d7e9ff;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 1.25rem 2.4rem 1.25rem 0;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  max-width: 74ch;
  padding: 0 0 1.35rem;
  color: var(--muted);
}

.source-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.mono {
  font-family: var(--font-mono);
}

.muted {
  color: var(--muted);
}

.red {
  color: var(--red-bright);
}

.blue {
  color: var(--blue);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #05070a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(135px, 0.5fr));
  gap: 2rem;
  padding: clamp(3.5rem, 7vw, 6rem) 0 3rem;
}

.footer-brand p {
  max-width: 34ch;
  margin-top: 1rem;
  color: var(--muted);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-social a:hover {
  border-color: rgba(101, 170, 255, 0.48);
  background: rgba(101, 170, 255, 0.06);
  color: var(--text);
}

.footer-column h2 {
  margin-bottom: 1rem;
  color: #8d97a6;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-top: 0.65rem;
  color: var(--muted-strong);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--line-soft);
  color: #737d8c;
  font-size: 0.78rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
    gap: 2.5rem;
  }

  .nav-links a {
    padding-inline: 0.55rem;
    font-size: 0.82rem;
  }

  .nav-menu summary {
    padding-inline: 0.55rem;
    font-size: 0.82rem;
  }

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

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

  .module-card,
  .module-card.guardian,
  .module-card.insight,
  .module-card.smart,
  .module-card.cloud,
  .module-card.propulsion,
  .module-card.automation,
  .module-card.people {
    grid-column: auto;
  }

  .module-card.core {
    grid-column: 1 / -1;
  }

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

@media (max-width: 980px) {
  .container,
  .content-width,
  .narrow {
    width: min(calc(100% - 2rem), var(--max));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(10, 13, 19, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a,
  .nav-links .nav-contact,
  .nav-links .nav-signin {
    margin: 0;
    padding: 0.85rem;
  }

  .nav-menu summary {
    padding: 0.85rem;
  }

  .nav-menu-panel {
    position: static;
    width: auto;
    margin: 0.25rem 0 0.45rem;
    padding: 0.35rem;
    border-color: var(--line-soft);
    background: rgba(4, 6, 10, 0.72);
    box-shadow: none;
  }

  .nav-menu-panel a {
    padding: 0.72rem 1rem;
  }

  .hero-layout,
  .spotlight,
  .spotlight.reverse,
  .contact-layout,
  .brand-film-layout {
    grid-template-columns: 1fr;
  }

  .spotlight.reverse .spotlight-copy {
    order: initial;
  }

  .hero-copy {
    max-width: 720px;
  }

  .brand-film-copy {
    max-width: 720px;
  }

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

  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line-soft);
  }

  .section-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-intro p:last-child {
    justify-self: start;
  }

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

  .architecture-flow,
  .workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .architecture-node:nth-child(2)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(2, minmax(150px, 0.7fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .announcement .container {
    justify-content: flex-start;
    min-height: 50px;
    padding-block: 0.55rem;
    overflow: visible;
    line-height: 1.45;
    white-space: normal;
  }

  .hero,
  .section {
    padding-block: 4rem;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .hero-home h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

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

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .capture-caption,
  .media-card figcaption,
  .brand-film-meta {
    display: block;
  }

  .brand-film-meta span {
    display: block;
  }

  .brand-film-meta span + span {
    margin-top: 0.35rem;
  }

  .capture-label {
    display: block;
    margin-top: 0.45rem;
  }

  .proof-grid,
  .product-spine,
  .outcome-grid,
  .card-grid,
  .card-grid.three,
  .card-grid.two,
  .media-grid,
  .media-grid.three,
  .architecture-flow,
  .workflow,
  .event-flow {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-spine > .module-card {
    min-width: 0;
    grid-column: 1 / -1;
  }

  .proof-item,
  .proof-item:last-child {
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .architecture-node::after {
    display: none;
  }

  .data-table th,
  .data-table td {
    min-width: 180px;
  }

  .function-table,
  .function-table tbody,
  .function-table tr,
  .function-table td {
    display: block;
    width: 100%;
  }

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

  .function-table td {
    min-width: 0;
    padding: 0.85rem 1rem;
  }

  .function-table td:first-child {
    padding-top: 1.1rem;
    border-bottom: 0;
    font-size: 1rem;
  }

  .function-table td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.35rem;
    color: #dce4ef;
    font-family: var(--font-mono);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .function-table tr:not(:last-child) td:last-child {
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--line);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

}
