@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --color-black: #050505;
  --color-black-soft: #0b0b0c;
  --color-surface: #111113;
  --color-surface-raised: #18181b;
  --color-red: #f01823;
  --color-red-hover: #ff303a;
  --color-burgundy: #64151b;
  --color-burgundy-deep: #321014;
  --color-white: #f7f7f5;
  --color-text: #eeeeec;
  --color-muted: #b8b8b8;
  --color-border: #343438;
  --color-border-strong: #55555b;
  --color-focus: #ff5962;
  --text-xs: clamp(0.75rem, 0.72rem + 0.1vw, 0.82rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.15vw, 0.95rem);
  --text-base: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  --text-lg: clamp(1.2rem, 1.08rem + 0.45vw, 1.5rem);
  --text-xl: clamp(1.55rem, 1.3rem + 0.9vw, 2.25rem);
  --text-2xl: clamp(2.2rem, 1.65rem + 2vw, 4.25rem);
  --text-hero: clamp(3rem, 2rem + 4.5vw, 7.5rem);
  --container-wide: 1280px;
  --container-main: 1160px;
  --container-reading: 760px;
  --header-height: 76px;
  --page-gutter: clamp(16px, 4vw, 48px);
  --reveal-distance: 24px;
  --scroll-progress: 0;
  --scroll-shift: 0px;
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-depth: 0 24px 64px rgba(0, 0, 0, 0.32);
}

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

html {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--color-black);
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--color-black);
  background-size: 48px 48px;
  color: var(--color-text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: var(--text-base);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

main,
.site-header,
.site-footer,
main > section {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

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

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--color-white);
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: var(--text-2xl);
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-xl);
}

p,
li {
  color: var(--color-muted);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 16px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--color-white);
  color: var(--color-black);
  font-weight: 700;
}

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

.container,
.container-wide,
.reading-container {
  width: 100%;
  max-width: calc(
    var(--container-main) + var(--page-gutter) + var(--page-gutter)
  );
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.container-wide {
  max-width: calc(
    var(--container-wide) + var(--page-gutter) + var(--page-gutter)
  );
}

.reading-container {
  max-width: calc(
    var(--container-reading) + var(--page-gutter) + var(--page-gutter)
  );
}

.site-motion-field {
  position: fixed;
  z-index: 0;
  inset: -12px;
  overflow: hidden;
  transform: translate3d(0, var(--scroll-shift), 0);
  pointer-events: none;
  user-select: none;
}

.site-motion-field::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  opacity: 0.44;
  animation: site-grid-breathe 6s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.72) 19%,
    rgba(0, 0, 0, 0.16) 42%,
    rgba(0, 0, 0, 0.16) 58%,
    rgba(0, 0, 0, 0.72) 81%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.72) 19%,
    rgba(0, 0, 0, 0.16) 42%,
    rgba(0, 0, 0, 0.16) 58%,
    rgba(0, 0, 0, 0.72) 81%,
    #000 100%
  );
}

.site-motion-field::after {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: clamp(18px, 4vw, 72px);
  width: 1px;
  background: linear-gradient(
    transparent,
    rgba(240, 24, 35, 0.72) 28%,
    rgba(255, 255, 255, 0.18) 52%,
    rgba(240, 24, 35, 0.5) 72%,
    transparent
  );
  content: "";
  animation: site-rail-pulse 5.4s ease-in-out infinite;
}

.site-motion-field__beam {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 24, 35, 0.2) 12%,
    rgba(240, 24, 35, 0.9) 54%,
    rgba(255, 255, 255, 0.22) 72%,
    transparent
  );
  animation: site-beam-pulse 5s ease-in-out infinite;
}

.site-motion-field__beam--a {
  top: 18%;
  left: -8%;
  width: min(62vw, 900px);
  transform: rotate(-12deg);
}

.site-motion-field__beam--b {
  top: 62%;
  right: -10%;
  width: min(56vw, 820px);
  transform: rotate(11deg);
  transform-origin: right center;
  animation-delay: -2.4s;
}

.site-motion-field__beam--c {
  right: 9%;
  bottom: 13%;
  width: min(44vw, 680px);
  transform: rotate(-5deg);
  animation-delay: -1.2s;
}

.site-motion-field__node {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 5px rgba(240, 24, 35, 0.08);
  animation: site-node-pulse 3.8s ease-in-out infinite;
}

.site-motion-field__node--a {
  top: 19%;
  left: 9%;
}

.site-motion-field__node--b {
  top: 63%;
  right: 8%;
  animation-delay: -1.9s;
}

.site-motion-field__node--c {
  right: 20%;
  bottom: 12%;
  animation-delay: -0.8s;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--color-burgundy), var(--color-red));
  box-shadow: 0 0 12px rgba(240, 24, 35, 0.4);
  pointer-events: none;
}

body > main,
body > .site-footer {
  position: relative;
  z-index: 1;
}

@keyframes site-grid-breathe {
  0%,
  100% {
    opacity: 0.28;
  }

  50% {
    opacity: 0.58;
  }
}

@keyframes site-rail-pulse {
  0%,
  100% {
    transform: translate3d(0, -6px, 0);
    opacity: 0.3;
  }

  50% {
    transform: translate3d(0, 2px, 0);
    opacity: 0.88;
  }
}

@keyframes site-beam-pulse {
  0%,
  100% {
    opacity: 0.22;
  }

  50% {
    opacity: 0.76;
  }
}

@keyframes site-node-pulse {
  0%,
  100% {
    transform: scale(0.76);
    opacity: 0.28;
  }

  50% {
    transform: scale(1);
    opacity: 0.94;
  }
}

.section {
  position: relative;
  padding-block: 48px;
}

.section--surface {
  background: var(--color-surface);
}

.section--deep {
  background:
    linear-gradient(120deg, rgba(100, 21, 27, 0.18), transparent 44%),
    var(--color-black-soft);
}

.has-ambient-signal {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.has-ambient-signal > .container,
.has-ambient-signal > .container-wide,
.has-ambient-signal > .reading-container {
  position: relative;
  z-index: 2;
}

.ambient-signal {
  --ambient-angle: -8deg;
  --ambient-duration: 8.4s;
  --ambient-grid-x: 4px;
  --ambient-grid-y: 6px;
  --ambient-rail-right: 11%;
  --ambient-track-left: -8%;
  --ambient-track-top: 34%;
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
  transition: opacity 760ms var(--ease-emphasis);
}

.has-ambient-signal.is-section-visible .ambient-signal {
  opacity: 1;
}

.scroll-transition {
  --scene-shift: 0px;
  --scene-tilt: 0deg;
  --scene-glow-x: 0px;
  --scene-plane-left: -12%;
  --scene-glow-left: 5%;
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  perspective: 900px;
  perspective-origin: center;
  pointer-events: none;
}

.scroll-transition__plane {
  position: absolute;
  top: 7%;
  bottom: 7%;
  left: var(--scene-plane-left);
  width: min(72vw, 980px);
  transform: translate3d(0, var(--scene-shift), 0)
    rotateX(var(--scene-tilt));
  background:
    radial-gradient(
      circle at 58% 48%,
      rgba(240, 24, 35, 0.12),
      transparent 38%
    ),
    linear-gradient(
      118deg,
      transparent 8%,
      rgba(100, 21, 27, 0.04) 24%,
      rgba(240, 24, 35, 0.105) 52%,
      rgba(100, 21, 27, 0.035) 74%,
      transparent 92%
    );
  clip-path: polygon(0 46%, 100% 38%, 100% 62%, 0 54%);
  opacity: 0;
  transition:
    clip-path 760ms var(--ease-emphasis),
    opacity 520ms var(--ease-standard);
}

.scroll-transition__glow {
  position: absolute;
  top: 50%;
  left: var(--scene-glow-left);
  width: min(34vw, 460px);
  aspect-ratio: 1;
  transform: translate3d(var(--scene-glow-x), -50%, 0) scale(0.72);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(240, 24, 35, 0.15),
    rgba(100, 21, 27, 0.055) 42%,
    transparent 70%
  );
  opacity: 0;
  transition:
    transform 760ms var(--ease-emphasis),
    opacity 760ms var(--ease-standard);
}

.scroll-transition--2,
.scroll-transition--4 {
  --scene-plane-left: 38%;
  --scene-glow-left: 68%;
}

.has-ambient-signal.is-section-visible .scroll-transition__plane {
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  opacity: 0.72;
}

.has-ambient-signal.is-section-visible .scroll-transition__glow {
  transform: translate3d(var(--scene-glow-x), -50%, 0) scale(1);
  opacity: 0.78;
}

.ambient-signal::before {
  position: absolute;
  inset: -12px;
  background:
    radial-gradient(
      circle at 78% 36%,
      rgba(240, 24, 35, 0.1),
      transparent 34%
    ),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-position: center, 0 0, 0 0;
  background-size: 100% 100%, 48px 48px, 48px 48px;
  content: "";
  opacity: 0.72;
  animation: ambient-grid-drift 12s ease-in-out infinite;
}

.ambient-signal::after {
  position: absolute;
  top: 12%;
  right: var(--ambient-rail-right);
  width: 2px;
  height: 68%;
  background: linear-gradient(
    transparent,
    rgba(240, 24, 35, 0.12) 18%,
    rgba(240, 24, 35, 0.82) 52%,
    transparent
  );
  content: "";
  opacity: 0.82;
  animation: ambient-rail-drift 8.8s ease-in-out infinite;
}

.ambient-signal__track {
  position: absolute;
  top: var(--ambient-track-top);
  left: var(--ambient-track-left);
  width: 82%;
  height: 2px;
  transform: translate3d(-4px, 0, 0) rotate(var(--ambient-angle));
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 24, 35, 0.12) 16%,
    rgba(240, 24, 35, 0.95) 53%,
    rgba(255, 255, 255, 0.28) 72%,
    transparent
  );
  opacity: 0.58;
  animation: ambient-track-drift var(--ambient-duration) ease-in-out infinite;
}

.ambient-signal__sweep {
  position: absolute;
  top: -18%;
  left: var(--ambient-rail-right);
  width: min(22vw, 260px);
  height: 136%;
  transform: translate3d(-4px, 0, 0) skewX(-18deg);
  border-inline: 1px solid rgba(240, 24, 35, 0.34);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 24, 35, 0.08),
    transparent
  );
  opacity: 0.34;
  animation: ambient-sweep-pulse 7.2s ease-in-out infinite;
}

.ambient-signal__node {
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 4px rgba(240, 24, 35, 0.07);
  opacity: 0.34;
  animation: ambient-node-pulse 5.6s ease-in-out infinite;
}

.ambient-signal__node--a {
  left: 29%;
}

.ambient-signal__node--b {
  left: 73%;
  animation-delay: -2.8s;
}

.ambient-signal--2 {
  --ambient-angle: 7deg;
  --ambient-duration: 10.2s;
  --ambient-grid-x: -6px;
  --ambient-grid-y: 4px;
  --ambient-rail-right: 78%;
  --ambient-track-left: 18%;
  --ambient-track-top: 68%;
}

.ambient-signal--3 {
  --ambient-angle: -4deg;
  --ambient-duration: 11.4s;
  --ambient-grid-x: 7px;
  --ambient-grid-y: -5px;
  --ambient-rail-right: 24%;
  --ambient-track-left: -18%;
  --ambient-track-top: 76%;
}

.ambient-signal--4 {
  --ambient-angle: 11deg;
  --ambient-duration: 9.2s;
  --ambient-grid-x: -4px;
  --ambient-grid-y: -7px;
  --ambient-rail-right: 61%;
  --ambient-track-left: 34%;
  --ambient-track-top: 27%;
}

.section--surface .ambient-signal::before {
  opacity: 0.56;
}

.section--deep .ambient-signal__track,
.final-cta .ambient-signal__track,
.page-hero .ambient-signal__track {
  opacity: 0.52;
}

.ambient-signal.is-paused::before,
.ambient-signal.is-paused::after,
.ambient-signal.is-paused .ambient-signal__track,
.ambient-signal.is-paused .ambient-signal__sweep,
.ambient-signal.is-paused .ambient-signal__node {
  animation-play-state: paused;
}

@keyframes ambient-grid-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(var(--ambient-grid-x), var(--ambient-grid-y), 0);
  }
}

@keyframes ambient-rail-drift {
  0%,
  100% {
    transform: translate3d(0, -6px, 0);
    opacity: 0.34;
  }

  50% {
    transform: translate3d(0, 6px, 0);
    opacity: 0.76;
  }
}

@keyframes ambient-track-drift {
  0%,
  100% {
    transform: translate3d(-4px, 0, 0) rotate(var(--ambient-angle));
    opacity: 0.28;
  }

  50% {
    transform: translate3d(4px, 0, 0) rotate(var(--ambient-angle));
    opacity: 0.68;
  }
}

@keyframes ambient-node-pulse {
  0%,
  100% {
    transform: translate3d(0, -50%, 0) scale(0.78);
    opacity: 0.26;
  }

  50% {
    transform: translate3d(0, -50%, 0) scale(1);
    opacity: 0.82;
  }
}

@keyframes ambient-sweep-pulse {
  0%,
  100% {
    transform: translate3d(-4px, 0, 0) skewX(-18deg);
    opacity: 0.2;
  }

  50% {
    transform: translate3d(4px, 0, 0) skewX(-18deg);
    opacity: 0.66;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--color-red-hover);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: var(--text-lg);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: var(--text-sm);
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 140ms var(--ease-standard),
    border-color 140ms var(--ease-standard),
    color 140ms var(--ease-standard);
}

.button::after {
  content: "↗";
  transition: transform 260ms var(--ease-emphasis);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translate(3px, -3px);
}

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

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

.button--secondary {
  border-color: var(--color-border-strong);
  background: rgba(5, 5, 5, 0.4);
  color: var(--color-white);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--color-red);
  color: var(--color-red-hover);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-weight: 600;
  text-decoration-color: var(--color-red);
}

.text-link::after {
  color: var(--color-red);
  content: "→";
  transition: transform 260ms var(--ease-emphasis);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(14px);
  transition:
    background-color 260ms var(--ease-standard),
    border-color 260ms var(--ease-standard),
    box-shadow 260ms var(--ease-standard);
}

.site-header.is-scrolled,
.site-header:focus-within {
  border-color: var(--color-border);
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  color: var(--color-white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-name {
  letter-spacing: -0.02em;
}

.menu-toggle {
  display: none;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--color-border-strong);
  border-radius: 5px;
  background: var(--color-black-soft);
  color: var(--color-white);
  cursor: pointer;
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-icon {
  position: relative;
  width: 20px;
  height: 14px;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 260ms var(--ease-standard), top 260ms var(--ease-standard);
}

.menu-icon::before {
  top: 2px;
}

.menu-icon::after {
  top: 10px;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 6px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 6px;
  transform: rotate(-45deg);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  color: var(--color-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: color 140ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--color-white);
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  background: var(--color-red);
  content: "";
}

.site-nav .nav-cta {
  min-height: 42px;
  margin-left: 8px;
  padding-inline: 15px;
  border-radius: 5px;
  background: var(--color-red);
  color: var(--color-white);
}

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

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

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: 64px 88px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 38%, rgba(240, 24, 35, 0.15), transparent 25%),
    linear-gradient(135deg, transparent 62%, rgba(100, 21, 27, 0.16) 62%, transparent 78%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 18% -8% auto auto;
  z-index: -1;
  width: min(48vw, 720px);
  height: 1px;
  transform: rotate(-15deg);
  background: linear-gradient(90deg, transparent, var(--color-red), transparent);
  content: "";
  opacity: 0.7;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 56px;
}

.hero-sticky {
  width: 100%;
}

.hero-title-line {
  display: block;
}

.hero-lottie-stage {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  perspective: 1100px;
  perspective-origin: 50% 48%;
}

.hero-lottie-shell,
.hero-lottie-fallback {
  grid-area: 1 / 1;
}

.hero-lottie-shell {
  position: absolute;
  z-index: 3;
  inset: -7%;
  display: grid;
  transform: perspective(1100px) translate3d(0, 0, 0);
  transform-origin: center;
  transform-style: preserve-3d;
  place-items: center;
  pointer-events: none;
}

.hero-lottie {
  width: 100%;
  height: 100%;
  contain: layout paint style;
  opacity: 0;
  transition: opacity 260ms var(--ease-standard);
}

.hero-lottie svg {
  width: 100% !important;
  height: 100% !important;
  overflow: visible;
}

.hero-route-map,
.hero-chapters,
.hero-scroll-cue {
  display: none;
}

.hero.lottie-scroll-ready {
  height: 440vh;
  height: 440svh;
  min-height: 0;
  display: block;
  padding: 0;
}

.lottie-scroll-ready .hero-sticky {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.lottie-scroll-ready .hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
}

.lottie-scroll-ready .hero-copy [data-hero-copy-item] {
  transform-origin: left center;
  will-change: transform, opacity, clip-path;
}

.lottie-scroll-ready .hero-visual {
  will-change: transform, opacity;
}

.lottie-scroll-ready .hero-lottie {
  opacity: 1;
}

.lottie-scroll-ready .hero-lottie-fallback {
  opacity: 0;
  visibility: hidden;
}

.lottie-scroll-ready .hero-lottie-shell {
  will-change: transform;
}

.lottie-scroll-ready .hero-route-map {
  position: absolute;
  z-index: 4;
  top: clamp(306px, 39vh, 338px);
  bottom: clamp(12px, 2.5vh, 24px);
  left: max(var(--page-gutter), calc((100vw - var(--container-wide)) / 2));
  width: min(720px, 56vw);
  height: auto;
  display: block;
  overflow: visible;
  transform-origin: left center;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero-route-map::after {
  position: absolute;
  z-index: 0;
  inset: 8% 4% 4% 12%;
  background: radial-gradient(
    circle at 57% 46%,
    rgba(240, 24, 35, 0.11),
    transparent 58%
  );
  content: "";
  pointer-events: none;
}

.hero-route-map.is-visible {
  pointer-events: auto;
}

.hero-route-heading {
  position: absolute;
  z-index: 0;
  top: 12px;
  right: 24px;
  display: grid;
  justify-items: end;
  padding: 6px 8px 12px;
  pointer-events: none;
}

.hero-route-heading span {
  color: rgba(247, 247, 245, 0.48);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-route-heading strong {
  max-width: 330px;
  padding: 0.08em 0.04em 0.14em;
  color: rgba(247, 247, 245, 0.075);
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.9rem, 5.6vw, 4.65rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-align: right;
  text-transform: uppercase;
}

.hero-route-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.hero-route-path {
  fill: none;
  stroke: rgba(247, 247, 245, 0.24);
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
  transition:
    stroke 320ms var(--ease-standard),
    stroke-width 320ms var(--ease-standard);
}

.hero-route-path.is-active {
  stroke: var(--color-red);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 7px rgba(240, 24, 35, 0.7));
  animation: route-path-pulse 1.8s ease-in-out infinite;
}

.hero-route-hub {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--color-white);
  box-shadow:
    0 0 0 9px rgba(240, 24, 35, 0.12),
    0 0 36px rgba(240, 24, 35, 0.24);
  color: var(--color-black);
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  place-items: center;
  pointer-events: none;
}

.hero-route-hub i {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(240, 24, 35, 0.42);
  border-radius: inherit;
  animation: route-hub-orbit 3.6s ease-in-out infinite;
}

.hero-route-link {
  position: absolute;
  z-index: 3;
  width: 140px;
  min-width: 0;
  display: block;
  padding: 18px 8px 8px;
  transform: translateX(-50%);
  background: transparent;
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  transition:
    opacity 260ms var(--ease-standard),
    translate 260ms var(--ease-emphasis),
    filter 260ms var(--ease-standard);
  will-change: left, top;
}

.hero-route-link::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(247, 247, 245, 0.28);
  box-shadow: 0 0 0 4px rgba(247, 247, 245, 0.035);
  content: "";
  transition:
    background-color 260ms var(--ease-standard),
    box-shadow 260ms var(--ease-standard);
}

.hero-route-link small {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  color: var(--color-red-hover);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.hero-route-link strong {
  display: block;
  padding: 0;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.88);
}

.hero-route-link span {
  grid-column: 1 / 3;
  grid-row: 2;
  color: var(--color-muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.56rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-route-link:hover,
.hero-route-link:focus-visible,
.hero-route-link.is-active {
  background: transparent;
  filter: drop-shadow(0 0 12px rgba(240, 24, 35, 0.24));
  translate: 0 -3px;
}

.hero-route-link:hover::before,
.hero-route-link:focus-visible::before,
.hero-route-link.is-active::before {
  background: var(--color-red);
  box-shadow:
    0 0 0 5px rgba(240, 24, 35, 0.1),
    0 0 16px rgba(240, 24, 35, 0.68);
}

.hero-route-link--home {
  top: 15.48%;
  left: 6.25%;
}

.hero-route-link--services {
  top: 19.05%;
  left: 38.19%;
}

.hero-route-link--work {
  top: 53.57%;
  left: 8.33%;
}

.hero-route-link--about {
  top: 51.19%;
  right: auto;
  left: 72.92%;
}

.hero-route-link--contact {
  top: 85.71%;
  bottom: auto;
  left: 30.56%;
}

.lottie-scroll-ready .hero-chapters {
  position: absolute;
  z-index: 4;
  top: clamp(24px, 4.5vh, 52px);
  bottom: auto;
  left: 50%;
  height: 270px;
  display: block;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-chapter {
  position: absolute;
  bottom: 0;
  left: var(--page-gutter);
  width: min(570px, calc(100% - var(--page-gutter) - var(--page-gutter)));
  min-height: 218px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px 30px 24px;
  transform: translate3d(0, 20px, 0) scale(0.96);
  transform-origin: left bottom;
  overflow: hidden;
  border-radius: 28px 8px 28px 8px;
  background:
    radial-gradient(circle at 12% 10%, rgba(240, 24, 35, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(31, 21, 25, 0.84), rgba(8, 8, 11, 0.78));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  color: var(--color-white);
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  backdrop-filter: blur(22px) saturate(130%);
  will-change: transform, opacity;
}

.hero-chapter::before {
  position: absolute;
  top: -92px;
  right: -62px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 24, 35, 0.25), transparent 67%);
  filter: blur(4px);
  content: "";
  pointer-events: none;
}

.hero-chapter > * {
  position: relative;
  z-index: 1;
}

.hero-chapter.is-active {
  pointer-events: auto;
}

.hero-chapter:focus-visible {
  outline-offset: -4px;
}

.hero-chapter small {
  color: var(--color-red-hover);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-chapter strong {
  max-width: 510px;
  color: rgba(247, 247, 245, 0.96);
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero-chapter p {
  max-width: 510px;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(0.94rem, 1.25vw, 1.05rem);
  line-height: 1.5;
}

.hero-chapter > span {
  align-self: end;
  justify-self: start;
  margin-top: 2px;
  padding: 9px 12px;
  background: var(--color-red);
  color: var(--color-white);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}

.hero-chapter > span::after {
  margin-left: 8px;
  content: "→";
}

@keyframes route-hub-orbit {
  0%,
  100% {
    transform: scale(0.84) rotate(0deg);
    opacity: 0.38;
  }

  50% {
    transform: scale(1.18) rotate(180deg);
    opacity: 0.82;
  }
}

@keyframes route-path-pulse {
  0%,
  100% {
    stroke-opacity: 0.68;
  }

  50% {
    stroke-opacity: 1;
  }
}

.lottie-scroll-ready .hero-scroll-cue {
  position: absolute;
  z-index: 5;
  right: max(var(--page-gutter), calc((100vw - var(--container-wide)) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  will-change: transform, opacity;
}

.hero-scroll-cue::before {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-red));
  content: "";
}

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

.hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: var(--text-hero);
  line-height: 0.92;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--color-text);
  font-size: var(--text-lg);
}

.support-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 600px;
  margin-top: 22px;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.support-line::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 0.52em;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 5px rgba(240, 24, 35, 0.12);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.signal-frame {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, rgba(24, 24, 27, 0.86), rgba(5, 5, 5, 0.92));
  background-size: 32px 32px, 32px 32px, 100% 100%;
  box-shadow: var(--shadow-depth);
  clip-path: polygon(0 0, 91% 0, 100% 9%, 100% 100%, 9% 100%, 0 91%);
}

.signal-frame::before,
.signal-frame::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.signal-frame::before {
  inset: 8%;
  border: 1px solid rgba(240, 24, 35, 0.44);
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
}

.signal-frame::after {
  width: 140%;
  height: 2px;
  transform: rotate(-42deg);
  background: linear-gradient(90deg, transparent 5%, var(--color-red) 45%, transparent 70%);
  animation: signal-scan 7s linear infinite;
}

.signal-frame.is-paused::after {
  animation-play-state: paused;
}

.hero-logo-wrap {
  position: relative;
  z-index: 2;
  width: 44%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 247, 245, 0.04);
  box-shadow: 0 0 0 12px rgba(240, 24, 35, 0.07), 0 0 48px rgba(240, 24, 35, 0.18);
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.interface-outline {
  position: absolute;
  border: 1px solid var(--color-border-strong);
  background: rgba(5, 5, 5, 0.62);
  box-shadow: var(--shadow-depth);
}

.interface-outline::before {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 10px 0 var(--color-border-strong), 20px 0 var(--color-border-strong);
  content: "";
}

.interface-outline--one {
  top: 9%;
  right: 1%;
  width: 35%;
  height: 19%;
  transform: rotate(5deg);
}

.interface-outline--two {
  bottom: 7%;
  left: 0;
  width: 40%;
  height: 24%;
  transform: rotate(-4deg);
}

.signal-label {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-black);
  color: var(--color-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-label--top {
  top: 5%;
  left: 6%;
}

.signal-label--bottom {
  right: 6%;
  bottom: 6%;
  color: var(--color-red-hover);
}

@keyframes signal-scan {
  0% {
    transform: translate(-35%, -70%) rotate(-42deg);
  }
  100% {
    transform: translate(35%, 70%) rotate(-42deg);
  }
}

.signal-strip {
  background: var(--color-black-soft);
}

.signal-strip-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-strip li {
  position: relative;
  display: flex;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: var(--color-text);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.signal-strip li::before {
  width: 9px;
  height: 9px;
  border: 2px solid var(--color-red);
  content: "";
  transform: rotate(45deg);
}

.signal-strip li + li {
  border-top: 1px solid var(--color-border);
}

.planner-shell {
  display: grid;
  border: 1px solid var(--color-border);
  background: var(--color-black-soft);
  box-shadow: var(--shadow-depth);
}

.planner-tabs {
  display: grid;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--color-border);
  list-style: none;
}

.planner-tab {
  position: relative;
  min-height: 62px;
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  text-align: left;
  transition:
    background-color 140ms var(--ease-standard),
    color 140ms var(--ease-standard);
}

.planner-tab:last-child {
  border-bottom: 0;
}

.planner-tab[aria-selected="true"] {
  background: rgba(240, 24, 35, 0.08);
  color: var(--color-white);
}

.planner-tab[aria-selected="true"]::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--color-red);
  content: "";
}

.planner-panels {
  position: relative;
}

.planner-panel {
  padding: 32px 24px;
  border-bottom: 1px solid var(--color-border);
}

.planner-panel:last-child {
  border-bottom: 0;
}

.planner-panel h3 {
  margin-bottom: 16px;
}

.planner-panel p {
  max-width: 650px;
}

.planner-panel .button {
  margin-top: 12px;
}

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

.service-index {
  display: grid;
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--color-border);
  background: var(--color-border);
}

.service-index article {
  position: relative;
  min-height: 220px;
  padding: 28px 24px 30px;
  background: var(--color-surface);
}

.service-index article:nth-child(3n + 2) {
  background: var(--color-black-soft);
}

.service-number {
  display: block;
  margin-bottom: 28px;
  color: var(--color-red-hover);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
}

.service-index h3 {
  margin-bottom: 12px;
  font-size: var(--text-lg);
}

.service-index p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.service-index article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--color-red);
  content: "";
  transition: width 260ms var(--ease-emphasis);
}

.service-index article:hover::after,
.service-index article:focus-within::after {
  width: 100%;
}

.outcome-grid {
  display: grid;
  gap: 32px;
}

.outcome {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid var(--color-border-strong);
}

.outcome::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 64px;
  height: 3px;
  background: var(--color-red);
  content: "";
}

.outcome h3 {
  margin-bottom: 12px;
  font-size: var(--text-lg);
}

.process-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 15px;
  bottom: 36px;
  left: 17px;
  width: 1px;
  background: var(--color-border-strong);
  content: "";
}

.process-list li {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 0 0 44px 58px;
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  background: var(--color-black-soft);
  color: var(--color-red-hover);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: var(--text-lg);
}

.process-list p {
  max-width: 650px;
  margin-bottom: 0;
}

.project-grid {
  display: grid;
  gap: 24px;
}

.project-slot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.project-slot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--color-border);
  transition: transform 520ms var(--ease-emphasis);
}

.project-slot:hover img,
.project-slot:focus-within img {
  transform: scale(1.018);
}

.project-slot-content {
  padding: 24px;
}

.project-slot .reserved {
  display: block;
  margin-bottom: 10px;
  color: var(--color-red-hover);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
}

.project-slot h3 {
  margin-bottom: 10px;
  font-size: var(--text-lg);
}

.project-slot p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.editorial-split {
  display: grid;
  gap: 48px;
  align-items: center;
}

.editorial-visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(120deg, transparent 48%, rgba(240, 24, 35, 0.13) 48%, transparent 52%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--color-black-soft);
  background-size: 100% 100%, 28px 28px, 28px 28px, 100% 100%;
}

.editorial-visual img {
  width: min(48%, 220px);
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.45));
}

.care-panel {
  display: grid;
  gap: 36px;
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(125deg, rgba(100, 21, 27, 0.19), transparent 58%),
    var(--color-black-soft);
}

.status-stack {
  display: grid;
  gap: 10px;
  align-self: center;
}

.status-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--color-border);
  background: rgba(17, 17, 19, 0.84);
  color: var(--color-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--text-xs);
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 0 5px rgba(240, 24, 35, 0.1);
}

.status-state {
  color: var(--color-text);
}

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

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

.faq-list summary {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 18px 52px 18px 0;
  color: var(--color-white);
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 2px;
  background: var(--color-red);
  content: "";
  transition: transform 260ms var(--ease-standard);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-answer {
  max-width: 800px;
  padding: 0 52px 24px 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(100, 21, 27, 0.35), transparent 54%),
    var(--color-surface);
}

.final-cta::after {
  position: absolute;
  top: 0;
  right: -12%;
  width: 55%;
  height: 100%;
  transform: skewX(-22deg);
  border-left: 1px solid rgba(240, 24, 35, 0.34);
  background: linear-gradient(90deg, transparent, rgba(240, 24, 35, 0.06));
  content: "";
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.final-cta h2 {
  margin-bottom: 18px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 24px;
}

.site-footer {
  padding-block: 44px 22px;
  background: var(--color-black);
}

.footer-grid {
  display: grid;
  gap: 40px;
}

.footer-brand-copy {
  max-width: 520px;
}

.footer-brand-copy .brand {
  margin-bottom: 18px;
}

.footer-contact {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.footer-contact a {
  min-height: 34px;
  width: fit-content;
  color: var(--color-text);
}

.footer-nav h2 {
  margin-bottom: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--color-muted);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  margin: 0;
  font-size: var(--text-xs);
}

.page-hero {
  position: relative;
  padding-block: 64px 72px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(100, 21, 27, 0.24), transparent 45%),
    var(--color-black-soft);
}

.page-hero::after {
  position: absolute;
  top: -20%;
  right: 4%;
  width: 38%;
  height: 150%;
  transform: skewX(-22deg);
  border-inline: 1px solid rgba(240, 24, 35, 0.23);
  content: "";
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 930px;
}

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

.page-hero p {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--color-text);
  font-size: var(--text-lg);
}

.anchor-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  overflow-x: auto;
  border-bottom: 1px solid var(--color-border);
  background: rgba(11, 11, 12, 0.96);
  scrollbar-width: thin;
}

.anchor-nav ul {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 4px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
}

.anchor-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--text-xs);
  text-decoration: none;
  transition:
    border-color 260ms var(--ease-standard),
    background-color 260ms var(--ease-standard),
    color 260ms var(--ease-standard);
}

.anchor-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--color-red);
  content: "";
  transition: transform 260ms var(--ease-standard);
}

.anchor-nav a:hover,
.anchor-nav a:focus-visible,
.anchor-nav a.is-active {
  border-color: var(--color-red);
  background: rgba(240, 24, 35, 0.08);
  color: var(--color-white);
}

.anchor-nav a.is-active::after {
  transform: scaleX(1);
}

.service-detail {
  border-bottom: 0;
}

.service-detail-grid {
  display: grid;
  gap: 32px;
}

.service-detail:nth-of-type(even) {
  background: var(--color-surface);
}

.service-detail-heading .service-number {
  margin-bottom: 16px;
}

.service-detail h2 {
  font-size: var(--text-xl);
}

.service-detail h3 {
  margin: 26px 0 12px;
  color: var(--color-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--color-red);
  content: "";
}

.notice {
  padding: 18px 20px;
  border-left: 3px solid var(--color-red);
  background: rgba(240, 24, 35, 0.07);
}

.notice p:last-child {
  margin-bottom: 0;
}

.status-panel {
  display: grid;
  gap: 20px;
  padding: 28px 24px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
}

.status-panel h2,
.status-panel h3 {
  margin-bottom: 12px;
}

.future-grid,
.principles-grid,
.contact-grid,
.next-steps {
  display: grid;
  gap: 20px;
}

.future-item,
.principle,
.contact-card,
.next-step {
  position: relative;
  padding: 24px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.future-item h3,
.principle h3,
.contact-card h2,
.contact-card h3,
.next-step h3 {
  margin-bottom: 10px;
  font-size: var(--text-lg);
}

.future-item p:last-child,
.principle p:last-child,
.contact-card p:last-child,
.next-step p:last-child {
  margin-bottom: 0;
}

.principle::before,
.future-item::before {
  position: absolute;
  top: -1px;
  left: 24px;
  width: 48px;
  height: 2px;
  background: var(--color-red);
  content: "";
}

.owner-mark {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-inline: auto;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--color-black-soft);
  background-size: 32px 32px;
}

.owner-mark::after {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(240, 24, 35, 0.36);
  content: "";
  transform: rotate(45deg);
}

.owner-mark img {
  position: relative;
  z-index: 1;
  width: 48%;
  height: auto;
  object-fit: contain;
}

.contact-card {
  min-height: 185px;
}

.contact-card .label {
  display: block;
  margin-bottom: 16px;
  color: var(--color-red-hover);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--color-white);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.form-placeholder {
  padding: 32px 24px;
  border: 2px dashed var(--color-focus);
  background:
    repeating-linear-gradient(-45deg, rgba(240, 24, 35, 0.035) 0 12px, transparent 12px 24px),
    var(--color-surface);
}

.blocker-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 9px;
  border: 1px solid var(--color-focus);
  color: var(--color-focus);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.placeholder-code {
  display: block;
  margin-block: 14px;
  padding: 14px;
  border: 1px solid var(--color-border);
  background: var(--color-black);
  color: var(--color-white);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--text-xs);
  overflow-wrap: anywhere;
}

.form-embed {
  position: relative;
  width: 100%;
  min-height: 900px;
  overflow: hidden;
}

.form-embed iframe {
  width: 100%;
  min-height: 900px;
  border: 0;
}

.step-number {
  display: block;
  margin-bottom: 22px;
  color: var(--color-red-hover);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--text-sm);
  font-weight: 600;
}

.morph-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.morph-section::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: 54%;
  width: min(52vw, 720px);
  aspect-ratio: 1;
  border-radius: 45% 55% 63% 37% / 38% 42% 58% 62%;
  background:
    radial-gradient(circle at 32% 32%, rgba(240, 24, 35, 0.09), transparent 48%),
    radial-gradient(circle at 70% 62%, rgba(119, 23, 32, 0.1), transparent 54%);
  filter: blur(72px);
  content: "";
  opacity: 0.46;
  animation: morph-section-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.morph-grid,
.service-card-grid {
  display: grid;
  gap: 20px;
}

.morph-card {
  position: relative;
  min-height: 380px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 168px clamp(24px, 3vw, 36px) clamp(26px, 3vw, 34px);
  border: 1px solid rgba(240, 24, 35, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 42% 14%, rgba(240, 24, 35, 0.1), transparent 38%),
    radial-gradient(circle at 92% 88%, rgba(101, 20, 29, 0.08), transparent 42%),
    linear-gradient(155deg, rgba(27, 18, 21, 0.9), rgba(7, 7, 9, 0.9));
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(240, 24, 35, 0.05);
  color: var(--color-white);
  backdrop-filter: blur(22px) saturate(112%);
  transition:
    transform 360ms var(--ease-emphasis),
    border-color 360ms var(--ease-standard),
    box-shadow 360ms var(--ease-emphasis);
  isolation: isolate;
}

.morph-card::before {
  position: absolute;
  z-index: 0;
  top: 67px;
  left: 50%;
  width: 48px;
  height: 40px;
  transform: translateX(-50%);
  border: 1px solid rgba(240, 24, 35, 0.15);
  border-radius: 8px;
  background: linear-gradient(
    145deg,
    rgba(240, 24, 35, 0.18),
    rgba(68, 17, 23, 0.34)
  );
  box-shadow:
    -108px -48px 0 rgba(73, 22, 28, 0.16),
    -54px -48px 0 rgba(83, 23, 30, 0.2),
    0 -48px 0 rgba(75, 22, 28, 0.17),
    54px -48px 0 rgba(63, 20, 25, 0.14),
    -108px 0 0 rgba(67, 21, 27, 0.15),
    -54px 0 0 rgba(78, 22, 29, 0.18),
    54px 0 0 rgba(67, 20, 26, 0.15),
    -108px 48px 0 rgba(58, 19, 24, 0.12),
    -54px 48px 0 rgba(69, 20, 27, 0.15),
    0 48px 0 rgba(72, 21, 27, 0.14),
    54px 48px 0 rgba(57, 18, 23, 0.11);
  content: "";
  opacity: 0.82;
  transition:
    filter 360ms var(--ease-standard),
    opacity 360ms var(--ease-standard);
  pointer-events: none;
}

.morph-card::after {
  position: absolute;
  z-index: 0;
  top: 107px;
  left: 50%;
  width: 64px;
  height: 42px;
  border-bottom: 1px solid rgba(240, 24, 35, 0.2);
  border-left: 1px solid rgba(240, 24, 35, 0.2);
  border-radius: 0 0 0 16px;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

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

.morph-card:hover,
.morph-card:focus-within {
  transform: translate3d(0, -5px, 0);
  border-color: rgba(240, 24, 35, 0.36);
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(240, 24, 35, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.morph-card:hover::before,
.morph-card:focus-within::before {
  filter: brightness(1.18);
  opacity: 1;
}

.morph-card--link {
  text-decoration: none;
}

.morph-card-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--color-red-hover);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.morph-card h3,
.service-card-trigger > strong {
  display: block;
  margin: 0 0 14px;
  color: var(--color-white);
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.morph-card p {
  max-width: 55ch;
  margin-bottom: 0;
  color: var(--color-muted);
}

.morph-card-action {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: auto;
  padding-top: 26px;
  color: var(--color-red-hover);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.morph-card-action::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 280ms var(--ease-emphasis);
}

.morph-card:hover .morph-card-action::before,
.morph-card:focus-within .morph-card-action::before {
  width: 42px;
}

.morph-list {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--color-text);
  list-style: none;
}

.morph-list li {
  position: relative;
  padding-left: 19px;
}

.morph-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--color-red);
  content: "";
}

.service-card {
  min-height: 390px;
  padding: 0;
}

.service-card-trigger {
  width: 100%;
  min-height: inherit;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 168px clamp(24px, 3vw, 34px) clamp(26px, 3vw, 34px);
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.service-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.service-card-chips span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(247, 247, 245, 0.065);
  color: var(--color-text);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.service-detail--template[hidden] {
  display: none !important;
}

.service-dialog {
  width: min(980px, calc(100% - 32px));
  max-width: none;
  max-height: min(88vh, 860px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--color-white);
}

.service-dialog::backdrop {
  background:
    radial-gradient(circle at 50% 40%, rgba(113, 17, 27, 0.3), transparent 52%),
    rgba(2, 2, 3, 0.82);
  backdrop-filter: blur(12px);
}

.service-dialog-surface {
  position: relative;
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px 12px 34px 12px;
  background:
    radial-gradient(circle at 90% 5%, rgba(240, 24, 35, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(34, 24, 29, 0.97), rgba(8, 9, 12, 0.98));
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.64),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  scrollbar-width: thin;
}

.service-dialog-close {
  position: sticky;
  z-index: 3;
  top: 0;
  float: right;
  min-width: 74px;
  min-height: 44px;
  margin: 0 0 18px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--color-red);
  color: var(--color-white);
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.service-dialog-content {
  clear: both;
}

.service-dialog-detail {
  width: auto;
  max-width: none;
  padding: 0;
}

.service-dialog-detail .service-detail-heading {
  max-width: 520px;
}

.service-dialog-detail .button {
  margin-top: 6px;
}

.dialog-open {
  overflow: hidden;
}

@keyframes morph-section-drift {
  from {
    transform: translate3d(-8%, -4%, 0) rotate(-8deg) scale(0.92);
  }

  to {
    transform: translate3d(8%, 6%, 0) rotate(12deg) scale(1.08);
  }
}

@keyframes morph-blob {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.94);
    border-radius: 41% 59% 46% 54% / 52% 38% 62% 48%;
  }

  100% {
    transform: translate3d(-18%, 22%, 0) rotate(26deg) scale(1.12);
    border-radius: 58% 42% 61% 39% / 38% 57% 43% 62%;
  }
}

.privacy-content h2 {
  margin-top: 52px;
  font-size: var(--text-xl);
}

.privacy-content h2:first-of-type {
  margin-top: 0;
}

.privacy-content .notice {
  margin-block: 28px;
}

.not-found {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding-block: 80px;
}

.not-found-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.error-code {
  position: relative;
  color: var(--color-surface-raised);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(9rem, 38vw, 23rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.68;
  user-select: none;
}

.error-code::after {
  position: absolute;
  inset: 49% -5% auto;
  height: 3px;
  background: var(--color-red);
  content: "";
}

.reveal {
  --reveal-delay: 0ms;
  clip-path: inset(0);
  transition:
    opacity 520ms var(--ease-emphasis),
    transform 520ms var(--ease-emphasis),
    clip-path 520ms var(--ease-emphasis);
  transition-delay: var(--reveal-delay);
}

.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
  clip-path: inset(12% 0 0 0);
}

.motion-ready .reveal.reveal--left:not(.is-visible) {
  transform: translate3d(calc(0px - var(--reveal-distance)), 0, 0);
  clip-path: inset(0 16% 0 0);
}

.motion-ready .reveal.reveal--right:not(.is-visible) {
  transform: translate3d(var(--reveal-distance), 0, 0);
  clip-path: inset(0 0 0 16%);
}

.motion-ready .reveal.reveal--scale:not(.is-visible) {
  transform: scale(0.97);
  clip-path: inset(8% 4% 8% 4%);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0);
}

.motion-ready .section-heading.reveal::after {
  display: block;
  width: 84px;
  height: 2px;
  margin-top: 24px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--color-red), transparent);
  content: "";
  transition: transform 520ms var(--ease-emphasis);
  transition-delay: calc(var(--reveal-delay) + 120ms);
}

.motion-ready .section-heading.reveal.is-visible::after {
  transform: scaleX(1);
}

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

@media (min-width: 640px) {
  .signal-strip-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .signal-strip li + li {
    border-top: 0;
    border-left: 1px solid var(--color-border);
  }

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

  .planner-tab:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }

  .planner-tab:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-index,
  .project-grid,
  .future-grid,
  .principles-grid,
  .contact-grid,
  .next-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .care-panel {
    padding: 44px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .not-found-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .container,
  .container-wide,
  .reading-container {
    width: 100%;
  }

  .section {
    padding-block: 64px;
  }

  .hero-grid,
  .editorial-split,
  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .service-dialog-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 6vw, 5.75rem);
  }

  .planner-shell {
    grid-template-columns: minmax(230px, 0.75fr) 1.7fr;
  }

  .planner-tabs {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--color-border);
    border-bottom: 0;
  }

  .planner-tab,
  .planner-tab:nth-child(odd),
  .planner-tab:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .planner-tab:last-child {
    border-bottom: 0;
  }

  .planner-panel {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    border-bottom: 0;
  }

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

  .service-index article:nth-child(1),
  .service-index article:nth-child(6) {
    grid-column: span 2;
  }

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

  .project-slot:nth-child(2) {
    transform: translateY(28px);
  }

  .care-panel {
    grid-template-columns: 1.35fr 1fr;
  }

  .process-list li {
    grid-template-columns: 0.7fr 1.4fr;
    padding-left: 76px;
  }

  .service-detail-grid {
    gap: 72px;
  }

  .service-detail:nth-of-type(even) .service-detail-heading {
    order: 2;
  }

  .principles-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .principle {
    grid-column: span 2;
  }

  .principle:nth-child(4),
  .principle:nth-child(5) {
    grid-column: span 3;
  }

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

@media (min-width: 1024px) {
  .container,
  .reading-container {
    width: 100%;
  }

  .container-wide {
    width: 100%;
  }

  .section {
    padding-block: 72px;
  }

  .hero {
    padding-block: 64px 80px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.14fr) minmax(400px, 0.86fr);
    gap: 64px;
  }

  .hero h1 {
    font-size: clamp(4rem, 6.4vw, 7.1rem);
  }

  .footer-grid {
    grid-template-columns: 1.6fr 0.7fr 0.8fr;
  }
}

@media (max-width: 899px) {
  html:not(.js) .site-header {
    position: relative;
    height: auto;
  }

  html:not(.js) .header-inner {
    height: auto;
    flex-wrap: wrap;
    padding-block: 12px;
  }

  html:not(.js) .site-nav {
    width: 100%;
  }

  html:not(.js) .site-nav a {
    padding-inline: 10px;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100svh - var(--header-height));
    padding: 16px 20px 24px;
    overflow-y: auto;
    border-bottom: 1px solid var(--color-border);
    background: rgba(5, 5, 5, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition:
      opacity 260ms var(--ease-standard),
      transform 260ms var(--ease-standard),
      visibility 260ms;
  }

  .js .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    width: 100%;
    min-height: 52px;
    padding-inline: 10px;
  }

  .site-nav a[aria-current="page"]::after {
    top: 12px;
    right: auto;
    bottom: 12px;
    left: 0;
    width: 3px;
    height: auto;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin: 10px 0 0;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .anchor-nav {
    top: var(--header-height);
  }
}

@media (max-width: 767px) {
  .morph-card {
    min-height: 360px;
    padding-top: 156px;
    border-radius: 18px;
  }

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

  .service-card-trigger {
    padding-top: 156px;
  }

  .service-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .service-dialog-surface {
    max-height: calc(100dvh - 20px);
    padding: 22px;
    border-radius: 26px 8px 26px 8px;
  }

  .service-dialog-close {
    min-width: 68px;
    min-height: 42px;
    margin-left: 12px;
  }

  :root {
    --reveal-distance: 14px;
  }

  body {
    background-size: 40px 40px;
  }

  .site-motion-field::before {
    background-size: 40px 40px;
    opacity: 0.34;
  }

  .site-motion-field__beam {
    height: 1px;
  }

  .site-motion-field__beam--a,
  .site-motion-field__beam--b {
    width: 78vw;
  }

  .site-motion-field__beam--c,
  .site-motion-field__node--c {
    display: none;
  }

  .scroll-transition__plane {
    left: -28%;
    width: 112vw;
  }

  .scroll-transition--2 .scroll-transition__plane,
  .scroll-transition--4 .scroll-transition__plane {
    left: 16%;
  }

  .scroll-transition__glow {
    left: -8%;
    width: 62vw;
  }

  .scroll-transition--2 .scroll-transition__glow,
  .scroll-transition--4 .scroll-transition__glow {
    left: 52%;
  }

  .hero {
    min-height: auto;
  }

  .hero.lottie-scroll-ready {
    height: 360vh;
    height: 360svh;
  }

  .lottie-scroll-ready .hero-sticky {
    min-height: 0;
  }

  .lottie-scroll-ready .hero-grid {
    height: 100%;
    display: block;
  }

  .lottie-scroll-ready .hero-copy {
    max-width: 94%;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding-block: 28px;
  }

  .lottie-scroll-ready .hero-visual {
    position: absolute;
    z-index: 1;
    top: 9%;
    right: -22%;
    width: min(92vw, 520px);
    min-height: 0;
    opacity: 0.52;
  }

  .lottie-scroll-ready .hero-lottie-stage {
    width: 100%;
  }

  .lottie-scroll-ready .hero-route-map {
    top: auto;
    bottom: 14px;
    left: 16px;
    width: calc(100% - 32px);
    height: auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
  }

  .hero-route-map::after,
  .hero-route-heading,
  .hero-route-canvas,
  .hero-route-hub {
    display: none;
  }

  .hero-route-link {
    position: relative;
    inset: auto;
    width: auto;
    min-width: 0;
    min-height: 54px;
    align-content: center;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-items: center;
    gap: 3px;
    padding: 8px 3px;
    transform: none;
    text-align: center;
  }

  .hero-route-link::before {
    position: static;
    width: 5px;
    height: 5px;
    transform: none;
  }

  .hero-route-link span {
    display: none;
  }

  .hero-route-link small {
    display: none;
  }

  .hero-route-link strong {
    grid-column: auto;
    grid-row: auto;
    padding: 0;
    font-size: clamp(0.6rem, 2.7vw, 0.75rem);
  }

  .lottie-scroll-ready .hero-chapters {
    top: 14px;
    bottom: auto;
    height: 250px;
  }

  .hero-chapter {
    left: 16px;
    width: calc(100% - 32px);
    min-height: 226px;
    gap: 9px;
    padding: 20px 21px 19px;
  }

  .hero-chapter strong {
    font-size: clamp(1.4rem, 6.2vw, 1.82rem);
  }

  .hero-chapter p {
    font-size: 0.9rem;
  }

  .lottie-scroll-ready .hero-scroll-cue {
    display: none;
  }

  .hero .button-row {
    flex-direction: column;
  }

  .hero .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 310px;
  }

  .hero::after {
    right: 0;
    width: 80%;
  }

  .signal-frame {
    width: min(100%, 380px);
  }

  .interface-outline {
    display: none;
  }

  .page-hero {
    padding-block: 56px 64px;
  }

  .page-hero::after {
    right: -25%;
    width: 65%;
  }

  .service-detail-heading {
    max-width: 600px;
  }

  .project-slot:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 420px) {
  .container,
  .container-wide,
  .reading-container {
    width: 100%;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .hero-visual {
    min-height: 270px;
  }

  .planner-panel,
  .form-placeholder,
  .care-panel {
    padding: 24px 20px;
  }

  .contact-links {
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .ambient-signal::before {
    background-size: 56px 56px;
    opacity: 0.38;
  }

  .ambient-signal__node--b {
    display: none;
  }
}

@media (min-width: 768px) and (max-height: 700px) {
  .lottie-scroll-ready .hero-route-map {
    top: 270px;
    bottom: 10px;
    height: auto;
  }

  .lottie-scroll-ready .hero-chapters {
    top: 10px;
    height: 250px;
  }

  .hero-chapter {
    min-height: 220px;
    padding-block: 22px;
  }
}

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

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

  .motion-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }

  .signal-frame::after {
    animation: none;
  }

  .ambient-signal {
    display: none;
  }

  .site-motion-field,
  .scroll-progress,
  .scroll-transition {
    display: none;
  }

  .hero.lottie-scroll-ready {
    height: auto;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    display: flex;
    padding-block: 64px 80px;
  }

  .lottie-scroll-ready .hero-sticky {
    position: static;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .lottie-scroll-ready .hero-grid {
    height: auto;
    display: grid;
  }

  .lottie-scroll-ready .hero-copy {
    min-height: 0;
    padding-block: 0;
  }

  .lottie-scroll-ready .hero-visual {
    position: relative;
    z-index: auto;
    top: auto;
    right: auto;
    width: auto;
    opacity: 1;
  }

  .lottie-scroll-ready .hero-lottie {
    display: none;
  }

  .lottie-scroll-ready .hero-lottie-fallback {
    opacity: 1;
    visibility: visible;
  }

  .lottie-scroll-ready .hero-chapters,
  .lottie-scroll-ready .hero-route-map,
  .lottie-scroll-ready .hero-scroll-cue {
    display: none;
  }

  .lottie-scroll-ready [data-hero-copy-item],
  .lottie-scroll-ready [data-hero-lottie-shell] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }

  .project-slot img,
  .button::after,
  .text-link::after {
    transform: none !important;
  }
}
