/* ============================================================
   AJ Design Group — BIM Overflow · full-page SLIDE DECK
   White canvas · one blue accent (#2463eb) · Geist · 2px geometry
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #111318;
  --ink-deep: #0a0c10;
  --ink-2: #14171d;
  --primary: #2463eb;
  --primary-600: #1f55cf;
  --primary-tint: #eef3ff;
  --primary-soft: #5b8dff;
  --border: #ebedf1;
  --border-2: #e2e5ea;
  --g50: #f8f9fb;
  --g100: #f3f4f6;
  --g200: #e5e7eb;
  --g300: #d1d5db;
  --g400: #9ca3af;
  --g500: #6b7280;
  --g600: #4b5563;
  --radius: 3px;
  --radius-lg: 6px;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
  --pad-x: clamp(20px, 5vw, 76px);
  --pad-top: clamp(64px, 9vh, 104px);
  --pad-bottom: clamp(66px, 9vh, 96px);
  --shadow-sm: 0 1px 2px rgba(16, 19, 24, 0.04), 0 4px 16px -8px rgba(16, 19, 24, 0.08);
  --shadow-md: 0 12px 40px -16px rgba(16, 19, 24, 0.18);
  --shadow-lg: 0 40px 120px -40px rgba(8, 10, 16, 0.55);
  --shadow-float: 0 50px 90px -40px rgba(16, 30, 60, 0.45), 0 18px 40px -22px rgba(16, 30, 60, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv01";
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--primary); color: #fff; }

/* ============================================================
   DECK MECHANICS — CSS scroll-snap foundation
   ============================================================ */
.deck {
  height: 100vh;
  height: 100svh;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.deck::-webkit-scrollbar { width: 0; height: 0; display: none; }

.slide {
  position: relative;
  height: 100vh;
  height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.slide__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
  padding: var(--pad-top) var(--pad-x) var(--pad-bottom);
}
/* Vertical centring is handled by `.slide { place-items:center }`. When content
   exceeds the viewport the inner becomes full-height (max-height:100%) and scrolls
   from the TOP — block flow, so nothing is ever clipped above the scroll area. */
.slide__inner::-webkit-scrollbar { width: 5px; }
.slide__inner::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 10px; }
.dark .slide__inner { scrollbar-color: rgba(255,255,255,.18) transparent; }
.dark .slide__inner::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); }

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

/* ============================================================
   PERSISTENT DECK CHROME
   ============================================================ */
.deck-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60;
  background: rgba(16,19,24,.06);
}
.deck-progress__bar { height: 100%; width: 11%; background: var(--primary); transition: width .55s var(--ease); }

.deck-chrome--top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 55;
  display: flex; align-items: center; gap: 18px;
  padding: 18px var(--pad-x);
  pointer-events: none;
}
.deck-chrome--top > * { pointer-events: auto; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 28px; height: 28px; object-fit: contain; }
.brand__name { font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em; transition: color .4s; }
.deck-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--g400); margin-right: auto; padding-left: 18px; position: relative; transition: color .4s;
  white-space: nowrap;
}
.deck-label::before { content: ""; position: absolute; left: 0; top: 50%; width: 1px; height: 13px; transform: translateY(-50%); background: var(--border-2); }
.deck-cta {
  font-size: 0.82rem; font-weight: 500; letter-spacing: -0.01em;
  padding: 9px 18px; border-radius: 100px; border: 1px solid var(--border-2);
  color: var(--ink); transition: all .3s var(--ease); white-space: nowrap;
}
.deck-cta:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-1px); }

/* Dot rail */
.deck-dots {
  position: fixed; right: clamp(14px, 2vw, 30px); top: 50%; transform: translateY(-50%);
  z-index: 55; display: flex; flex-direction: column; gap: 13px; align-items: center;
}
.deck-dot {
  width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--g300); background: transparent;
  cursor: pointer; padding: 0; transition: all .35s var(--ease); position: relative;
}
.deck-dot:hover { border-color: var(--primary); transform: scale(1.2); }
.deck-dot.active { border-color: var(--primary); background: var(--primary); }
.deck-dot.active::after {
  content: ""; position: absolute; inset: -5px; border: 1px solid var(--primary); border-radius: 50%; opacity: .35;
}

/* Bottom-right controls */
.deck-controls {
  position: fixed; right: clamp(20px, 5vw, 76px); bottom: clamp(20px, 4vh, 34px);
  z-index: 55; display: flex; align-items: center; gap: 12px;
}
.deck-counter {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--g400);
  margin-right: 4px; transition: color .4s;
}
.deck-counter b { color: var(--ink); font-weight: 500; transition: color .4s; }
.deck-counter__sep { margin: 0 5px; opacity: .6; }
.deck-arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-2); background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--ink); cursor: pointer; display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.deck-arrow svg { width: 20px; height: 20px; }
.deck-arrow:hover:not(:disabled) { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.deck-arrow:disabled { opacity: .32; cursor: default; }

/* Dark-slide chrome adaptation */
body.chrome-dark .brand__name { color: #fff; }
body.chrome-dark .brand__mark { filter: brightness(0) invert(1); }
body.chrome-dark .deck-label { color: rgba(255,255,255,.6); }
body.chrome-dark .deck-label::before { background: rgba(255,255,255,.2); }
body.chrome-dark .deck-cta { color: #fff; border-color: rgba(255,255,255,.25); }
body.chrome-dark .deck-cta:hover { background: #fff; color: var(--ink); border-color: #fff; }
body.chrome-dark .deck-progress { background: rgba(255,255,255,.1); }
body.chrome-dark .deck-counter { color: rgba(255,255,255,.55); }
body.chrome-dark .deck-counter b { color: #fff; }
body.chrome-dark .deck-dot { border-color: rgba(255,255,255,.35); }
body.chrome-dark .deck-dot.active { background: var(--primary-soft); border-color: var(--primary-soft); }
body.chrome-dark .deck-dot.active::after { border-color: var(--primary-soft); }
body.chrome-dark .deck-arrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
body.chrome-dark .deck-arrow:hover:not(:disabled) { background: #fff; color: var(--ink); border-color: #fff; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--primary); display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--primary); display: inline-block; }
.dark .eyebrow { color: var(--primary-soft); }

h1, h2, h3 { font-weight: 600; letter-spacing: -0.022em; line-height: 1.05; }
.display { font-size: clamp(2.5rem, 5.6vw, 4.7rem); font-weight: 600; line-height: 1.0; letter-spacing: -0.032em; }
.h2 { font-size: clamp(1.85rem, 3.8vw, 3.1rem); line-height: 1.04; letter-spacing: -0.028em; }
.h3 { font-size: clamp(1.05rem, 1.5vw, 1.28rem); letter-spacing: -0.015em; line-height: 1.2; }
.accent { color: var(--primary); }
.dark .accent { color: var(--primary-soft); }

.lead { font-size: clamp(1rem, 1.35vw, 1.22rem); line-height: 1.5; color: var(--g600); font-weight: 400; max-width: 64ch; }
.dark .lead { color: rgba(255,255,255,.72); }

.section-head { max-width: 820px; margin-bottom: clamp(26px, 3.4vh, 48px); flex: none; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head .h2 { margin-bottom: 18px; }
.section-head--tight { margin-bottom: clamp(20px, 2.6vh, 34px); }
.section-head--tight .lead { font-size: clamp(0.96rem, 1.15vw, 1.1rem); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans);
  font-size: 0.95rem; font-weight: 500; letter-spacing: -0.01em; padding: 13px 22px;
  border-radius: var(--radius); border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), background .25s var(--ease), box-shadow .35s var(--ease), color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 24px -10px rgba(36,99,235,.7); }
.btn--primary:hover { background: var(--primary-600); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(36,99,235,.75); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.22); }
.dark .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.05); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(0,0,0,.5); }
.btn--lg { padding: 15px 28px; font-size: 1rem; }

/* ============================================================
   REVEAL — replays each time a slide becomes active
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.slide.is-active .reveal { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   MOTION LAYER (motion.dev) — JS-driven entrances + gesture springs
   `html.anim` is added pre-paint ONLY when motion is allowed; the Motion
   module then owns the reveals (spring rise + fade, replayed per slide).
   `.anim-ready` is a no-JS failsafe that reveals everything if the module
   never boots. Gesture springs ride CSS custom props (`--ph` hover,
   `--pp` press) applied via the standalone `scale` property, so they
   never clash with the existing `transform`-based :hover styles.
   ============================================================ */
html.anim .reveal { opacity: 0; transition: none; }
html.anim .slide.is-active .reveal { opacity: 0; }                 /* Motion drives it, not is-active */
html.anim .viewer.reveal { opacity: 1 !important; transform: none !important; } /* never hide/animate the APS figure */
html.anim.anim-ready .reveal,
html.anim.anim-ready .slide.is-active .reveal {
  opacity: 1 !important; transform: none !important;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.link-cta, .scroll-cue, .btn, .deck-cta, .deck-arrow, .tool, .gcard, .vsw, .devicon {
  --ph: 1; --pp: 1;
  scale: calc(var(--ph) * var(--pp));
}

/* parallax headroom for the hero BIM visual (Motion drives --py within the scale) */
html.anim .slide--cover .hero__media { transform: scale(1.08); translate: 0 var(--py, 0); }

/* ============================================================
   01 · COVER / HERO
   ============================================================ */
.slide--cover { background: #fff; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.8) 30%, rgba(255,255,255,.28) 62%, rgba(255,255,255,.02) 100%),
    linear-gradient(to top, rgba(255,255,255,.82) 0%, rgba(255,255,255,0) 26%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(36,99,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,99,235,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 18% 42%, #000 0%, transparent 68%);
  mask-image: radial-gradient(120% 90% at 18% 42%, #000 0%, transparent 68%);
}
.hero__inner { justify-content: center; }
.hero__name { font-size: clamp(0.95rem, 1.15vw, 1.08rem); font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.hero__role { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--g500); margin-top: 5px; margin-bottom: clamp(26px, 4.2vh, 46px); }
.hero__role span { color: var(--primary); }
.hero h1 { max-width: 15ch; margin-bottom: 24px; }
.hero__sub { max-width: 50ch; font-size: clamp(1rem, 1.4vw, 1.26rem); color: var(--g600); line-height: 1.55; }
.hero__foot { margin-top: clamp(34px, 5.5vh, 60px); display: flex; align-items: center; gap: 22px 44px; flex-wrap: wrap; }
.link-cta { display: inline-flex; align-items: center; gap: 9px; font-size: 1rem; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; position: relative; padding-bottom: 5px; }
.link-cta svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.link-cta::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--primary); transform: scaleX(.32); transform-origin: left; transition: transform .45s var(--ease); }
.link-cta:hover::after { transform: scaleX(1); }
.link-cta:hover svg { transform: translateX(5px); }
.dark .link-cta { color: #fff; }
.hero__disciplines {
  display: flex; align-items: center; gap: 11px 15px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g500);
}
.hero__disciplines b { color: var(--ink); font-weight: 500; }
.hero__disciplines .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--primary); }

/* ============================================================
   02 · OFFER
   ============================================================ */
.offer__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.offer__quote {
  font-size: clamp(1.1rem, 1.65vw, 1.45rem); font-weight: 500; line-height: 1.4; letter-spacing: -0.02em;
  border-left: 2px solid var(--primary); padding-left: 20px; color: var(--ink); margin-bottom: 24px;
}
.offer__quote span { color: var(--g500); }
/* editorial de-carded trio (no boxes — hairline columns) */
.modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 6px; }
.mode { padding: 18px 20px 6px 0; border-top: 1px solid var(--border); }
.mode:not(:last-child) { border-right: 1px solid var(--border); }
.mode:not(:first-child) { padding-left: 22px; }
.mode__ic { color: var(--primary); margin-bottom: 12px; }
.mode__ic svg { width: 20px; height: 20px; }
.mode h3 { margin-bottom: 6px; font-size: 1rem; }
.mode p { color: var(--g500); font-size: 0.86rem; line-height: 1.45; }
.optout { margin-top: 22px; display: inline-flex; align-items: center; gap: 12px; font-size: 0.98rem; color: var(--ink); font-weight: 500; }
.optout .pill { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); background: var(--primary-tint); padding: 6px 11px; border-radius: 100px; }
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid var(--border); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--border); }
.step__n { font-family: var(--mono); font-size: 11px; color: var(--primary); letter-spacing: 0.12em; padding-top: 3px; }
.step h3 { margin-bottom: 5px; font-size: 1.02rem; }
.step p { color: var(--g500); font-size: 0.9rem; line-height: 1.45; }

/* ============================================================
   03 · DISCIPLINES (tabs)
   ============================================================ */
.disc { display: grid; grid-template-columns: 290px 1fr; gap: clamp(22px, 3vw, 44px); align-items: start; flex: 1; min-height: 0; }
.disc__tabs { display: flex; flex-direction: column; gap: 6px; }
.disc__tab {
  text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--sans);
  padding: 15px 18px; border-radius: var(--radius-lg); display: flex; align-items: center; gap: 14px;
  transition: background .3s var(--ease); border: 1px solid transparent; color: var(--g500);
}
.disc__tab:hover { background: var(--g50); }
.disc__tab.active { background: var(--ink-deep); color: #fff; border-color: var(--ink-deep); }
.disc__tab__ic { width: 32px; height: 32px; flex: none; display: grid; place-items: center; border-radius: var(--radius); background: var(--g100); color: var(--g500); transition: .3s; }
.disc__tab.active .disc__tab__ic { background: rgba(255,255,255,.1); color: var(--primary-soft); }
.disc__tab__ic svg { width: 18px; height: 18px; }
.disc__tab b { display: block; font-size: 0.98rem; font-weight: 550; letter-spacing: -0.01em; color: inherit; }
.disc__tab.active b { color: #fff; }
.disc__tab small { font-family: var(--mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--g400); }
.disc__tab.active small { color: var(--primary-soft); }
.disc__panel { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 40px); background: linear-gradient(180deg, #fff, var(--g50)); }
.disc__panel[hidden] { display: none; }
.disc__panel__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 6px; }
.disc__panel h3 { font-size: clamp(1.35rem, 2.1vw, 1.85rem); letter-spacing: -0.02em; }
.disc__badge { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 7px 12px; border-radius: 100px; background: var(--primary-tint); color: var(--primary); white-space: nowrap; }
.disc__badge--depth { background: var(--ink-deep); color: #fff; }
.disc__panel > p { color: var(--g600); margin: 14px 0 22px; max-width: 62ch; font-size: 0.98rem; line-height: 1.5; }
.disc__cap { font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; color: var(--g400); margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--border); }
.disc__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.disc__list li { list-style: none; display: flex; gap: 11px; align-items: flex-start; font-size: 0.93rem; color: var(--ink); }
.disc__list li svg { width: 17px; height: 17px; color: var(--primary); flex: none; margin-top: 2px; }

/* ============================================================
   04 · DIFFERENTIATOR (dark)
   ============================================================ */
.dark { background: var(--ink-deep); color: #fff; }
.dark .h2, .dark h3 { color: #fff; }
.diff { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.diff__head .eyebrow { margin-bottom: 20px; }
.diff__head .h2 { margin-bottom: 20px; }
.diff__head .lead { margin-top: 0; }
.diff__points { margin-top: 28px; display: grid; gap: 16px; }
.diff__point { display: flex; gap: 15px; align-items: flex-start; }
.diff__point svg { width: 19px; height: 19px; color: var(--primary-soft); flex: none; margin-top: 3px; }
.diff__point b { font-weight: 550; }
.diff__point p { color: rgba(255,255,255,.62); font-size: 0.92rem; margin-top: 2px; line-height: 1.45; }
.terminal { background: #0f1217; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); font-family: var(--mono); }
.terminal__bar { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,.07); }
.terminal__bar .dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.16); }
.terminal__bar .dot:nth-child(1) { background: #ff5f57; } .terminal__bar .dot:nth-child(2) { background: #febc2e; } .terminal__bar .dot:nth-child(3) { background: #28c840; }
.terminal__bar span { margin-left: 10px; font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.4); text-transform: uppercase; }
.terminal__body { padding: 20px 22px 24px; font-size: 12.5px; line-height: 1.85; }
.terminal__body .ln { display: flex; gap: 12px; opacity: 0; transform: translateX(-8px); }
.terminal__body.run .ln { animation: tline .5s var(--ease) forwards; }
.terminal__body .ln:nth-child(1){animation-delay:.1s} .terminal__body .ln:nth-child(2){animation-delay:.35s}
.terminal__body .ln:nth-child(3){animation-delay:.6s} .terminal__body .ln:nth-child(4){animation-delay:.85s}
.terminal__body .ln:nth-child(5){animation-delay:1.1s} .terminal__body .ln:nth-child(6){animation-delay:1.35s}
.terminal__body .ln:nth-child(7){animation-delay:1.6s}
@keyframes tline { to { opacity: 1; transform: none; } }
.terminal .pfx { color: var(--primary-soft); } .terminal .ok { color: #28c840; } .terminal .mut { color: rgba(255,255,255,.45); }
@media (prefers-reduced-motion: reduce){ .terminal__body .ln{opacity:1;transform:none;animation:none!important} }

/* ============================================================
   05 · TOOLS (4-up)
   ============================================================ */
/* immersive full-bleed demo tiles — media is the hero, copy overlaid */
.tools__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tool {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; border: 0;
  background: #0c0e12; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tool:hover { box-shadow: var(--shadow-md); } /* lift handled by Motion's spring scale (--ph) */
.tool__media { position: absolute; inset: 0; overflow: hidden; cursor: pointer; }
.tool__media img, .tool__media video { width: 100%; height: 100%; object-fit: cover; }
.tool__media video { position: absolute; inset: 0; opacity: 0; transition: opacity .4s; }
.tool.playing .tool__media video { opacity: 1; }
.tool.playing .tool__poster { opacity: 0; pointer-events: none; }
.tool__poster { position: absolute; inset: 0; transition: opacity .4s; }
.tool__poster img { filter: saturate(.92) contrast(1.02); transition: transform 1.2s var(--ease); transform: scale(1.03); }
.tool:hover .tool__poster img { transform: scale(1.08); }
.tool__poster::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(8,10,16,.82) 2%, rgba(8,10,16,.12) 46%, rgba(8,10,16,.18)); transition: opacity .4s; }
.tool__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.94); color: var(--ink); padding: 8px 17px 8px 8px; border-radius: 100px;
  font-size: 12.5px; font-weight: 500; transition: transform .35s var(--ease), opacity .35s; box-shadow: 0 10px 30px -10px rgba(0,0,0,.5); border: 0; cursor: pointer; font-family: var(--sans);
}
.tool:hover .tool__play { transform: translate(-50%,-50%) scale(1.06); }
.tool__play .ic { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); display: grid; place-items: center; }
.tool__play .ic svg { width: 12px; height: 12px; color: #fff; transform: translateX(1px); }
.tool.playing .tool__play { opacity: 0; pointer-events: none; }
.tool__sound { position: absolute; right: 14px; top: 14px; z-index: 4; width: 36px; height: 36px; border-radius: 50%; background: rgba(8,10,16,.55); border: 1px solid rgba(255,255,255,.2); color: #fff; cursor: pointer; display: none; place-items: center; backdrop-filter: blur(6px); }
.tool.playing .tool__sound { display: grid; }
.tool__sound svg { width: 15px; height: 15px; }
.tool__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 20px 20px 18px; color: #fff; pointer-events: none; transition: opacity .4s; }
.tool.playing .tool__body { opacity: 0; }
.tool__tag { font-family: var(--mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.66); margin-bottom: 7px; }
.tool__name { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.02em; color: #fff; display: flex; align-items: baseline; gap: 3px; }
.tool__tm { font-size: 0.62em; color: var(--primary-soft); font-weight: 500; transform: translateY(-2px); }
.tool__body p { color: rgba(255,255,255,.82); font-size: 0.82rem; line-height: 1.45; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s, margin-top .5s var(--ease); }
.tool:hover .tool__body p { max-height: 5em; opacity: 1; margin-top: 8px; }

/* ============================================================
   06 · LIVE 3D
   ============================================================ */
.slide--live3d { background: radial-gradient(125% 95% at 50% 14%, #eef3fb 0%, #ffffff 62%); }
.live3d { align-items: center; text-align: center; }
.live3d__head { max-width: 640px; margin: 0 auto clamp(14px, 2.2vh, 26px); }
.live3d__head .eyebrow { justify-content: center; margin-bottom: 14px; }
.live3d__head .h2 { font-size: clamp(1.7rem, 3vw, 2.55rem); }
.live3d__head .lead { margin: 12px auto 0; font-size: clamp(0.95rem, 1.15vw, 1.08rem); }
.viewer { width: 100%; max-width: 1080px; margin: 0 auto; }
.viewer--showpiece { max-width: 1180px; }
.viewer__frame {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden;
  /* item 3: NO fill — truly transparent so the model floats on the slide; keep only the dropshadow (no panel) */
  background: transparent;
  box-shadow: var(--shadow-float);
}
/* item 3: keep the whole APS DOM chain transparent so the alpha clear shows through */
.aps-stage, .aps-stage canvas,
.aps-stage .adsk-viewing-viewer, .aps-stage .canvas-wrap,
.viewer__frame canvas { background: transparent !important; }

/* Headless APS canvas mounts here; fades in once geometry is ready */
.aps-stage { position: absolute; inset: 0; width: 100%; height: 100%; cursor: grab; opacity: 0; transition: opacity .7s var(--ease); }
.aps-stage:active { cursor: grabbing; }
.viewer__frame.ready .aps-stage { opacity: 1; }
.viewer__frame.failed .aps-stage { opacity: 0; }
/* defensive: hide any Autodesk UI should a GuiViewer3D fallback ever run */
.aps-stage .adsk-toolbar, .aps-stage .adsk-control, .aps-stage .viewcube, .aps-stage .docking-panel,
.aps-stage .adsk-viewing-viewer .toolbar { display: none !important; }

/* poster fallback — shown before load and if anything fails */
.viewer__poster { position: absolute; inset: 0; opacity: 1; transition: opacity .7s var(--ease); }
.viewer__poster img { width: 100%; height: 100%; object-fit: cover; }
.viewer__poster::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 80% at 50% 40%, transparent 40%, rgba(8,12,22,.10) 100%); }
.viewer__frame.ready .viewer__poster { opacity: 0; pointer-events: none; }
.viewer__frame.failed .viewer__poster { opacity: 1; }

/* loading overlay */
.viewer__loading {
  position: absolute; inset: 0; z-index: 4; display: flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--g500);
  background: rgba(248,250,252,.5); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .3s;
}
.viewer__frame.loading .viewer__loading { opacity: 1; }
.viewer__loading .spin { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border-2); border-top-color: var(--primary); animation: vspin .8s linear infinite; }
@keyframes vspin { to { transform: rotate(360deg); } }

/* live badge */
.viewer__live {
  position: absolute; top: 16px; left: 16px; z-index: 5; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
  background: rgba(255,255,255,.82); backdrop-filter: blur(6px); padding: 7px 12px; border-radius: 100px; border: 1px solid rgba(16,30,60,.1);
}
.viewer__live-dot { width: 7px; height: 7px; border-radius: 50%; background: #22d36a; box-shadow: 0 0 0 0 rgba(34,211,106,.6); animation: livepulse 2s var(--ease) infinite; }
@keyframes livepulse { 0% { box-shadow: 0 0 0 0 rgba(34,211,106,.55); } 70% { box-shadow: 0 0 0 8px rgba(34,211,106,0); } 100% { box-shadow: 0 0 0 0 rgba(34,211,106,0); } }

/* model switcher (Live 3D slide) */
.viewer__switcher { display: inline-flex; gap: 6px; padding: 5px; margin: 0 auto 16px; background: var(--g100); border: 1px solid var(--border); border-radius: 100px; }
.vsw {
  font-family: var(--sans); font-size: 12.5px; font-weight: 500; letter-spacing: -0.01em; color: var(--g500);
  padding: 8px 16px; border: 0; background: transparent; border-radius: 100px; cursor: pointer; transition: all .3s var(--ease); white-space: nowrap;
}
.vsw:hover { color: var(--ink); }
.vsw.active { background: var(--ink-deep); color: #fff; box-shadow: var(--shadow-sm); }

/* captions */
.viewer__captions { display: flex; justify-content: space-between; gap: 14px; margin-top: 16px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; }
.viewer__cap--l { color: var(--primary); }
.viewer__cap--r { color: var(--g400); }
@media (prefers-reduced-motion: reduce){ .viewer__live-dot { animation: none; } .viewer__loading .spin { animation: none; } }

/* ============================================================
   08 · WORK — editorial drag-to-explore gallery
   ============================================================ */
.slide--work { background: radial-gradient(130% 100% at 82% 0%, #f5f7fb 0%, #ffffff 56%); }
.work { display: flex; flex-direction: column; gap: clamp(16px, 2.6vh, 30px); width: 100%; }
.work__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.work__head .eyebrow { margin-bottom: 13px; }
.work__head .h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.work__hint { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--g400); }
.work__hint svg { width: 22px; height: 14px; animation: hintnudge 1.8s var(--ease) infinite; }
@keyframes hintnudge { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }

.gallery { position: relative; margin-inline: calc(-1 * var(--pad-x)); }
.gallery__track {
  display: flex; gap: 16px; overflow-x: auto; overflow-y: hidden;
  padding: 4px var(--pad-x) 10px; scroll-snap-type: x proximity;
  scrollbar-width: none; cursor: grab; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
  /* item 4: dragging the gallery must never select caption text */
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}
.gallery__track, .gallery__track * { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
.gallery__track img { -webkit-user-drag: none; user-drag: none; }
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track.dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery__track.dragging .gcard__img img { transition: none; }
.gcard {
  position: relative; flex: 0 0 auto; width: clamp(220px, 26vw, 360px); height: clamp(300px, 52vh, 520px);
  border-radius: var(--radius-lg); overflow: hidden; scroll-snap-align: start; background: var(--g100);
  box-shadow: var(--shadow-sm);
}
.gcard--lead { width: clamp(260px, 34vw, 470px); }
.gcard__img { position: absolute; inset: 0; }
.gcard__img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(80%) contrast(1.03); transition: filter .7s var(--ease), transform 1.2s var(--ease); transform: scale(1.04); -webkit-user-drag: none; user-select: none; }
.gcard:hover .gcard__img img { filter: grayscale(0%); transform: scale(1.0); }
.gcard::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(8,10,16,.86) 4%, rgba(8,10,16,.08) 52%, rgba(8,10,16,.24)); }
.gcard__cap { position: absolute; left: 22px; right: 20px; bottom: 20px; z-index: 2; color: #fff; transform: translateY(8px); transition: transform .5s var(--ease); }
.gcard:hover .gcard__cap { transform: none; }
.gcard__idx { font-family: var(--mono); font-size: 9.5px; letter-spacing: .18em; color: var(--primary-soft); display: block; margin-bottom: 9px; }
.gcard__cap b { display: block; font-size: clamp(1.05rem, 1.5vw, 1.42rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; }
.gcard__cap small { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.66); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s, margin-top .5s var(--ease); }
.gcard:hover .gcard__cap small { max-height: 3.4em; opacity: 1; margin-top: 9px; }

.work__band { display: flex; align-items: center; gap: clamp(22px, 5vw, 60px); flex-wrap: wrap; padding-top: clamp(14px, 2vh, 24px); border-top: 1px solid var(--border); }
.work__band-group { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 28px); flex-wrap: wrap; }
.band-label { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--g400); white-space: nowrap; }
.logos__row { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px, 2.6vw, 36px); }
.logos__row img { height: clamp(18px, 2vw, 24px); width: auto; object-fit: contain; filter: grayscale(100%) opacity(.5); transition: filter .4s; }
.logos__row img:hover { filter: grayscale(0%) opacity(1); }
.stack-row { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 26px); }
.stack-row span { font-family: var(--mono); font-weight: 500; letter-spacing: .04em; color: var(--g600); font-size: 14px; }

/* ============================================================
   08 · WHY US
   ============================================================ */
.why { background: var(--g50); }
.why .eyebrow { margin-bottom: 22px; }
.why__pull { font-size: clamp(1.7rem, 3.7vw, 3.05rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; max-width: 19ch; margin-bottom: clamp(32px, 5.5vh, 64px); }
/* editorial hairline ledger (de-carded) */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.why__card { background: none; border: 0; border-top: 1px solid var(--border-2); border-radius: 0; padding: 22px 24px 6px 0; }
.why__card:not(:last-child) { border-right: 1px solid var(--border-2); }
.why__card:not(:first-child) { padding-left: 26px; }
.why__card .num { font-family: var(--mono); font-size: 11px; color: var(--primary); letter-spacing: .14em; }
.why__card h3 { margin: 14px 0 9px; font-size: 1.05rem; }
.why__card p { color: var(--g500); font-size: 0.9rem; line-height: 1.5; }

/* ============================================================
   09 · CONTACT
   ============================================================ */
.contact { position: relative; overflow: hidden; }
.contact__bg { position: absolute; inset: 0; z-index: 0; opacity: .14; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.contact::after { content:""; position:absolute; inset:0; z-index:1; background: radial-gradient(120% 100% at 80% 10%, rgba(36,99,235,.18), transparent 55%); pointer-events: none; }
.contact .slide__inner { z-index: 2; }
.contact__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.contact__title { font-size: clamp(2.1rem, 4.6vw, 3.8rem); letter-spacing: -0.03em; line-height: 1.0; margin-top: 22px; }
.contact__lead { margin-top: 22px; color: rgba(255,255,255,.7); font-size: 1.08rem; max-width: 46ch; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.contact__note { margin-top: 16px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .04em; color: rgba(255,255,255,.4); }
.contact__card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 28px 30px; }
.contact__card .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.contact__card .person { margin-top: 6px; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
.contact__card .role { color: var(--primary-soft); font-size: 0.88rem; margin-top: 2px; }
.contact__rows { margin-top: 20px; display: grid; gap: 2px; }
.contact__rows a, .contact__rows div { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.82); font-size: 0.92rem; transition: color .2s; }
.contact__rows a:hover { color: #fff; }
.contact__rows svg { width: 17px; height: 17px; color: var(--primary-soft); flex: none; }
.contact__brandline { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.contact__brandline img { width: 18px; height: 18px; filter: brightness(0) invert(1); opacity: .8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .tools__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .diff { grid-template-columns: 1fr; gap: 28px; }
  .diff__visual { order: -1; }
  /* de-carded ledger at 2-col: drop the right-edge hairline */
  .why__card:nth-child(2n) { border-right: 0; }
  .why__card:nth-child(odd) { padding-left: 0; }
}
@media (max-width: 920px) {
  .deck-dots { display: none; }
  .deck-cta { display: none; }
  .brand__name { display: none; }
  .deck-label { padding-left: 0; }
  .deck-label::before { display: none; }
  .offer__grid, .contact__grid { grid-template-columns: 1fr; }
  .disc { grid-template-columns: 1fr; gap: 20px; }
  .disc__tabs { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .disc__tabs::-webkit-scrollbar { display: none; }
  .disc__tab { flex: 0 0 auto; }
  .disc__tab small { display: none; }
  .work__head { align-items: flex-start; }
  .work__hint { display: none; }
  /* narrow screens: show colour + captions up-front (no hover to rely on) */
  .gcard__img img { filter: none; transform: none; }
  .gcard__cap { transform: none; }
  .gcard__cap small { max-height: 3.4em; opacity: 1; margin-top: 9px; }
  .tool__body p { max-height: 5em; opacity: 1; margin-top: 8px; }
  .tool__poster img { transform: none; }
}
/* any touch device (incl. larger tablets) — no hover */
@media (hover: none) {
  .gcard__img img { filter: none; transform: none; }
  .gcard__cap { transform: none; }
  .gcard__cap small { max-height: 3.4em; opacity: 1; margin-top: 9px; }
  .tool__body p { max-height: 5em; opacity: 1; margin-top: 8px; }
}
@media (max-width: 720px) {
  .disc__list { grid-template-columns: 1fr; }
  .modes { grid-template-columns: 1fr; }
  .mode { border-right: 0 !important; padding-left: 0 !important; padding-right: 0; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .tools__grid { grid-template-columns: 1fr; }
  .viewer__captions { font-size: 9px; }
  .contact__cta { width: 100%; }
  .work__band { gap: 18px 30px; }
}
@media (max-width: 460px) {
  .why__grid { grid-template-columns: 1fr; }
  .why__card { border-right: 0 !important; padding-left: 0 !important; }
  :root { --pad-top: 70px; --pad-bottom: 84px; }
}

/* Short / landscape viewports — let content scroll inside the slide */
@media (max-height: 680px) {
  .slide__inner { justify-content: flex-start; }
}

/* AU/NZ software-stack strip: real SVG marks (Revit, AutoCAD) + clean text labels */
.stack-item { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-weight: 500; letter-spacing: .04em; color: var(--g600); font-size: 14px; }
.stack-logo { height: 17px; width: auto; display: block; flex: none; }

/* ============================================================
   FEEDBACK ROUND — scroll cue · video lightbox · dev-stack cluster
   ============================================================ */

/* item 1 — hero "Scroll Down" cue (quiet text + nudging down arrow, NOT a button) */
.scroll-cue {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--g500); cursor: pointer; transition: color .3s var(--ease);
}
.scroll-cue:hover { color: var(--ink); }
.scroll-cue__icon { width: 17px; height: 17px; color: var(--primary); animation: scrollnudge 1.8s var(--ease) infinite; }
@keyframes scrollnudge { 0%,100% { transform: translateY(0); opacity: .55; } 50% { transform: translateY(4px); opacity: 1; } }
.dark .scroll-cue { color: rgba(255,255,255,.55); }
.dark .scroll-cue:hover { color: #fff; }
@media (prefers-reduced-motion: reduce) { .scroll-cue__icon { animation: none; } }

/* item 8 — tool demo video lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 48px); }
.lightbox.open { display: flex; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(8,10,16,.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: lbfade .3s var(--ease); }
.lightbox__dialog { position: relative; z-index: 1; width: min(1100px, 100%); max-height: 92svh; display: flex; flex-direction: column; gap: 12px; animation: lbpop .4s var(--ease); }
.lightbox__stage { position: relative; width: 100%; aspect-ratio: 16/9; max-height: 78svh; border-radius: 10px; overflow: hidden; background: #0c0e12; box-shadow: 0 40px 120px -30px rgba(0,0,0,.7); }
.lightbox__video { width: 100%; height: 100%; object-fit: contain; background: #0c0e12; display: block; }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #fff; }
.lightbox__title { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.lightbox__actions { display: flex; align-items: center; gap: 10px; }
.lightbox__sound, .lightbox__close { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .25s var(--ease), border-color .25s var(--ease); }
.lightbox__sound:hover, .lightbox__close:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.42); }
.lightbox__sound svg, .lightbox__close svg { width: 18px; height: 18px; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbpop { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .lightbox__backdrop, .lightbox__dialog { animation: none; } }
@media (max-width: 620px) { .lightbox__sound, .lightbox__close { width: 38px; height: 38px; } }

/* item 5 — developer dev/AI-stack icon cluster (light card floats on the dark slide) */
.devstack { background: #fff; border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.06); }
.devstack__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--g400); margin-bottom: clamp(16px, 2.2vw, 26px); }
.devstack__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(8px, 1.3vw, 16px); }
.devicon { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: clamp(13px, 1.5vw, 20px) 6px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--g50); cursor: default; }
.devicon img { width: clamp(24px, 2.6vw, 34px); height: clamp(24px, 2.6vw, 34px); object-fit: contain; pointer-events: none; }
.devicon small { font-family: var(--mono); font-size: 10px; letter-spacing: .03em; color: var(--g600); }
@media (max-width: 480px) { .devicon { padding: 12px 3px; gap: 7px; } .devicon small { font-size: 8.5px; } }
