:root {
  --deep-navy: #040b22;
  --charcoal-blue: #020714;
  --slate-panel: #07122c;
  --warm-white: #f4efe6;
  --mist-grey: #b8c0cc;
  --blue-grey: #7e8998;
  --steel-blue: #3898ec;
  --brass-gold: #ffc878;
  --muted-green: #7fae8a;
  --clay: #c2845b;
  --smoke-border: rgba(244, 239, 230, 0.18);
  --apex-navy: #040b22;
  --apex-ink: #020714;
  --apex-panel: #07122c;
  --apex-line: rgba(255, 200, 120, 0.32);
  --apex-line-soft: rgba(244, 239, 230, 0.18);
  --apex-amber: #ffc878;
  --apex-amber-dark: #d6a85a;
  --apex-text: #f4efe6;
  --apex-muted: #b8c0cc;
  --apex-dim: #7e8998;
  --apex-blue: #3898ec;
  --apex-clay: #c2845b;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--apex-navy);
  color: var(--apex-text);
  font-family: "Neue Haas Grotesk Display", "Helvetica Neue", Inter, Manrope, Arial, sans-serif;
  line-height: 1.35;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(244, 239, 230, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, 0.035) 1px, transparent 1px);
  background-size: calc(100vw / 12) 92px;
  opacity: 0.8;
  mask-image: linear-gradient(to bottom, #000 0, transparent 76%);
}

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

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

:focus-visible {
  outline: 2px solid var(--apex-amber);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 0;
  background: var(--apex-navy);
  backdrop-filter: none;
}

.nav {
  width: 100%;
  min-height: 92px;
  margin: 0 auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 52px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 clamp(280px, 28vw, 430px);
  gap: 0;
  color: #fff;
  font-family: "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: lowercase;
}

.brand-mark {
  display: none;
}

.brand svg path {
  vector-effect: non-scaling-stroke;
}

.nav-links {
  position: relative;
  flex: 1 1 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 30px);
  color: var(--apex-amber);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.nav-links::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 1px;
  background: var(--apex-amber);
}

.nav-links a {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid transparent;
  padding: 4px 0 18px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -7px;
  bottom: 11px;
  z-index: -1;
  border: 1px solid var(--apex-amber);
  background: var(--apex-amber);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 220ms ease,
    opacity 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--apex-ink);
  border-bottom-color: transparent;
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before,
.nav-links a[aria-current="page"]::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--apex-amber);
  background: var(--apex-amber);
  color: var(--apex-ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 18px;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(244, 239, 230, 0.28);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: scaleX(1);
}

.button.secondary::before,
.button.dark::before {
  background: var(--apex-amber);
}

.nav-links .nav-cta {
  min-height: auto;
  padding: 4px 0 18px;
  border: 0;
  background: transparent;
  color: var(--apex-amber);
}

.nav-links .nav-cta:hover {
  color: var(--apex-ink);
}

.button.secondary {
  background: transparent;
  color: var(--apex-text);
  border-color: var(--apex-line-soft);
}

.button.secondary:hover,
.button.secondary:focus-visible,
.button.dark:hover,
.button.dark:focus-visible {
  border-color: var(--apex-amber);
  color: var(--apex-ink);
}

.button.dark {
  background: var(--apex-ink);
  color: var(--apex-text);
  border-color: var(--apex-ink);
}

a.button {
  overflow: visible;
  min-height: 42px;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--apex-text);
  padding: 0 0 4px;
}

a.button.secondary,
a.button.dark {
  border: 0;
  background: transparent;
}

a.button::before {
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  height: 2px;
  background: var(--apex-amber);
  transform: scaleX(0);
  transform-origin: left center;
}

a.button::after {
  content: "->";
  order: -1;
  color: var(--apex-amber);
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

a.button:hover,
a.button:focus-visible,
a.button.secondary:hover,
a.button.secondary:focus-visible,
a.button.dark:hover,
a.button.dark:focus-visible {
  border-color: transparent;
  color: var(--apex-amber);
}

a.button:hover::before,
a.button:focus-visible::before {
  transform: scaleX(1);
}

a.button:hover::after,
a.button:focus-visible::after {
  color: var(--apex-amber);
  transform: translateX(2px);
}

.amber-section a.button,
.amber-section a.button.secondary,
.amber-section a.button.dark {
  color: var(--apex-ink);
}

.amber-section a.button::before {
  background: var(--apex-ink);
}

.amber-section a.button::after,
.amber-section a.button:hover::after,
.amber-section a.button:focus-visible::after {
  color: var(--apex-ink);
}

.amber-section a.button:hover,
.amber-section a.button:focus-visible,
.amber-section a.button.secondary:hover,
.amber-section a.button.secondary:focus-visible,
.amber-section a.button.dark:hover,
.amber-section a.button.dark:focus-visible {
  color: var(--apex-ink);
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--apex-line-soft);
  background: transparent;
  color: var(--apex-text);
  font: inherit;
  text-transform: uppercase;
}

.announcement-bar {
  background: var(--apex-ink);
  color: var(--apex-text);
  border-top: 1px solid var(--apex-line-soft);
  border-bottom: 1px solid var(--apex-line-soft);
}

.announcement-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 44px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--apex-text);
  font-size: 0.9rem;
  line-height: 1.25;
  text-align: center;
}

.announcement-inner a {
  color: var(--apex-amber);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--apex-line-soft);
  border-left: 1px solid var(--apex-line-soft);
}

.proof-strip span {
  min-height: 98px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--apex-line-soft);
  border-bottom: 1px solid var(--apex-line-soft);
  color: var(--apex-muted);
  padding: 18px;
}

.proof-strip strong {
  color: var(--apex-text);
}

.section,
.hero,
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.hero {
  min-height: calc(100vh - 72px);
  padding: 96px 0 54px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
  border-bottom: 1px solid var(--apex-line-soft);
}

.home-hero {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  isolation: isolate;
}

.architectural-hero-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.architectural-hero-animation::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 11, 34, 0.96) 0%, rgba(4, 11, 34, 0.8) 30%, rgba(4, 11, 34, 0.34) 58%, rgba(4, 11, 34, 0.58) 100%),
    linear-gradient(180deg, rgba(4, 11, 34, 0.28), rgba(4, 11, 34, 0.7));
}

.hero-house-sketch {
  position: absolute;
  right: max(-180px, -7vw);
  bottom: clamp(-82px, -7vw, -34px);
  z-index: 1;
  width: min(78vw, 1040px);
  min-width: 680px;
  height: auto;
  opacity: 0.78;
  color: var(--apex-amber);
  overflow: visible;
}

.drafting-grid path,
.sketch-line {
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.drafting-grid path {
  stroke: rgba(244, 239, 230, 0.08);
  stroke-width: 1;
}

.house-sketch {
  filter: drop-shadow(0 0 12px rgba(255, 200, 120, 0.06));
}

.scribble-backdrop {
  opacity: 0.44;
}

.scribble-line {
  fill: none;
  stroke: rgba(244, 239, 230, 0.28);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: scribble-draw 14s ease-in-out infinite;
}

.scribble-line-b {
  animation-delay: 1.6s;
}

.scribble-line-c {
  animation-delay: 3.2s;
}

.scribble-line-d {
  animation-delay: 4.8s;
}

.night-sky-detail {
  opacity: 0.48;
}

.moon-mark,
.star-mark,
.star-dot {
  fill: none;
  stroke: rgba(244, 239, 230, 0.46);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.moon-mark {
  fill: rgba(244, 239, 230, 0.025);
  stroke: rgba(255, 200, 120, 0.44);
}

.star-dot {
  stroke-width: 2;
}

.sketch-line {
  stroke: rgba(255, 200, 120, 0.88);
  stroke-width: 2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: house-line-draw 18s ease-in-out infinite;
}

.sketch-structure {
  animation-delay: 0.75s;
}

.sketch-roof {
  animation-delay: 1.65s;
}

.sketch-gable {
  stroke-width: 1.7;
}

.sketch-gable-soft {
  stroke: rgba(244, 239, 230, 0.34);
  stroke-width: 1;
}

.sketch-glass {
  stroke: rgba(244, 239, 230, 0.7);
  stroke-width: 1.35;
  animation-delay: 2.65s;
}

.sketch-entry {
  stroke: rgba(255, 200, 120, 0.78);
  stroke-width: 1.55;
  animation-delay: 3.65s;
}

.sketch-detail {
  stroke: rgba(244, 239, 230, 0.38);
  stroke-width: 1;
  animation-delay: 4.55s;
}

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

.home-hero h1 {
  max-width: 1180px;
  font-size: clamp(3.35rem, 7.1vw, 5.85rem);
  line-height: 0.94;
}

.home-hero .hero-logo-heading {
  max-width: 1040px;
  font-family: "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 5.6vw, 5.15rem);
  font-weight: 760;
  line-height: 0.92;
  letter-spacing: -0.042em;
  color: var(--apex-text);
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255, 200, 120, 0.12);
}

.home-hero .eyebrow {
  position: relative;
  top: -14px;
}

.hero-logo-heading .accent {
  color: var(--apex-amber);
}

.headline-nowrap {
  white-space: nowrap;
}

.underline-word {
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
  text-decoration-color: currentColor;
}

@keyframes house-line-draw {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  30%,
  82% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  96%,
  100% {
    stroke-dashoffset: 0;
    opacity: 0.42;
  }
}

@keyframes scribble-draw {
  0% {
    stroke-dashoffset: 1;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  34%,
  72% {
    stroke-dashoffset: 0;
    opacity: 0.7;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sketch-line,
  .scribble-line {
    animation: none;
  }

  .sketch-line,
  .scribble-line {
    stroke-dashoffset: 0;
    opacity: 0.84;
  }
}

.hero-copy {
  grid-column: 1 / 9;
  min-width: 0;
}

.hero-copy-wide {
  grid-column: 1 / 13;
}

.hero-aside {
  grid-column: 9 / 13;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 56px 0;
}

.section-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 42px;
}

.section-header .eyebrow {
  grid-column: 1 / 3;
}

.section-header h2 {
  grid-column: 3 / 10;
}

.section-header p {
  grid-column: 10 / 13;
  padding-top: 8px;
}

.eyebrow,
.kicker {
  color: var(--apex-amber);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
  max-width: 1040px;
}

h2 {
  font-size: clamp(2.5rem, 5.4vw, 5.35rem);
  line-height: 0.94;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

p {
  color: var(--apex-muted);
  margin: 0;
}

.lead {
  max-width: 760px;
  color: var(--apex-text);
  font-size: clamp(1.24rem, 2vw, 1.6rem);
  line-height: 1.25;
  margin-top: 28px;
}

.inline-wordmark {
  display: inline-block;
  color: #fff;
  font-family: "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.08em;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: lowercase;
  vertical-align: -0.02em;
}

.home-hero .lead .inline-wordmark {
  color: var(--apex-text);
  margin-right: 0.08em;
  text-shadow: 0 1px 0 rgba(255, 200, 120, 0.16);
}

.small {
  font-size: 0.95rem;
}

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

.hero-actions {
  gap: 18px;
}

.hero-action-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  border: 0;
  color: var(--apex-text);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0 0 4px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.hero-action-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  z-index: -1;
  background: var(--apex-amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms ease;
}

.hero-action-link::after {
  content: "->";
  order: -1;
  color: var(--apex-amber);
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.hero-action-link:hover,
.hero-action-link:focus-visible {
  color: var(--apex-amber);
}

.hero-action-link:hover::before,
.hero-action-link:focus-visible::before {
  transform: scaleX(1);
}

.hero-action-link:hover::after,
.hero-action-link:focus-visible::after {
  color: var(--apex-amber);
  transform: translateX(2px);
}

.icon-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--apex-line) transparent;
  padding: 8px 16px;
}

.icon-item {
  flex: 0 0 54px;
  width: 54px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--apex-line-soft);
  background: rgba(4, 11, 34, 0.52);
  color: var(--apex-amber);
  overflow: hidden;
  cursor: default;
  transition:
    width 230ms ease,
    flex-basis 230ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.icon-item svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-item span {
  max-width: 0;
  opacity: 0;
  color: var(--apex-text);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    max-width 230ms ease,
    opacity 160ms ease;
}

.icon-item:hover,
.icon-item:focus-visible {
  flex-basis: 246px;
  width: 246px;
  justify-content: flex-start;
  padding: 0 16px;
  border-color: var(--apex-amber);
  background: rgba(255, 200, 120, 0.1);
}

.icon-item:hover span,
.icon-item:focus-visible span {
  max-width: 180px;
  opacity: 1;
}

.system-visual {
  border: 1px solid var(--apex-line);
  min-height: 430px;
  padding: 20px;
  display: grid;
  align-content: end;
  gap: 12px;
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(255, 200, 120, 0.16) 49.6%, rgba(255, 200, 120, 0.16) 50.4%, transparent 50.4%),
    linear-gradient(rgba(255, 200, 120, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 100% 46px;
}

.visual-node {
  border: 1px solid var(--apex-line-soft);
  background: rgba(2, 7, 20, 0.68);
  padding: 16px;
}

.visual-node span,
.number,
.asset-label {
  display: block;
  color: var(--apex-amber);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.visual-node p {
  margin-top: 8px;
  font-size: 0.92rem;
}

.hover-tab {
  position: relative;
  justify-self: end;
  width: 118px;
  min-height: 58px;
  display: grid;
  align-content: center;
  border-right: 3px solid var(--apex-amber);
  cursor: default;
  overflow: hidden;
  background: var(--apex-ink);
  color: var(--apex-text);
  transition:
    width 260ms ease,
    min-height 260ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.home-hero .hero-aside {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: -54px;
  width: min(940px, calc(100vw - 12px));
  align-self: auto;
  display: block;
}

.home-hero .system-visual {
  min-height: 0;
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 1.28fr;
  gap: 10px;
  align-content: start;
}

.home-hero .hover-tab {
  width: 100%;
  min-height: 46px;
  max-height: 46px;
  align-content: start;
  padding: 13px 14px;
  border: 1px solid var(--apex-line);
  border-top: 3px solid var(--apex-amber);
  border-right: 1px solid var(--apex-line);
  background: var(--apex-ink);
  box-shadow: 0 10px 28px rgba(2, 7, 20, 0.34);
  transition:
    max-height 280ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.home-hero .hover-tab::before {
  position: absolute;
  right: 12px;
  top: 17px;
  margin: 0;
}

.home-hero .hover-tab span {
  padding-right: 18px;
  white-space: nowrap;
  font-size: 0.68rem;
}

.home-hero .hover-tab h3,
.home-hero .hover-tab .mini-bullets {
  max-width: 100%;
  transform: translateY(-4px);
}

.home-hero .hover-tab:hover,
.home-hero .hover-tab:focus-visible {
  width: 100%;
  min-height: 46px;
  max-height: 250px;
}

.home-hero .hover-tab:hover h3,
.home-hero .hover-tab:focus-visible h3,
.home-hero .hover-tab:hover .mini-bullets,
.home-hero .hover-tab:focus-visible .mini-bullets {
  transform: translateY(0);
}

.hover-tab::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--apex-amber);
  margin-bottom: 10px;
}

.hover-tab h3,
.hover-tab .mini-bullets {
  max-width: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(18px);
  transition:
    max-width 260ms ease,
    max-height 260ms ease,
    opacity 180ms ease,
    transform 260ms ease;
}

.hover-tab span {
  margin-bottom: 0;
}

.hover-tab:hover,
.hover-tab:focus-visible {
  width: min(100%, 360px);
  min-height: 220px;
  background: var(--apex-ink);
  border-color: var(--apex-amber);
}

.hover-tab:hover h3,
.hover-tab:focus-visible h3,
.hover-tab:hover .mini-bullets,
.hover-tab:focus-visible .mini-bullets {
  max-width: 310px;
  max-height: 240px;
  opacity: 1;
  transform: translateX(0);
}

.mini-bullets {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.mini-bullets li {
  position: relative;
  color: var(--apex-muted);
  font-size: 0.86rem;
  padding-left: 14px;
}

.mini-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--apex-amber);
}

.strip-wrap {
  border-bottom: 1px solid var(--apex-line-soft);
}

.category-icon-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding-top: 28px;
  padding-bottom: 28px;
}

.numbered-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 42px 0;
  border-top: 1px solid var(--apex-line-soft);
}

.numbered-row:last-child {
  border-bottom: 1px solid var(--apex-line-soft);
}

.row-number {
  grid-column: 1 / 3;
  color: var(--apex-amber);
  font-weight: 800;
}

.row-main {
  grid-column: 3 / 9;
  min-width: 0;
}

.row-main p {
  margin-top: 18px;
  max-width: 660px;
  font-size: 1.08rem;
}

.offer-rows .row-main h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  line-height: 0.98;
}

.row-aside {
  grid-column: 9 / 13;
  min-width: 0;
}

.line-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--apex-line-soft);
}

.line-list li {
  color: var(--apex-muted);
  border-bottom: 1px solid var(--apex-line-soft);
  padding: 11px 0;
}

.line-list strong {
  color: var(--apex-text);
  font-weight: 600;
}

.line-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--apex-line-soft);
  border-left: 1px solid var(--apex-line-soft);
}

.line-cell {
  min-height: 250px;
  padding: 24px;
  border-right: 1px solid var(--apex-line-soft);
  border-bottom: 1px solid var(--apex-line-soft);
}

.line-cell p {
  margin-top: 16px;
}

.price {
  color: var(--apex-amber);
  font-size: 1.08rem;
  margin-top: 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--apex-line-soft);
  border-top: 1px solid var(--apex-line-soft);
  margin-top: 26px;
}

.service-grid span {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--apex-line-soft);
  border-bottom: 1px solid var(--apex-line-soft);
  padding: 14px;
  color: var(--apex-muted);
}

.deliverable-list {
  display: grid;
  border-top: 1px solid var(--apex-line-soft);
}

.deliverable-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--apex-line-soft);
  padding: 24px 0;
}

.deliverable-list article > span {
  color: var(--apex-amber);
  font-size: 1.4rem;
  line-height: 1;
}

.deliverable-list h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.deliverable-list p {
  margin-top: 8px;
  max-width: 820px;
}

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

.fit-panel {
  border: 1px solid var(--apex-line-soft);
  padding: 28px;
  background: rgba(7, 18, 44, 0.34);
}

.fit-panel-emphasis {
  border-left-color: var(--apex-amber);
  border-left-width: 3px;
  background: rgba(7, 18, 44, 0.74);
}

.dash-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.dash-list li {
  position: relative;
  color: var(--apex-muted);
  border-top: 1px solid var(--apex-line-soft);
  padding: 13px 0 13px 28px;
}

.dash-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--apex-amber);
}

.founder-section {
  display: grid;
  grid-template-columns: 160px minmax(0, 760px);
  gap: 36px;
  align-items: center;
}

.founder-photo {
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--apex-line-soft);
  background: rgba(244, 239, 230, 0.1);
  color: var(--apex-dim);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-photo img,
.founder-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.founder-photo img {
  object-position: 50% 54%;
}

.founder-image-card {
  min-height: 390px;
  overflow: hidden;
  padding: 0;
}

.founder-image-card img {
  object-position: 50% 58%;
}

.founder-copy h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.founder-copy p {
  max-width: 740px;
  margin-top: 18px;
}

.founder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.step-meta {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  color: var(--apex-muted);
  font-size: 0.88rem;
}

.step-meta span {
  display: block;
}

.step-meta strong {
  color: var(--apex-text);
  font-weight: 800;
}

.row-aside .proof-mockup {
  min-height: 260px;
  margin-bottom: 0;
}

.amber-section {
  background: var(--apex-amber);
  color: var(--apex-ink);
  margin: 0;
}

.amber-section .section {
  color: var(--apex-ink);
}

.amber-section h2,
.amber-section h3,
.amber-section p,
.amber-section .eyebrow,
.amber-section .number,
.amber-section .row-number,
.amber-section .line-list li,
.amber-section .lead {
  color: var(--apex-ink);
}

.amber-section .numbered-row,
.amber-section .line-list,
.amber-section .line-list li,
.amber-section .line-grid,
.amber-section .line-cell,
.amber-section .underline-field {
  border-color: rgba(2, 7, 20, 0.34);
}

.amber-section .system-visual {
  border-color: rgba(2, 7, 20, 0.34);
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(2, 7, 20, 0.16) 49.6%, rgba(2, 7, 20, 0.16) 50.4%, transparent 50.4%),
    linear-gradient(rgba(2, 7, 20, 0.12) 1px, transparent 1px);
  background-size: 100% 100%, 100% 46px;
}

.amber-section .visual-node {
  background: rgba(244, 239, 230, 0.36);
  border-color: rgba(2, 7, 20, 0.34);
}

.amber-section .visual-node span,
.amber-section .asset-label {
  color: var(--apex-ink);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.timeline-item {
  grid-column: 3 / 9;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(2, 7, 20, 0.3);
}

.timeline-item:last-child {
  border-bottom: 1px solid rgba(2, 7, 20, 0.3);
}

.timeline-item p {
  color: rgba(2, 7, 20, 0.72);
  margin-top: 10px;
}

.proof-library {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--apex-line-soft);
  border: 1px solid var(--apex-line-soft);
}

.sample-card {
  min-height: 520px;
  background: var(--apex-navy);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.sample-card h3 {
  margin-top: 12px;
}

.sample-card p {
  max-width: 620px;
}

.sample-card:hover .proof-mockup {
  border-color: var(--apex-amber);
  box-shadow: 0 0 28px rgba(255, 200, 120, 0.1);
  transform: translateY(-2px);
}

.sample-card-featured .proof-mockup {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 200, 120, 0.13), transparent 30%),
    linear-gradient(rgba(255, 200, 120, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 200, 120, 0.04) 1px, transparent 1px),
    rgba(2, 7, 20, 0.64);
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.proof-mockup {
  min-height: 310px;
  border: 1px solid var(--apex-line-soft);
  background:
    linear-gradient(rgba(255, 200, 120, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 200, 120, 0.04) 1px, transparent 1px),
    rgba(2, 7, 20, 0.58);
  background-size: 22px 22px, 22px 22px, auto;
  margin-bottom: 20px;
  padding: 18px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.referral-map-mockup {
  display: grid;
  align-content: center;
  gap: 12px;
}

.referral-map-mockup svg {
  width: 100%;
  min-height: 270px;
}

.map-grid path {
  fill: none;
  stroke: rgba(244, 239, 230, 0.08);
  stroke-width: 1;
}

.map-lines path {
  fill: none;
  stroke: rgba(255, 200, 120, 0.58);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.map-lines .secondary-link {
  stroke: rgba(244, 239, 230, 0.2);
  stroke-dasharray: 4 7;
}

.map-node rect {
  fill: rgba(4, 11, 34, 0.96);
  stroke: rgba(255, 200, 120, 0.76);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.map-node text {
  fill: var(--apex-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-anchor: middle;
  text-transform: uppercase;
}

.studio-node rect {
  fill: rgba(255, 200, 120, 0.14);
  stroke: var(--apex-amber);
  stroke-width: 1.4;
}

.studio-node text {
  fill: var(--apex-amber);
  font-size: 18px;
}

.map-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.map-statuses span,
.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--apex-amber);
  color: var(--apex-amber);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  min-height: 24px;
  padding: 6px 8px;
  text-transform: uppercase;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  border-bottom: 1px solid var(--apex-line-soft);
  padding-bottom: 14px;
}

.dashboard-head strong,
.capability-title strong,
.proof-gap-panel strong {
  color: var(--apex-text);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-head span,
.capability-title span,
.email-previews span {
  color: var(--apex-amber);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lead-table {
  min-width: 690px;
}

.lead-dashboard-mockup {
  overflow-x: auto;
}

.lead-dashboard-mockup::-webkit-scrollbar {
  height: 6px;
}

.lead-dashboard-mockup::-webkit-scrollbar-thumb {
  background: rgba(255, 200, 120, 0.34);
}

.table-row {
  display: grid;
  grid-template-columns: 0.95fr 1.12fr 0.86fr 0.86fr 0.9fr 1fr 0.72fr;
  border-bottom: 1px solid var(--apex-line-soft);
}

.table-row span {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--apex-line-soft);
  color: var(--apex-muted);
  font-size: 0.7rem;
  line-height: 1.25;
  padding: 8px;
}

.table-row span:last-child {
  border-right: 0;
}

.table-head span {
  color: var(--apex-text);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chip {
  min-height: 20px;
  padding: 5px 7px;
}

.chip.good {
  background: rgba(255, 200, 120, 0.12);
}

.chip.review {
  border-color: rgba(244, 239, 230, 0.36);
  color: var(--apex-text);
}

.chip.poor {
  border-color: rgba(244, 239, 230, 0.2);
  color: var(--apex-dim);
}

.chip.booked {
  background: var(--apex-amber);
  color: var(--apex-ink);
}

.chip.due {
  border-style: dashed;
}

.capability-pack-mockup {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 14px;
}

.capability-doc,
.proof-gap-panel {
  border: 1px solid var(--apex-line-soft);
  background: rgba(7, 18, 44, 0.52);
  padding: 14px;
}

.capability-title {
  border-bottom: 1px solid var(--apex-line);
  padding-bottom: 13px;
}

.capability-title strong,
.capability-title span {
  display: block;
}

.capability-title strong {
  margin-top: 6px;
}

.capability-sections,
.proof-gap-panel {
  display: grid;
  gap: 8px;
}

.capability-sections {
  margin-top: 14px;
}

.capability-sections span,
.proof-gap-panel span {
  min-height: 31px;
  display: block;
  border-bottom: 1px solid var(--apex-line-soft);
  color: var(--apex-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 7px 0;
}

.proof-gap-panel {
  align-content: start;
}

.proof-gap-panel strong {
  color: var(--apex-amber);
  margin-bottom: 6px;
}

.reactivation-mockup {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  align-items: center;
}

.sequence-line {
  position: absolute;
  left: 36px;
  top: 50px;
  bottom: 50px;
  width: 1px;
  background: linear-gradient(var(--apex-amber), rgba(255, 200, 120, 0.12));
}

.sequence-steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.sequence-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
}

.sequence-steps span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--apex-amber);
  background: var(--apex-navy);
  color: var(--apex-amber);
  font-size: 0.64rem;
  font-weight: 900;
}

.sequence-steps strong {
  color: var(--apex-text);
  font-size: 0.83rem;
  line-height: 1.2;
}

.email-previews {
  display: grid;
  gap: 10px;
}

.email-previews article {
  border: 1px solid var(--apex-line-soft);
  background: rgba(7, 18, 44, 0.68);
  padding: 12px;
}

.email-previews p {
  color: var(--apex-text);
  font-size: 0.82rem;
  line-height: 1.3;
  margin-top: 8px;
}

.proof-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  border: 1px solid var(--apex-line-soft);
  padding: 18px;
}

.split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
}

.split > :first-child {
  grid-column: 1 / 6;
}

.split > :last-child {
  grid-column: 7 / 13;
}

.panel {
  border: 1px solid var(--apex-line-soft);
  padding: 28px;
  background: rgba(7, 18, 44, 0.72);
}

.pullquote {
  border-left: 1px solid var(--apex-amber);
  padding: 28px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.96;
  color: var(--apex-text);
}

.pricing-block {
  border-top: 1px solid var(--apex-line);
  border-bottom: 1px solid var(--apex-line);
  padding: 26px 0;
}

.pricing-block strong {
  display: block;
  color: var(--apex-amber);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 22px;
  row-gap: 18px;
}

.form-section {
  display: contents;
}

.form-section[hidden] {
  display: none;
}

.form-note {
  grid-column: 1 / -1;
  color: inherit;
  font-size: 0.95rem;
}

.success-message {
  display: none;
  grid-column: 1 / -1;
  border: 1px solid rgba(2, 7, 20, 0.34);
  padding: 16px;
  color: var(--apex-ink);
  font-weight: 700;
}

.success-message.visible {
  display: block;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 16px 0;
  color: inherit;
}

.contact-details a {
  width: fit-content;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.underline-field {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(2, 7, 20, 0.34);
  padding-bottom: 6px;
  color: var(--apex-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  min-height: 42px;
  padding: 8px 0;
  font: inherit;
  border-radius: 0;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

select option {
  color: var(--apex-ink);
}

.footer {
  border-top: 1px solid var(--apex-line-soft);
}

.footer-inner {
  padding: 42px 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  color: var(--apex-dim);
  font-size: 0.86rem;
}

.footer-inner > span {
  grid-column: 1 / 7;
}

.footer-links {
  grid-column: 8 / 13;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

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

  .proof-mockup {
    transition: none;
  }

  .sample-card:hover .proof-mockup {
    transform: none;
  }
}

@media (max-width: 980px) {
  body::before {
    background-size: 25vw 80px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 100px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--apex-line);
    background: var(--apex-ink);
  }

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

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 10px;
  }

  .nav-links .nav-cta {
    padding: 13px 10px;
  }

  .hero,
  .section-header,
  .numbered-row,
  .split,
  .timeline,
  .footer-inner {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 44px;
  }

  .hero-house-sketch {
    right: -240px;
    bottom: -72px;
    min-width: 640px;
    width: 92vw;
    opacity: 0.45;
  }

  .drafting-grid {
    opacity: 0.45;
  }

  .hero-aside {
    margin-top: 36px;
  }

  .home-hero .hero-aside {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 520px);
    margin-top: 34px;
  }

  .home-hero .system-visual {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5.5rem);
  }

  .home-hero .hero-logo-heading {
    font-size: clamp(2.65rem, 10vw, 4.7rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 4.25rem);
  }

  .section {
    padding: 66px 0;
  }

  .section-header p,
  .row-main p,
  .split > :last-child {
    margin-top: 20px;
  }

  .row-number,
  .row-aside {
    margin-top: 22px;
  }

  .line-grid,
  .proof-library,
  .service-grid,
  .form-grid,
  .proof-strip,
  .fit-check-grid {
    grid-template-columns: 1fr;
  }

  .announcement-inner {
    display: block;
    width: min(280px, calc(100% - 32px));
    margin-left: 16px;
    margin-right: auto;
    min-height: 48px;
    padding: 8px 0;
    text-align: left;
    font-size: 0.82rem;
  }

  .announcement-inner span {
    display: block;
  }

  .announcement-inner a {
    display: inline-block;
    margin-top: 4px;
  }

  .founder-section {
    display: block;
  }

  .founder-copy {
    margin-top: 24px;
  }

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

  .proof-mockup {
    min-height: 210px;
  }

  .capability-pack-mockup,
  .reactivation-mockup {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-column: auto;
    grid-template-columns: 86px 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .nav {
    min-height: 64px;
    padding: 0 16px;
    gap: 12px;
  }

  .brand {
    flex-basis: auto;
    min-width: 0;
    font-size: 1.85rem;
  }

  .hero {
    padding-top: 52px;
  }

  .home-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content,
  .hero-copy,
  .hero-copy-wide,
  .section-header h2,
  .section-header p,
  .row-main,
  .row-aside,
  .split > :first-child,
  .split > :last-child {
    width: min(100%, 310px);
    max-width: 310px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9vw, 2.6rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.6vw, 2.6rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .home-hero .hero-logo-heading {
    font-size: clamp(1.72rem, 7.8vw, 2.1rem);
    line-height: 1.08;
    letter-spacing: 0;
    max-width: 100%;
  }

  .lead {
    font-size: 1.08rem;
  }

  .lead,
  .row-main p,
  .visual-node p,
  .line-cell p,
  .panel p {
    max-width: 310px;
    overflow-wrap: break-word;
  }

  .visual-node,
  .line-cell,
  .panel {
    max-width: 310px;
    overflow: hidden;
  }

  .headline-nowrap {
    white-space: normal;
  }

  .hero-house-sketch {
    right: -310px;
    bottom: -44px;
    min-width: 610px;
    opacity: 0.34;
  }

  .sketch-detail {
    display: none;
  }

  .system-visual {
    min-height: 360px;
  }

  .timeline-item {
    display: block;
  }

  .timeline-item > :last-child {
    margin-top: 12px;
  }

  .icon-strip {
    justify-content: flex-start;
    padding-inline: 16px;
    margin-inline: -16px;
  }

  .icon-item:hover,
  .icon-item:focus-visible {
    flex-basis: 220px;
    width: 220px;
  }

  .proof-mockup {
    padding: 14px;
  }

  .referral-map-mockup svg {
    min-height: 250px;
    width: 150%;
    margin-left: -25%;
  }

  .lead-table {
    min-width: 660px;
  }

  .sequence-line {
    left: 18px;
    top: 36px;
    bottom: auto;
    height: 154px;
  }

  .sequence-steps {
    gap: 10px;
  }
}
