/* ═══════════════════════════════════════════════════════════════
   ONE X DONE — Shared Design System
   Source: Claude Design handoff (project/index.html, app.jsx)
   Used across every HTML page for consistent visual language.
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  --ink: #060606;
  --panel: #0D0D0D;
  --panel-2: #111;
  --hair: rgba(255,255,255,0.08);
  --hair-soft: rgba(255,255,255,0.04);
  --fg: #fff;
  --fg-65: rgba(255,255,255,0.65);
  --fg-40: rgba(255,255,255,0.40);
  --fg-22: rgba(255,255,255,0.22);
  --accent: #00D1FF;
}

/* ── BASE ────────────────────────────────────────────────────── */
html,
body {
  background: var(--ink);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 112px;
  --glow-x: 50vw;
  --glow-y: 46vh;
  --glow-scale: 1;
  --glow-opacity: 0.62;
}
html {
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: visible;
}
::selection { background: var(--accent); color: #000; }

.scroll-glow {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  transform: none;
  transform-origin: center;
  pointer-events: none;
  z-index: 12;
  opacity: var(--glow-opacity);
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 42vw 34vw at var(--glow-x) var(--glow-y), rgba(0,209,255,0.28), rgba(0,209,255,0.12) 34%, rgba(0,209,255,0.045) 58%, transparent 76%);
  filter: none;
  transition:
    transform 850ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 850ms cubic-bezier(0.76, 0, 0.24, 1);
}

/* ── RESIZE-SAFE TEXT ────────────────────────────────────────── */
/* Prevent words from being clipped when the window is resized.
   overflow-wrap keeps long words inside their container.
   hyphens: none keeps Oswald display headings unbroken.
   Grid/flex children need min-width:0 so they can shrink. */
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}
p, li, span {
  overflow-wrap: break-word;
}
/* Grid and flex children that hold text must be able to shrink */
[class*="col-span-"],
[class*="grid-cols-"] > *,
.flex > * {
  min-width: 0;
}

/* ── TYPOGRAPHY EXTENSIONS ───────────────────────────────────── */
.font-display { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: -0.01em; overflow-wrap: break-word; word-break: break-word; }
.font-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.t-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-40);
}
.t-index {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-22);
  text-transform: uppercase;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
/* Allow the glow div to bleed above the footer without clipping.
   z-index: 1 puts footer above the CTA section stacking context. */
footer { overflow: visible; position: relative; z-index: 1; }

/* The glow div uses inline top:-420px / height:900px which doesn't
   reach the top of the CTA section (~840px tall). Override so it
   extends 750px above the footer and covers the full CTA area. */
footer > [aria-hidden="true"] {
  top: -750px !important;
  height: 1300px !important;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 10%, #000 25%, #000 55%, transparent 88%) !important;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 10%, #000 25%, #000 55%, transparent 88%) !important;
}

/* ── HAIRLINES ───────────────────────────────────────────────── */
.hair { border-color: var(--hair); }
.hair-t { border-top: 1px solid var(--hair); }
.hair-b { border-bottom: 1px solid var(--hair); }
.hair-l { border-left: 1px solid var(--hair); }
.hair-r { border-right: 1px solid var(--hair); }

/* Vertical column rules (4-col grid hairlines) */
.col-rules {
  background-image: linear-gradient(to right, var(--hair-soft) 1px, transparent 1px);
  background-size: 25% 100%;
}

/* ── ACCENT BAR ──────────────────────────────────────────────── */
.accent-bar {
  position: relative;
  height: 1px;
  background: var(--hair);
  overflow: hidden;
}
.accent-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 40%;
  background: var(--accent);
  transform: translateX(-110%);
  transition: transform 1.1s cubic-bezier(.7,0,.3,1);
}
.accent-bar.on::after { transform: translateX(0); }

/* ── DOT ─────────────────────────────────────────────────────── */
.dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 9999px;
  display: inline-block;
}

/* ── TICKER ──────────────────────────────────────────────────── */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 60s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.5rem;
  white-space: nowrap;
}

/* ── HERO VIGNETTE ───────────────────────────────────────────── */
.hero-vignette {
  background:
    linear-gradient(180deg, rgba(6,6,6,0.22) 0%, rgba(6,6,6,0.48) 46%, rgba(6,6,6,0.94) 100%),
    radial-gradient(ellipse 74% 58% at 50% 42%, rgba(0,209,255,0.20), rgba(0,209,255,0.075) 38%, transparent 70%),
    radial-gradient(ellipse 92% 54% at 50% 92%, rgba(0,209,255,0.13), transparent 68%);
  opacity: 1;
}

/* ── PREMIUM CARD SYSTEM ─────────────────────────────────────── */
.pcard {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.012) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .7s cubic-bezier(.2,.7,.2,1),
    border-color .5s cubic-bezier(.2,.7,.2,1),
    box-shadow .7s cubic-bezier(.2,.7,.2,1),
    background .5s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.pcard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
  transition: opacity .5s cubic-bezier(.2,.7,.2,1);
}
.pcard::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s cubic-bezier(.2,.7,.2,1);
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%),
    rgba(0,209,255,0.14), rgba(0,209,255,0.04) 25%, transparent 55%);
  z-index: 0;
}
.pcard:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.018) 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 24px 60px -20px rgba(0,0,0,0.75),
    0 0 50px -10px rgba(0,209,255,0.08);
}
.pcard:hover::after { opacity: 1; }
.pcard:hover::before { opacity: 1; }
.pcard > * { position: relative; z-index: 2; }

.pcard .pcard-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,209,255,0.5), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
  z-index: 2;
}
.pcard:hover .pcard-accent { transform: scaleX(1); }

.project-case-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
}

.project-card-media,
.project-hero-image {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.075);
  background: rgba(255,255,255,0.035);
}

.project-card-media {
  aspect-ratio: 16 / 10;
  margin: 0 0 1.35rem;
  border-radius: 12px;
}

.project-card-media img,
.project-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.03) brightness(0.92);
}

.project-case-card:hover .project-card-media img {
  transform: scale(1.035);
  filter: saturate(0.98) contrast(1.05) brightness(1);
}

.project-card-media img.project-img-leppington,
.project-hero-image img.project-img-leppington {
  transform: scale(2.2) translate(-21%, 18%);
  transform-origin: center;
}

.project-case-card:hover .project-card-media img.project-img-leppington {
  transform: scale(2.25) translate(-21%, 18%);
}

.project-case-card .project-card-media img {
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.project-card-location {
  display: block;
  margin-bottom: 1.1rem;
}

.project-hero-media-section {
  margin-top: -1.5rem;
}

.project-hero-image {
  height: clamp(320px, 48vw, 620px);
  border-radius: 18px;
  box-shadow: 0 30px 90px -45px rgba(0,0,0,0.85);
}

.resource-hero {
  position: relative;
}

.resource-hero-panel {
  align-self: center;
  min-height: 0;
}

.resource-start-link {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: .15rem;
  align-items: baseline;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.resource-start-link:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.resource-start-link span {
  grid-row: span 2;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--accent);
}

.resource-start-link strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  color: white;
  transition: color .25s ease;
}

.resource-start-link em {
  font-style: normal;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.5);
}

.resource-start-link:hover strong {
  color: var(--accent);
}

.resource-feature-card,
.resource-card {
  min-height: 100%;
}

.resource-feature-card {
  background:
    radial-gradient(420px circle at 20% 0%, rgba(0,209,255,0.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014));
}

.resource-card {
  display: flex;
  flex-direction: column;
}

.resource-card p {
  flex: 1;
}

.resource-read-more {
  display: inline-flex;
  margin-top: auto;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--accent);
}

.resource-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.resource-filter-row a {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0 .95rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 600;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.resource-filter-row a:hover {
  border-color: rgba(0,209,255,0.45);
  color: white;
  background: rgba(0,209,255,0.08);
}

@media (min-width: 1024px) {
  .resource-hero > .grid {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(320px, 4fr);
  }

  .resource-hero > .grid > * {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .project-case-card {
    padding: 1rem;
  }

  .project-card-media {
    border-radius: 10px;
    margin-bottom: 1.1rem;
  }

  .project-hero-media-section {
    margin-top: -0.75rem;
    padding-bottom: 3.25rem;
  }

  .project-hero-image {
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 12px;
  }

  .resource-hero-panel {
    padding: 1.25rem;
  }

  .resource-filter-row {
    width: 100%;
  }

  .resource-filter-row a {
    flex: 1 1 calc(50% - .3rem);
    justify-content: center;
    min-width: 0;
  }
}

.pcard-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  transition: color .4s ease;
}
.pcard:hover .pcard-num { color: var(--accent); }

.pcard-ic {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.65);
  transition: all .5s cubic-bezier(.2,.7,.2,1);
}
.pcard:hover .pcard-ic {
  border-color: rgba(0,209,255,0.45);
  color: var(--accent);
  background: rgba(0,209,255,0.04);
  transform: translateY(-2px);
}

/* ── AREA CARD (lighter PCard variant) ───────────────────────── */
.area { transition: border-color .3s ease, background .3s ease; }
.area:hover { border-color: rgba(0,209,255,0.25); background: rgba(0,209,255,0.02); }

/* ── STAGE ROW ───────────────────────────────────────────────── */
.stage-row { position: relative; transition: background .35s ease; }
.stage-row:hover { background: rgba(255,255,255,0.02); }
.stage-row:hover .stage-hit { color: var(--accent); }
.stage-hit { transition: color .35s ease; }

/* ── FULLPAGE SNAP SCROLL ─────────────────────────────────────── */
.fp-enabled body .section,
body.fp-enabled .section {
  min-height: 100vh;
}
.fp-enabled body .section > .fp-overflow,
.fp-enabled body .fp-overflow,
body.fp-enabled .section > .fp-overflow,
body.fp-enabled .fp-overflow {
  width: 100%;
}
.fp-enabled body #top,
body.fp-enabled #top {
  min-height: 100vh;
}
.section {
  scroll-margin-top: 112px;
}
.hero-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(118px, 14vh, 168px);
  padding-bottom: clamp(112px, 16vh, 180px);
}
.hero-shell h1 {
  font-size: clamp(3.25rem, min(11vw, 18vh), 10.25rem) !important;
  max-width: 8.2em;
}
.hero-copy {
  display: grid;
  gap: 0;
  margin-top: clamp(1.25rem, 3vh, 2rem) !important;
}
.hero-copy p {
  max-width: 62ch;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}
.hero-stats {
  align-items: start;
  margin-top: clamp(1.5rem, 4vh, 2.5rem) !important;
  padding-top: clamp(1.25rem, 3vh, 2rem) !important;
}
.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(18px, 3vh, 34px);
}
.hero-ticker .hair-t {
  margin-top: 0 !important;
}
.quote-footer-section {
  position: relative;
  overflow: hidden;
  background: #060606;
}
.quote-footer-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  width: min(1100px, 92vw);
  height: 760px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(0,209,255,0.16), rgba(0,209,255,0.055) 34%, rgba(0,209,255,0.02) 58%, transparent 74%);
  filter: blur(10px);
  opacity: 0.78;
  z-index: 0;
}
.quote-footer-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0,209,255,0.028) 48%, rgba(0,209,255,0.052));
  z-index: 0;
}
.quote-footer-scroll {
  position: relative;
  z-index: 1;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.quote-panel {
  min-height: 54vh;
  display: flex;
  align-items: center;
}
.quote-panel > div {
  width: 100%;
}
.quote-footer-section footer {
  min-height: auto;
}

.generated-hero-media {
  position: relative;
  margin-top: clamp(28px, 5vw, 56px);
  width: min(100%, 920px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: #080808;
  box-shadow: 0 28px 90px rgba(0,0,0,0.36);
}
.generated-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,0.34)),
    linear-gradient(90deg, rgba(0,0,0,0.16), transparent 35%, rgba(0,0,0,0.12));
}
.generated-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.generated-hero-media.is-centered {
  margin-left: auto;
  margin-right: auto;
}
.generated-hero-media.is-compact {
  max-width: 780px;
}
.article-hero-with-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: end;
}
.article-hero-with-media .generated-hero-media {
  margin-top: 0;
  width: 100%;
}
.article-hero-priority-image {
  min-height: 280px;
}
.article-hero-full-image {
  width: 100%;
  max-width: none;
  min-height: clamp(280px, 38vw, 560px);
}
.article-hero-top-image {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .article-hero-with-media {
    grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  }
  .article-hero-priority-image {
    min-height: 320px;
  }
}
.resource-hero .generated-hero-media {
  margin-top: 0;
  width: 100%;
}
.resource-hero-image {
  box-shadow: 0 22px 70px rgba(0,0,0,0.34);
}

@media (max-width: 767px) {
  .generated-hero-media {
    border-radius: 14px;
    margin-top: 26px;
  }
}
.fp-enabled body #fp-nav.fp-right,
body.fp-enabled #fp-nav.fp-right {
  right: 22px;
}
.fp-enabled body #fp-nav ul li,
.fp-enabled body .fp-slidesNav ul li,
body.fp-enabled #fp-nav ul li,
body.fp-enabled .fp-slidesNav ul li {
  width: 12px;
  height: 12px;
  margin: 12px 0;
}
.fp-enabled body #fp-nav ul li a span,
.fp-enabled body .fp-slidesNav ul li a span,
body.fp-enabled #fp-nav ul li a span,
body.fp-enabled .fp-slidesNav ul li a span {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  background: rgba(255,255,255,0.35);
  border: 1px solid transparent;
  transition: width .25s ease, height .25s ease, margin .25s ease, background .25s ease, border-color .25s ease;
}
.fp-enabled body #fp-nav ul li a.active span,
.fp-enabled body #fp-nav ul li:hover a.active span,
.fp-enabled body .fp-slidesNav ul li a.active span,
body.fp-enabled #fp-nav ul li a.active span,
body.fp-enabled #fp-nav ul li:hover a.active span,
body.fp-enabled .fp-slidesNav ul li a.active span {
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  background: rgba(0,209,255,0.22);
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(0,209,255,0.45);
}
.fp-enabled body #fp-nav ul li .fp-tooltip,
body.fp-enabled #fp-nav ul li .fp-tooltip {
  top: -7px;
  padding: 4px 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  background: rgba(6,6,6,0.82);
  border: 1px solid var(--hair);
  border-radius: 8px;
}
.fp-responsive body .section,
body.fp-responsive .section {
  min-height: auto;
}

body.fp-enabled .section,
.fp-enabled body .section {
  overflow: hidden;
}

.snap-combo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.snap-combo-block {
  width: 100%;
}

@media (min-width: 1024px) {
  body.fp-enabled .snap-combo-block,
  .fp-enabled body .snap-combo-block {
    padding-top: clamp(28px, 4vh, 48px) !important;
    padding-bottom: clamp(28px, 4vh, 48px) !important;
  }
  body.fp-enabled .snap-combo-intro-process .snap-combo-block:first-child,
  .fp-enabled body .snap-combo-intro-process .snap-combo-block:first-child {
    padding-bottom: clamp(20px, 2.8vh, 34px) !important;
  }
  body.fp-enabled .snap-combo-intro-process #stages,
  .fp-enabled body .snap-combo-intro-process #stages {
    padding-top: clamp(20px, 2.8vh, 34px) !important;
  }
  body.fp-enabled .snap-combo-intro-process #stages > .max-w-\[1480px\] > .hair-t,
  .fp-enabled body .snap-combo-intro-process #stages > .max-w-\[1480px\] > .hair-t {
    display: none;
  }
  body.fp-enabled .snap-combo-intro-process .stage-explorer,
  .fp-enabled body .snap-combo-intro-process .stage-explorer {
    min-height: 320px;
    margin-bottom: 0 !important;
  }
  body.fp-enabled .snap-combo-intro-process .stage-explorer-visual,
  .fp-enabled body .snap-combo-intro-process .stage-explorer-visual {
    min-height: 320px;
  }
  body.fp-enabled .snap-combo-intro-process #stages .mb-14,
  body.fp-enabled .snap-combo-proof .mb-14,
  body.fp-enabled .snap-combo-coverage-services .mb-14,
  .fp-enabled body .snap-combo-intro-process #stages .mb-14,
  .fp-enabled body .snap-combo-proof .mb-14,
  .fp-enabled body .snap-combo-coverage-services .mb-14 {
    margin-bottom: 24px !important;
  }
  body.fp-enabled .snap-combo-proof .pcard,
  body.fp-enabled .snap-combo-coverage-services .pcard,
  .fp-enabled body .snap-combo-proof .pcard,
  .fp-enabled body .snap-combo-coverage-services .pcard {
    border-radius: 14px;
  }
  body.fp-enabled .snap-combo-proof .pcard,
  .fp-enabled body .snap-combo-proof .pcard {
    padding: 24px !important;
  }
  body.fp-enabled .snap-combo-proof .pcard .mb-10,
  .fp-enabled body .snap-combo-proof .pcard .mb-10 {
    margin-bottom: 20px !important;
  }
  body.fp-enabled #scope,
  .fp-enabled body #scope,
  body.fp-enabled .snap-combo-proof,
  .fp-enabled body .snap-combo-proof,
  body.fp-enabled .snap-combo-industry,
  .fp-enabled body .snap-combo-industry {
    padding-top: clamp(94px, 10vh, 112px) !important;
    padding-bottom: clamp(18px, 3vh, 32px) !important;
  }
  body.fp-enabled #scope .mb-14,
  .fp-enabled body #scope .mb-14,
  body.fp-enabled #scope .matched-ba-showcase,
  .fp-enabled body #scope .matched-ba-showcase {
    margin-bottom: 14px !important;
  }
  body.fp-enabled #scope h2,
  .fp-enabled body #scope h2 {
    font-size: clamp(2.4rem, 4.2vw, 3.35rem) !important;
  }
  body.fp-enabled #scope .matched-ba-showcase,
  .fp-enabled body #scope .matched-ba-showcase {
    gap: 10px;
  }
  body.fp-enabled #scope .matched-ba-tools,
  .fp-enabled body #scope .matched-ba-tools {
    gap: 8px;
  }
  body.fp-enabled #scope .matched-ba-tools button,
  .fp-enabled body #scope .matched-ba-tools button,
  body.fp-enabled #scope .matched-ba-preview button,
  .fp-enabled body #scope .matched-ba-preview button {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 9px;
  }
  body.fp-enabled #scope .matched-ba-preview,
  .fp-enabled body #scope .matched-ba-preview {
    min-height: 72px;
    padding: 14px 16px;
  }
  body.fp-enabled #scope .matched-ba-preview strong,
  .fp-enabled body #scope .matched-ba-preview strong {
    margin-top: 4px;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
  }
  body.fp-enabled #scope .matched-ba-preview p,
  .fp-enabled body #scope .matched-ba-preview p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.35;
  }
  body.fp-enabled #scope .matched-ba-grid,
  .fp-enabled body #scope .matched-ba-grid {
    gap: 12px;
  }
  body.fp-enabled #scope .matched-ba-head,
  .fp-enabled body #scope .matched-ba-head {
    min-height: 56px;
    padding: 12px 16px;
  }
  body.fp-enabled #scope .matched-ba-head strong,
  .fp-enabled body #scope .matched-ba-head strong {
    font-size: 18px;
  }
  body.fp-enabled #scope .matched-ba-pair figure,
  .fp-enabled body #scope .matched-ba-pair figure {
    aspect-ratio: 1.7 / 1;
  }
  body.fp-enabled #scope .scope-list-grid,
  .fp-enabled body #scope .scope-list-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
  }
  body.fp-enabled #scope .pcard,
  .fp-enabled body #scope .pcard {
    min-height: 104px !important;
    padding: 14px !important;
  }
  body.fp-enabled #scope .pcard .mb-10,
  .fp-enabled body #scope .pcard .mb-10 {
    display: none !important;
  }
  body.fp-enabled #scope .pcard h3,
  .fp-enabled body #scope .pcard h3 {
    font-size: 18px !important;
    line-height: 1;
    margin-bottom: 8px !important;
  }
  body.fp-enabled #scope .pcard p,
  .fp-enabled body #scope .pcard p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }
  body.fp-enabled .hero-quote-cue,
  .fp-enabled body .hero-quote-cue {
    display: none;
  }
  body.fp-enabled .snap-combo-industry .mb-14,
  .fp-enabled body .snap-combo-industry .mb-14 {
    margin-bottom: 24px !important;
  }
  body.fp-enabled .snap-combo-industry .pcard,
  .fp-enabled body .snap-combo-industry .pcard {
    padding: 24px !important;
  }
  body.fp-enabled .snap-combo-industry .pcard p,
  .fp-enabled body .snap-combo-industry .pcard p {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
  }
  body.fp-enabled .snap-combo-coverage-services #areas .grid,
  .fp-enabled body .snap-combo-coverage-services #areas .grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  body.fp-enabled .snap-combo-coverage-services #areas .pcard,
  .fp-enabled body .snap-combo-coverage-services #areas .pcard {
    padding: 16px !important;
  }
}

@media (max-width: 480px) {
  #fp-nav { display: none !important; }
}

/* ── INTERACTIVE STAGE EXPLORER ───────────────────────────────── */
.stage-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  border: 1px solid var(--hair);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  min-height: 460px;
}
.stage-explorer-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(0,209,255,0.12), transparent 32%),
    linear-gradient(180deg, #121212 0%, #050505 100%);
}
.stage-explorer-panel {
  position: relative;
  padding: clamp(28px, 4vw, 54px);
  border-left: 1px solid var(--hair);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stage-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--hair);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 34px;
}
.stage-tab {
  min-height: 46px;
  padding: 0 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-40);
  border-right: 1px solid var(--hair);
  background: rgba(255,255,255,0.015);
  transition: color .25s ease, background .25s ease;
}
.stage-tab:last-child { border-right: 0; }
.stage-tab:hover,
.stage-tab.is-active {
  color: #fff;
  background: rgba(0,209,255,0.08);
}
.stage-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.stage-copy {
  position: relative;
  min-height: 190px;
}
.stage-copy-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.stage-copy-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.stage-meter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.stage-meter span {
  height: 2px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.stage-meter span::after {
  content: '';
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width .35s ease;
}
.stage-explorer[data-active-stage="pre"] .stage-meter span:nth-child(1)::after,
.stage-explorer[data-active-stage="handover"] .stage-meter span:nth-child(-n+2)::after,
.stage-explorer[data-active-stage="sparkle"] .stage-meter span:nth-child(-n+3)::after { width: 100%; }

.stage-scene {
  position: absolute;
  inset: 0;
  --dust-opacity: .78;
  --debris-opacity: 1;
  --glass-opacity: .18;
  --clean-opacity: .16;
  --tool-x: 7%;
  --mop-x: 14%;
  --mist-opacity: .28;
  --sparkle-opacity: 0;
  --shine-opacity: 0;
  --scan-x: 18%;
}
.stage-scene[data-stage-scene="handover"] {
  --dust-opacity: .34;
  --debris-opacity: .28;
  --glass-opacity: .62;
  --clean-opacity: .58;
  --tool-x: 46%;
  --mop-x: 48%;
  --mist-opacity: .72;
  --sparkle-opacity: .28;
  --shine-opacity: .38;
  --scan-x: 52%;
}
.stage-scene[data-stage-scene="sparkle"] {
  --dust-opacity: .06;
  --debris-opacity: 0;
  --glass-opacity: .92;
  --clean-opacity: .95;
  --tool-x: 72%;
  --mop-x: 78%;
  --mist-opacity: .16;
  --sparkle-opacity: 1;
  --shine-opacity: .78;
  --scan-x: 82%;
}

.scope-list-grid {
  align-items: stretch;
}
.scope-list-grid .scope-card {
  min-height: 0 !important;
  padding: clamp(24px, 2.7vw, 34px) !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.scope-list-grid .scope-card .pcard-accent {
  height: 3px;
}
.scope-list-grid .scope-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem) !important;
  line-height: 1.05;
  margin-bottom: 12px !important;
}
.scope-list-grid .scope-card p {
  max-width: 34ch;
  font-size: 15px !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,0.62) !important;
}

.stage-room {
  position: absolute;
  inset: 9% 7%;
  perspective: 900px;
}
.stage-wall {
  position: absolute;
  inset: 0 0 34%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px) 0 0 / 12% 100%,
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
}
.stage-floor {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0;
  height: 42%;
  transform: rotateX(58deg);
  transform-origin: top;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 9% 100%,
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
}
.stage-window {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 38%;
  height: 42%;
  border: 1px solid rgba(255,255,255,0.15);
  background:
    linear-gradient(115deg, transparent 0 26%, rgba(255,255,255,calc(var(--clean-opacity) * .22)) 34%, transparent 44%),
    linear-gradient(135deg, rgba(0,209,255,var(--glass-opacity)), rgba(255,255,255,0.02));
  box-shadow: 0 0 48px rgba(0,209,255, calc(var(--glass-opacity) * .18));
  transition: background .45s ease, box-shadow .45s ease;
}
.stage-window span {
  position: absolute;
  background: rgba(255,255,255,0.16);
}
.stage-window span:first-child { left: 50%; top: 0; bottom: 0; width: 1px; }
.stage-window span:last-child { left: 0; right: 0; top: 50%; height: 1px; }
.stage-clean-path {
  position: absolute;
  left: 8%;
  bottom: 10%;
  width: 74%;
  height: 24%;
  background:
    linear-gradient(90deg, rgba(0,209,255,0.22), rgba(255,255,255,0.18), rgba(0,209,255,0.08));
  border-radius: 999px;
  opacity: var(--clean-opacity);
  filter: blur(13px);
  transform: rotate(-4deg);
  transition: opacity .45s ease;
}
.stage-squeegee {
  position: absolute;
  top: 21%;
  left: var(--tool-x);
  width: 26%;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9f8ff, #00d1ff);
  box-shadow: 0 0 28px rgba(0,209,255,0.42);
  transform: rotate(-18deg);
  transition: left .45s cubic-bezier(.2,.7,.2,1);
}
.stage-squeegee::before {
  content: '';
  position: absolute;
  left: 52%;
  top: 9px;
  width: 5px;
  height: 92px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  transform: rotate(8deg);
  transform-origin: top;
}
.stage-squeegee span {
  position: absolute;
  left: -6%;
  right: -6%;
  top: 13px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.13);
  filter: blur(7px);
}
.stage-spray {
  position: absolute;
  left: 19%;
  top: 21%;
  width: 34%;
  height: 24%;
  opacity: var(--mist-opacity);
  transition: opacity .45s ease;
}
.stage-spray span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0,209,255,0.8);
  box-shadow: 0 0 16px rgba(0,209,255,0.55);
}
.stage-spray span:nth-child(1) { left: 8%; top: 70%; }
.stage-spray span:nth-child(2) { left: 24%; top: 52%; width: 5px; height: 5px; }
.stage-spray span:nth-child(3) { left: 38%; top: 34%; }
.stage-spray span:nth-child(4) { left: 55%; top: 20%; width: 4px; height: 4px; }
.stage-spray span:nth-child(5) { left: 72%; top: 8%; width: 5px; height: 5px; }
.stage-mop {
  position: absolute;
  left: var(--mop-x);
  bottom: 20%;
  width: 8%;
  height: 7%;
  border-radius: 40% 40% 55% 55%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.75) 0 2px, rgba(0,209,255,0.45) 2px 4px);
  box-shadow: 0 16px 35px rgba(0,209,255,0.16);
  transform: rotate(-8deg);
  transition: left .45s cubic-bezier(.2,.7,.2,1);
}
.stage-mop::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 74%;
  width: 4px;
  height: 150px;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  transform: translateX(-50%) rotate(-24deg);
  transform-origin: bottom;
}
.stage-mop span {
  position: absolute;
  left: -26%;
  right: -26%;
  bottom: -12px;
  height: 20px;
  border-radius: 999px;
  background: rgba(0,209,255,0.18);
  filter: blur(10px);
}
.stage-bucket {
  position: absolute;
  left: 11%;
  bottom: 21%;
  width: 12%;
  height: 14%;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, rgba(0,209,255,0.38), rgba(255,255,255,0.08));
  border: 1px solid rgba(0,209,255,0.38);
}
.stage-bucket::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: -18px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.38);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}
.stage-foam {
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.34);
  opacity: calc(var(--mist-opacity) * .7);
  filter: blur(1px);
  transition: opacity .45s ease;
}
.stage-foam-a { left: 25%; bottom: 18%; width: 12%; height: 3%; }
.stage-foam-b { left: 54%; bottom: 15%; width: 16%; height: 3%; }
.stage-sparkle {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: var(--sparkle-opacity);
  transition: opacity .45s ease, transform .45s ease;
}
.stage-sparkle::before,
.stage-sparkle::after {
  content: '';
  position: absolute;
  background: #fff;
  box-shadow: 0 0 18px rgba(0,209,255,0.7);
}
.stage-sparkle::before { left: 10px; top: 0; width: 2px; height: 22px; }
.stage-sparkle::after { left: 0; top: 10px; width: 22px; height: 2px; }
.stage-sparkle-a { right: 18%; top: 16%; transform: rotate(20deg) scale(.8); }
.stage-sparkle-b { right: 43%; top: 48%; transform: rotate(-18deg) scale(.55); }
.stage-sparkle-c { left: 34%; bottom: 26%; transform: rotate(35deg) scale(.65); }
.stage-glass-pane::after {
  content: 'GLASS DETAIL';
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .12em;
  color: rgba(255,255,255,0.32);
}
.stage-dust {
  position: absolute;
  opacity: var(--dust-opacity);
  transition: opacity .45s ease;
}
.stage-dust-a {
  left: 8%;
  right: 28%;
  bottom: 16%;
  height: 28%;
  background:
    radial-gradient(circle at 12% 70%, rgba(180,180,180,0.45), transparent 8%),
    radial-gradient(circle at 38% 48%, rgba(210,210,210,0.32), transparent 7%),
    radial-gradient(circle at 68% 58%, rgba(160,160,160,0.30), transparent 10%);
  filter: blur(2px);
}
.stage-dust-b {
  right: 8%;
  bottom: 10%;
  width: 22%;
  height: 18%;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  transform: rotate(-5deg);
  opacity: var(--debris-opacity);
}
.stage-shine {
  position: absolute;
  inset: 0;
  opacity: var(--shine-opacity);
  background:
    linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.18) 32%, transparent 44%),
    radial-gradient(circle at 73% 28%, rgba(0,209,255,0.20), transparent 18%);
  mix-blend-mode: screen;
  transition: opacity .45s ease;
}
.stage-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--scan-x);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,209,255,0.9), transparent);
  box-shadow: 0 0 28px rgba(0,209,255,0.55);
  transition: left .45s cubic-bezier(.2,.7,.2,1);
}

@media (max-width: 900px) {
  .stage-explorer { grid-template-columns: 1fr; min-height: 0; }
  .stage-explorer-visual { min-height: 340px; }
  .stage-explorer-panel { border-left: 0; border-top: 1px solid var(--hair); }
  .stage-copy { min-height: 210px; }
}

/* ── TICK BAR (process indicator) ────────────────────────────── */
.tick-bar { height: 10px; display: flex; align-items: center; }
.tick-bar .tick { width: 1px; height: 10px; background: var(--fg-22); }
.tick-bar .tick.on { background: var(--accent); }

/* ── SEGMENTED CONTROL ───────────────────────────────────────── */
.seg { display: flex; flex-wrap: wrap; gap: 6px; }
.seg button {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--hair);
  border-radius: 10px;
  color: var(--fg-65);
  background: transparent;
  transition: all .25s ease;
}
.seg button[data-on="true"] {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,209,255,0.06);
}
.seg button:hover { color: #fff; }

/* ── FIELD INPUT (form fields, hairline underline) ───────────── */
.field {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hair);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color .3s ease, background .3s ease;
}
.field:focus { outline: none; border-color: var(--accent); background: rgba(0,209,255,0.04); }
.field::placeholder { color: var(--fg-22); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-row { transition: background .3s ease; }
.faq-row[data-open="true"] { background: rgba(0,209,255,0.03); }
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.2,.7,.2,1);
}
.faq-body > div { overflow: hidden; }
.faq-row[data-open="true"] .faq-body { grid-template-rows: 1fr; }
.faq-plus { transition: transform .4s cubic-bezier(.2,.7,.2,1), color .3s; }
.faq-row[data-open="true"] .faq-plus { transform: rotate(45deg); color: var(--accent); }

/* ── NOISE OVERLAY ───────────────────────────────────────────── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 2;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

@media (max-width: 900px) {
  .scroll-glow {
    width: 100vw;
    height: 100vh;
    background:
      radial-gradient(ellipse 280px 240px at var(--glow-x) var(--glow-y), rgba(0,209,255,0.22), rgba(0,209,255,0.085) 42%, transparent 76%);
    filter: none;
  }
}

/* ── HERO PAN-DOWN (ken-burns) ───────────────────────────────── */
@keyframes heroPanDown {
  0%   { object-position: center 0%; }
  100% { object-position: center 100%; }
}
.hero-pan-down {
  object-position: center 0%;
  animation: heroPanDown 18s cubic-bezier(.45,.05,.55,.95) infinite alternate;
}

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); }
::-webkit-scrollbar-track { background: var(--ink); }

/* ── BASE PAGE RESET ─────────────────────────────────────────── */
.ds-page {
  background: var(--ink);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}
.ds-page *, .ds-page *::before, .ds-page *::after { box-sizing: border-box; }

/* ── BUTTONS (One X Done spec) ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.3px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.btn svg { transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1); }
.btn-primary { background: var(--accent); color: #fff; border-color: transparent; }
.btn-primary:hover {
  background: #fff; color: #070707;
  box-shadow: 0 12px 40px rgba(0, 209, 255, 0.25);
  transform: translateY(-2px);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0) scale(0.985); transition-duration: .15s; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── COMPACT HERO QUOTE CUE ───────────────────────────────────── */
.hero-quote-cue {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 58;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(0,209,255,0.38);
  border-radius: 14px;
  background: rgba(6,6,6,0.82);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 38px rgba(0,209,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, border-color .25s ease;
}
.hero-quote-cue.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-quote-cue span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.46);
}
.hero-quote-cue strong {
  font-size: 13px;
  font-weight: 600;
}
.hero-quote-cue:hover { border-color: var(--accent); }

/* ── NAV ─────────────────────────────────────────────────────── */
#site-nav {
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease, transform 0.5s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
#site-nav.is-scrolled {
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hair);
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.is-active { color: #fff; }
.clone-nav-shell {
  min-height: 72px;
}
.clone-brand {
  position: relative;
  z-index: 2;
}
.clone-desktop-links {
  padding: 8px 8px 8px 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(6,6,6,0.36);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.clone-menu-button {
  position: relative;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(6,6,6,0.44);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.clone-menu-button:hover {
  border-color: rgba(0,209,255,0.42);
  background: rgba(0,209,255,0.12);
}
.clone-menu-text {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.clone-menu-icon {
  width: 38px;
  display: grid;
  gap: 8px;
}
.clone-menu-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform .3s ease;
}
.clone-menu-button.is-close {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
}
.clone-menu-button.is-close .clone-menu-icon span:first-child { transform: translateY(5px) rotate(45deg); }
.clone-menu-button.is-close .clone-menu-icon span:last-child { transform: translateY(-5px) rotate(-45deg); }

@media (min-width: 1280px) {
  #site-nav .clone-nav-shell {
    display: grid !important;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    align-items: center;
  }
  #site-nav .clone-brand {
    justify-self: start;
  }
  #site-nav .clone-desktop-links {
    justify-self: center;
  }
  #site-nav .btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  #mobile-menu-open {
    display: none;
  }
}

@media (min-width: 1280px) and (max-width: 1360px) {
  #site-nav .clone-desktop-links {
    gap: 22px !important;
    padding-left: 18px;
  }
  #site-nav .btn {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.nav-dropdown {
  background: rgba(6, 6, 6, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  min-width: 260px;
  overflow: hidden;
}
/* Cyan top rule that bleeds from the nav */
.nav-dropdown::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,209,255,0.35) 40%, rgba(0,209,255,0.35) 60%, transparent);
}

/* Dropdown links */
.nav-dropdown a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease;
  overflow: hidden;
}
.nav-dropdown a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,209,255,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.03) !important; }
.nav-dropdown a:hover::after { opacity: 1; }
.nav-dropdown a:hover .nd-label { color: #fff; }
.nav-dropdown a:hover .nd-arrow {
  color: var(--accent);
  opacity: 1;
  transform: translate(1px, -1px);
}

.nd-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.nd-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.nd-arrow {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  opacity: 0.6;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

/* ── MOBILE MENU ─────────────────────────────────────────────── */
#mobile-menu {
  position: fixed;
  inset: 0;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 9990;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  color: #fff;
  background: #050505 !important;
  transform: translateY(-105%);
  transition: transform 0.46s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-x: hidden;
  overflow-y: auto;
}
#mobile-menu.is-open { transform: translateY(0); }
.clone-overlay-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(0,209,255,0.24), transparent 34%),
    radial-gradient(ellipse at 12% 92%, rgba(0,209,255,0.18), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 44%),
    #050505 !important;
}
.clone-overlay-bg::after {
  content: "ONE X DONE";
  position: absolute;
  left: -4vw;
  bottom: -6vh;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(6rem, 20vw, 18rem);
  line-height: .8;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.035);
}
.clone-overlay-top {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 86px;
  color: #fff;
  background: rgba(5,5,5,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.clone-overlay-brand svg rect { stroke: rgba(255,255,255,0.24); }
.clone-overlay-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 86px);
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(22px, 4vh, 54px) 40px clamp(30px, 6vh, 84px);
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(34px, 8vw, 120px);
  align-items: end;
}
.clone-overlay-side {
  display: grid;
  gap: 28px;
  align-content: end;
  padding-bottom: 1vh;
}
.clone-overlay-side p {
  max-width: 320px;
  color: rgba(255,255,255,0.56);
  font-size: 15px;
  line-height: 1.6;
}
.clone-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.clone-social-row a,
.clone-social-row button {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.09em;
  color: #fff;
  background: rgba(255,255,255,0.045);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.clone-social-row a:hover,
.clone-social-row button:hover {
  transform: translateY(-3px);
  border-color: rgba(0,209,255,0.60);
  background: rgba(0,209,255,0.16);
}
.clone-link-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.clone-link-stack a,
.clone-link-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  width: auto;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 7.2vh, 6.2rem);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color .28s ease, transform .28s ease;
}
.clone-link-stack a:hover,
.clone-link-toggle:hover,
.clone-link-toggle[aria-expanded="true"] {
  color: var(--accent);
  transform: translateX(10px);
}
.clone-link-stack .clone-quote-link {
  color: var(--accent);
}
.clone-link-stack .clone-quote-link .clone-wave {
  background: var(--accent);
  box-shadow: 0 0 24px rgba(0,209,255,0.34);
}
.clone-toggle-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: .62em;
  height: .62em;
  margin-left: .05em;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .22em;
  line-height: 1;
  color: currentColor;
  transition: transform .28s ease, border-color .28s ease;
}
.clone-link-toggle[aria-expanded="true"] .clone-toggle-mark {
  transform: rotate(45deg);
  border-color: rgba(0,209,255,0.48);
}
.clone-wave {
  width: clamp(38px, 5.6vw, 82px);
  height: 18px;
  flex: none;
  opacity: 0;
  transform: translateX(-18px) scaleX(.55);
  transform-origin: left center;
  background:
    radial-gradient(circle at 8px 9px, currentColor 0 2px, transparent 2.5px),
    radial-gradient(circle at 24px 9px, currentColor 0 2px, transparent 2.5px),
    radial-gradient(circle at 40px 9px, currentColor 0 2px, transparent 2.5px),
    radial-gradient(circle at 56px 9px, currentColor 0 2px, transparent 2.5px),
    radial-gradient(circle at 72px 9px, currentColor 0 2px, transparent 2.5px);
  transition: opacity .28s ease, transform .28s ease;
}
.clone-link-stack a:hover .clone-wave,
.clone-link-toggle:hover .clone-wave,
.clone-link-toggle[aria-expanded="true"] .clone-wave {
  opacity: 1;
  transform: translateX(0) scaleX(1);
}
.clone-subnav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(860px, 100%);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  margin: 0 0 0 clamp(52px, 7vw, 104px);
  transform: translateY(-8px);
  transition: max-height .42s cubic-bezier(0.76, 0, 0.24, 1), opacity .25s ease, margin .35s ease, transform .35s ease;
}
.clone-subnav.is-open {
  max-height: 120px;
  opacity: 1;
  pointer-events: auto;
  margin-top: 10px;
  margin-bottom: 18px;
  transform: translateY(0);
}
.clone-subnav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.035);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.clone-subnav a:hover {
  color: #fff;
  background: rgba(0,209,255,0.12);
  border-color: rgba(0,209,255,0.42);
  transform: translateY(-2px);
}
.clone-subnav span {
  color: var(--accent);
}
@media (max-width: 900px) {
  .clone-desktop-links { display: none !important; }
  #mobile-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .clone-overlay-top {
    min-height: 70px;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  .clone-overlay-brand .font-display {
    font-size: 17px;
  }
  .clone-menu-button {
    min-height: 40px;
    padding: 8px 11px 8px 14px;
    gap: 10px;
  }
  .clone-menu-icon {
    width: 30px;
    gap: 7px;
  }
  .clone-overlay-inner {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 70px);
    align-items: start;
    gap: 20px;
    padding: 18px 20px 34px;
  }
  .clone-overlay-side {
    order: 2;
    gap: 16px;
    padding-bottom: 0;
  }
  .clone-social-row a,
  .clone-social-row button {
    width: 48px;
    height: 48px;
  }
  .clone-overlay-side p {
    max-width: 280px;
    font-size: 13px;
    line-height: 1.5;
  }
  .clone-link-stack {
    width: 100%;
  }
  .clone-link-stack a,
  .clone-link-toggle {
    width: 100%;
    justify-content: flex-start;
    font-size: clamp(2.25rem, 10.4vw, 4.1rem);
    line-height: .92;
    min-height: 0;
  }
  .clone-link-stack a:hover,
  .clone-link-toggle:hover,
  .clone-link-toggle[aria-expanded="true"] {
    transform: translateX(5px);
  }
  .clone-wave {
    width: 28px;
    height: 12px;
  }
  .clone-subnav {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-left: 34px;
    width: calc(100% - 34px);
  }
  .clone-subnav.is-open {
    max-height: 360px;
    margin-top: 7px;
    margin-bottom: 16px;
    width: calc(100% - 34px);
  }
  .clone-subnav a {
    min-height: 46px;
    padding: 11px 12px;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
    font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  }
}

@media (max-width: 420px) {
  .clone-link-stack a,
  .clone-link-toggle {
    font-size: clamp(2rem, 9.6vw, 3.25rem);
  }
  .clone-subnav.is-open {
    max-height: 350px;
  }
  .clone-overlay-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  #mobile-menu.has-open-subnav .clone-overlay-top {
    min-height: 62px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  #mobile-menu.has-open-subnav .clone-overlay-brand .font-display {
    font-size: 15px;
  }
  #mobile-menu.has-open-subnav .clone-overlay-inner {
    min-height: calc(100vh - 62px);
    gap: 0;
    padding-top: 12px;
    padding-bottom: 18px;
  }
  #mobile-menu.has-open-subnav .clone-overlay-side {
    display: none;
  }
  #mobile-menu.has-open-subnav .clone-link-stack a,
  #mobile-menu.has-open-subnav .clone-link-toggle {
    font-size: clamp(1.68rem, 8.5vw, 2.25rem);
    line-height: .86;
  }
  #mobile-menu.has-open-subnav .clone-wave {
    width: 24px;
    height: 10px;
  }
  #mobile-menu.has-open-subnav .clone-subnav {
    gap: 6px;
    margin-left: 28px;
    width: calc(100% - 28px);
  }
  #mobile-menu.has-open-subnav .clone-subnav.is-open {
    max-height: 220px;
    margin-top: 5px;
    margin-bottom: 9px;
    width: calc(100% - 28px);
  }
  #mobile-menu.has-open-subnav .clone-subnav a {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 9px !important;
    letter-spacing: 0.055em !important;
  }
}

/* ── BEFORE / AFTER SLIDER ───────────────────────────────────── */
.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #080808;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}
.before-after-slider > img,
.before-after-slider .before-layer > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-slider .before-layer {
  overflow: hidden;
  z-index: 1;
}
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.project-ba {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--hair);
  background: #080808;
  isolation: isolate;
}
.generated-ba {
  min-height: 320px;
  cursor: ew-resize;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.generated-ba:hover {
  transform: translateY(-4px);
  border-color: rgba(0,209,255,0.34);
  box-shadow: 0 24px 80px rgba(0,0,0,0.34), 0 0 42px rgba(0,209,255,0.10);
}
.ba-generated {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.03);
}
.ba-generated-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.ba-generated-before .ba-generated {
  filter: saturate(.78) contrast(.96) brightness(.78);
}
.generated-ba::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.28) 70%, rgba(0,0,0,0.66)),
    linear-gradient(90deg, rgba(0,0,0,0.18), transparent 30%, transparent 70%, rgba(0,0,0,0.14));
  z-index: 2;
}
.ba-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-after {
  background:
    linear-gradient(120deg, transparent 18%, rgba(255,255,255,0.18) 34%, transparent 45%),
    radial-gradient(circle at 72% 28%, rgba(0,209,255,0.18), transparent 22%),
    linear-gradient(180deg, #171717, #070707);
}
.ba-before {
  background:
    radial-gradient(circle at 24% 72%, rgba(190,190,190,0.42), transparent 12%),
    radial-gradient(circle at 62% 62%, rgba(150,150,150,0.32), transparent 13%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 24px),
    linear-gradient(180deg, #111, #050505);
}
.ba-room {
  position: absolute;
  inset: 16% 12% 18%;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
}
.ba-room span {
  position: absolute;
  background: rgba(255,255,255,0.13);
}
.ba-room span:nth-child(1) { left: 12%; right: 12%; bottom: 18%; height: 1px; }
.ba-room span:nth-child(2) { top: 18%; right: 16%; width: 28%; height: 38%; border: 1px solid rgba(0,209,255,0.24); background: rgba(0,209,255,0.08); }
.ba-room span:nth-child(3) { left: 14%; bottom: 18%; width: 30%; height: 26%; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); }
.ba-dust .ba-before::after,
.ba-grout .ba-before::after,
.ba-glass .ba-before::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 36% 56%, rgba(220,220,220,0.28), transparent 10%), radial-gradient(circle at 68% 44%, rgba(220,220,220,0.20), transparent 9%);
  filter: blur(2px);
}
.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0,209,255,0.95);
  box-shadow: 0 0 24px rgba(0,209,255,0.65);
  z-index: 5;
  transition: left .18s ease;
  transform: translateX(-50%);
}
.slider-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,209,255,0.65);
  background: rgba(6,6,6,0.86);
  box-shadow: 0 12px 34px rgba(0,0,0,0.5);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.before-after-slider .slider-handle svg {
  display: none;
}
.before-after-slider .slider-handle {
  pointer-events: auto;
}
.generated-ba:hover .slider-handle,
.generated-ba.is-dragging .slider-handle {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(0,209,255,0.18);
  border-color: var(--accent);
}
.slider-handle::before,
.slider-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.slider-handle::before { left: 11px; transform: translateY(-50%) rotate(-45deg); }
.slider-handle::after { right: 11px; transform: translateY(-50%) rotate(135deg); }
.ba-label {
  position: absolute;
  top: 14px;
  z-index: 4;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ba-label-before { left: 14px; color: rgba(255,255,255,0.48); }
.ba-label-after { right: 14px; color: var(--accent); }
.ba-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
}
.ba-ui-rail {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 46px;
  height: 2px;
  z-index: 4;
  background: rgba(255,255,255,0.16);
  overflow: hidden;
}
.ba-ui-rail span {
  display: block;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(0,209,255,0.55);
  transition: width .18s ease;
}
.ba-quick {
  position: absolute;
  right: 14px;
  bottom: 54px;
  z-index: 4;
  display: flex;
  gap: 6px;
}
.ba-quick button {
  min-height: 30px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(6,6,6,0.58);
  color: rgba(255,255,255,0.72);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.ba-quick button:hover {
  color: #fff;
  border-color: rgba(0,209,255,0.48);
  background: rgba(0,209,255,0.16);
}
.ba-caption strong { font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 19px; }
.ba-caption span { font-size: 12px; color: rgba(255,255,255,0.48); text-align: right; }

.matched-ba-showcase {
  display: grid;
  gap: 14px;
}
.matched-ba-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.matched-ba-tools button,
.matched-ba-preview button {
  min-height: 34px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.68);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.matched-ba-tools button:hover,
.matched-ba-tools button.is-active,
.matched-ba-preview button:hover {
  color: #fff;
  border-color: rgba(0,209,255,0.48);
  background: rgba(0,209,255,0.12);
}
.matched-ba-preview {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  min-height: 106px;
  padding: 18px;
  border: 1px solid rgba(0,209,255,0.18);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 28% 0%, rgba(0,209,255,0.16), transparent 54%),
    rgba(255,255,255,0.025);
}
.matched-ba-preview strong {
  display: block;
  margin-top: 8px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: .95;
}
.matched-ba-preview p {
  max-width: 640px;
  margin-top: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.55;
}
.matched-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.matched-ba-card {
  border: 1px solid var(--hair);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  cursor: pointer;
  outline: none;
}
.matched-ba-card:hover,
.matched-ba-card:focus-visible,
.matched-ba-card.is-selected {
  transform: translateY(-4px);
  border-color: rgba(0,209,255,0.34);
  box-shadow: 0 24px 80px rgba(0,0,0,0.34), 0 0 42px rgba(0,209,255,0.10);
}
.matched-ba-card.is-selected {
  border-color: rgba(0,209,255,0.58);
}
.matched-ba-card.is-hidden {
  display: none;
}
.matched-ba-head {
  min-height: 92px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  border-bottom: 1px solid var(--hair);
}
.matched-ba-head strong {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
}
.matched-ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.matched-ba-pair figure {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  margin: 0;
  background: #080808;
}
.matched-ba-pair figure + figure {
  border-left: 1px solid rgba(0,209,255,0.32);
}
.matched-ba-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.matched-ba-pair figure:first-child img {
  filter: saturate(.82) contrast(.96) brightness(.82);
}
.matched-ba-card:hover img {
  transform: scale(1.035);
}
.matched-ba-card.is-selected img {
  transform: scale(1.025);
}
.matched-ba-pair figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(6,6,6,0.58);
  color: rgba(255,255,255,0.78);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.matched-ba-pair figure:last-child figcaption {
  color: var(--accent);
}

.service-reveal {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 15px;
  border: 1px solid rgba(0,209,255,0.24);
  border-radius: 12px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}
.pcard:hover .service-reveal,
.pcard:focus-visible .service-reveal {
  opacity: 1;
  transform: translateY(0);
}
.service-reveal span,
.service-reveal small {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.service-reveal strong {
  display: block;
  margin: 5px 0;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  color: #fff;
}

.sydney-map {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 16px;
  margin-bottom: 18px;
}
.map-board {
  position: relative;
  min-height: 190px;
  border: 1px solid var(--hair);
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 12.5% 100%,
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
}
.map-board::before {
  content: '';
  position: absolute;
  inset: 20px 12% 18px;
  border: 1px solid rgba(0,209,255,0.16);
  border-radius: 48% 42% 52% 38%;
  transform: rotate(-8deg);
}
.map-board span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  box-shadow: 0 0 0 7px rgba(255,255,255,0.035);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.map-board span.is-active {
  background: var(--accent);
  box-shadow: 0 0 0 9px rgba(0,209,255,0.12), 0 0 28px rgba(0,209,255,0.55);
  transform: scale(1.18);
}
.map-board span:nth-child(1) { left: 58%; top: 22%; }
.map-board span:nth-child(2) { left: 28%; top: 52%; }
.map-board span:nth-child(3) { left: 44%; top: 48%; }
.map-board span:nth-child(4) { left: 36%; top: 70%; }
.map-board span:nth-child(5) { left: 56%; top: 76%; }
.map-board span:nth-child(6) { left: 68%; top: 55%; }
.map-readout {
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.025);
}
.map-readout strong {
  display: block;
  margin-top: 16px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 34px;
  line-height: 1;
}
.map-readout p {
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.65;
}

.quote-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: min(420px, 70vw);
}
.quote-rail {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
}
.quote-rail span {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--accent);
  transition: width .3s ease;
}
.quote-summary {
  display: grid;
  gap: 4px;
}

@media (max-width: 900px) {
  .hero-shell {
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: clamp(106px, 15vh, 128px);
    padding-bottom: clamp(118px, 18vh, 150px);
  }
  .hero-shell h1 {
    font-size: clamp(2.75rem, 11vw, 4.5rem) !important;
    max-width: 7.8em;
  }
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }
  .hero-ticker {
    bottom: 76px;
  }
  .quote-panel {
    min-height: auto;
  }
  .before-after-grid,
  .matched-ba-grid,
  .sydney-map { grid-template-columns: 1fr; }
  .matched-ba-preview {
    align-items: start;
    flex-direction: column;
  }
  .hero-quote-cue { display: none; }
}

@media (max-width: 767px) {
  .grid.grid-cols-12 {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .grid.grid-cols-12 > [class*="col-span-"] {
    grid-column: 1 / -1 !important;
  }
  footer {
    text-align: center;
  }
  footer .grid.grid-cols-12 {
    justify-items: center;
  }
  footer .grid.grid-cols-12 > [class*="col-span-"] {
    width: 100%;
  }
  footer > .relative.z-10.grid.grid-cols-12 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: start;
    gap: 34px 16px !important;
  }
  footer > .relative.z-10.grid.grid-cols-12 > [class*="col-span-"] {
    grid-column: auto !important;
  }
  footer > .relative.z-10.grid.grid-cols-12 > [class*="col-span-"]:first-child {
    grid-column: 1 / -1 !important;
  }
  footer > .relative.z-10.grid.grid-cols-12 > [class*="col-span-"]:last-child {
    grid-column: 1 / -1 !important;
  }
  footer .flex.items-center.gap-3 {
    justify-content: center;
  }
  footer .mt-6.flex.items-center.gap-5 {
    justify-content: center;
  }
  footer p,
  footer ul,
  footer address {
    margin-left: auto;
    margin-right: auto;
  }
  footer ul {
    display: grid;
    justify-items: center;
  }
  footer address li {
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    gap: 4px !important;
  }
  footer address,
  footer address * {
    font-style: normal !important;
  }
  footer address .t-index {
    width: auto !important;
  }
  footer address a,
  footer address span {
    line-height: 1.35;
  }
  footer address a[href^="mailto:"] {
    font-size: 11px;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  footer .mt-8.grid.grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(320px, 100%);
    margin-left: auto;
    margin-right: auto;
    gap: 16px 18px !important;
  }
  footer .relative.z-10.hair-t .flex {
    justify-content: center;
  }
  footer .relative.z-10.hair-t .grid.grid-cols-12 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  footer .relative.z-10.hair-t .grid.grid-cols-12 > [class*="col-span-"] {
    grid-column: 1 / -1 !important;
  }
  footer .relative.z-10.hair-t .flex.flex-wrap {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }
  footer .relative.z-10.hair-t .inline-flex {
    justify-content: center;
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .hero-shell {
    justify-content: flex-start;
    padding-top: 116px;
    padding-bottom: 72px;
  }
  .hero-shell h1 {
    font-size: clamp(4.5rem, min(10vw, 17vh), 8rem) !important;
  }
  .hero-copy p {
    max-width: 56ch;
  }
  .hero-ticker {
    display: none;
  }
  .hero-quote-cue {
    display: none;
  }
}

@media (max-width: 560px) {
  .clone-nav-shell {
    gap: 10px;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .clone-brand {
    max-width: calc(100vw - 140px);
  }
  .clone-brand svg {
    flex: 0 0 auto;
  }
  .clone-brand .font-display {
    font-size: 18px !important;
    letter-spacing: 0;
  }
  .clone-brand .t-index {
    max-width: 178px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .clone-menu-button {
    flex: 0 0 auto;
    gap: 8px;
    min-height: 40px;
    padding: 8px 10px 8px 12px;
  }
  .clone-menu-icon {
    width: 24px;
    gap: 6px;
  }
  .font-display {
    letter-spacing: 0;
  }
  .hero-shell {
    padding-top: 102px;
    padding-bottom: 112px;
  }
  main h1.font-display,
  section h1.font-display,
  .hero-shell h1 {
    max-width: calc(100vw - 48px) !important;
    font-size: clamp(2.32rem, 10.4vw, 3rem) !important;
    line-height: .92 !important;
  }
  main h2.font-display,
  section h2.font-display {
    max-width: calc(100vw - 48px);
    font-size: clamp(1.62rem, 7vw, 2.05rem) !important;
    line-height: 1 !important;
  }
  .hero-copy p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 14px !important;
  }
  .hero-stats .font-display {
    font-size: clamp(1.45rem, 7vw, 1.75rem) !important;
    line-height: 1 !important;
  }
  .hero-stats .t-meta {
    font-size: 9px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.08em !important;
  }
  .hero-ticker {
    display: none;
  }
}

@media (max-width: 360px) {
  .clone-nav-shell {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .clone-brand {
    gap: 9px;
    max-width: calc(100vw - 84px);
  }
  .clone-brand .t-index {
    display: none;
  }
  .clone-menu-text {
    display: none;
  }
  .clone-menu-button {
    min-width: 44px;
    justify-content: center;
    padding: 9px;
  }
  main h1.font-display,
  section h1.font-display,
  .hero-shell h1 {
    font-size: clamp(2.08rem, 10.2vw, 2.35rem) !important;
  }
}

/* ── QUOTE MODAL ─────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (min-width: 768px) {
  .modal-overlay {
    align-items: center;
    padding: 1.5rem;
  }
}
.modal-overlay.is-open { display: flex; }
.modal-inner {
  background: #060606;
  border: 1px solid var(--hair);
  border-radius: 0;
  width: 100%;
  max-width: 900px;
  max-height: 100vh;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .modal-inner {
    max-height: 90vh;
    border-radius: 24px;
  }
}

/* ── MOTION PREFERENCES ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .hero-pan-down { animation: none !important; }
  .accent-bar::after { transition: none !important; }
  [data-tr-word] > span,
  [data-tr-block] {
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* ── MASKED WORD REVEAL (scroll-driven) ──────────────────────── */
[data-tr-word] {
  display: inline-block;
  clip-path: inset(0 -0.3em -0.1em -0.3em);
  vertical-align: top;
  line-height: inherit;
}
[data-tr-word] > span {
  display: inline-block;
  will-change: transform, opacity;
}
[data-tr-block] { will-change: transform, opacity, filter; }
[data-tr-word]:not([data-tr-ready]) > span {
  transform: translateY(110%);
  opacity: 0;
}
[data-tr-block]:not([data-tr-ready]) {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
}
