:root {
  --red: #d71920;
  --red-dark: #9e1117;
  --ink: #111111;
  --ink-soft: #242424;
  --muted: #666a72;
  --line: #e7e7e2;
  --paper: #f6f4ef;
  --paper-deep: #ebe7dc;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.55);
  outline-offset: 5px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(246, 244, 239, 0.88);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 218px;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav a {
  position: relative;
  text-decoration: none;
}

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

.nav a:hover {
  color: var(--red);
}

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

.nav-cta {
  padding: 10px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}

.nav-cta::after {
  display: none;
}

.nav .nav-cta:hover {
  color: var(--white);
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  font-size: 1.18rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
  max-width: var(--max);
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 118px) clamp(20px, 5vw, 48px) 42px;
}

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

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.red-label {
  color: #ff5a5f;
}

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

h1,
h2 {
  max-width: 980px;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(4.8rem, 14vw, 11rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6.5vw, 6.5rem);
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.24s ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.28) 48%, transparent 62% 100%);
  content: "";
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

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

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

.btn.primary:hover {
  background: var(--red-dark);
}

.btn.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(17, 17, 17, 0.24);
}

.btn.secondary:hover {
  border-color: var(--ink);
}

.full {
  width: 100%;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.86;
  transform: scale(1.03);
  animation: ambientZoom 14s ease-in-out infinite alternate;
}

.hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  padding: 22px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-card span {
  display: block;
  margin-bottom: 10px;
  color: #ff7478;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.25;
}

.motion-marquee {
  overflow: hidden;
  padding: 16px 0;
  color: var(--white);
  background: var(--red);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  align-items: center;
  animation: marqueeSlide 34s linear infinite;
}

.marquee-track span {
  position: relative;
  flex: 0 0 auto;
  font-size: clamp(1.15rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  display: inline-block;
  width: 0.24em;
  height: 0.24em;
  margin-left: 34px;
  vertical-align: middle;
  background: var(--white);
  content: "";
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 132px) clamp(20px, 5vw, 48px);
}

.section-heading,
.company-proof,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
}

.section-heading > p,
.feature-copy p,
.lane-card p,
.company-intro-text,
.company-details-inline dd,
.leadership-card span,
.contact-panel p,
.site-footer p {
  color: var(--muted);
}

.section-heading {
  align-items: end;
  margin-bottom: 44px;
}

.solution-lanes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  border-left: 1px solid rgba(17, 17, 17, 0.14);
}

.lane-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.42);
  border-right: 1px solid rgba(17, 17, 17, 0.14);
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  transition: background 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.lane-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.lane-card:hover::before {
  transform: scaleX(1);
}

.lane-card:hover {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.lane-card.featured {
  color: var(--white);
  background: var(--red);
}

.lane-card.featured p,
.lane-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.lane-card span {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lane-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--red);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.lane-card.featured .lane-icon {
  color: var(--red);
  border-color: transparent;
}

.lane-deliverables {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.lane-deliverables li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.lane-deliverables li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.lane-card.featured .lane-deliverables li::before {
  background: var(--white);
}

.lane-card.featured span {
  color: var(--white);
}

.roadmap {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.roadmap .section-heading {
  display: block;
  max-width: 1040px;
}

.roadmap .section-heading h2 {
  max-width: 980px;
}

.roadmap .section-heading > p {
  max-width: 720px;
  margin-top: 24px;
}

.roadmap-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.roadmap-tab {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.roadmap-tab:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.roadmap-tab.active,
.roadmap-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.roadmap-panels {
  min-height: 470px;
}

.roadmap-card {
  min-height: 470px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.roadmap-card[hidden] {
  display: none;
}

.roadmap-card.active {
  opacity: 1;
  transform: none;
}

.roadmap-card:hover {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.roadmap-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 34px;
}

.roadmap-head span {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--red);
  border: 1px solid rgba(215, 25, 32, 0.32);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-head h3 {
  max-width: 360px;
  margin: 0;
  text-align: right;
}

.flow-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 280px;
}

.flow-node {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  transition: border-color 0.28s ease, transform 0.28s ease;
}

.flow-node:hover {
  border-color: var(--red);
  transform: translateY(-5px);
}

.flow-node span,
.flow-node small {
  display: block;
}

.flow-node span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
}

.flow-node strong {
  display: block;
  margin: 10px 0 4px;
}

.flow-node small {
  color: var(--muted);
  font-weight: 800;
}

.flow-node.highlight {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 22px 55px rgba(215, 25, 32, 0.24);
}

.flow-node.highlight span,
.flow-node.highlight small {
  color: rgba(255, 255, 255, 0.86);
}

.flow-arrow {
  color: var(--red);
  font-size: 1.45rem;
  font-weight: 900;
  animation: arrowNudge 1.6s ease-in-out infinite;
}

.threat-orbit {
  position: relative;
  min-height: 350px;
  background:
    repeating-radial-gradient(circle at center, rgba(17, 17, 17, 0.08) 0 1px, transparent 1px 30px),
    radial-gradient(circle at center, rgba(215, 25, 32, 0.18), transparent 38%);
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(215, 25, 32, 0.26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitPulse 2.8s ease-in-out infinite;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.orbit-item {
  position: absolute;
  width: 190px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.orbit-item strong,
.orbit-item small {
  display: block;
}

.orbit-item strong {
  color: var(--red);
}

.orbit-item small {
  color: var(--muted);
  font-weight: 700;
}

.monitor {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.detect {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.respond {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.prioritise {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.architecture-map {
  display: grid;
  gap: 14px;
  min-height: 350px;
}

.arch-users,
.arch-core,
.arch-grid span,
.arch-outcomes div {
  padding: 14px;
  border-radius: var(--radius);
  text-align: center;
}

.arch-users {
  background: var(--white);
  border: 1px dashed rgba(17, 17, 17, 0.22);
  font-weight: 800;
}

.arch-pulse {
  width: 3px;
  height: 34px;
  margin: 0 auto;
  background: var(--red);
  animation: verticalPulse 1.4s ease-in-out infinite;
}

.arch-core {
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.arch-grid,
.arch-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.arch-grid span {
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  font-weight: 800;
}

.arch-outcomes div {
  background: rgba(17, 17, 17, 0.04);
}

.arch-outcomes strong,
.arch-outcomes small {
  display: block;
}

.arch-outcomes small {
  color: var(--muted);
  font-weight: 700;
}

.stack-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 350px;
  justify-content: center;
  padding-top: 18px;
}

.stack-layer,
.stack-base {
  width: 94%;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  font-weight: 900;
  text-align: center;
  transition: transform 0.28s ease;
}

.stack-map:hover .stack-layer {
  transform: translateY(-4px);
}

.stack-layer.dark {
  color: var(--white);
  background: var(--ink);
}

.stack-layer.mid {
  width: 88%;
  color: var(--white);
  background: #4d4d4d;
}

.stack-layer.red {
  width: 82%;
  color: var(--white);
  background: var(--red);
}

.stack-layer.deep {
  width: 76%;
  color: var(--white);
  background: var(--red-dark);
}

.stack-base {
  width: 70%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 48px);
}

.feature-image {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image::after,
.hero-visual::after {
  position: absolute;
  inset: 0;
  background: var(--red);
  content: "";
  transform: translateX(0);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 2;
}

.feature-image.visible::after,
.hero-visual.visible::after {
  transform: translateX(102%);
}

.feature-image img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  transform: scale(1.01);
  transition: opacity 0.35s ease, transform 0.9s ease;
}

.feature-image:hover img,
.hero-visual:hover img {
  transform: scale(1.06);
}

.hero-visual:hover img {
  animation-play-state: paused;
}

.feature-copy {
  max-width: 650px;
}

.feature-copy h2 {
  font-size: clamp(2.75rem, 5.6vw, 5.7rem);
}

.dark-feature {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  padding-right: max(clamp(20px, 5vw, 48px), calc((100vw - var(--max)) / 2 + 48px));
  padding-left: max(clamp(20px, 5vw, 48px), calc((100vw - var(--max)) / 2 + 48px));
  color: var(--white);
  background: var(--ink);
}

.dark-feature .feature-copy p,
.dark-feature .feature-list span {
  color: rgba(255, 255, 255, 0.72);
}

.dark-feature .feature-image {
  box-shadow: none;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.feature-list div {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.feature-list span {
  display: block;
}

.company-proof {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(78px, 9vw, 116px) clamp(20px, 5vw, 48px);
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  grid-template-columns: 1fr;
}

.company-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
}

.company-intro h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6.2vw, 6rem);
  overflow-wrap: anywhere;
}

.company-overview {
  display: grid;
  gap: 26px;
}

.company-intro-text {
  display: grid;
  gap: 14px;
  font-size: 0.98rem;
}

.company-intro-text p {
  margin-bottom: 0;
}

.company-details-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin: 8px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.company-details-inline dd {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.leadership-card,
.contact-panel {
  padding: clamp(28px, 4vw, 44px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.leadership-card h2 {
  max-width: 960px;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

dl {
  margin: 30px 0 0;
}

dt {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 22px;
}

.people-grid {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.people-grid div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.people-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.people-grid span {
  display: block;
}

.final-cta {
  align-items: center;
  max-width: var(--max);
  margin: 0 auto clamp(54px, 8vw, 96px);
  padding: clamp(42px, 7vw, 76px) clamp(28px, 5vw, 64px);
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5.8vw, 5.8rem);
}

.contact-panel {
  color: var(--ink);
}

.contact-panel a {
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px clamp(20px, 5vw, 64px);
  background: var(--paper-deep);
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

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

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  animation: rise 0.8s ease forwards;
  transform: translateY(18px);
}

.delay-1 {
  animation-delay: 0.15s;
}

.transition-section {
  position: relative;
  overflow: hidden;
}

.transition-section::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: var(--red);
  content: "";
  transform: translateX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.transition-section.visible::before {
  transform: translateX(102%);
}

.transition-section > * {
  position: relative;
  z-index: 1;
}

.enter-right::before {
  background: var(--red);
  transform-origin: right;
}

.enter-right.visible::before {
  transform: translateX(-102%);
}

.enter-up::before {
  background: var(--red);
  transform-origin: top;
}

.enter-up.visible::before {
  transform: translateY(-102%);
}

.js .transition-section,
.js .lane-card,
.js .roadmap-card,
.js .company-intro,
.js .leadership-card,
.js .feature-copy,
.js .feature-image,
.js .contact-panel {
  opacity: 0;
  will-change: opacity, transform;
}

.js .enter-left {
  transform: translateX(-34px);
}

.js .enter-right {
  transform: translateX(34px);
}

.js .enter-up,
.js .lane-card,
.js .roadmap-card,
.js .company-intro,
.js .leadership-card,
.js .feature-copy,
.js .feature-image,
.js .contact-panel {
  transform: translateY(22px);
}

.js .transition-section.visible,
.js .lane-card.visible,
.js .roadmap-card.visible,
.js .company-intro.visible,
.js .leadership-card.visible,
.js .feature-copy.visible,
.js .feature-image.visible,
.js .contact-panel.visible {
  opacity: 1;
  transition: opacity 0.55s ease, transform 0.55s ease;
  transform: none;
}

.js .solution-lanes .lane-card:nth-child(2) {
  transition-delay: 0.06s;
}

.js .solution-lanes .lane-card:nth-child(3) {
  transition-delay: 0.12s;
}

.js .solution-lanes .lane-card:nth-child(4) {
  transition-delay: 0.18s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ambientZoom {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes marqueeSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes arrowNudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.96);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes verticalPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 1080px) {
  .hero,
  .section-heading,
  .company-proof,
  .company-intro,
  .final-cta,
  .image-feature,
  .dark-feature {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual img,
  .feature-image img {
    min-height: 440px;
  }

  .solution-lanes {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-line {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    text-align: center;
  }

  .threat-orbit {
    min-height: 460px;
  }

  .orbit-item {
    position: static;
    width: auto;
    margin-bottom: 10px;
    transform: none;
  }

  .orbit-core,
  .orbit-ring {
    position: static;
    margin: 0 auto 14px;
    transform: none;
  }

  .orbit-ring {
    display: none;
  }

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

  .lane-card span {
    margin-bottom: 56px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer img {
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 184px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(4.2rem, 20vw, 7.2rem);
  }

  h2,
  .feature-copy h2,
  .final-cta h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-lead {
    font-size: 1.55rem;
  }

  .hero-visual img,
  .feature-image img {
    min-height: 360px;
  }

  .section,
  .image-feature,
  .dark-feature,
  .company-proof {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .solution-lanes,
  .arch-grid,
  .company-details-inline,
  .arch-outcomes {
    grid-template-columns: 1fr;
  }

  .roadmap-head {
    display: block;
  }

  .roadmap-head h3 {
    margin-top: 14px;
    text-align: left;
  }

  .stack-layer,
  .stack-layer.mid,
  .stack-layer.red,
  .stack-layer.deep,
  .stack-base {
    width: 100%;
  }

  .lane-card {
    min-height: auto;
  }

  .lane-card span {
    margin-bottom: 42px;
  }

  .final-cta {
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .js .transition-section,
  .js .lane-card,
  .js .roadmap-card,
  .js .company-intro,
  .js .leadership-card,
  .js .feature-copy,
  .js .feature-image,
  .js .contact-panel {
    opacity: 1;
    transform: none;
  }

  .motion-marquee .marquee-track,
  .hero-visual img,
  .flow-arrow,
  .orbit-ring,
  .arch-pulse {
    animation: none;
  }

  .transition-section::before,
  .feature-image::after,
  .hero-visual::after {
    display: none;
  }
}
