:root {
  --paper: #f4f2ec;
  --paper-high: #fbfaf7;
  --ink: #101521;
  --blue: #3155f5;
  --soft-blue: #9eb7ff;
  --gold: #b59a64;
  --line: rgba(16, 21, 33, 0.13);
  --muted: rgba(16, 21, 33, 0.64);
  --cream-mesh:
    radial-gradient(
      circle at 13% 18%,
      rgba(255, 92, 141, 0.065),
      transparent 26%
    ),
    radial-gradient(
      circle at 82% 31%,
      rgba(61, 202, 176, 0.07),
      transparent 28%
    ),
    radial-gradient(
      circle at 54% 67%,
      rgba(88, 106, 255, 0.07),
      transparent 31%
    ),
    repeating-linear-gradient(
      35deg,
      transparent 0 43px,
      rgba(241, 88, 128, 0.095) 44px,
      rgba(246, 180, 63, 0.08) 45px,
      transparent 46px 89px,
      rgba(57, 188, 164, 0.09) 90px,
      rgba(63, 116, 246, 0.095) 91px,
      transparent 92px 135px,
      rgba(139, 91, 246, 0.08) 136px 137px
    ),
    repeating-linear-gradient(
      145deg,
      transparent 0 43px,
      rgba(72, 116, 246, 0.09) 44px,
      rgba(120, 91, 242, 0.075) 45px,
      transparent 46px 89px,
      rgba(241, 88, 128, 0.08) 90px,
      rgba(244, 172, 61, 0.07) 91px,
      transparent 92px 135px,
      rgba(57, 188, 164, 0.08) 136px 137px
    );
}

* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Geist, system-ui, sans-serif;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.site-shell {
  width: 100%;
  max-width: 100%;
}

.topbar {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  padding: 0 clamp(24px, 4vw, 64px);
  border-bottom: 1px solid rgba(16, 21, 33, 0.09);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 10px 10px 14px 10px;
}
.brand small {
  color: var(--muted);
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13px;
}
.nav-links a {
  text-decoration: none;
  color: rgba(16, 21, 33, 0.78);
  font-weight: 500;
}
.nav-action {
  justify-self: end;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 1000px;
  padding: 168px clamp(24px, 5vw, 76px) 80px;
  background-color: var(--paper);
  background-image: var(--cream-mesh);
}
.hero-mesh {
  position: absolute;
  inset: 0 0 auto;
  height: 700px;
  pointer-events: none;
  opacity: 0.76;
  background-image: var(--cream-mesh);
  mask-image: linear-gradient(
    to bottom,
    #000 0,
    rgba(0, 0, 0, 0.8) 34%,
    transparent 95%
  );
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 26%,
      rgba(255, 255, 255, 0.92),
      transparent 28%
    ),
    radial-gradient(
      circle at 50% 63%,
      rgba(158, 183, 255, 0.18),
      transparent 28%
    );
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.blueprint-live-landing .hero-copy h1 {
  max-width: 1080px;
  margin: 0 auto 28px;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}
h1 .blue {
  color: var(--blue);
}
.hero-lede {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
}
.actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 210px));
  justify-content: center;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.actions .button {
  width: 100%;
  min-height: 58px;
  padding: 0 30px;
  font-size: 15px;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  color: var(--paper);
  background: var(--ink);
}
.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
}

.model-theater {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 1240px;
  margin: 76px auto 0;
  padding: 1px;
  background: rgba(49, 85, 245, 0.18);
  box-shadow: 0 38px 90px rgba(16, 21, 33, 0.13);
}
.model-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: rgba(251, 250, 247, 0.82);
  isolation: isolate;
}
.model-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(49, 85, 245, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 85, 245, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to top, #000, transparent 88%);
}
.model-card img,
.model-card canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.6s ease,
    transform 0.8s ease;
}
.model-card img.contain {
  object-fit: contain;
  background: #091322;
}
.model-card canvas {
  opacity: 0;
}
.model-card.is-ready canvas {
  opacity: 1;
}
.model-card.is-ready img {
  opacity: 0;
  transform: scale(1.04);
}
.model-card:hover canvas {
  transform: scale(1.015);
}
.model-label {
  position: absolute;
  z-index: 4;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  pointer-events: none;
}
.model-label strong,
.model-label span {
  display: block;
}
.model-label strong {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.model-label span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}
.model-state {
  color: var(--blue) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.model-tools {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}
.model-tool {
  border: 1px solid var(--line);
  min-height: 36px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(244, 242, 236, 0.78);
  backdrop-filter: blur(12px);
  border-radius: 4px;
  font:
    500 11px/1 Geist,
    sans-serif;
  cursor: pointer;
}
.model-instruction {
  max-width: 1240px;
  margin: 15px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: var(--paper-high);
  background-image: var(--cream-mesh);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 50px;
  padding: 21px 0;
  color: rgba(16, 21, 33, 0.44);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.chapter {
  padding: clamp(110px, 14vw, 190px) clamp(24px, 5vw, 76px);
  background-color: var(--paper);
  background-image: var(--cream-mesh);
}
.chapter-heading {
  max-width: 1080px;
  margin: 0 auto 62px;
  font-size: clamp(2.7rem, 5.5vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}
.chapter-heading em {
  color: var(--blue);
  font-style: normal;
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1px;
  background: var(--line);
}
.bento-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  overflow: hidden;
  background-color: var(--paper-high);
  background-image: var(--cream-mesh);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bento-card:hover {
  transform: translateY(-4px);
}
.bento-card.wide {
  grid-column: span 7;
}
.bento-card.side {
  grid-column: span 5;
  color: var(--paper);
  background: var(--blue);
}
.bento-card.third {
  grid-column: span 4;
}
.bento-card.half {
  grid-column: span 6;
  min-height: 390px;
}
.bento-card.upload-card {
  min-height: 330px;
  padding-bottom: 188px;
}
.bento-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.bento-card p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.bento-card.side p {
  color: rgba(244, 242, 236, 0.73);
}
.mini-source {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 45%;
  height: 90px;
  background: url('/showcase/guelph-capture-02.869a7b5a.jpg') center/cover;
  filter: grayscale(0.2) contrast(1.08);
}
.mini-grid {
  position: absolute;
  inset: auto 20px 18px 43%;
  height: 92px;
  background-image:
    linear-gradient(rgba(244, 242, 236, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 242, 236, 0.22) 1px, transparent 1px);
  background-size: 14px 14px;
  transform: skewY(-8deg);
}

.workflow-visual {
  position: absolute;
  inset: auto 22px 18px;
  height: 108px;
  overflow: hidden;
}
.upload-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  height: 145px;
  transform: none;
}
.upload-stack img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(16, 21, 33, 0.1);
  filter: saturate(0.82) contrast(1.08);
}
.progress-visual {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 11px;
  padding: 0 6px 2px;
}
.progress-status {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}
.progress-status strong {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.progress-status span {
  max-width: 170px;
  color: rgba(244, 242, 236, 0.66);
  text-align: right;
  font-size: 10px;
  line-height: 1.35;
}
.progress-line {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(244, 242, 236, 0.24);
}
.progress-line > span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--paper);
  transition: width 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.progress-nodes {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(244, 242, 236, 0.7);
}
.progress-nodes span {
  position: relative;
  padding-top: 15px;
  transition: color 0.35s ease;
}
.progress-nodes span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(244, 242, 236, 0.62);
  border-radius: 50%;
  background: var(--blue);
  transform: translateX(-50%);
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}
.progress-nodes span.is-complete {
  color: var(--paper);
}
.progress-nodes span.is-complete::before {
  background: var(--paper);
}
.progress-nodes span.is-active {
  color: #fff;
}
.progress-nodes span.is-active::before {
  background: #fff;
  transform: translateX(-50%) scale(1.45);
}
.image-visual {
  inset: 92px 0 0;
  height: auto;
}
.image-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.1);
  transition: transform 0.8s ease;
}
.bento-card:hover .image-visual img {
  transform: scale(1.04);
}
.result-visual {
  position: absolute;
  inset: 112px 0 0;
  overflow: hidden;
  background: #101521;
}
.ortho-puzzle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  padding: 2px;
}
.ortho-tile {
  opacity: 0;
  background-image: url('/showcase/blueprint/gold-station-capture-03.jpg');
  background-size: 400% 300%;
  background-position: 0 0;
  transform: scale(0.92);
  filter: grayscale(0.7);
  transition:
    opacity 0.38s ease,
    transform 0.48s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.48s ease;
}
.ortho-tile.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: grayscale(0);
}
.ortho-tile:nth-of-type(1) {
  background-position: 0% 0%;
}
.ortho-tile:nth-of-type(2) {
  background-position: 33.333% 0%;
}
.ortho-tile:nth-of-type(3) {
  background-position: 66.666% 0%;
}
.ortho-tile:nth-of-type(4) {
  background-position: 100% 0%;
}
.ortho-tile:nth-of-type(5) {
  background-position: 0% 50%;
}
.ortho-tile:nth-of-type(6) {
  background-position: 33.333% 50%;
}
.ortho-tile:nth-of-type(7) {
  background-position: 66.666% 50%;
}
.ortho-tile:nth-of-type(8) {
  background-position: 100% 50%;
}
.ortho-tile:nth-of-type(9) {
  background-position: 0% 100%;
}
.ortho-tile:nth-of-type(10) {
  background-position: 33.333% 100%;
}
.ortho-tile:nth-of-type(11) {
  background-position: 66.666% 100%;
}
.ortho-tile:nth-of-type(12) {
  background-position: 100% 100%;
}
.puzzle-caption {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 12px;
  padding: 7px 9px;
  color: var(--paper);
  background: rgba(16, 21, 33, 0.72);
  backdrop-filter: blur(8px);
  font-size: 10px;
}
.workflow-model {
  min-height: 0;
}
.workflow-model .model-label {
  left: 18px;
  right: 18px;
  bottom: 14px;
}
.history-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 8px;
}
.history-sheet {
  min-height: 68px;
  padding: 9px;
  background: rgba(49, 85, 245, 0.08);
  border: 1px solid rgba(49, 85, 245, 0.15);
  font-size: 9px;
  color: var(--blue);
}
.history-sheet:nth-child(2) {
  min-height: 88px;
}

.story {
  padding: clamp(110px, 15vw, 210px) clamp(24px, 5vw, 76px);
  color: var(--paper);
  background: var(--ink);
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 4fr) minmax(0, 8fr);
  gap: clamp(42px, 7vw, 110px);
  max-width: 1240px;
  margin: 0 auto;
}
.story-copy {
  align-self: start;
  position: sticky;
  top: 64px;
}
.story-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.story-copy p {
  max-width: 410px;
  color: rgba(244, 242, 236, 0.63);
  font-size: 15px;
  line-height: 1.6;
}
.story-stack {
  display: grid;
  gap: 24px;
}
.story-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #1b2230;
}
.story-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 0.8s ease;
}
.story-card:hover img {
  transform: scale(1.035);
}
.story-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 70px 22px 20px;
  background: linear-gradient(transparent, rgba(16, 21, 33, 0.84));
  font-size: 13px;
}
.story-card.model-return::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(158, 183, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 183, 255, 0.18) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(135deg, transparent 10%, #000);
  pointer-events: none;
}
.honesty {
  max-width: 1240px;
  margin: 28px auto 0;
  color: rgba(244, 242, 236, 0.46);
  font-size: 11px;
  line-height: 1.5;
}

.accordion {
  display: flex;
  min-height: 430px;
  overflow: hidden;
}
.accordion-panel {
  flex: 1;
  position: relative;
  min-width: 0;
  padding: 32px;
  color: var(--paper);
  background: var(--ink);
  border-right: 1px solid rgba(244, 242, 236, 0.13);
  transition: flex 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.accordion-panel:hover {
  flex: 2.2;
}
.accordion-panel:nth-child(2) {
  background: var(--blue);
}
.accordion-panel:nth-child(3) {
  color: var(--ink);
  background: var(--soft-blue);
}
.accordion-panel h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.accordion-panel p {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  max-width: 340px;
  margin: 0;
  color: inherit;
  opacity: 0.66;
  font-size: 13px;
  line-height: 1.55;
}

.reconstruction-scroll {
  position: relative;
  color: var(--paper);
  background: var(--ink);
}
.reconstruction-sticky {
  position: relative;
  padding: clamp(100px, 12vw, 170px) clamp(24px, 5vw, 76px);
}
.reconstruction-copy {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(280px, 7fr);
  gap: 36px clamp(48px, 8vw, 120px);
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 74px;
}
.reconstruction-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.reconstruction-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(244, 242, 236, 0.62);
  font-size: 15px;
  line-height: 1.58;
}
.stage-list {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(244, 242, 236, 0.14);
}
.stage-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 12px 15px 0;
  border-bottom: 1px solid rgba(244, 242, 236, 0.14);
  color: rgba(244, 242, 236, 0.44);
  font-size: 12px;
  transition: color 0.3s ease;
}
.stage-item.is-active {
  color: var(--paper);
}
.stage-item span:last-child {
  color: var(--soft-blue);
}

.reconstruction-visual {
  display: grid;
  gap: clamp(44px, 7vw, 90px);
  max-width: 1240px;
  margin: 0 auto;
}
.recon-layer {
  position: relative;
  min-height: clamp(520px, 72vh, 720px);
  overflow: hidden;
  opacity: 1;
  transform: none;
  background: #151c2a;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.28);
}
.recon-layer.is-active {
  opacity: 1;
  transform: none;
}
.photo-cloud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
}
.photo-cloud img {
  width: 100%;
  height: 100%;
  min-height: 296px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
}
.camera-layer {
  background:
    radial-gradient(circle at center, rgba(49, 85, 245, 0.34), transparent 48%),
    #151c2a;
}
.camera-layer img {
  position: absolute;
  left: 25%;
  top: 18%;
  width: 50%;
  height: 64%;
  object-fit: cover;
  opacity: 0.52;
  filter: grayscale(0.4) contrast(1.2);
}
.camera-node {
  position: absolute;
  width: 26px;
  height: 18px;
  border: 1px solid var(--soft-blue);
  color: var(--soft-blue);
  transform: translate(-50%, -50%);
}
.camera-node::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--soft-blue), transparent);
  transform-origin: left;
  transform: rotate(var(--ray));
}
.point-field {
  background:
    radial-gradient(circle at center, rgba(49, 85, 245, 0.26), transparent 54%),
    #101521;
}
.point-field::before {
  content: '';
  position: absolute;
  inset: 8%;
  background-image: radial-gradient(
    circle,
    rgba(158, 183, 255, 0.9) 0 1.2px,
    transparent 1.8px
  );
  background-size: 13px 17px;
  mask-image: radial-gradient(ellipse at center, #000, transparent 72%);
  animation: point-drift 7s ease-in-out infinite alternate;
}
@keyframes point-drift {
  to {
    transform: perspective(700px) rotateX(9deg) rotateY(-8deg) scale(1.04);
  }
}
.mesh-layer {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(49, 85, 245, 0.28), transparent 58%),
    #101521;
}
.mesh-layer svg {
  width: 88%;
  height: 82%;
  color: var(--soft-blue);
  filter: drop-shadow(0 18px 35px rgba(49, 85, 245, 0.34));
}
.mesh-layer path,
.mesh-layer polyline,
.mesh-layer line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: mesh-draw 4.8s ease-in-out infinite alternate;
}
@keyframes mesh-draw {
  to {
    stroke-dashoffset: 0;
  }
}
.texture-layer {
  background: #eff0ee;
}
.texture-layer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.24;
}
.texture-layer canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.texture-layer.is-ready img {
  opacity: 0;
}
.recon-caption {
  position: absolute;
  z-index: 5;
  left: 20px;
  right: 20px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(244, 242, 236, 0.74);
  font-size: 11px;
  pointer-events: none;
}
.texture-layer .recon-caption {
  color: rgba(16, 21, 33, 0.62);
}

.capability-system {
  padding: clamp(110px, 14vw, 190px) clamp(24px, 5vw, 76px);
  background-color: var(--paper);
  background-image: var(--cream-mesh);
}
.capability-intro {
  max-width: 1050px;
  margin: 0 auto 86px;
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}
.capability-intro em {
  color: var(--blue);
  font-style: normal;
}
.capability-chapter {
  display: grid;
  grid-template-columns: minmax(230px, 4fr) minmax(0, 8fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  min-height: 760px;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.capability-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.052em;
  font-weight: 500;
}
.capability-copy p {
  max-width: 420px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.drone-orbit {
  position: relative;
  width: min(680px, 100%);
  aspect-ratio: 1;
  margin: auto;
  border-radius: 50%;
  background: conic-gradient(
    from -30deg,
    rgba(49, 85, 245, 0.035) 0 60deg,
    rgba(255, 255, 255, 0.5) 60deg 120deg,
    rgba(49, 85, 245, 0.035) 120deg 180deg,
    rgba(255, 255, 255, 0.5) 180deg 240deg,
    rgba(49, 85, 245, 0.035) 240deg 300deg,
    rgba(255, 255, 255, 0.5) 300deg 360deg
  );
  box-shadow:
    0 34px 80px rgba(16, 21, 33, 0.1),
    inset 0 0 70px rgba(158, 183, 255, 0.12);
}
.drone-wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.drone-wheel-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.drone-wheel-grid .outer-shell {
  fill: transparent;
  stroke: rgba(49, 85, 245, 0.34);
  stroke-width: 1.4;
}
.drone-wheel-grid .divider {
  stroke: rgba(49, 85, 245, 0.28);
  stroke-width: 1.2;
}
.drone-wheel-grid .inner-shell {
  fill: var(--ink);
  stroke: rgba(49, 85, 245, 0.3);
  stroke-width: 1.5;
}
.drone-node {
  position: absolute;
  width: 168px;
  min-height: 142px;
  display: grid;
  place-content: center;
  transform: translate(-50%, -50%);
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 24px;
  cursor: default;
  transition:
    background 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.drone-node:nth-of-type(1) {
  left: 50%;
  top: 15%;
}
.drone-node:nth-of-type(2) {
  left: 80.3%;
  top: 32.5%;
}
.drone-node:nth-of-type(3) {
  left: 80.3%;
  top: 67.5%;
}
.drone-node:nth-of-type(4) {
  left: 50%;
  top: 85%;
}
.drone-node:nth-of-type(5) {
  left: 19.7%;
  top: 67.5%;
}
.drone-node:nth-of-type(6) {
  left: 19.7%;
  top: 32.5%;
}
.drone-node:hover,
.drone-node:focus-visible {
  z-index: 9;
  background: rgba(251, 250, 247, 0.82);
  box-shadow: 0 22px 48px rgba(16, 21, 33, 0.12);
  transform: translate(-50%, -50%) scale(1.06);
}
.drone-photo {
  display: block;
  width: 104px;
  height: 72px;
  margin: 0 auto 7px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.8) contrast(1.05);
  transition: transform 0.45s ease;
}
.drone-photo.scene {
  width: 112px;
  height: 72px;
  margin: 0 auto 7px;
  border-radius: 12px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.drone-photo.aircraft-top {
  object-position: 50% 18%;
}
.drone-node:hover .drone-photo,
.drone-node:focus-visible .drone-photo {
  transform: scale(1.08);
}
.drone-node strong {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
.drone-node span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.orbit-center {
  position: absolute;
  z-index: 4;
  inset: 32%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: radial-gradient(circle at 42% 36%, #1d2637, var(--ink) 72%);
  box-shadow: 0 16px 38px rgba(16, 21, 33, 0.22);
  text-align: center;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.mesh-builder {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--blue);
  background: var(--ink);
}
.mesh-builder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(158, 183, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 183, 255, 0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(150deg, transparent, #000);
}
.mesh-builder svg {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 78%;
  filter: drop-shadow(0 25px 50px rgba(49, 85, 245, 0.35));
}
.mesh-builder path,
.mesh-builder line,
.mesh-builder polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 820;
  stroke-dashoffset: 820;
  animation: mesh-draw 5.5s ease-in-out infinite alternate;
}
.mesh-builder circle {
  fill: var(--soft-blue);
  animation: node-pulse 2.4s ease-in-out infinite alternate;
}
@keyframes node-pulse {
  to {
    opacity: 0.25;
    transform: scale(0.65);
  }
}

.delivery-model {
  min-height: 600px;
  background: rgba(251, 250, 247, 0.82);
}
.delivery-model .model-label {
  bottom: 24px;
}

.final-cta {
  padding: clamp(110px, 15vw, 200px) clamp(24px, 5vw, 76px) 38px;
  text-align: center;
  background-color: var(--paper);
  background-image: var(--cream-mesh);
}
.final-cta h2 {
  max-width: 1050px;
  margin: 0 auto 30px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  font-weight: 500;
}
.final-cta footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 130px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 800px) {
  .topbar {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    min-height: 0;
    padding-top: 132px;
  }
  .blueprint-live-landing .hero-copy h1 {
    font-size: clamp(2.25rem, 9.2vw, 3rem);
    line-height: 0.94;
  }
  .model-theater {
    grid-template-columns: 1fr;
  }
  .model-card {
    min-height: 390px;
  }
  .bento-card {
    min-height: 300px;
  }
  .image-visual {
    top: 135px;
  }
  .bento-card.wide,
  .bento-card.side,
  .bento-card.third,
  .bento-card.half {
    grid-column: span 12;
  }
  .bento-card.upload-card {
    min-height: 430px;
    padding-bottom: 205px;
  }
  .upload-stack,
  .upload-stack img {
    height: 160px;
  }
  .bento-card.half {
    min-height: 430px;
  }
  .result-visual {
    top: 145px;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-copy {
    position: static;
  }
  .accordion {
    display: block;
  }
  .accordion-panel {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 242, 236, 0.13);
  }
  .reconstruction-sticky {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .reconstruction-copy {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .reconstruction-copy p {
    max-width: 620px;
  }
  .stage-list {
    grid-template-columns: repeat(5, 1fr);
  }
  .stage-item {
    display: block;
    padding: 10px 3px;
    text-align: center;
    font-size: 9px;
    border-right: 1px solid rgba(244, 242, 236, 0.14);
  }
  .stage-item span {
    display: block;
  }
  .reconstruction-visual {
    gap: 36px;
  }
  .recon-layer {
    min-height: 430px;
  }
  .photo-cloud img {
    min-height: 187px;
  }
  .capability-chapter {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 82px 0;
  }
  .drone-node {
    width: 130px;
    min-height: 108px;
  }
  .drone-node:hover,
  .drone-node:focus-visible {
    transform: translate(-50%, -50%) scale(1.04);
  }
  .drone-photo {
    width: 76px;
    height: 52px;
    margin-bottom: 5px;
  }
  .drone-photo.scene {
    width: 82px;
    height: 52px;
  }
  .mesh-builder {
    min-height: 420px;
  }
  .delivery-model {
    min-height: 440px;
  }
  .final-cta footer {
    flex-direction: column;
    margin-top: 90px;
  }
}

@media (max-width: 470px) {
  .actions {
    width: min(100%, 280px);
    grid-template-columns: 1fr;
    margin-inline: auto;
  }
  .brand small {
    display: none;
  }
  .nav-action {
    padding: 0 12px;
  }
  .hero-lede {
    font-size: 15px;
  }
  .model-card {
    min-height: 330px;
  }
  .model-label {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }
  .model-tools {
    top: 12px;
    right: 12px;
  }
  .chapter-heading {
    font-size: 2.65rem;
  }
  .story-card,
  .story-card img {
    min-height: 290px;
  }
  .drone-node {
    width: 90px;
    min-height: 76px;
  }
  .drone-node:hover,
  .drone-node:focus-visible {
    transform: translate(-50%, -50%) scale(1.02);
  }
  .drone-photo {
    width: 50px;
    height: 34px;
    margin-bottom: 3px;
  }
  .drone-photo.scene {
    width: 54px;
    height: 34px;
  }
  .drone-node strong {
    font-size: 10px;
  }
  .orbit-center {
    inset: 31%;
    font-size: 10px;
  }
}

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

/* Live-route integration: this stylesheet is enabled only for the approved landing. */
.site-header,
body > .site-footer {
  display: none !important;
}
.blueprint-live-landing {
  display: block;
}
.blueprint-live-landing[hidden] {
  display: none !important;
}
.blueprint-live-landing .site-shell {
  min-height: 100vh;
}
.blueprint-live-landing .brand {
  color: var(--ink);
}
.blueprint-live-landing a:focus-visible,
.blueprint-live-landing button:focus-visible {
  outline: 3px solid rgba(49, 85, 245, 0.35);
  outline-offset: 3px;
}
.blueprint-live-landing .final-cta footer a {
  color: inherit;
  text-decoration: none;
}
