:root {
  --ink: #151918;
  --muted: #68716d;
  --paper: #f7f2ea;
  --porcelain: #fffdf8;
  --deep: #07110f;
  --deep-2: #101d1a;
  --leaf: #00bf63;
  --leaf-deep: #23543b;
  --copper: #bd8d5a;
  --blue: #8eb4c5;
  --wine: #6f3345;
  --line: rgba(21, 25, 24, 0.14);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(12, 22, 19, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(4, 10, 9, 0.76), rgba(4, 10, 9, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
}

.brand-surface {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(168px, 15vw, 218px);
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.brand-logo {
  width: 100%;
  height: auto;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.header-cta {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

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

.btn.primary {
  color: var(--white);
  background: var(--leaf-deep);
  box-shadow: 0 18px 36px rgba(35, 84, 59, 0.26);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

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

.cinematic {
  position: relative;
  min-height: 430vh;
  color: var(--white);
  background: var(--deep);
}

.hero {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 0;
  display: grid;
  align-items: end;
  padding: clamp(96px, 11.5vh, 124px) clamp(20px, 5vw, 78px) clamp(96px, 11.5vh, 118px);
  overflow: hidden;
  background: var(--deep);
}

.hero-image,
#cityCanvas,
.hero-shade,
.light-sweep {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.08) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  filter: saturate(0.9) contrast(1.05);
}

#cityCanvas {
  z-index: 1;
  display: block;
}

.hero-shade {
  z-index: 2;
  background:
    radial-gradient(circle at 68% 42%, rgba(0, 191, 99, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(5, 14, 12, 0.88), rgba(5, 14, 12, 0.46) 52%, rgba(5, 14, 12, 0.22)),
    linear-gradient(180deg, rgba(5, 14, 12, 0.18), rgba(5, 14, 12, 0.82));
  pointer-events: none;
}

.light-sweep {
  z-index: 3;
  background: linear-gradient(110deg, transparent 8%, rgba(255, 255, 255, 0.16) 42%, transparent 62%);
  mix-blend-mode: soft-light;
  animation: sweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sweep {
  0%,
  100% {
    transform: translateX(-42%);
    opacity: 0.18;
  }

  50% {
    transform: translateX(36%);
    opacity: 0.42;
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 760px;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 960px;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.32vw, 19px);
  line-height: 1.48;
}

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

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 78px);
  bottom: 32px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(760px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 20, 17, 0.58);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-panel div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel span {
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
}

.hero-panel strong {
  font-size: 15px;
  line-height: 1.35;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 5vw, 78px);
  bottom: 150px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-cue::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  margin-right: 12px;
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.55);
  animation: cuePulse 1.6s ease-in-out infinite;
}

@keyframes cuePulse {
  0%,
  100% {
    transform: translateY(-4px);
    opacity: 0.35;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.story-visuals {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.journey-ledger {
  position: absolute;
  left: 50%;
  bottom: 46px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(860px, calc(100% - 40px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 17, 15, 0.66);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  opacity: 0;
  --journey-progress: 0;
  transform: translateX(-50%);
}

.journey-ledger::before,
.journey-ledger::after {
  content: "";
  position: absolute;
  left: 64px;
  right: 64px;
  top: 31px;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
}

.journey-ledger::after {
  right: auto;
  width: calc(100% - 128px);
  background: linear-gradient(90deg, var(--leaf), var(--copper));
  transform: scaleX(var(--journey-progress));
  transform-origin: left;
}

.journey-ledger span {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  justify-items: center;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.journey-ledger span::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: var(--deep);
  box-shadow: 0 0 0 8px rgba(7, 17, 15, 0.72);
}

.journey-ledger span.is-active {
  color: var(--white);
}

.journey-ledger span.is-active::before {
  border-color: var(--leaf);
  background: var(--leaf);
  box-shadow: 0 0 0 8px rgba(0, 191, 99, 0.12), 0 0 26px rgba(0, 191, 99, 0.42);
}

.journey-ledger span.is-current::before {
  animation: nodePulse 1.5s ease-in-out infinite;
}

.visual-stage {
  position: absolute;
  opacity: 0;
  --stage-y: 28px;
  --stage-scale: 0.96;
  transform: translateY(var(--stage-y)) scale(var(--stage-scale));
  transform-origin: center;
}

.story-system {
  z-index: 4;
  width: min(430px, 34vw);
}

.brief-system,
.operate-system {
  left: clamp(28px, 6vw, 110px);
  top: 22%;
}

.verify-system {
  right: clamp(28px, 6vw, 110px);
  top: 24%;
  width: min(500px, 38vw);
}

.system-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(7, 17, 15, 0.74), rgba(7, 17, 15, 0.42));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.system-card::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(100deg, transparent 20%, rgba(0, 191, 99, 0.18) 46%, transparent 68%);
  transform: translateX(-52%);
  animation: systemScan 4.8s ease-in-out infinite;
}

.system-card p,
.system-card strong,
.brief-grid,
.system-output,
.deal-track,
.ops-orbit {
  position: relative;
  z-index: 1;
}

.system-card p {
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.system-card strong {
  display: block;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.1;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.brief-grid span,
.deal-track span,
.ops-orbit span,
.ops-orbit b,
.system-output {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.brief-grid span {
  min-height: 42px;
  display: grid;
  place-items: center;
}

.system-output {
  display: grid;
  place-items: center;
  min-height: 46px;
  margin-top: 18px;
  color: var(--leaf);
  background: rgba(0, 191, 99, 0.1);
  box-shadow: inset 0 0 0 1px rgba(0, 191, 99, 0.16);
}

.deal-track {
  position: relative;
  display: grid;
  gap: 12px;
}

.deal-track::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(var(--leaf), var(--copper));
}

.deal-track span {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  padding: 9px 12px 9px 52px;
  text-align: left;
}

.deal-track span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 7px rgba(0, 191, 99, 0.12);
  transform: translateY(-50%);
}

.deal-track em {
  color: var(--blue);
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.ops-orbit {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(0, 191, 99, 0.2);
  border-radius: 50%;
  animation: orbitBreath 4.4s ease-in-out infinite;
}

.ops-orbit b,
.ops-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 8px 12px;
}

.ops-orbit b {
  left: 50%;
  top: 50%;
  color: var(--leaf);
  transform: translate(-50%, -50%);
}

.ops-orbit span:nth-of-type(1) {
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
}

.ops-orbit span:nth-of-type(2) {
  right: -10px;
  top: 34%;
}

.ops-orbit span:nth-of-type(3) {
  right: 24px;
  bottom: 0;
}

.ops-orbit span:nth-of-type(4) {
  left: 22px;
  bottom: 0;
}

.ops-orbit span:nth-of-type(5) {
  left: -8px;
  top: 34%;
}

@keyframes systemScan {
  0%,
  100% {
    transform: translateX(-58%);
    opacity: 0;
  }

  45%,
  55% {
    opacity: 1;
  }

  100% {
    transform: translateX(58%);
  }
}

@keyframes orbitBreath {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(0, 191, 99, 0.08), 0 0 0 rgba(0, 191, 99, 0);
  }

  50% {
    box-shadow: inset 0 0 0 1px rgba(0, 191, 99, 0.24), 0 0 34px rgba(0, 191, 99, 0.14);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.22);
  }
}

.story-frames {
  position: sticky;
  top: 0;
  z-index: 6;
  height: 100vh;
  margin-top: -100vh;
  pointer-events: none;
}

.story-frame {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 120px clamp(20px, 5vw, 78px);
  opacity: 0;
  transform: translateY(34px);
}

.story-frame.align-right {
  justify-items: end;
  text-align: right;
}

.story-frame.align-left {
  justify-items: start;
  text-align: left;
}

.story-frame p,
.story-frame h2,
.story-frame span {
  width: min(660px, 100%);
}

.story-frame p {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-frame h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: 0.96;
}

.story-frame span {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.62;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--porcelain);
  border-bottom: 1px solid var(--line);
}

.signal-strip div {
  min-height: 142px;
  padding: 28px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.signal-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 78px);
}

#advisory,
#management,
#hospitality,
#contact {
  scroll-margin-top: 92px;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 7vw, 108px);
  align-items: center;
  background: var(--paper);
}

.editorial-copy h2,
.section-heading h2,
.ops-copy h2,
.process h2,
.cta-section h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.7vw, 68px);
  line-height: 1.01;
}

.editorial-copy p,
.section-heading p,
.ops-copy p,
.cta-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.image-frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-frame.tall {
  aspect-ratio: 0.78;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.suite-section {
  padding-top: clamp(64px, 7vw, 96px);
  background: #eef3ee;
}

.suite-section .section-heading {
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 980px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.suite-section .section-heading h2 {
  max-width: 920px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 48px;
  margin-bottom: 44px;
}

.compact-heading {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.client-lens {
  background: var(--paper);
}

.lens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.lens-grid article {
  min-height: 310px;
  padding: 28px;
  background: var(--porcelain);
}

.lens-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--leaf-deep);
  font-weight: 900;
}

.lens-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.12;
}

.lens-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.suite-card {
  position: relative;
  min-height: clamp(430px, 38vw, 520px);
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 18px 48px rgba(21, 25, 24, 0.12);
}

.suite-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 800ms ease;
}

.suite-card:hover img {
  transform: scale(1.1);
}

.suite-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 9, 0.08), rgba(4, 10, 9, 0.86));
}

.suite-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px;
}

.suite-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--leaf);
  font-weight: 900;
}

.suite-card h3 {
  margin-bottom: 14px;
  font-size: 29px;
  line-height: 1.08;
}

.suite-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-link::after {
  content: "→";
  margin-left: 8px;
}

.operating-system {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 98px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(7, 17, 15, 0.96), rgba(12, 27, 24, 0.88)),
    var(--deep-2);
}

.ops-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.ops-panel {
  width: min(100%, 560px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
  transform: rotateY(-11deg) rotateX(7deg);
}

.ops-panel > span,
.ops-panel > strong {
  display: block;
}

.ops-panel > span {
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-panel > strong {
  margin-bottom: 26px;
  font-size: 30px;
}

.ops-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.ops-row i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 6px rgba(0, 191, 99, 0.14);
}

.ops-row b {
  font-size: 15px;
}

.ops-row em {
  color: var(--blue);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.ops-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.difference-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.9fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  background: var(--porcelain);
}

.difference-preview h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.7vw, 68px);
  line-height: 1.01;
}

.difference-preview p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.comparison-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.comparison-panel div {
  min-height: 420px;
  padding: 30px;
  background: var(--paper);
}

.comparison-panel div:last-child {
  color: var(--white);
  background: linear-gradient(145deg, var(--deep), var(--leaf-deep));
}

.comparison-panel span {
  display: block;
  margin-bottom: 32px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-panel li {
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}

.comparison-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.image-marquee {
  overflow: hidden;
  padding: 18px 0;
  background: var(--porcelain);
}

.marquee-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 78px);
}

.marquee-track img {
  width: 100%;
  height: clamp(220px, 28vw, 430px);
  object-fit: cover;
  border-radius: 8px;
}

.thoughtful-gallery figure {
  margin: 0;
}

.thoughtful-gallery figcaption {
  max-width: 92%;
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.process {
  background: var(--paper);
}

.process h2 {
  max-width: 900px;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.process-step {
  min-height: 280px;
  padding: 32px;
  background: var(--porcelain);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  margin-bottom: 46px;
  border-radius: 8px;
  color: var(--white);
  background: var(--leaf-deep);
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.process-step p {
  color: var(--muted);
  line-height: 1.62;
}

.deliverables {
  background: #eef3ee;
}

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

.deliverable-grid article {
  min-height: 290px;
  padding: 26px;
  border: 1px solid rgba(21, 25, 24, 0.1);
  border-radius: 8px;
  background: var(--porcelain);
}

.deliverable-grid span {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--leaf) 0 32%, transparent 34%),
    rgba(0, 191, 99, 0.14);
}

.deliverable-grid h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.deliverable-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
  padding: clamp(82px, 10vw, 132px) clamp(20px, 5vw, 78px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 17, 15, 0.96), rgba(35, 84, 59, 0.82)),
    var(--deep);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.form-botcheck {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(8, 17, 15, 0.36);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--leaf);
}

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

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.form-note[data-state="success"] {
  color: var(--leaf);
}

.form-note[data-state="error"] {
  color: #ffb7a7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 78px);
  color: var(--muted);
  background: var(--porcelain);
  font-size: 14px;
}

.page-main {
  background: var(--paper);
}

.page-hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 78px) 84px;
  color: var(--white);
  overflow: hidden;
  background: var(--deep);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 12, 0.88), rgba(5, 14, 12, 0.42) 54%, rgba(5, 14, 12, 0.22)),
    linear-gradient(180deg, rgba(5, 14, 12, 0.08), rgba(5, 14, 12, 0.86));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.page-hero h1 {
  font-size: clamp(48px, 6.5vw, 94px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.62;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.page-nav a {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  background: var(--porcelain);
}

.split-section h2,
.method-section h2,
.matrix-section h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.02;
}

.split-section p,
.method-section p,
.matrix-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

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

.insight-list li {
  padding: 18px;
  border-left: 4px solid var(--leaf);
  border-radius: 0 8px 8px 0;
  background: var(--paper);
  color: var(--muted);
  line-height: 1.55;
}

.method-section {
  background: #eef3ee;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.method-grid article {
  min-height: 300px;
  padding: 28px;
  background: var(--porcelain);
}

.method-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--leaf-deep);
  font-weight: 900;
}

.method-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.method-grid p {
  margin: 0;
  font-size: 16px;
}

.matrix-section {
  background: var(--paper);
}

.matrix-table {
  display: grid;
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.matrix-row {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 1.3fr;
  gap: 1px;
  background: var(--line);
}

.matrix-row > * {
  padding: 22px;
  background: var(--porcelain);
}

.matrix-row.header > * {
  color: var(--white);
  background: var(--deep);
  font-weight: 900;
}

.matrix-row strong {
  font-size: 17px;
}

.matrix-row span {
  color: var(--muted);
  line-height: 1.55;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 78px);
  color: var(--white);
  background: linear-gradient(120deg, var(--deep), var(--leaf-deep));
}

.page-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.page-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 0;
    height: 100svh;
    padding-bottom: 132px;
  }

  .hero-panel {
    left: 20px;
    right: 20px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .story-frame.align-right,
  .story-frame.align-left {
    justify-items: start;
    text-align: left;
  }

  .signal-strip,
  .suite-grid,
  .process-rail,
  .lens-grid,
  .deliverable-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial,
  .section-heading,
  .operating-system,
  .cta-section,
  .difference-preview,
  .split-section,
  .page-cta {
    grid-template-columns: 1fr;
  }

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

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

  .brand {
    min-width: 0;
  }

  .brand-surface {
    width: 146px;
    height: auto;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .cinematic {
    min-height: 420vh;
  }

  .hero {
    height: 100svh;
    align-items: center;
    padding: 86px 18px 44px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: clamp(32px, 10vw, 40px);
    line-height: 0.97;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.42;
    margin-bottom: 16px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 44px;
  }

  .hero-panel,
  .scroll-cue,
  .light-sweep {
    display: none;
  }

  .story-visuals {
    opacity: 0.78;
  }

  .story-system {
    left: 18px;
    right: 18px;
    top: 118px;
    width: auto;
    transform: translateY(var(--stage-y)) scale(calc(var(--stage-scale) * 0.7));
    transform-origin: top left;
  }

  .verify-system {
    right: 18px;
  }

  .system-card {
    min-height: 170px;
    padding: 12px;
  }

  .system-card p {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .system-card strong {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .brief-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .brief-grid span,
  .deal-track span,
  .ops-orbit span,
  .ops-orbit b,
  .system-output {
    font-size: 9px;
  }

  .brief-grid span {
    min-height: 30px;
    padding: 6px;
  }

  .system-output {
    min-height: 34px;
    margin-top: 10px;
  }

  .deal-track {
    gap: 6px;
  }

  .deal-track span {
    min-height: 34px;
    padding: 7px 8px 7px 42px;
  }

  .deal-track::before {
    left: 15px;
    top: 18px;
    bottom: 18px;
  }

  .deal-track span::before {
    left: 9px;
    width: 12px;
    height: 12px;
  }

  .deal-track em {
    font-size: 8px;
  }

  .ops-orbit {
    min-height: 128px;
  }

  .ops-orbit b,
  .ops-orbit span {
    min-height: 28px;
    padding: 5px 8px;
  }

  .journey-ledger {
    bottom: 18px;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    width: calc(100% - 28px);
    padding: 10px 8px;
  }

  .journey-ledger::before,
  .journey-ledger::after {
    left: 34px;
    right: 34px;
    top: 24px;
  }

  .journey-ledger::after {
    right: auto;
    width: calc(100% - 68px);
  }

  .journey-ledger span {
    font-size: 9px;
  }

  .journey-ledger span::before {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 6px rgba(7, 17, 15, 0.72);
  }

  .story-frame {
    padding: 300px 18px 96px;
    align-content: start;
  }

  .story-frame h2 {
    font-size: 32px;
    line-height: 1.06;
  }

  .story-frame span {
    font-size: 16px;
  }

  .signal-strip,
  .suite-grid,
  .process-rail,
  .lens-grid,
  .deliverable-grid,
  .comparison-panel,
  .method-grid,
  .matrix-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 72vh;
    padding: 118px 18px 64px;
  }

  .page-nav {
    display: none;
  }

  .signal-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 72px 18px;
  }

  .editorial-copy h2,
  .section-heading h2,
  .ops-copy h2,
  .process h2,
  .cta-section h2 {
    font-size: 34px;
  }

  .image-frame.tall {
    aspect-ratio: 1;
  }

  .suite-card {
    min-height: 430px;
  }

  .suite-card div {
    padding: 24px;
  }

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

  .ops-panel {
    transform: none;
  }

  .marquee-track {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .process-step {
    min-height: 240px;
  }

  .lens-grid article,
  .deliverable-grid article,
  .comparison-panel div,
  .method-grid article {
    min-height: auto;
  }

  .lens-grid span,
  .deliverable-grid span {
    margin-bottom: 32px;
  }

  .cta-section {
    padding: 72px 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (min-width: 681px) and (max-height: 780px) {
  .hero {
    padding-top: 84px;
    padding-bottom: 88px;
  }

  h1 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 0.95;
  }

  .hero-copy {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: clamp(15px, 1.2vw, 17px);
  }

  .hero-panel div {
    padding: 14px 18px;
  }

  .scroll-cue {
    bottom: 126px;
  }
}

@media (max-width: 680px) and (max-height: 620px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand-surface {
    width: 132px;
  }

  .hero {
    padding: 68px 18px 28px;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(29px, 9.2vw, 36px);
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .hero-copy {
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.38;
  }

  .hero-actions .btn {
    min-height: 42px;
  }
}
