@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-roman.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #111113;
  --dark: #0b0b0c;
  --dark-soft: #151517;
  --paper: #f4f2ec;
  --paper-soft: #e9e6de;
  --white: #fff;
  --muted: #6e6b68;
  --muted-dark: #9a9894;
  --red: #ff3b32;
  --red-dark: #de271f;
  --blue: #168ff0;
  --cyan: #6ee7ee;
  --line: rgba(17, 17, 19, 0.18);
  --line-dark: rgba(255, 255, 255, 0.18);
  --page: min(1500px, calc(100vw - 72px));
  --section-space: clamp(92px, 9vw, 150px);
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  opacity: 0.032;
  background: url("assets/noise.svg") repeat;
  mix-blend-mode: multiply;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }

::selection { color: var(--white); background: var(--red); }

* { scrollbar-width: thin; scrollbar-color: var(--red) var(--dark); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); }

.cursor-dot,
.cursor-ring { display: none; }

@media (hover: hover) and (pointer: fine) {
  .js body,
  .js a,
  .js button,
  .js summary,
  .js select { cursor: none; }

  .js input,
  .js textarea { cursor: text; }

  .js .cursor-dot,
  .js .cursor-ring {
    position: fixed;
    z-index: 120;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
    border-radius: 50%;
    will-change: transform;
  }

  .js .cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--red);
    box-shadow: 0 0 16px rgba(255, 59, 50, 0.65);
  }

  .js .cursor-ring {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 59, 50, 0.56);
    transition: width 0.28s ease, height 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  }

  .js .cursor-ring span {
    opacity: 0;
    color: var(--white);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
  }

  .js .cursor-ring.is-active {
    width: 64px;
    height: 64px;
    border-color: var(--red);
    background: var(--red);
  }

  .js .cursor-ring.is-active span { opacity: 1; }
  .js .cursor-dot.is-hidden,
  .js .cursor-ring.is-hidden,
  .js .cursor-dot.is-form,
  .js .cursor-ring.is-form { opacity: 0; }
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--dark);
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }
.section { width: var(--page); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  color: var(--white);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line-dark);
}

.scroll-progress {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(244, 242, 236, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after { background: var(--line); }

.header-inner {
  width: var(--page);
  height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark i {
  position: absolute;
  left: 10px;
  top: 8px;
  width: 1px;
  height: 16px;
  background: currentColor;
}

.brand-mark i:nth-child(2) {
  left: 15px;
  top: 13px;
  width: 8px;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: left center;
  background: var(--red);
}

.brand-mark i:nth-child(3) {
  left: 20px;
  top: 8px;
  height: 16px;
  transform: rotate(25deg);
  background: var(--red);
}

.brand-copy {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
}

.brand-copy small {
  margin-top: 5px;
  display: block;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.25em;
  opacity: 0.62;
}

.primary-nav { display: flex; gap: clamp(22px, 2.4vw, 42px); }

.primary-nav a,
.header-cta {
  position: relative;
  font-size: 12px;
  line-height: 1;
}

[data-magnetic] { will-change: transform; }

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  justify-self: end;
  padding: 14px 0;
  border-bottom: 1px solid var(--red);
}

.header-cta span { margin-left: 12px; color: var(--red); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 920px;
  height: min(960px, 100svh);
  color: var(--white);
  background: var(--dark);
  isolation: isolate;
}

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

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 4%;
  right: -12%;
  width: min(72vw, 1020px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.78;
  background:
    radial-gradient(circle at 58% 44%, rgba(110, 231, 238, 0.45), transparent 9%),
    radial-gradient(circle at 54% 47%, rgba(22, 143, 240, 0.9), transparent 29%),
    radial-gradient(circle at 46% 51%, rgba(5, 40, 76, 0.8), transparent 56%);
  filter: blur(12px);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, rgba(11, 11, 12, 0.96) 37%, rgba(11, 11, 12, 0.1) 72%);
}

.hero-inner {
  width: var(--page);
  height: 100%;
  min-height: inherit;
  margin-inline: auto;
  padding-top: 142px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(55px, 8vw, 130px);
  align-items: center;
}

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

.kicker {
  margin: 0 0 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.kicker span { width: 27px; height: 1px; flex: 0 0 auto; background: var(--red); }
.kicker-red { color: #6c6865; }

.hero h1,
.section-head h2,
.connected-copy h2,
.principles h2,
.focus-heading h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.067em;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(64px, 6.45vw, 99px);
  line-height: 0.91;
}

.title-line {
  display: block;
  overflow: hidden;
  margin-bottom: -0.08em;
  padding-bottom: 0.08em;
}

.title-line > span {
  display: block;
}

.js .hero-copy .title-line > span {
  opacity: 0;
  transform: translateY(108%);
  transition: opacity 0.01s linear 0.08s, transform 0.9s cubic-bezier(0.2, 0.76, 0.24, 1) 0.08s;
}

.js .hero-copy.is-visible .title-line > span { opacity: 1; transform: none; }
.js .hero-copy.is-visible .title-line:nth-child(2) > span { transition-delay: 0.15s; }
.js .hero-copy.is-visible .title-line:nth-child(3) > span { transition-delay: 0.22s; }
.js .hero-copy.is-visible .title-line:nth-child(4) > span { transition-delay: 0.29s; }

.hero h1 em {
  color: var(--cyan);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.hero-lede {
  max-width: 690px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
}

.hero-actions { margin-top: 45px; display: flex; align-items: center; gap: 33px; }

.button {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.52) 49%, transparent 78%);
  transform: translateX(-125%);
  transition: transform 0.65s ease;
}

.button:hover::before { transform: translateX(125%); }
.button > * { position: relative; z-index: 1; }

.button:hover { transform: translateY(-2px); }
.button-light { color: var(--dark); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--red); }
.button-accent { color: var(--white); background: var(--red); }
.button-accent:hover { background: var(--red-dark); }

.text-link {
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
}

.text-link-dark { color: rgba(255, 255, 255, 0.62); }

.hero-system {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 1;
  justify-self: end;
  transform-style: preserve-3d;
  will-change: transform;
}

.system-orbit {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.orbit-one { animation: orbit-breathe 5s ease-in-out infinite; }
.orbit-two { inset: 27%; border-color: rgba(110, 231, 238, 0.38); animation: orbit-breathe 5s 1.25s ease-in-out infinite; }

.system-center {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(9, 30, 48, 0.52);
  box-shadow: 0 0 80px rgba(110, 231, 238, 0.22);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  animation: center-pulse 4.2s ease-in-out infinite;
}

.system-center span { font-size: 22px; font-weight: 700; letter-spacing: 0.16em; }
.system-center i { position: absolute; top: 25px; right: 23px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); }

.system-node {
  position: absolute;
  min-width: 124px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 18, 26, 0.58);
  backdrop-filter: blur(14px);
  font-size: 11px;
  animation: node-float 5s ease-in-out infinite;
}

.system-node i { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.system-node small { color: rgba(255, 255, 255, 0.44); font-size: 8px; }
.node-product { top: 8%; left: 13%; }
.node-software { top: 37%; right: -1%; animation-delay: -1.6s; }
.node-growth { bottom: 7%; left: 16%; animation-delay: -3.2s; }

@keyframes orbit-breathe { 50% { transform: scale(1.025); opacity: 0.62; } }
@keyframes node-float { 50% { transform: translateY(-8px); } }
@keyframes center-pulse { 50% { box-shadow: 0 0 115px rgba(110, 231, 238, 0.34); } }

.hero-journey {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0 0 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.hero-journey li {
  padding: 22px 28px 0 0;
  display: flex;
  gap: 18px;
  border-right: 1px solid var(--line-dark);
}

.hero-journey li:not(:first-child) { padding-left: 28px; }
.hero-journey li:last-child { border-right: 0; }
.hero-journey span { color: var(--cyan); font-size: 9px; }
.hero-journey p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }

.capability-marquee {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
  border-block: 1px solid rgba(255, 255, 255, 0.25);
}

.capability-marquee::before,
.capability-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 9vw;
  pointer-events: none;
}

.capability-marquee::before { left: 0; background: linear-gradient(90deg, var(--red), transparent); }
.capability-marquee::after { right: 0; background: linear-gradient(-90deg, var(--red), transparent); }

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 34s linear infinite;
  will-change: transform;
}

.marquee-group {
  min-width: 100vw;
  flex: 0 0 auto;
  padding: 17px 36px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 35px;
}

.marquee-group span { font-size: 9px; font-weight: 650; letter-spacing: 0.17em; text-transform: uppercase; white-space: nowrap; }
.marquee-group i { width: 5px; height: 5px; flex: 0 0 5px; border: 1px solid var(--white); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

.services { padding-block: var(--section-space); }

.section-head {
  margin-bottom: clamp(58px, 6.4vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: end;
}

.section-head h2 { max-width: 940px; font-size: clamp(54px, 5.65vw, 86px); line-height: 0.97; }
.section-head > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.55; }

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

.service-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  isolation: isolate;
  min-height: 390px;
  padding: clamp(25px, 2.35vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(17, 17, 19, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
}

.service-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(440px circle at var(--spot-x) var(--spot-y), rgba(110, 231, 238, 0.18), transparent 42%);
  transition: opacity 0.35s ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 26px 75px rgba(26, 23, 21, 0.16);
  transform: perspective(1000px) translateY(-6px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.service-card:hover::before { opacity: 1; }
.service-card > * { transform: translateZ(18px); }

.card-meta { display: flex; justify-content: space-between; align-items: start; }
.card-meta > span { color: #aaa6a1; font: italic 38px/1 var(--serif); }
.card-meta small { padding: 8px 12px; border-radius: 40px; color: #77736f; background: rgba(17, 17, 19, 0.05); font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; }
.service-card:hover .card-meta small { color: rgba(255, 255, 255, 0.68); background: rgba(255, 255, 255, 0.09); }
.service-card h3 { max-width: 370px; margin: 0; font-size: clamp(26px, 2.15vw, 34px); line-height: 1.03; letter-spacing: -0.045em; }
.service-card p { max-width: 390px; margin: 17px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.service-card:hover p { color: rgba(255, 255, 255, 0.6); }
.service-card > a { display: flex; justify-content: space-between; align-items: end; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.service-card > a span { font-size: 20px; font-weight: 400; letter-spacing: 0; }
.service-card-wide { grid-column: 1 / -1; min-height: 290px; color: var(--white); background: var(--red); border-color: transparent; }
.service-card-wide:hover { background: var(--red-dark); }
.service-card-wide::before { background: radial-gradient(520px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.19), transparent 43%); }
.service-card-wide .card-meta > span,
.service-card-wide p { color: rgba(255, 255, 255, 0.72); }
.service-card-wide .card-meta small { color: var(--red-dark); background: rgba(255, 255, 255, 0.68); }
.service-card-wide h3 { max-width: 650px; font-size: clamp(34px, 3.2vw, 50px); }
.service-card-wide > div:nth-child(2) { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 80px; }

.connected-wrap {
  min-height: 250vh;
  color: var(--white);
  background: var(--dark);
  scroll-margin-top: 0;
}

.connected-model {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 47%, rgba(255, 255, 255, 0.035), transparent 29%),
    var(--dark);
}

.connected-frame {
  position: absolute;
  z-index: -1;
  inset: 104px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  pointer-events: none;
}

.connected-grid {
  height: 100%;
  padding: 124px 0 90px;
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(660px, 1.22fr);
  gap: clamp(48px, 6vw, 108px);
  align-items: center;
}

.connected-copy {
  padding-bottom: 3px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.connected-copy h2 {
  max-width: 670px;
  font-size: clamp(62px, 6.1vw, 100px);
  line-height: 0.9;
}

.connected-copy h2 em {
  color: #c8c7c2;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.connected-lede {
  max-width: 530px;
  margin: 35px 0 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.65;
}

.connected-tabs {
  max-width: 545px;
  margin-top: auto;
  border-top: 1px solid var(--line-dark);
}

.connected-tabs button {
  position: relative;
  width: 100%;
  min-height: 59px;
  padding: 0;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.34);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  text-align: left;
  transition: color 0.3s ease;
}

.connected-tabs button::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 73%);
  transform: scaleX(0.6);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.connected-tabs button > * { position: relative; }
.connected-tabs button span { font-size: 8px; letter-spacing: 0.15em; }
.connected-tabs button b { font-size: 17px; font-weight: 460; }
.connected-tabs button i { width: 0; height: 1px; display: block; background: var(--red); transition: width 0.45s ease; }
.connected-tabs button.is-active { color: var(--white); }
.connected-tabs button.is-active::before { opacity: 1; transform: scaleX(1); }
.connected-tabs button.is-active i { width: 42px; }
.connected-tabs button:focus-visible { outline: 1px solid var(--red); outline-offset: 4px; }

.connected-stage {
  position: relative;
  min-width: 0;
  height: min(650px, calc(100svh - 205px));
  min-height: 500px;
}

.connected-visual {
  position: absolute;
  inset: 0 0 118px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 43%),
    rgba(255, 255, 255, 0.012);
}

.connected-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.62;
  pointer-events: none;
  background: linear-gradient(90deg, var(--dark), transparent 10%, transparent 90%, var(--dark));
}

.connected-field { width: 100%; height: 100%; display: block; }
.connected-field-grid path { fill: none; stroke: rgba(255, 255, 255, 0.045); stroke-width: 1; vector-effect: non-scaling-stroke; }
.connected-flow-lines path { fill: none; stroke: url(#connected-line-gradient); stroke-width: 1.15; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.connected-flow-lines path:nth-child(5n) { stroke-width: 1.7; }
.connected-waypoints > g { opacity: 0.25; transition: opacity 0.5s ease; }
.connected-waypoints > g.is-active { opacity: 1; }
.connected-waypoint-halo { fill: url(#connected-node-glow); filter: url(#connected-soft-glow); }
.connected-waypoint-ring { fill: var(--dark); stroke: rgba(255, 255, 255, 0.67); stroke-width: 1; vector-effect: non-scaling-stroke; }
.connected-waypoint-core { fill: var(--red); }
.connected-visual-labels text { fill: rgba(255, 255, 255, 0.25); font-family: var(--sans); font-size: 7px; letter-spacing: 0.18em; }

.connected-visual-index {
  position: absolute;
  z-index: 2;
  right: 25px;
  top: 22px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.connected-visual-index span { font-size: 32px; font-weight: 330; letter-spacing: -0.06em; }
.connected-visual-index i { color: rgba(255, 255, 255, 0.26); font-size: 8px; font-style: normal; }

.connected-panels {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 3vw, 54px);
  bottom: 0;
  width: min(660px, calc(100% - 36px));
  min-height: 255px;
  padding: clamp(24px, 2.5vw, 38px) clamp(25px, 3.3vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.38);
}

.connected-panel { animation: connected-panel-in 0.52s cubic-bezier(0.2, 0.75, 0.2, 1) both; }
.connected-panel[hidden] { display: none; }
.connected-panel-meta { margin: 0 0 18px; color: var(--red); font-size: 8px; letter-spacing: 0.19em; text-transform: uppercase; }

.connected-panel h3 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(27px, 2.5vw, 42px);
  font-weight: 470;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.connected-panel > p:not(.connected-panel-meta) { max-width: 570px; margin: 18px 0 0; color: var(--muted-dark); font-size: 12px; line-height: 1.55; }
.connected-panel ul { margin: 23px 0 0; padding: 16px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; border-top: 1px solid var(--line-dark); list-style: none; }
.connected-panel li { color: rgba(255, 255, 255, 0.48); font-size: 7px; letter-spacing: 0.12em; text-transform: uppercase; }

@keyframes connected-panel-in { from { opacity: 0; transform: translateY(10px); } }

.connected-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 76px;
  display: grid;
  grid-template-columns: 65px 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
}

.connected-footer p { margin: 0; color: rgba(255, 255, 255, 0.33); font-size: 8px; letter-spacing: 0.14em; }
.connected-footer p span { color: var(--white); }
.connected-progress { height: 1px; overflow: hidden; background: rgba(255, 255, 255, 0.12); }
.connected-progress i { width: 100%; height: 100%; display: block; background: linear-gradient(90deg, var(--red), #d5d4cf); transform: scaleX(0); transform-origin: left; }
.connected-footer > a { display: flex; gap: 45px; align-items: center; font-size: 11px; }
.connected-footer > a span { color: var(--red); }

@media (max-width: 1280px) and (min-width: 1041px) {
  .connected-grid { grid-template-columns: minmax(330px, 0.76fr) minmax(580px, 1.24fr); gap: 40px; }
  .connected-copy h2 { font-size: clamp(58px, 5.8vw, 78px); }
  .connected-panels { right: 22px; }
}

@media (max-width: 1040px) {
  .connected-wrap { height: auto; min-height: 0; }
  .connected-model { position: relative; height: auto; min-height: 0; overflow: visible; }
  .connected-frame { inset: 100px 12px 12px; }
  .connected-grid { height: auto; min-height: 0; padding: 150px 0 112px; display: block; }
  .connected-copy { padding: 0; }
  .connected-copy h2 { max-width: 780px; }
  .connected-lede { max-width: 650px; }
  .connected-tabs { max-width: none; margin-top: 58px; }
  .connected-stage { height: auto; min-height: 0; margin-top: 48px; display: flex; flex-direction: column; }
  .connected-visual { position: relative; inset: auto; height: min(65vw, 540px); min-height: 340px; }
  .connected-panels { position: relative; right: auto; bottom: auto; width: calc(100% - 34px); min-height: 275px; margin: -50px 17px 0; }
  .connected-footer { position: relative; height: 76px; }
}

@media (max-width: 560px) {
  .connected-grid { padding: 128px 0 95px; }
  .connected-copy h2 { font-size: clamp(48px, 14vw, 66px); }
  .connected-lede { font-size: 14px; }
  .connected-tabs button { grid-template-columns: 32px 1fr auto; }
  .connected-visual { height: 390px; }
  .connected-visual-labels { display: none; }
  .connected-panels { width: calc(100% - 20px); min-height: 0; margin: -34px 10px 0; padding: 28px 23px; }
  .connected-panel h3 { font-size: 30px; }
  .connected-panel > p:not(.connected-panel-meta) { font-size: 13px; }
  .connected-panel ul { grid-template-columns: 1fr; gap: 8px; }
  .connected-footer { grid-template-columns: 50px 1fr; gap: 14px; }
  .connected-footer > a { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .connected-wrap { height: auto; min-height: 0; }
  .connected-model { position: relative; height: auto; min-height: 100svh; }
  .connected-tabs button,
  .connected-tabs button::before,
  .connected-tabs button i,
  .connected-waypoints > g { transition: none; }
  .connected-panel { animation: none; }
}

.principles { padding-block: var(--section-space); display: grid; grid-template-columns: minmax(330px, 0.8fr) minmax(520px, 1.2fr); gap: clamp(70px, 10vw, 160px); }
.principles h2 { font-size: clamp(56px, 5vw, 76px); line-height: 0.98; }
.principle-list { border-top: 1px solid var(--line); }
.principle-list article { min-height: 155px; padding: 30px 0; display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: start; border-bottom: 1px solid var(--line); }
.principle-list article > span { padding-top: 6px; color: var(--red); font-size: 10px; }
.principle-list h3 { margin: 0; font-size: 25px; line-height: 1.1; letter-spacing: -0.035em; }
.principle-list p { max-width: 660px; margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

.work-models { background: #fff; }
.work-models-inner { padding-block: var(--section-space); }
.model-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.model-grid article { min-height: 350px; padding: 36px 32px 30px; display: flex; flex-direction: column; border-right: 1px solid var(--ink); }
.model-grid article { --tilt-x: 0deg; --tilt-y: 0deg; position: relative; transition: color 0.32s ease, background 0.32s ease, transform 0.32s ease; transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transform-style: preserve-3d; }
.model-grid article:hover { z-index: 2; color: var(--white); background: var(--ink); transform: perspective(1000px) translateY(-7px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); box-shadow: 0 26px 70px rgba(17, 17, 19, 0.18); }
.model-grid article:hover p { color: rgba(255, 255, 255, 0.62); }
.model-grid article > * { transform: translateZ(14px); }
.model-grid article:last-child { border-right: 0; }
.model-grid article > span { color: var(--red); font-size: 9px; letter-spacing: 0.2em; }
.model-grid h3 { margin: 72px 0 0; font-size: 25px; font-weight: 500; line-height: 1.08; letter-spacing: -0.04em; }
.model-grid p { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.58; }
.model-grid a { margin-top: auto; display: flex; justify-content: space-between; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.model-grid a i { font-size: 16px; font-style: normal; transition: transform 0.25s ease; }
.model-grid a:hover i { transform: translate(4px, -4px); }

.focus-section { position: relative; overflow: hidden; color: var(--white); background: var(--dark); isolation: isolate; }
.focus-glow { position: absolute; z-index: -1; right: -14%; bottom: -36%; width: 72vw; aspect-ratio: 1; border-radius: 50%; opacity: 0.78; background: radial-gradient(circle at center, rgba(22, 143, 240, 0.95), rgba(3, 33, 63, 0.76) 40%, transparent 67%); filter: blur(15px); }
.focus-inner { min-height: 1050px; padding-block: var(--section-space); display: grid; grid-template-columns: 0.85fr 1.15fr; grid-template-rows: auto 1fr; gap: 75px clamp(80px, 11vw, 180px); }
.focus-heading h2 { max-width: 850px; font-size: clamp(57px, 5.7vw, 87px); line-height: 0.95; }
.focus-heading > p:last-child { max-width: 570px; margin: 32px 0 0; color: var(--muted-dark); font-size: 16px; line-height: 1.6; }
.focus-visual { position: relative; min-height: 480px; align-self: end; }
.focus-visual { will-change: transform; }
.focus-screen { position: absolute; left: 4%; bottom: 2%; width: min(82%, 410px); aspect-ratio: 0.78; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 22px; transform: perspective(1000px) rotateY(18deg) rotateX(5deg) rotateZ(-4deg); box-shadow: 60px 70px 110px rgba(0, 0, 0, 0.35); }
.focus-screen::before { content: ""; position: absolute; inset: 6%; border: 1px solid rgba(255, 255, 255, 0.33); border-radius: 14px; }
.focus-screen span { position: absolute; left: 13%; right: 13%; height: 11%; border: 1px solid rgba(110, 231, 238, 0.38); background: rgba(22, 143, 240, 0.08); }
.focus-screen span:nth-child(1) { top: 14%; height: 27%; background: linear-gradient(120deg, rgba(110, 231, 238, 0.3), transparent); }
.focus-screen span:nth-child(2) { top: 48%; }
.focus-screen span:nth-child(3) { top: 64%; }
.focus-screen i { position: absolute; right: 13%; bottom: 10%; width: 47px; height: 47px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 35px rgba(110, 231, 238, 0.5); }
.focus-screen i { animation: focus-signal 3.6s ease-in-out infinite; }
@keyframes focus-signal { 50% { transform: scale(0.84); box-shadow: 0 0 70px 12px rgba(110, 231, 238, 0.38); } }
.focus-list { grid-row: 1 / 3; grid-column: 2; align-self: stretch; border-top: 1px solid var(--line-dark); }
.focus-list article { min-height: 146px; padding: 31px 0; display: grid; grid-template-columns: 55px 1fr; gap: 22px; border-bottom: 1px solid var(--line-dark); }
.focus-list article > span { color: var(--cyan); font-size: 9px; }
.focus-list h3 { margin: 0; font-size: 25px; font-weight: 500; line-height: 1.1; letter-spacing: -0.035em; }
.focus-list p { margin: 12px 0 0; color: var(--muted-dark); font-size: 14px; line-height: 1.5; }

.faq { padding-block: var(--section-space); display: grid; grid-template-columns: minmax(330px, 0.76fr) minmax(580px, 1.24fr); gap: clamp(70px, 10vw, 165px); }
.faq-heading h2 { max-width: 610px; font-size: clamp(55px, 5.1vw, 78px); line-height: 0.98; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 29px 54px 29px 0; display: grid; grid-template-columns: 42px 1fr; gap: 18px; align-items: start; font-size: 20px; line-height: 1.25; letter-spacing: -0.02em; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { padding-top: 5px; color: var(--red); font-size: 9px; letter-spacing: 0; }
.faq-list summary i,
.faq-list summary i::after { position: absolute; right: 3px; top: 38px; width: 17px; height: 1px; background: var(--ink); transition: transform 0.25s ease; }
.faq-list summary i::after { content: ""; inset: 0; transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details > p { max-width: 735px; margin: -5px 54px 30px 60px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.faq-list summary:focus-visible { outline: 2px solid var(--red); outline-offset: 5px; }

.contact { color: var(--white); background: var(--dark); }
.contact-inner { min-height: 840px; padding-block: var(--section-space); display: grid; grid-template-columns: minmax(350px, 0.82fr) minmax(520px, 1.18fr); gap: clamp(70px, 10vw, 165px); align-items: center; }
.contact h2 { max-width: 720px; font-size: clamp(61px, 5.75vw, 88px); line-height: 0.94; }
.contact-copy > p:not(.kicker) { max-width: 570px; margin: 36px 0 0; color: var(--muted-dark); font-size: 17px; line-height: 1.6; }
.contact-email { margin-top: 55px; padding-bottom: 9px; display: inline-flex; gap: 20px; border-bottom: 1px solid var(--cyan); font-size: 14px; }
.contact-email span { color: var(--cyan); }
.contact-form { padding: clamp(32px, 4.1vw, 62px); display: grid; gap: 28px; border: 1px solid var(--line-dark); background: var(--dark-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label { min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.contact-form label > span { color: rgba(255, 255, 255, 0.6); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; }
.contact-form label > span small { font-size: inherit; opacity: 0.55; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; padding: 4px 0 13px; color: var(--white); background: transparent; border: 0; border-bottom: 1px solid var(--line-dark); border-radius: 0; outline: none; resize: vertical; }
.contact-form select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%); background-position: calc(100% - 10px) 45%, calc(100% - 5px) 45%; background-size: 5px 5px; background-repeat: no-repeat; }
.contact-form option { color: var(--ink); background: var(--white); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--cyan); }
.contact-form :focus-visible { outline: 1px solid var(--cyan); outline-offset: 5px; }
.contact-form .button { width: 100%; margin-top: 7px; }
.form-note { min-height: 18px; margin: -12px 0 0; color: var(--muted-dark); font-size: 11px; line-height: 1.5; }

.site-footer { color: var(--white); background: var(--dark); border-top: 1px solid var(--line-dark); }
.footer-grid { min-height: 310px; padding: 58px 0 80px; display: grid; grid-template-columns: 1.4fr 0.55fr 0.95fr 1.4fr; gap: 55px; align-items: start; }
.footer-brand > p { margin: 28px 0 0; color: var(--muted-dark); font-size: 12px; line-height: 1.6; }
.footer-grid nav { display: flex; flex-direction: column; gap: 13px; font-size: 11px; }
.footer-contact { display: flex; flex-direction: column; gap: 11px; font-size: 11px; }
.footer-contact > span { margin-bottom: 8px; color: var(--muted-dark); font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-contact a:hover,
.footer-grid nav a:hover { color: var(--cyan); }
.footer-legal { color: var(--muted-dark); font-size: 9px; line-height: 1.5; }
.footer-legal p { margin: 0 0 8px; }
.footer-legal strong { color: rgba(255, 255, 255, 0.72); font-weight: 400; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 0.7, 0.28, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js [data-tilt].reveal.is-visible { transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
.js [data-tilt].reveal.is-visible:hover { transform: perspective(1000px) translateY(-6px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }

.js .service-grid .reveal:nth-child(2),
.js .model-grid .reveal:nth-child(2),
.js .focus-list .reveal:nth-child(2) { transition-delay: 0.07s; }
.js .service-grid .reveal:nth-child(3),
.js .model-grid .reveal:nth-child(3),
.js .focus-list .reveal:nth-child(3) { transition-delay: 0.14s; }
.js .service-grid .reveal:nth-child(5),
.js .model-grid .reveal:nth-child(4),
.js .focus-list .reveal:nth-child(5) { transition-delay: 0.07s; }
.js .service-grid .reveal:nth-child(6),
.js .focus-list .reveal:nth-child(6) { transition-delay: 0.14s; }

@media (max-width: 1180px) {
  :root { --page: min(1500px, calc(100vw - 48px)); }
  .header-inner { grid-template-columns: 1fr auto; }
  .primary-nav { display: none; }
  .menu-button { position: relative; width: 44px; height: 44px; padding: 0; display: block; justify-self: end; color: currentColor; background: transparent; border: 1px solid currentColor; border-radius: 50%; font-size: 0; }
  .menu-button i { position: absolute; left: 11px; right: 11px; top: 16px; height: 1px; background: currentColor; transition: top 0.25s ease, transform 0.25s ease; }
  .menu-button i:last-child { top: 25px; }
  .menu-open .menu-button i { top: 21px; transform: rotate(45deg); }
  .menu-open .menu-button i:last-child { transform: rotate(-45deg); }
  .header-cta { display: none; }
  .menu-open .primary-nav { position: fixed; inset: 88px 0 0; padding: 60px 24px; display: flex; flex-direction: column; align-items: center; gap: 38px; color: var(--white); background: rgba(11, 11, 12, 0.98); font-size: 25px; }
  .menu-open .primary-nav a { font-size: 24px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 430px; column-gap: 20px; }
  .hero-system { opacity: 0.78; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: 1 / -1; }
  .principles { grid-template-columns: 1fr 1.2fr; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid article:nth-child(2) { border-right: 0; }
  .model-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .focus-inner { grid-template-columns: 0.7fr 1.3fr; }
  .faq { grid-template-columns: 0.85fr 1.15fr; }
  .contact-inner { grid-template-columns: 0.85fr 1.15fr; }
  .footer-grid { grid-template-columns: 1.4fr 0.6fr 1fr; }
  .footer-legal { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid var(--line-dark); }
}

@media (max-width: 820px) {
  :root { --page: calc(100vw - 32px); --section-space: 88px; }
  .header-inner { height: 74px; }
  .menu-open .primary-nav { inset: 74px 0 0; }
  .hero { height: auto; min-height: 900px; }
  .hero-inner { min-height: 900px; padding-top: 130px; grid-template-columns: 1fr; grid-template-rows: auto 390px auto; gap: 35px; }
  .hero::after { background: linear-gradient(180deg, var(--dark) 0%, rgba(11, 11, 12, 0.9) 49%, rgba(11, 11, 12, 0.15) 80%, var(--dark) 100%); }
  .hero-glow { top: 31%; right: -44%; width: 130vw; }
  .hero-system { width: min(100%, 430px); justify-self: center; }
  .system-node { min-width: 108px; padding: 12px; }
  .hero-journey { grid-column: auto; padding-bottom: 30px; }
  .hero-journey li { padding-top: 18px; gap: 10px; }
  .hero-journey li:not(:first-child) { padding-left: 16px; }
  .hero-journey p { font-size: 9px; line-height: 1.4; }
  .section-head { grid-template-columns: 1fr; gap: 34px; }
  .section-head > p { max-width: 650px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .service-card-wide > div:nth-child(2) { grid-template-columns: 1fr; gap: 18px; }
  .principles { grid-template-columns: 1fr; gap: 65px; }
  .principles-heading { max-width: 600px; }
  .focus-inner { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto 400px auto; gap: 50px; }
  .focus-visual { min-height: 400px; }
  .focus-screen { left: 50%; transform: translateX(-50%) perspective(1000px) rotateY(10deg) rotateX(5deg) rotateZ(-3deg); }
  .focus-list { grid-column: 1; grid-row: auto; }
  .faq { grid-template-columns: 1fr; gap: 70px; }
  .contact-inner { grid-template-columns: 1fr; gap: 75px; }
  .contact-copy { max-width: 760px; }
}

@media (max-width: 560px) {
  :root { --page: calc(100vw - 24px); --section-space: 72px; }
  .brand-copy { font-size: 11px; }
  .brand-mark { width: 30px; height: 30px; flex-basis: 30px; }
  .hero { min-height: 800px; }
  .hero-inner { min-height: 800px; padding-top: 114px; grid-template-rows: auto 300px auto; gap: 20px; }
  .hero h1 { font-size: clamp(46px, 12.3vw, 58px); }
  .hero-lede { margin-top: 25px; font-size: 15px; }
  .hero-actions { margin-top: 32px; align-items: stretch; flex-direction: column; gap: 10px; }
  .button { width: 100%; }
  .text-link { width: fit-content; }
  .hero-system { width: 310px; }
  .system-center { width: 84px; }
  .node-product { left: 1%; }
  .node-software { right: -2%; }
  .node-growth { left: 2%; }
  .hero-journey { display: none; }
  .kicker { margin-bottom: 25px; font-size: 8px; }
  .section-head h2,
  .connected-copy h2,
  .principles h2,
  .focus-heading h2,
  .faq h2,
  .contact h2 { font-size: clamp(45px, 14.3vw, 62px); }
  .section-head > p,
  .connected-lede,
  .contact-copy > p:not(.kicker) { font-size: 15px; }
  .service-card { min-height: 350px; border-radius: 16px; }
  .service-card-wide { min-height: 320px; }
  .principle-list article { grid-template-columns: 42px 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .model-grid article { min-height: 315px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .model-grid article:last-child { border-bottom: 0; }
  .focus-inner { grid-template-rows: auto 330px auto; }
  .focus-visual { min-height: 330px; }
  .focus-list article { grid-template-columns: 38px 1fr; }
  .faq-list summary { padding: 24px 42px 24px 0; grid-template-columns: 30px 1fr; gap: 10px; font-size: 17px; }
  .faq-list summary i,
  .faq-list summary i::after { top: 34px; }
  .faq-list details > p { margin: -2px 15px 25px 40px; font-size: 14px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero-copy .title-line > span { opacity: 1; transform: none; }
  .hero-canvas,
  .cursor-dot,
  .cursor-ring { display: none !important; }
  .js body,
  .js a,
  .js button,
  .js summary,
  .js select { cursor: auto; }
  .js input,
  .js textarea { cursor: text; }
}

/* Selected hero direction — centered statement over a procedural line field */
.hero {
  min-height: 820px;
  height: min(960px, 100svh);
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, #111313 0%, #050606 58%, #020303 100%);
}

.hero::after {
  display: block;
  z-index: 5;
  inset: 18px;
  border: 1px solid rgba(238, 241, 239, 0.14);
  background: none;
  pointer-events: none;
}

.hero-wave,
.hero-wave-shade,
.hero-video,
.hero-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-wave {
  z-index: 0;
  display: block;
}

.hero-wave-shade {
  z-index: 1;
  background:
    radial-gradient(ellipse 48% 40% at 50% 48%, rgba(2, 3, 3, 0.91) 0%, rgba(2, 3, 3, 0.69) 43%, rgba(2, 3, 3, 0.13) 75%, transparent 100%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.3), transparent 22%, transparent 78%, rgba(2, 3, 3, 0.3)),
    linear-gradient(180deg, rgba(2, 3, 3, 0.4), transparent 21%, transparent 72%, rgba(2, 3, 3, 0.62));
}

/* Alternate production treatment at /video/ using the approved black-liquid film. */
.video-hero-variant .hero {
  background:
    radial-gradient(circle at center, rgba(5, 6, 7, 0.12), rgba(5, 6, 7, 0.48)),
    url("assets/video/hero-liquid-poster.jpg") center / cover no-repeat,
    #050606;
}

.hero-video {
  z-index: 0;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.68) contrast(1.12);
  transform: scale(1.035);
}

.hero-video-shade {
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(9, 10, 11, 0.18), rgba(9, 10, 11, 0.66) 74%),
    linear-gradient(0deg, rgba(9, 10, 11, 0.78), transparent 46%, rgba(9, 10, 11, 0.44));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: inherit;
  height: 100%;
  margin-inline: auto;
  padding: 128px 0 175px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
}

.hero-copy {
  width: min(1160px, 100%);
  max-width: none;
  text-align: center;
}

.hero .kicker { justify-content: center; margin-bottom: 27px; }
.hero .kicker span { background: rgba(238, 241, 239, 0.72); }

.hero h1 {
  max-width: none;
  font-size: clamp(72px, 7.6vw, 117px);
  line-height: 0.89;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.28);
}

.hero h1 em { color: inherit; }

.hero .title-line:nth-child(2) {
  margin-bottom: -0.2em;
  padding-bottom: 0.2em;
}

.hero-lede {
  max-width: 620px;
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.13vw, 18px);
  line-height: 1.55;
}

.hero-actions { justify-content: center; margin-top: 37px; }

.hero-services {
  position: absolute;
  z-index: 4;
  right: calc((100vw - var(--page)) / 2);
  bottom: 48px;
  left: calc((100vw - var(--page)) / 2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-services span {
  padding: 15px 6px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
  .js .cursor-dot,
  .js .cursor-ring {
    color: var(--white);
    mix-blend-mode: difference;
  }

  .js .cursor-dot {
    width: 5px;
    height: 5px;
    background: currentColor;
    box-shadow: none;
  }

  .js .cursor-ring {
    width: 28px;
    height: 28px;
    border-color: currentColor;
    background: transparent;
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  }

  .js .cursor-ring.is-active {
    width: 48px;
    height: 48px;
    border-color: currentColor;
    background: transparent;
  }

  .js body.native-cursor,
  .js body.native-cursor a,
  .js body.native-cursor button,
  .js body.native-cursor summary,
  .js body.native-cursor select { cursor: auto; }

  .js body.native-cursor input,
  .js body.native-cursor textarea { cursor: text; }
}

@media (max-width: 820px) {
  .hero::after { inset: 10px; }
  .hero { min-height: 820px; height: 100svh; }
  .hero-inner {
    min-height: inherit;
    padding: 114px 0 178px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0;
  }
  .hero h1 { font-size: clamp(58px, 13vw, 82px); }
  .hero-video { object-position: 58% center; }
  .hero-video-shade {
    background:
      radial-gradient(circle at 50% 43%, rgba(9, 10, 11, 0.16), rgba(9, 10, 11, 0.68) 74%),
      linear-gradient(0deg, rgba(9, 10, 11, 0.83), transparent 56%, rgba(9, 10, 11, 0.52));
  }
  .hero-services { right: 16px; bottom: 40px; left: 16px; }
}

@media (max-width: 560px) {
  .hero { min-height: 760px; }
  .hero-inner {
    min-height: inherit;
    padding: 102px 0 185px;
    grid-template-rows: 1fr;
  }
  .hero h1 { font-size: clamp(48px, 13.2vw, 62px); }
  .hero .kicker { margin-bottom: 23px; }
  .hero-lede { max-width: 440px; margin-top: 25px; font-size: 14px; }
  .hero-actions { margin-top: 29px; }
  .hero-actions .button { width: min(100%, 270px); }
  .hero-services {
    bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
  }
  .hero-services span { padding-top: 11px; }
  .connected-copy h2 { font-size: clamp(43px, 12.3vw, 54px); letter-spacing: -0.072em; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
