:root {
  --red: #e10600;
  --red-deep: #b30000;
  --red-bright: #ff3b30;
  --red-soft: #fff1f0;
  --black: #050505;
  --charcoal: #111111;
  --ink: #101114;
  --text: #3f434a;
  --muted: #6f737b;
  --silver: #d1d5db;
  --line: #e3e5e8;
  --soft: #f3f4f6;
  --white: #ffffff;
  --green: #22c55e;
  --shell: min(1280px, calc(100% - 80px));
  --header-height: 76px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 8px 24px rgba(5, 5, 5, 0.06);
  --shadow-md: 0 20px 60px rgba(5, 5, 5, 0.1);
  --ease: 220ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

p {
  color: var(--text);
}

.icon-sprite {
  position: absolute;
  overflow: hidden;
}

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

.section {
  padding: 96px 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 100;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--red);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--ease);
}

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

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

.eyebrow {
  margin-bottom: 13px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 16px;
}

.eyebrow-line::after {
  width: 62px;
  height: 2px;
  background: var(--red);
  content: "";
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1;
  transition: color var(--ease), background-color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.button svg,
.service-card a svg,
.email-link svg,
.contact-facebook-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(225, 6, 0, 0.2);
}

.button-primary:hover {
  background: var(--red-deep);
  box-shadow: 0 14px 30px rgba(179, 0, 0, 0.24);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--silver);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--soft);
}

.button-outline-red {
  color: var(--red);
  border-color: var(--red);
  background: transparent;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(5, 5, 5, 0.18);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
}

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

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.7vw, 38px);
}

.primary-navigation a {
  position: relative;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color var(--ease);
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.primary-navigation a:hover,
.primary-navigation a.is-active {
  color: var(--white);
}

.primary-navigation a:hover::after,
.primary-navigation a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button-header {
  min-height: 44px;
  padding-inline: 18px;
  color: var(--white);
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: 730px;
  overflow: hidden;
  background: linear-gradient(120deg, #fff 0%, #fff 54%, #fafafa 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
}

.hero.motion-ready .hero-pattern,
.hero.motion-ready .hero-copy-block,
.hero.motion-ready .visual-orb,
.hero.motion-ready .dashboard-device,
.hero.motion-ready .visual-base,
.hero.motion-ready .system-node {
  will-change: transform;
}

.hero-pattern::before {
  position: absolute;
  right: -140px;
  bottom: -230px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(225, 6, 0, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(225, 6, 0, 0.025), 0 0 0 140px rgba(225, 6, 0, 0.018);
}

.hero.motion-ready .hero-pattern {
  transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(730px - var(--header-height));
  grid-template-columns: minmax(0, 0.88fr) minmax(530px, 1.12fr);
  align-items: center;
  gap: 34px;
  padding-top: 36px;
  padding-bottom: 30px;
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero.motion-ready .hero-copy-block {
  transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0);
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(3rem, 4.4vw, 4.8rem);
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 28px;
  color: #44484f;
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.founder-strip {
  margin-top: 50px;
}

.founder-strip > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-strip li {
  display: flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #656971;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 650;
}

.system-visual {
  position: relative;
  width: 100%;
  min-height: 590px;
  isolation: isolate;
}

.visual-orb {
  position: absolute;
  top: 0;
  right: 86px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.88;
  background: radial-gradient(circle at 35% 30%, #ff665d 0%, var(--red) 48%, var(--red-deep) 100%);
  box-shadow: inset 0 -18px 36px rgba(120, 0, 0, 0.2);
}

.hero.motion-ready .visual-orb {
  transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0);
}

.visual-orb::after {
  position: absolute;
  top: 53%;
  right: -32px;
  left: -32px;
  height: 1px;
  background: rgba(225, 6, 0, 0.35);
  content: "";
  box-shadow: 0 7px 0 rgba(225, 6, 0, 0.18), 0 -7px 0 rgba(225, 6, 0, 0.12);
}

.connector-map {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.connector-map path {
  fill: none;
  stroke: var(--red);
  stroke-dasharray: 5 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.dashboard-device {
  position: absolute;
  top: 145px;
  left: 50%;
  z-index: 3;
  width: 375px;
  overflow: hidden;
  border: 10px solid #d9d9da;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 60px rgba(5, 5, 5, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transform: translateX(-48%) rotate(3deg);
}

.hero.motion-ready .dashboard-device {
  transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) translateX(-48%) rotate(3deg);
}

.dashboard-top {
  display: flex;
  height: 36px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  color: var(--white);
  background: var(--charcoal);
  font-size: 0.55rem;
  letter-spacing: 0.02em;
}

.dashboard-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.dashboard-top strong {
  margin-right: auto;
  font-weight: 700;
}

.dashboard-top em {
  color: #80dd9f;
  font-style: normal;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 47px 1fr;
  min-height: 250px;
  background: #f2f3f5;
}

.dashboard-body aside {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding-top: 18px;
  background: #15161a;
}

.dashboard-body aside b,
.dashboard-body aside i {
  width: 15px;
  height: 4px;
  border-radius: 4px;
  background: #3d4047;
}

.dashboard-body aside b {
  background: var(--red);
}

.dashboard-content {
  padding: 18px;
}

.dashboard-content > p {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.metric-row div {
  padding: 10px;
  border: 1px solid #e4e6e9;
  border-radius: 7px;
  background: var(--white);
}

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

.metric-row small {
  color: #8b8f96;
  font-size: 0.43rem;
}

.metric-row strong {
  margin-top: 3px;
  font-size: 0.62rem;
}

.dashboard-panels {
  display: grid;
  grid-template-columns: 1.65fr 0.75fr;
  gap: 7px;
  margin-top: 7px;
}

.chart-panel,
.status-panel {
  min-height: 92px;
  padding: 9px;
  border: 1px solid #e4e6e9;
  border-radius: 7px;
  background: var(--white);
}

.chart-panel small,
.status-panel span {
  color: #767a82;
  font-size: 0.44rem;
  font-weight: 650;
}

.chart-panel svg {
  width: 100%;
  height: 55px;
}

.chart-panel path {
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-width: 2;
}

.status-panel {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.status-panel strong {
  margin-top: 5px;
  font-size: 0.65rem;
}

.status-panel i {
  position: absolute;
  top: 13px;
  right: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.workflow-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.4fr 0.6fr;
  gap: 6px;
  margin-top: 9px;
}

.workflow-row span {
  height: 5px;
  border-radius: 8px;
  background: #dfe1e5;
}

.workflow-row span:nth-child(1) {
  background: rgba(225, 6, 0, 0.35);
}

.visual-base {
  position: absolute;
  right: 14px;
  bottom: 19px;
  left: 42px;
  z-index: -2;
  height: 116px;
  border: 1px solid #cfd1d4;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #e9e9ea);
  box-shadow: 0 26px 44px rgba(5, 5, 5, 0.16);
}

.hero.motion-ready .visual-base {
  transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0);
}

.visual-base::after {
  position: absolute;
  right: -1px;
  bottom: 12px;
  left: -1px;
  height: 22px;
  border-bottom: 2px solid var(--red);
  border-radius: 50%;
  content: "";
}

.visual-base span {
  position: absolute;
  bottom: 49px;
  left: 105px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(225, 6, 0, 0.4);
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(30deg);
}

.visual-base span::after {
  position: absolute;
  inset: 10px;
  background: var(--red);
  box-shadow: 0 0 20px rgba(225, 6, 0, 0.45);
  content: "";
}

.system-node {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 166px;
  min-height: 70px;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid #dedfe2;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(5, 5, 5, 0.08);
}

.node-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--red);
  background: var(--red-soft);
}

.node-icon svg,
.card-icon svg,
.process-icon svg,
.foundation-points svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.system-node small,
.system-node strong {
  display: block;
  line-height: 1.3;
}

.system-node small {
  color: #92959b;
  font-size: 0.48rem;
}

.system-node strong {
  margin-top: 2px;
  font-size: 0.63rem;
  letter-spacing: -0.02em;
}

.system-node > i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 0.56rem;
  font-style: normal;
}

.node-discovery { top: 48px; left: 50px; transform: rotate(3deg); }
.node-integration { top: 119px; right: 0; transform: rotate(5deg); }
.node-automation { top: 205px; left: 0; transform: rotate(-3deg); }
.node-workflows { top: 289px; right: -8px; transform: rotate(4deg); }
.node-cloud { bottom: 38px; left: 72px; transform: rotate(-3deg); }

.hero.motion-ready .node-discovery { transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) rotate(3deg); }
.hero.motion-ready .node-integration { transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) rotate(5deg); }
.hero.motion-ready .node-automation { transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) rotate(-3deg); }
.hero.motion-ready .node-workflows { transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) rotate(4deg); }
.hero.motion-ready .node-cloud { transform: translate3d(var(--motion-x, 0), var(--motion-y, 0), 0) rotate(-3deg); }

/* Shared section headings */
.section-heading {
  max-width: 690px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.solutions-intro h2,
.foundation-heading h2,
.contact-copy h2 {
  font-size: clamp(2.25rem, 3.3vw, 3.45rem);
}

.section-heading > p:last-child {
  max-width: 610px;
  margin: 16px auto 0;
}

/* Services */
.services {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 12% 25%, rgba(225, 6, 0, 0.12), transparent 26%),
    radial-gradient(circle at 88% 88%, rgba(225, 6, 0, 0.08), transparent 28%),
    linear-gradient(145deg, #08090b 0%, #111216 52%, #08090a 100%);
}

.services::before {
  position: absolute;
  top: -210px;
  right: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(225, 6, 0, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 72px rgba(225, 6, 0, 0.025), 0 0 0 144px rgba(225, 6, 0, 0.016);
  pointer-events: none;
}

.services::after {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
  pointer-events: none;
}

.services .shell {
  position: relative;
  z-index: 1;
}

.services .section-heading h2 {
  color: var(--white);
}

.services .section-heading > p:last-child {
  color: #b9bdc5;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, rgba(29, 30, 35, 0.96), rgba(17, 18, 22, 0.96));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 6, 0, 0.9), transparent);
  content: "";
  opacity: 0.48;
  transition: opacity var(--ease), right var(--ease), left var(--ease);
}

.service-card::after {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(255, 255, 255, 0.25);
  content: "01";
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card:nth-child(2)::after { content: "02"; }
.service-card:nth-child(3)::after { content: "03"; }
.service-card:nth-child(4)::after { content: "04"; }

.service-card:nth-child(-n + 2) {
  border-color: rgba(225, 6, 0, 0.24);
  background:
    radial-gradient(circle at 0 0, rgba(225, 6, 0, 0.09), transparent 42%),
    linear-gradient(155deg, #1b1c21, #101115);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  border-color: rgba(255, 59, 48, 0.58);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44), 0 0 36px rgba(225, 6, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
}

.service-card:hover::before {
  right: 0;
  left: 0;
  opacity: 1;
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(225, 6, 0, 0.22);
  border-radius: 10px;
  color: var(--red);
  background: var(--red-soft);
}

.services .card-icon {
  border-color: rgba(255, 59, 48, 0.34);
  color: #ff4b42;
  background: rgba(225, 6, 0, 0.1);
  box-shadow: inset 0 0 18px rgba(225, 6, 0, 0.05);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.33rem;
  line-height: 1.15;
}

.service-card > p {
  margin: 15px 0;
  color: #b9bdc5;
  font-size: 0.91rem;
}

.service-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 5px 0 5px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: #aeb2bb;
  font-size: 0.78rem;
}

.service-card li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.service-card > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: #ff4b42;
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card > a svg {
  width: 16px;
  transition: transform var(--ease);
}

.service-card > a:hover svg {
  transform: translateX(4px);
}

/* Solutions */
.solutions {
  background: linear-gradient(120deg, #fff6f5, #ffeded 52%, #fff8f7);
  border-block: 1px solid #f4d7d5;
}

.solutions-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 2.22fr);
  align-items: start;
  gap: 44px;
}

.solutions-intro {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.solutions-intro h2 {
  font-size: clamp(2.25rem, 3vw, 3.2rem);
}

.solutions-intro > p:not(.eyebrow) {
  margin: 20px 0 28px;
}

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

.accelerator-card {
  overflow: hidden;
  border: 1px solid rgba(225, 6, 0, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.accelerator-featured {
  min-height: 515px;
}

.accelerator-featured > div {
  padding: 28px 28px 8px;
}

.accelerator-featured .card-icon {
  margin-bottom: 16px;
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.accelerator-card h3 {
  font-size: 1.45rem;
}

.accelerator-card p:not(.card-kicker) {
  margin: 13px 0;
  font-size: 0.88rem;
}

.accelerator-featured img {
  width: 100%;
  height: 205px;
  object-fit: contain;
  object-position: center;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  border-top: 1px solid var(--line);
  color: #4f535a;
  font-size: 0.76rem;
}

.check-list li::before {
  position: absolute;
  top: 12px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.compact-card {
  min-height: 230px;
  padding: 28px;
}

.compact-card .card-icon {
  margin-bottom: 20px;
}

/* Process */
.process {
  background: var(--white);
}

.process-heading {
  margin-bottom: 54px;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 39px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--silver) 0 6px, transparent 6px 13px);
  content: "";
}

.process-list li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-icon {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.process-icon svg {
  width: 32px;
  height: 32px;
}

.process-list b {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.72rem;
}

.process-list h3 {
  font-size: 1.08rem;
}

.process-list p {
  max-width: 230px;
  margin: 10px auto 0;
  font-size: 0.83rem;
}

/* Foundation */
.foundation {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.foundation-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}

.foundation-heading > p {
  max-width: 430px;
  margin: 0 0 4px;
}

.foundation-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.85fr;
  gap: 16px;
}

.foundation-grid article {
  min-height: 330px;
  border-radius: var(--radius-md);
}

.foundation-main {
  padding: 32px;
  color: var(--white);
  background: linear-gradient(145deg, var(--black), #191a1e);
  box-shadow: var(--shadow-md);
}

.foundation-main h3 {
  max-width: 420px;
  color: var(--white);
  font-size: 1.8rem;
}

.foundation-main > p:not(.card-kicker) {
  margin: 17px 0 25px;
  color: #b9bcc3;
}

.foundation-points {
  display: grid;
  gap: 11px;
}

.foundation-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5e7eb;
  font-size: 0.82rem;
}

.foundation-points svg {
  width: 18px;
  height: 18px;
  color: var(--red-bright);
}

.architecture-panel,
.platform-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.architecture-panel > p,
.platform-panel > p {
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.architecture-map {
  display: grid;
  min-height: 205px;
  grid-template-columns: 1fr 22px 1fr;
  align-items: center;
  justify-items: center;
  gap: 7px;
}

.architecture-map span {
  display: grid;
  width: 100%;
  min-height: 62px;
  place-items: center;
  padding: 8px;
  border: 1px solid #dedfe2;
  border-radius: 10px;
  color: var(--ink);
  background: var(--soft);
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
}

.architecture-map span:nth-of-type(3),
.architecture-map span:nth-of-type(4) {
  grid-row: 2;
}

.architecture-map span:nth-of-type(3) { grid-column: 1; }
.architecture-map span:nth-of-type(4) { grid-column: 3; }

.architecture-map i {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--red);
}

.architecture-map i:nth-of-type(2) {
  grid-row: 2;
  grid-column: 2;
}

.architecture-map i:nth-of-type(3) {
  display: none;
}

.platform-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-panel li {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #555960;
  background: var(--soft);
  font-size: 0.75rem;
  font-weight: 750;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.contact-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: repeating-linear-gradient(165deg, transparent 0 48px, rgba(225, 6, 0, 0.16) 49px 50px, transparent 51px 64px);
  mask-image: linear-gradient(90deg, transparent 0 35%, #000 100%);
  pointer-events: none;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.contact-copy h2 {
  max-width: 570px;
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 28px;
  color: #b7bac1;
}

.contact-note {
  display: flex;
  max-width: 560px;
  align-items: flex-start;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-note > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: var(--white);
}

.contact-note p {
  margin: 0;
  color: #b7bac1;
  font-size: 0.88rem;
}

.contact-note strong {
  display: block;
  color: var(--white);
}

.email-link,
.contact-facebook-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: 32px;
  border: 1px solid #292a2f;
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 17, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #e9e9ea;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.field label span:not([aria-hidden]) {
  color: #858991;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #3a3b41;
  border-radius: 8px;
  outline: none;
  color: var(--white);
  background: #0b0b0d;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.18);
}

.human-check[hidden] {
  display: none;
}

.human-check {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(225, 6, 0, 0.28);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.09), rgba(255, 255, 255, 0.025));
}

.human-check-header {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.human-check-header label {
  color: #f3f3f4;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.human-check-header label span {
  color: var(--red-bright);
}

.human-check-header button {
  min-height: 44px;
  padding: 0 4px;
  border: 0;
  color: #ff6a63;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 750;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.human-check-header button:hover {
  color: var(--white);
}

.human-check-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 10px;
}

.human-check-question {
  display: flex;
  min-height: 50px;
  align-items: center;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.48);
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
}

.human-check-row input {
  width: 100%;
  min-height: 50px;
  padding: 10px;
  border: 1px solid #3a3b41;
  border-radius: 8px;
  outline: none;
  color: var(--white);
  background: #0b0b0d;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.human-check-row input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.18);
}

.human-check-row input[aria-invalid="true"] {
  border-color: #ff5a52;
}

.human-check-hint,
.human-check-error {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.45;
}

.human-check-hint {
  color: #8f939b;
}

.human-check-error {
  color: #ff8b85;
  font-weight: 700;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-status {
  margin: 0;
  color: #8f939b;
  font-size: 0.7rem;
  line-height: 1.45;
}

.contact.form-relocated .contact-layout {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}

.contact.form-relocated .contact-copy {
  max-width: 760px;
}

.contact.form-relocated .contact-copy h2,
.contact.form-relocated .contact-copy > p:not(.eyebrow),
.contact.form-relocated .contact-note {
  margin-right: auto;
  margin-left: auto;
}

.contact.form-relocated .contact-note {
  max-width: 610px;
  text-align: left;
}

/* Project modal */
.project-modal[hidden] {
  display: none;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.project-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1040px, 100%);
  max-height: calc(100dvh - 48px);
  grid-template-columns: minmax(280px, 0.7fr) minmax(480px, 1.3fr);
  gap: 42px;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  outline: none;
  color: var(--white);
  background:
    radial-gradient(circle at 5% 0%, rgba(225, 6, 0, 0.14), transparent 34%),
    linear-gradient(145deg, #16171b, #090a0c 62%);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(18px) scale(0.985);
  transition: transform 220ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.modal-dialog::before {
  position: absolute;
  top: 0;
  right: 80px;
  left: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  content: "";
}

.project-modal.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease), background-color var(--ease), transform var(--ease);
}

.modal-close:hover {
  color: #ff5a52;
  border-color: rgba(255, 59, 48, 0.5);
  background: rgba(225, 6, 0, 0.1);
  transform: rotate(4deg);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.modal-intro {
  align-self: center;
  padding-right: 6px;
}

.modal-intro h2 {
  max-width: 410px;
  color: var(--white);
  font-size: clamp(2.25rem, 3.4vw, 3.5rem);
}

.modal-intro > p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: #b9bdc5;
  font-size: 0.93rem;
}

.modal-expectation {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-expectation > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(225, 6, 0, 0.36);
  border-radius: 50%;
  color: #ff5a52;
  background: rgba(225, 6, 0, 0.09);
  font-size: 0.66rem;
  font-weight: 800;
}

.modal-expectation p {
  margin: 0;
  color: #9498a1;
  font-size: 0.79rem;
}

.modal-expectation strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.84rem;
}

.modal-form-slot {
  align-self: center;
}

.modal-form-slot .contact-form {
  padding: 30px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.48);
  box-shadow: none;
}

/* Footer */
.site-footer {
  color: #c3c5ca;
  background: linear-gradient(180deg, #151619, #0a0b0d);
  border-top: 1px solid #292a2f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.75fr);
  gap: 60px;
  padding-top: 56px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 320px;
  margin: 17px 0 0;
  color: #9b9ea5;
  font-size: 0.83rem;
}

.footer-grid h2 {
  margin: 10px 0 16px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.footer-grid > div:not(.footer-brand) a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: #aeb1b7;
  font-size: 0.78rem;
  transition: color var(--ease);
}

.footer-grid a:hover {
  color: var(--red-bright);
}

.footer-bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #2b2c30;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
  color: #7f8289;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #aeb1b7;
}

/* Responsive */
@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1060px); }
  .header-inner { gap: 20px; }
  .primary-navigation { gap: 12px; }
  .hero-layout { grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr); gap: 16px; }
  .system-visual { transform: scale(0.91); transform-origin: center; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 380px; }
  .solutions-layout { grid-template-columns: 1fr; }
  .solutions-intro { position: static; max-width: 760px; }
  .foundation-grid { grid-template-columns: repeat(2, 1fr); }
  .foundation-main { grid-row: span 2; }
  .contact-layout { gap: 40px; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .section { padding: 80px 0; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .button-header { display: none; }
  .menu-toggle { display: flex; justify-self: end; grid-column: 3; }
  .primary-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 35;
    display: flex;
    max-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    padding: 0 20px;
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: max-height 280ms ease, opacity var(--ease), visibility var(--ease), padding var(--ease);
  }
  .primary-navigation.is-open { max-height: 430px; padding-top: 12px; padding-bottom: 22px; opacity: 1; visibility: visible; }
  .primary-navigation a { min-height: 54px; justify-content: center; border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.95rem; }
  .primary-navigation a::after { display: none; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 76px; padding-bottom: 55px; }
  .hero-copy-block { max-width: 700px; }
  .hero h1 { max-width: 700px; }
  .system-visual { width: min(720px, 100%); min-height: 590px; margin: 0 auto; transform: none; }
  .founder-strip { margin-top: 38px; }
  .foundation-heading { grid-template-columns: 1fr; gap: 20px; }
  .foundation-heading > p { max-width: 650px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { max-width: 680px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
  .modal-dialog { grid-template-columns: 1fr; gap: 28px; padding: 42px; }
  .modal-intro { max-width: 680px; padding-right: 56px; }
  .modal-intro h2 { max-width: 650px; }
  .modal-intro > p:not(.eyebrow) { max-width: 650px; }
  .modal-expectation { max-width: 620px; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 32px); }
  .section { padding: 68px 0; }
  .hero-layout { padding-top: 58px; }
  .hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .hero-copy { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .founder-strip ul { align-items: flex-start; flex-direction: column; }
  .founder-strip li { width: 100%; }
  .system-visual { min-height: 495px; margin-top: 20px; }
  .dashboard-device { top: 130px; width: 340px; border-width: 8px; transform: translateX(-50%) rotate(2deg); }
  .visual-orb { right: 22px; width: 120px; height: 120px; }
  .visual-base { right: -35px; bottom: 3px; left: -35px; }
  .system-node { width: 148px; min-height: 64px; grid-template-columns: 30px 1fr 16px; padding: 8px; }
  .node-icon { width: 30px; height: 30px; }
  .node-icon svg { width: 18px; height: 18px; }
  .system-node > i { width: 16px; height: 16px; }
  .node-discovery { top: 54px; left: 0; }
  .node-integration { top: 100px; right: -5px; }
  .node-automation { top: 315px; left: -5px; }
  .node-workflows { top: 324px; right: -8px; }
  .node-cloud { display: none; }
  .service-grid,
  .accelerator-grid,
  .foundation-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .accelerator-featured { min-height: auto; }
  .accelerator-featured img { height: 230px; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 42px 20px; }
  .process-list::before { display: none; }
  .foundation-main { grid-row: auto; }
  .architecture-panel,
  .platform-panel,
  .foundation-main { min-height: auto !important; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .project-modal { align-items: end; padding: 12px 0 0; }
  .modal-dialog { width: 100%; max-height: calc(100dvh - 12px); gap: 24px; padding: 34px 20px 24px; border-radius: 22px 22px 0 0; }
  .modal-dialog::before { right: 54px; left: 54px; }
  .modal-close { top: 14px; right: 14px; }
  .modal-intro { padding-right: 48px; }
  .modal-intro h2 { font-size: 2.25rem; }
  .modal-intro > p:not(.eyebrow) { margin: 16px 0 20px; }
  .modal-expectation { display: none; }
  .modal-form-slot .contact-form { padding: 22px; }
}

@media (max-width: 440px) {
  :root { --shell: calc(100% - 28px); }
  .brand { font-size: 0.95rem; }
  .brand img { width: 31px; height: 30px; }
  .hero-layout { padding-top: 48px; }
  .hero h1 { font-size: clamp(2.55rem, 12.5vw, 3.35rem); }
  .eyebrow-line { gap: 10px; font-size: 0.67rem; }
  .eyebrow-line::after { width: 34px; }
  .system-visual { min-height: 430px; margin-top: 16px; }
  .dashboard-device { top: 118px; width: 286px; }
  .dashboard-body { grid-template-columns: 38px 1fr; min-height: 215px; }
  .dashboard-content { padding: 12px; }
  .dashboard-panels { grid-template-columns: 1fr 0.72fr; }
  .chart-panel, .status-panel { min-height: 77px; }
  .chart-panel svg { height: 43px; }
  .system-node { width: 131px; min-height: 57px; grid-template-columns: 26px 1fr 14px; gap: 6px; padding: 7px; }
  .node-icon { width: 26px; height: 26px; border-radius: 6px; }
  .system-node small { font-size: 0.4rem; }
  .system-node strong { font-size: 0.53rem; }
  .system-node > i { width: 14px; height: 14px; font-size: 0.45rem; }
  .node-discovery { top: 47px; }
  .node-integration { top: 82px; }
  .node-automation { top: 275px; }
  .node-workflows { top: 280px; }
  .visual-orb { right: 8px; width: 95px; height: 95px; }
  .visual-base { bottom: -8px; height: 90px; }
  .section-heading h2,
  .solutions-intro h2,
  .foundation-heading h2,
  .contact-copy h2 { font-size: 2.2rem; }
  .process-list { grid-template-columns: 1fr; gap: 34px; }
  .process-list li { display: grid; grid-template-columns: 70px 1fr; align-items: start; gap: 18px; text-align: left; }
  .process-icon { width: 70px; height: 70px; margin: 0; }
  .process-list p { max-width: none; margin-left: 0; }
  .contact-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 15px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .hero-particles { display: none; }
  .hero.motion-ready .hero-pattern,
  .hero.motion-ready .hero-copy-block,
  .hero.motion-ready .visual-orb,
  .hero.motion-ready .dashboard-device,
  .hero.motion-ready .visual-base,
  .hero.motion-ready .system-node { transform: none; }
  .hero.motion-ready .dashboard-device { transform: translateX(-48%) rotate(3deg); }
  .hero.motion-ready .node-discovery { transform: rotate(3deg); }
  .hero.motion-ready .node-integration { transform: rotate(5deg); }
  .hero.motion-ready .node-automation { transform: rotate(-3deg); }
  .hero.motion-ready .node-workflows { transform: rotate(4deg); }
  .hero.motion-ready .node-cloud { transform: rotate(-3deg); }
}

@media print {
  .site-header,
  .hero-actions,
  .contact-form,
  .site-footer { display: none; }
  .section,
  .hero { min-height: 0; padding: 24px 0; background: #fff; color: #000; }
  .system-visual { display: none; }
}

/* Arttechz — refined editorial layout */
body { letter-spacing: -0.012em; }
h1, h2, h3 { font-weight: 600; letter-spacing: -0.055em; text-wrap: balance; }
::selection { background: var(--red); color: #fff; }
.section { padding-block: clamp(80px, 8vw, 128px); }
.eyebrow { font-size: 0.69rem; font-weight: 700; letter-spacing: 0.16em; }
.site-header { background: rgba(7, 7, 9, 0.94); backdrop-filter: blur(16px); }
.brand { letter-spacing: -0.025em; }
.primary-navigation a { font-weight: 500; }
.button { min-height: 52px; border-radius: 7px; font-weight: 600; padding-inline: 24px; }
.button-header { min-height: 44px; padding-inline: 18px; }
.button svg { transition: transform var(--ease); }
.button:hover svg { transform: translateX(4px); }
.button-primary { background: linear-gradient(135deg, #ec180f, #c50600); box-shadow: 0 4px 18px #e1060024, inset 0 1px 0 #ffffff30; }
.button-primary:hover { box-shadow: 0 8px 28px #e1060045, inset 0 1px 0 #ffffff50; }
.hero {
  min-height: 0;
  isolation: isolate;
  color: #fff;
  background: radial-gradient(ellipse at 78% 42%, #2e0c0f 0, #11090c 28%, #08090b 64%);
}
.hero-pattern { opacity: 0.32; background: linear-gradient(#ffffff08 1px, transparent 1px), linear-gradient(90deg, #ffffff08 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, transparent, #000); }
.hero-pattern::before, .hero-pattern::after { display: none; }
.hero-particles { opacity: 0.55; }
.hero-layout { min-height: min(740px, calc(100svh - 146px)); grid-template-columns: 1.03fr 1fr; gap: 12px; align-items: center; padding-block: 70px 48px; }
.hero-copy-block { max-width: 690px; }
.hero.motion-ready .hero-copy-block { transform: none; will-change: auto; }
.hero .eyebrow { color: #ff827a; margin-bottom: 30px; }
.eyebrow-line::after { width: 32px; height: 1px; }
.hero h1 { color: #fafafa; max-width: 700px; font-size: clamp(3.8rem, 6.2vw, 6.25rem); font-weight: 550; line-height: 1.02; letter-spacing: -0.065em; }
.hero h1 span { display: inline; color: #ff5148; }
.hero-copy { max-width: 450px; color: #b0b0b8; font-size: 1.04rem; line-height: 1.8; margin-block: 28px 34px; }
.hero .button-secondary { background: #ffffff04; border-color: #ffffff2b; color: #eeeef0; }
.hero .button-secondary:hover { border-color: #ffffff75; background: #ffffff0b; }
.founder-strip { margin-top: 40px; }
.founder-strip > span { color: #94949f; font-size: 0.59rem; margin-bottom: 10px; letter-spacing: 0.17em; }
.founder-strip ul { gap: 8px 16px; }
.founder-strip li { width: auto; padding: 0; min-height: 24px; border: 0; background: none; color: #babac2; font-size: 0.69rem; font-weight: 400; }
.founder-strip li + li::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: #e34b45; margin-right: 16px; }
.hero-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; min-height: 82px; padding-block: 12px; border-top: 1px solid #ffffff16; }
.explore-link { display: inline-flex; gap: 14px; align-items: center; min-height: 44px; font-size: 0.74rem; color: #d8d8df; }
.explore-link > span:last-child { transition: transform var(--ease); }
.explore-link:hover > span:last-child { transform: translateY(4px); }
.scroll-mark { width: 18px; height: 26px; border: 1px solid #ffffff40; border-radius: 10px; display: grid; justify-items: center; padding-top: 6px; }
.scroll-mark::before { content: ''; width: 2px; height: 5px; border-radius: 2px; background: #ff6f65; }
.hero-signature { color: #8f8f9a; font-size: 0.7rem; }
.motion-toggle { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 12px; border: 1px solid #ffffff1f; border-radius: 6px; background: transparent; color: #b6b6bf; cursor: pointer; font-size: 0.68rem; }
.motion-toggle[hidden] { display: none; }
.motion-toggle:hover { color: #fff; border-color: #ffffff60; }
.innovation-visual { position: relative; width: 100%; min-width: 0; aspect-ratio: 1; }
.orbital-stage { position: absolute; inset: 0; transform: translate3d(var(--motion-x, 0px), var(--motion-y, 0px), 0); }
.orbital-glow { position: absolute; inset: 22%; border-radius: 50%; background: radial-gradient(circle, #e106003a, #e1060000 70%); transform: scale(1.4); }
.orbital-grid { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; fill: none; }
.orbit-boundary { stroke: #ffffff10; stroke-width: 1; }
.orbit-axis { stroke: #ffffff09; stroke-width: 1; }
.orbit-track ellipse { stroke: url(#orbit-red); stroke-width: 1.2; }
.orbit-satellite { fill: #ff736a; transform-origin: 300px 300px; }
.orbit-signal { stroke: #f34b43; stroke-width: 2; stroke-dasharray: 8 92; transform-origin: 300px 300px; }
.brand-core { position: absolute; inset: 31%; padding: 1px; border-radius: 28%; transform: rotate(-12deg); background: linear-gradient(140deg, #ffb6ad65, #e1060030 50%, #ffffff20); box-shadow: -12px -12px 60px #f32b1514, 20px 30px 70px #0009; }
.core-face { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; width: 100%; height: 100%; border-radius: inherit; background: radial-gradient(circle at 20% 0, #5b181b, #180c0f 58%, #0d0b0e); box-shadow: inset 0 1px 2px #ffffff21; }
.core-face img { width: 47%; height: auto; transform: rotate(12deg); filter: drop-shadow(0 0 22px #e1060060); }
.core-face span { color: #fff; font-size: clamp(0.6rem, 1vw, 0.86rem); letter-spacing: 0.18em; transform: rotate(12deg); }
.orbit-label { position: absolute; z-index: 2; padding: 14px 18px; border: 1px solid #ffffff15; border-radius: 10px; background: linear-gradient(135deg, #231317f5, #101013fa); box-shadow: 0 10px 35px #0004; }
.orbit-label span { display: block; color: #ef8e86; font: 0.55rem/1.5 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: 0.1em; }
.orbit-label strong { display: block; margin-top: 5px; color: #dedee5; font-size: 0.74rem; font-weight: 500; }
.orbit-label-top { top: 10%; left: 12%; }
.orbit-label-side { top: 43%; right: -1%; }
.orbit-label-bottom { bottom: 15%; left: 4%; }
.visual-coordinate { position: absolute; bottom: 3%; left: 0; right: 0; text-align: center; color: #89808c; font: 0.52rem/1.5 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: 0.17em; }
.section-heading { max-width: 800px; margin-bottom: 58px; }
.section-heading h2, .foundation-heading h2, .contact-copy h2 { font-size: clamp(2.5rem, 4.2vw, 4rem); line-height: 1.1; }
.section-heading > p:last-child { max-width: 540px; line-height: 1.8; font-size: 0.97rem; margin-top: 24px; }
.services { background: #0e0f12; }
.services::before { opacity: 0.22; }
.services::after { opacity: 0.1; }
.services .eyebrow, .contact .eyebrow { color: #ff837b; }
.service-grid { gap: 18px; }
.service-card { padding: 30px 24px; border-color: #ffffff16; border-radius: 12px; box-shadow: none; background: linear-gradient(150deg, #191a1f, #121316); }
.service-card:nth-child(-n + 2) { border-color: #ffffff24; background: linear-gradient(150deg, #202024, #131417); }
.service-card::before { opacity: 0; }
.service-card h3 { font-size: 1.3rem; line-height: 1.2; letter-spacing: -0.035em; }
.service-card > p { font-size: 0.86rem; line-height: 1.8; color: #b7b7c0; }
.service-card ul { color: #aaaab5; }
.service-card a { color: #ff837b; font-weight: 600; }
.service-card .card-icon { border: 1px solid #ffffff1a; border-radius: 10px; color: #ff6f65; background: #ffffff04; }
.service-card:hover { box-shadow: 0 24px 48px #0004; transform: translateY(-4px); }
.solutions { border: 0; background: #f7f7f8; }
.solutions-layout { grid-template-columns: minmax(250px, .85fr) minmax(0, 1.65fr); gap: 64px; }
.solutions-intro h2 { font-size: clamp(2.6rem, 3.6vw, 3.7rem); line-height: 1.08; }
.solutions-intro > p:not(.eyebrow) { color: #686872; font-size: 0.97rem; line-height: 1.8; }
.accelerator-grid { gap: 20px; }
.accelerator-card { border-color: #e6e6ea; box-shadow: 0 8px 24px #00000003; border-radius: 12px; background: #fff; transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease); }
.accelerator-card h3 { font-size: 1.55rem; line-height: 1.15; }
.accelerator-featured > div { padding: 28px 26px 12px; }
.accelerator-featured img { height: 240px; padding: 14px; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.accelerator-featured:hover img { transform: scale(1.035); }
.accelerator-featured:hover { border-color: #d5a5a3; box-shadow: 0 18px 40px #00000008; }
.compact-card { padding: 26px; min-height: auto; background: transparent; border: 0; border-top: 1px solid #dedee3; border-radius: 0; box-shadow: none; }
.compact-card .card-icon { width: 36px; height: 36px; border: 0; background: transparent; margin-bottom: 14px; }
.compact-card h3 { font-size: 1.2rem; }
.process { border-top: 1px solid #e8e8ec; }
.process-list { gap: 40px; }
.process-list::before { background: linear-gradient(90deg, #e10600, #e1060030); transform: scaleX(1); transform-origin: left; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.process-icon { width: 80px; height: 80px; border-color: #eeeeef; box-shadow: 0 8px 25px #00000004; }
.process-list h3 { font-size: 1.22rem; }
.process-list p { font-size: 0.87rem; line-height: 1.75; color: #676773; }
.foundation { background: #f5f5f7; }
.foundation-heading { gap: 80px; }
.foundation-grid { gap: 20px; }
.foundation-grid article { border-radius: 12px; box-shadow: none; }
.foundation-main { background: radial-gradient(ellipse at 0 0, #381317, #101013 70%); }
.foundation-main h3 { line-height: 1.15; }
.foundation-main .card-kicker { color: #ff8d86; }
.foundation-main > p:not(.card-kicker) { font-size: 0.92rem; line-height: 1.75; }
.foundation-grid.business-examples { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.business-examples > article { padding: clamp(26px, 3vw, 42px); border: 1px solid #e1e1e6; }
.business-flow-card { background: #fff; }
.business-access-card { background: #fafafa; }
.business-examples h3 { max-width: 420px; font-size: clamp(1.65rem, 2.2vw, 2rem); line-height: 1.15; }
.business-examples .business-card-intro { color: #62626d; font-size: .94rem; line-height: 1.7; margin: 16px 0 28px; max-width: 440px; }
.business-examples h4 { margin: 0; color: #18181d; font-size: 1rem; font-weight: 650; line-height: 1.4; letter-spacing: -.025em; }
.business-flow, .business-channels { padding: 0; margin: 0; list-style: none; }
.business-flow li { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 16px; position: relative; padding-bottom: 26px; }
.business-flow li:last-child { padding-bottom: 0; }
.business-flow li:not(:last-child)::after { content: ''; position: absolute; width: 1px; left: 18px; top: 43px; bottom: 5px; background: linear-gradient(#e1060059, #e1060020); }
.business-step { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #f0d3d0; border-radius: 50%; color: #b30000; background: #fff4f3; font: 600 .7rem ui-monospace, SFMono-Regular, Consolas, monospace; }
.business-flow li p, .business-channels li p { margin: 6px 0 0; color: #64646f; font-size: .88rem; line-height: 1.7; }
.business-outcome { display: flex; align-items: flex-start; gap: 10px; margin: 26px 0 0; padding-top: 22px; border-top: 1px solid #e7e7eb; color: #45454f; font-size: .85rem; line-height: 1.6; }
.business-outcome svg, .channel-icon svg { width: 22px; height: 22px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.business-outcome svg { color: #c20c06; }
.business-channels li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 16px; padding-block: 23px; border-top: 1px solid #e4e4e9; }
.business-channels li:first-child { padding-top: 0; border-top: 0; }
.business-channels li:last-child { padding-bottom: 0; }
.channel-icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #e4e4e9; border-radius: 10px; color: #c20c06; background: #fff; }
.business-next-step { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 32px; padding-top: 28px; border-top: 1px solid #dedee4; }
.business-next-step p { margin: 0; max-width: 580px; color: #666670; font-size: .92rem; line-height: 1.7; }
.business-next-step strong { display: block; color: #202026; font-weight: 600; }
.business-next-step .button { flex-shrink: 0; }
@media (max-width: 900px) {
  .foundation-grid.business-examples { grid-template-columns: 1fr; }
  .business-next-step { align-items: flex-start; flex-direction: column; gap: 20px; }
}
@media (max-width: 440px) {
  .business-flow li, .business-channels li { gap: 12px; }
  .business-examples h4 { font-size: .96rem; }
  .business-next-step .button { width: 100%; }
}
.contact { padding-block: clamp(90px, 10vw, 150px); background: radial-gradient(ellipse at 50% 120%, #3a0b0e, #09090b 60%); }
.contact.form-relocated .contact-layout { grid-template-columns: minmax(0, 850px); }
.contact.form-relocated .contact-copy { max-width: 850px; }
.contact-copy h2 { max-width: 850px; font-size: clamp(2.7rem, 5vw, 4.6rem); }
.contact-copy > p:not(.eyebrow) { max-width: 570px; line-height: 1.8; }
.contact.form-relocated .contact-note { display: none; }
.contact-project-link { margin: 14px 0; }
.contact-locations-link { margin-top: 24px; color: #eeeef0; border-color: #ffffff40; background: transparent; }
.contact-locations-link:hover { color: #fff; background: #ffffff0d; border-color: #ffffff80; }
.contact.form-relocated .email-link,
.contact.form-relocated .contact-facebook-link { display: flex; width: fit-content; margin: 18px auto 0; color: #b5b5c0; font-weight: 400; }
.site-footer { background: #09090b; }
.footer-grid { padding-block: 56px; }
.footer-grid > div > a:hover { color: #ff837b; }
.field input, .field textarea, .human-check-row input { font-size: 16px; }
.modal-dialog { scrollbar-width: thin; scrollbar-color: #555 #151519; }

/* One-time entrances, sequential reveals, and a quiet orbital scene. */
@keyframes premium-enter { from { opacity: 0; translate: 0 24px; } to { opacity: 1; translate: 0 0; } }
@keyframes orbit-turn { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes core-breathe { 0%, 100% { scale: 1; } 50% { scale: 1.035; } }
@keyframes core-float { 0%, 100% { transform: translateY(0) rotate(-12deg); } 50% { transform: translateY(-9px) rotate(-9deg); } }
@keyframes scroll-hint { 0%, 100% { translate: 0 0; opacity: .5; } 50% { translate: 0 5px; opacity: 1; } }
.motion-enabled .hero-copy-block > * { animation: premium-enter 800ms cubic-bezier(.2,.75,.25,1) both; animation-delay: var(--entrance-delay, 0ms); }
.motion-enabled .hero-copy-block > :nth-child(2) { --entrance-delay: 90ms; }
.motion-enabled .hero-copy-block > :nth-child(3) { --entrance-delay: 170ms; }
.motion-enabled .hero-copy-block > :nth-child(4) { --entrance-delay: 240ms; }
.motion-enabled .hero-copy-block > :nth-child(5) { --entrance-delay: 310ms; }
.motion-enabled .innovation-visual { animation: premium-enter 1200ms 120ms cubic-bezier(.2,.75,.25,1) both; }
.motion-enabled .orbit-satellite { animation: orbit-turn 38s linear infinite; }
.motion-enabled .orbit-signal { animation: orbit-turn 22s linear infinite reverse; }
.motion-enabled .brand-core { animation: core-breathe 8s ease-in-out infinite; }
.motion-enabled .scroll-mark::before { animation: scroll-hint 2.8s ease-in-out infinite; }
.hero:not(.is-active-scene) .orbit-satellite, .hero:not(.is-active-scene) .orbit-signal, .hero:not(.is-active-scene) .brand-core, .hero:not(.is-active-scene) .scroll-mark::before { animation-play-state: paused; }
.reveal-item { transition: opacity 650ms ease, translate 650ms cubic-bezier(.2,.75,.25,1); transition-delay: var(--reveal-delay, 0ms); }
.motion-enabled .reveal-item.reveal-pending { opacity: 0; translate: 0 24px; }
.motion-enabled .process:not(.section-seen) .process-list::before { transform: scaleX(0); }
.motion-enabled .reveal-item:focus-within { opacity: 1; translate: none; transition-delay: 0ms; }
[data-spotlight] { background-image: radial-gradient(360px circle at var(--spot-x, 50%) var(--spot-y, 0%), #ef332710, transparent 70%), linear-gradient(150deg, #191a1f, #121316); }
.service-card:nth-child(-n + 2)[data-spotlight] { background-image: radial-gradient(360px circle at var(--spot-x, 50%) var(--spot-y, 0%), #ef33271f, transparent 70%), linear-gradient(150deg, #202024, #131417); }

@media (min-width: 901px) and (max-width: 1120px) {
  .hero-layout { grid-template-columns: 1.05fr 1fr; gap: 8px; min-height: 650px; }
  .hero h1 { font-size: 4.25rem; }
  .hero .eyebrow { font-size: .62rem; }
  .orbit-label { padding: 12px; }
  .orbit-label strong { font-size: .65rem; }
  .solutions-layout { grid-template-columns: 1fr; }
  .solutions-intro { max-width: 700px; }
}
@media (max-width: 900px) {
  :root { --shell: calc(100% - 48px); }
  .hero-layout { grid-template-columns: 1fr; min-height: 0; padding-block: 72px 30px; gap: 28px; }
  .hero-copy-block { max-width: 680px; }
  .hero h1 { font-size: clamp(3.8rem, 9vw, 5.5rem); }
  .hero-copy { max-width: 540px; }
  .innovation-visual { width: min(530px, 100%); margin-inline: auto; }
  .hero-signature { display: none; }
  .solutions-layout { grid-template-columns: 1fr; gap: 42px; }
  .solutions-intro { max-width: 650px; }
  .foundation-heading { gap: 24px; }
  .motion-enabled .hero-copy-block > *, .motion-enabled .innovation-visual { animation-duration: 550ms; }
  .motion-enabled .orbit-signal { animation-duration: 14s; }
  .motion-enabled .orbit-satellite { animation-duration: 22s; }
  .motion-enabled .brand-core { animation: core-float 6s ease-in-out infinite; }
  .reveal-item { transition-duration: 450ms; }
  .hero .hero-particles { display: none; }
}
@media (max-width: 600px) {
  :root { --shell: calc(100% - 40px); }
  .hero-layout { padding-top: 52px; gap: 10px; }
  .hero h1 { font-size: clamp(3.25rem, 12.4vw, 4.5rem); }
  .hero .eyebrow { font-size: .57rem; gap: 10px; margin-bottom: 24px; letter-spacing: .12em; }
  .hero-copy { font-size: .95rem; margin-block: 24px 28px; line-height: 1.75; }
  .hero-actions { gap: 10px; }
  .hero-actions .button { padding-inline: 17px; font-size: .78rem; }
  .founder-strip { margin-top: 28px; }
  .founder-strip ul { flex-direction: row; gap: 6px 12px; }
  .founder-strip li { font-size: .62rem; }
  .founder-strip li + li::before { margin-right: 12px; }
  .innovation-visual { margin-top: 18px; }
  .orbit-label { padding: 9px 11px; border-radius: 7px; }
  .orbit-label span { font-size: .46rem; }
  .orbit-label strong { font-size: .58rem; }
  .orbit-label-top { top: 8%; left: 4%; }
  .orbit-label-side { right: -1%; top: 45%; }
  .orbit-label-bottom { bottom: 10%; left: 1%; }
  .visual-coordinate { bottom: -2%; font-size: .42rem; }
  .core-face { gap: 8px; }
  .core-face span { font-size: .49rem; }
  .hero-bottom { margin-top: 16px; gap: 4px; }
  .explore-link { font-size: .65rem; gap: 9px; }
  .motion-toggle { font-size: .62rem; padding-inline: 8px; }
  .section { padding-block: 76px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .foundation-heading h2, .solutions-intro h2 { font-size: 2.5rem; }
  .section-heading > p:last-child { font-size: .9rem; margin-top: 20px; }
  .service-card { padding: 28px; }
  .service-grid { gap: 14px; }
  .accelerator-featured img { height: 250px; }
  .process-list { gap: 34px 20px; }
  .foundation-grid article { padding: 26px; }
  .contact-copy h2 { font-size: 2.65rem; }
  .modal-dialog { padding-bottom: max(24px, env(safe-area-inset-bottom)); }
  .motion-enabled .orbit-satellite { animation-duration: 18s; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-item { opacity: 1 !important; translate: none !important; }
  .orbital-stage { transform: none; }
  .motion-toggle { display: none; }
  .process-list::before { transform: none !important; }
}
@media print {
  .innovation-visual, .hero-bottom, .project-modal { display: none !important; }
  .hero { background: #fff; }
  .hero h1, .hero-copy { color: #111; }
  .reveal-item { opacity: 1 !important; translate: none !important; }
}
