/* ═══════════════════════════════════════════════════════════════
   MAXIMINO PLUS® — Design System v2
   Palette : deep navy vault + ember (drawn from the logo) + gold hairlines
   Type    : Archivo (display + body, flyer-matched) / IBM Plex Mono (data)
             Bodoni Moda italic kept for the single script line only
   Signature: the Skyline Vault — a 3D rotating box of the building photos
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Tokens ─────────────────────────────────────────────── */
:root {
  --night:   #050912;
  --ink:     #0B1633;
  --ink-2:   #101C40;
  --ink-3:   #17265A;

  --ember:   #FF7A18;
  --ember-2: #FFA657;

  --gold:    #C7A24D;
  --gold-2:  #E8CF95;

  --ice:     #EDF1F8;
  --ice-2:   #F7F9FC;
  --white:   #FFFFFF;

  --slate:   #4E5A79;
  --slate-2: #7C88A5;
  --line:    rgba(11, 22, 51, .12);
  --line-d:  rgba(255, 255, 255, .13);

  --f-disp: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --f-body: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --f-script: 'Bodoni Moda', 'Times New Roman', serif;
  --f-mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

  --shell:  1280px;
  --pad:    clamp(1.15rem, 4vw, 2.5rem);

  --ease:    cubic-bezier(.22, .61, .36, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
}

/* ── 2. Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--night);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

::selection { background: var(--ember); color: #fff; }

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── 3. Layout primitives ──────────────────────────────────── */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.band        { position: relative; padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.band--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

.band--dark  { background: var(--night); color: rgba(255,255,255,.72); }
.band--ink   { background: var(--ink);   color: rgba(255,255,255,.72); }
.band--light { background: var(--ice);   color: var(--slate); }
.band--paper { background: var(--white); color: var(--slate); }

/* ── 4. Type scale ─────────────────────────────────────────── */
.d1, .d2, .d3, .d4 {
  font-family: var(--f-disp);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.018em;
  color: var(--ink);
}
.band--dark .d1, .band--dark .d2, .band--dark .d3, .band--dark .d4,
.band--ink  .d1, .band--ink  .d2, .band--ink  .d3, .band--ink  .d4 { color: #fff; }

.d1 { font-size: clamp(2.9rem, 7.4vw, 6.4rem); }
.d2 { font-size: clamp(2.05rem, 4.4vw, 3.7rem); line-height: 1.07; }
.d3 { font-size: clamp(1.55rem, 2.6vw, 2.25rem); line-height: 1.14; }
.d4 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); line-height: 1.2; letter-spacing: -.005em; }

.d1 em, .d2 em, .d3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
}

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.19rem);
  line-height: 1.72;
  max-width: 62ch;
  color: var(--slate);
}
.band--dark .lede, .band--ink .lede { color: rgba(255,255,255,.66); }

.body-s { font-size: .93rem; line-height: 1.7; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ── 5. The dimension rule (signature structural device) ───── */
/* Architectural drawing vernacular: a hairline with a mono end-cap. */
.rule {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.5rem;
}
.rule__tag {
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ember);
  white-space: nowrap;
}
.rule__line {
  flex: 1;
  height: 1px;
  max-width: 190px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
}
.rule__line::before {
  content: "";
  position: absolute;
  left: 0; top: -3px;
  width: 1px; height: 7px;
  background: var(--gold);
}
.rule--center { justify-content: center; }
.rule--center .rule__line { max-width: 120px; }

/* ── 6. Buttons ────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--ember);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--f-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid var(--btn-bg);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease),
              border-color .4s, color .4s;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .45s var(--ease-io);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(255,122,24,.28);
  border-color: var(--ink);
}
.btn:hover::before { transform: translateY(0); }
.btn__arw { transition: transform .4s var(--ease); }
.btn:hover .btn__arw { transform: translateX(5px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { color: #fff; box-shadow: 0 14px 34px rgba(11,22,51,.18); }

.btn--ghost-d {
  --btn-bg: transparent;
  --btn-fg: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.24);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost-d::before { background: #fff; }
.btn--ghost-d:hover { color: var(--ink); border-color: #fff; box-shadow: none; }

.btn--wide { width: 100%; justify-content: center; }

/* ── 7. Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: background .5s var(--ease), border-color .5s var(--ease);
}
.nav.is-stuck {
  background: rgba(5, 9, 18, .88);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line-d);
}
.nav__in {
  max-width: var(--shell);
  margin-inline: auto;
  padding: .85rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo img {
  height: 40px;
  width: auto;
  transition: transform .5s var(--ease);
}
.nav__logo:hover img { transform: scale(1.04); }

.nav__links { display: flex; align-items: center; gap: 1.85rem; }
.nav__link {
  position: relative;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.76);
  padding-block: .4rem;
  transition: color .3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-io);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: #fff; }

.nav__cta {
  padding: .72rem 1.35rem;
  font-family: var(--f-mono);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color .35s;
}
.nav__cta::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--ember);
  transform: translateY(101%);
  transition: transform .45s var(--ease-io);
}
.nav__cta:hover { border-color: var(--ember); }
.nav__cta:hover::before { transform: translateY(0); }

.nav__burger {
  display: none;
  width: 44px; height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 12px;
  width: 18px; height: 1.5px;
  background: #fff;
  transition: transform .4s var(--ease-io);
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.nav__panel {
  display: none;
  background: rgba(5,9,18,.97);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line-d);
  padding: 1rem var(--pad) 1.7rem;
}
.nav__panel.is-open { display: block; }
.nav__panel a {
  display: block;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-weight: 500;
}
.nav__panel a:last-child {
  border: 0;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--ember);
  color: #fff;
  text-align: center;
  border-radius: 2px;
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* Scroll progress hairline */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 201;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--ember), var(--gold));
}

/* ═══════════════════════════════════════════════════════════
   8. HERO — "The Skyline Vault"
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 8.5rem 4rem;
  background: var(--night);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -6%;
  z-index: 0;
  background-size: cover;
  background-position: center 40%;
  filter: grayscale(.55) brightness(.42) contrast(1.15);
  opacity: .55;
  transform: scale(1.06);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-2.5%, -1.5%, 0); }
}
.hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(115% 85% at 12% 45%, rgba(5,9,18,.94) 0%, rgba(5,9,18,.72) 42%, rgba(5,9,18,.30) 100%),
    linear-gradient(to top, var(--night) 2%, transparent 45%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(199,162,77,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,162,77,.075) 1px, transparent 1px);
  background-size: 92px 92px;
  -webkit-mask-image: radial-gradient(85% 65% at 50% 45%, #000 20%, transparent 78%);
  mask-image: radial-gradient(85% 65% at 50% 45%, #000 20%, transparent 78%);
  animation: gridPan 32s linear infinite;
}
@keyframes gridPan { to { background-position: 92px 92px; } }

.hero__in {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero__copy { max-width: 640px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--f-mono);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid rgba(199,162,77,.32);
  background: rgba(199,162,77,.07);
  border-radius: 2px;
  padding: .5rem 1rem .5rem .8rem;
  margin-bottom: 1.8rem;
}
.hero__eyebrow i {
  width: 6px; height: 6px;
  background: var(--ember);
  border-radius: 50%;
  animation: pip 2.4s ease-out infinite;
}
@keyframes pip {
  0%   { box-shadow: 0 0 0 0 rgba(255,122,24,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(255,122,24,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,24,0); }
}

.hero__title {
  font-family: var(--f-disp);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.85rem, 6.6vw, 5.9rem);
  line-height: .99;
  letter-spacing: -.026em;
  color: #fff;
  margin-bottom: 1.6rem;
}
.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
}
/* Masked line reveal */
.mline { display: block; overflow: hidden; padding-bottom: .06em; }
.mline > span {
  display: block;
  transform: translateY(105%);
  animation: mlineUp 1.05s var(--ease-io) forwards;
}
@keyframes mlineUp { to { transform: translateY(0); } }

.hero__sub {
  font-size: 1.03rem;
  line-height: 1.78;
  color: rgba(255,255,255,.63);
  max-width: 50ch;
  margin-bottom: 2.3rem;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.6rem; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.11);
}
.hero__fact b {
  display: block;
  font-family: var(--f-disp);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--gold-2);
  line-height: 1;
}
.hero__fact > span {
  display: block;
  margin-top: .4rem;
  font-family: var(--f-mono);
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

/* ── The 3D Vault ─────────────────────────────────────────── */
.vault {
  perspective: 1500px;
  perspective-origin: 50% 45%;
  display: grid;
  place-items: center;
  min-height: 560px;
  padding-bottom: 3.6rem;   /* clearance for the dots below the box */
  position: relative;
}
.vault__scene {
  position: relative;
  width: 380px;
  height: 470px;
  transform-style: preserve-3d;
  transform: rotateX(var(--tx, -6deg)) rotateY(var(--ty, 0deg));
  transition: transform .9s var(--ease);
}
.vault__box {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateY(var(--spin, 0deg));
  transition: transform 1.5s cubic-bezier(.62, .02, .2, 1);
}
.vault__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  border: 1px solid rgba(199,162,77,.42);
  background: var(--ink);
  box-shadow: inset 0 0 70px rgba(5,9,18,.75);
}
/* 380px-wide box → translateZ = 190px */
.vault__face--a { transform: rotateY(0deg)   translateZ(190px); }
.vault__face--b { transform: rotateY(90deg)  translateZ(190px); }
.vault__face--c { transform: rotateY(180deg) translateZ(190px); }
.vault__face--d { transform: rotateY(270deg) translateZ(190px); }

.vault__face img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.25) contrast(1.1) brightness(.82);
  transform: scale(1.06);
}
.vault__face::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(5,9,18,.9) 0%, rgba(5,9,18,.1) 55%),
    linear-gradient(115deg, transparent 38%, rgba(255,166,87,.16) 50%, transparent 62%);
  background-size: 100% 100%, 260% 100%;
  background-repeat: no-repeat;
  animation: sheen 6.5s var(--ease) infinite;
}
@keyframes sheen {
  0%, 55% { background-position: 0 0, -80% 0; }
  100%    { background-position: 0 0, 180% 0; }
}

.vault__label {
  position: absolute;
  left: 1.35rem; right: 1.35rem; bottom: 1.35rem;
  z-index: 3;
}
.vault__label b {
  display: block;
  font-family: var(--f-disp);
  font-size: 1.28rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
}
.vault__label > span {
  display: block;
  margin-top: .35rem;
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--ember-2);
}
.vault__idx {
  position: absolute;
  top: 1.2rem; left: 1.35rem;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: rgba(255,255,255,.5);
}

/* Brand face (4th side of the box) */
.vault__face--brand {
  display: grid;
  place-items: center;
  background: radial-gradient(120% 90% at 50% 20%, var(--ink-3) 0%, var(--ink) 55%, var(--night) 100%);
}
.vault__face--brand::after { background: none; animation: none; }
.vault__brand { text-align: center; padding: 1.5rem; z-index: 2; }
.vault__brand img { width: 155px; margin-inline: auto; opacity: .96; }
.vault__brand p {
  margin-top: 1.4rem;
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.46);
  line-height: 2;
}

/* Floor: glow plate + gold plinth ring */
.vault__floor {
  position: absolute;
  left: 50%; top: 100%;
  width: 380px; height: 380px;
  margin-left: -190px;
  transform: rotateX(90deg);
  transform-origin: top center;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,122,24,.22), transparent 62%);
  filter: blur(6px);
}
.vault__ring {
  position: absolute;
  left: 50%; top: 100%;
  width: 500px; height: 500px;
  margin-left: -250px; margin-top: -250px;
  transform: rotateX(90deg);
  border: 1px solid rgba(199,162,77,.28);
  border-radius: 50%;
  animation: ringSpin 22s linear infinite;
}
.vault__ring::before {
  content: "";
  position: absolute;
  inset: 58px;
  border: 1px dashed rgba(199,162,77,.18);
  border-radius: 50%;
}
@keyframes ringSpin {
  from { transform: rotateX(90deg) rotate(0deg); }
  to   { transform: rotateX(90deg) rotate(360deg); }
}

.vault__dots {
  position: absolute;
  bottom: .4rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .55rem;
  z-index: 6;
}
.vault__dot {
  width: 26px; height: 2px;
  background: rgba(255,255,255,.2);
  border: 0; padding: 0;
  cursor: pointer;
  transition: background .45s, width .45s var(--ease);
}
.vault__dot.is-on { background: var(--ember); width: 44px; }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 6;
  display: grid;
  justify-items: center;
  gap: .55rem;
  font-family: var(--f-mono);
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
}
.hero__scroll i {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  45%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  55%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ── 9. Ticker rail ────────────────────────────────────────── */
.rail {
  background: var(--ink);
  border-block: 1px solid var(--line-d);
  padding-block: 1.05rem;
  overflow: hidden;
  position: relative;
}
.rail::before, .rail::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 90px; z-index: 2;
  pointer-events: none;
}
.rail::before { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.rail::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.rail__track {
  display: flex;
  width: max-content;
  animation: railRun 44s linear infinite;
}
.rail:hover .rail__track { animation-play-state: paused; }
@keyframes railRun { to { transform: translateX(-50%); } }
.rail__item {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding-inline: 1.6rem;
  font-family: var(--f-mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}
.rail__item::after { content: "◆"; color: var(--ember); font-size: .5rem; }

/* ── 10. Section headers ───────────────────────────────────── */
.head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head--center { margin-inline: auto; text-align: center; }
.head--center .lede { margin-inline: auto; }
.head .lede { margin-top: 1.15rem; }

/* ── 11. Programs (a real sequence: 01 / 02 / 03) ──────────── */
.progs { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 900px) { .progs { grid-template-columns: repeat(3, 1fr); } }

.prog {
  position: relative;
  display: block;
  background: var(--white);
  padding-bottom: 2rem;
  overflow: hidden;
}
.prog__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}
.prog__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.6) contrast(1.06) brightness(.92);
  transform: scale(1.03);
  transition: transform 1.1s var(--ease), filter .7s var(--ease);
}
.prog:hover .prog__media img { transform: scale(1.09); filter: grayscale(0) contrast(1.02) brightness(1); }
.prog__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,22,51,.72), transparent 62%);
  transition: opacity .6s;
}
.prog:hover .prog__media::after { opacity: .5; }

.prog__num {
  position: absolute;
  top: 1rem; left: 1.3rem;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--ember-2);
}
.prog__body { padding: 1.8rem 1.6rem 0; }
.prog__title {
  font-family: var(--f-disp);
  font-size: 1.42rem;
  font-weight: 600;
  line-height: 1.16;
  color: var(--ink);
  margin-bottom: .8rem;
}
.prog__txt { font-size: .92rem; line-height: 1.72; color: var(--slate); }
.prog__go {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.35rem;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ember);
}
.prog__go span { transition: transform .4s var(--ease); }
.prog:hover .prog__go span { transform: translateX(6px); }
.prog::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease-io);
  z-index: 3;
}
.prog:hover::before { transform: scaleX(1); }

/* ── 12. Capability grid (hairline matrix) ─────────────────── */
.caps {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.10);
}
@media (min-width: 700px)  { .caps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .caps { grid-template-columns: repeat(3, 1fr); } }

.cap {
  position: relative;
  background: var(--night);
  padding: 2.1rem 1.7rem 2.2rem;
  overflow: hidden;
  transition: background .5s var(--ease);
}
.cap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 80% at 15% 0%, rgba(255,122,24,.13), transparent 60%);
  opacity: 0;
  transition: opacity .55s var(--ease);
}
.cap:hover { background: var(--ink); }
.cap:hover::before { opacity: 1; }
.cap__i {
  position: relative;
  font-family: var(--f-mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--gold);
  display: block;
  margin-bottom: 1.15rem;
}
.cap__t {
  position: relative;
  font-family: var(--f-disp);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  margin-bottom: .65rem;
}
.cap__d { position: relative; font-size: .87rem; line-height: 1.72; color: rgba(255,255,255,.55); }

/* ── 13. Metrics ───────────────────────────────────────────── */
.metrics { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 640px) { .metrics { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .metrics { grid-template-columns: repeat(4, 1fr); } }
.metric { background: var(--white); padding: 2rem 1.5rem; text-align: center; }
.metric b {
  display: block;
  font-family: var(--f-disp);
  font-size: clamp(2.3rem, 4.4vw, 3.3rem);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.02em;
}
.metric b i { font-style: normal; color: var(--ember); }
.metric > span {
  display: block;
  margin-top: .75rem;
  font-family: var(--f-mono);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--slate-2);
}

/* ── 14. Process (real ordered steps) ──────────────────────── */
.steps { display: grid; }
.step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.6rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line-d);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line-d); }
.step__n {
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--ember);
  padding-top: .35rem;
}
.step__t {
  font-family: var(--f-disp);
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: .6rem;
  transition: transform .5s var(--ease);
}
.step:hover .step__t { transform: translateX(9px); }
.step__d { font-size: .95rem; line-height: 1.75; color: rgba(255,255,255,.58); max-width: 68ch; }

/* ── 15. Split feature (3D image stack + copy) ─────────────── */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 950px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 2; }
}
.split__media { position: relative; perspective: 1200px; }
.split__stack {
  position: relative;
  aspect-ratio: 4 / 3;
  transform-style: preserve-3d;
  transform: rotateY(-9deg) rotateX(3deg);
  transition: transform .9s var(--ease);
}
.split__media:hover .split__stack { transform: rotateY(-3deg) rotateX(1deg); }
.split__stack img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 1px solid rgba(199,162,77,.3);
}
.split__stack img:nth-child(1) { transform: translateZ(-70px) translate(-5%, 6%);   opacity: .32; filter: grayscale(1); }
.split__stack img:nth-child(2) { transform: translateZ(-35px) translate(-2.5%, 3%); opacity: .6;  filter: grayscale(.6); }
.split__stack img:nth-child(3) { box-shadow: -28px 34px 70px rgba(5,9,18,.45); }

/* ── 15b. Systems Orbit (Web Development — signature component) ──
   A centre hub with the systems we build orbiting it; the Virtual
   Assistance node is highlighted to show the two programs connect. */
.orbit { position: relative; display: grid; place-items: center; min-height: 480px; padding-block: 2rem 3rem; }
.orbit__field {
  position: relative;
  width: 560px; height: 560px;
  max-width: 100%;
  --r: 228px;
}
.orbit__ring {
  position: absolute; inset: 0;
  border: 1px dashed rgba(199,162,77,.24);
  border-radius: 50%;
  animation: orbitSpin 40s linear infinite;
}
.orbit__ring--in {
  inset: 74px;
  border-color: rgba(255,122,24,.2);
  animation-duration: 26s;
  animation-direction: reverse;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.orbit__spoke {
  position: absolute; left: 50%; top: 50%;
  width: var(--r); height: 1px;
  background: linear-gradient(90deg, rgba(199,162,77,.5), transparent);
  transform-origin: 0 50%;
  transform: rotate(var(--a));
  z-index: 1;
}
.orbit__spoke--hi { background: linear-gradient(90deg, var(--ember), transparent); height: 2px; }

.orbit__core {
  position: absolute; left: 50%; top: 50%;
  width: 172px; height: 172px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  padding: 1rem;
  background: radial-gradient(90% 90% at 50% 30%, var(--ink-3) 0%, var(--ink) 60%, var(--night) 100%);
  border: 1px solid rgba(199,162,77,.4);
  box-shadow: 0 0 0 10px rgba(199,162,77,.05), 0 30px 60px rgba(5,9,18,.5);
  z-index: 3;
  animation: orbitPulse 4.6s ease-in-out infinite;
}
@keyframes orbitPulse {
  0%, 100% { box-shadow: 0 0 0 10px rgba(199,162,77,.05), 0 30px 60px rgba(5,9,18,.5); }
  50%      { box-shadow: 0 0 0 16px rgba(255,122,24,.09), 0 30px 60px rgba(5,9,18,.5); }
}
.orbit__core b {
  display: block;
  font-family: var(--f-disp);
  font-size: 1.14rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.orbit__core span {
  display: block;
  margin-top: .5rem;
  font-family: var(--f-mono);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ember-2);
}

.orbit__node {
  position: absolute; left: 50%; top: 50%;
  width: 152px;
  transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r)) rotate(calc(var(--a) * -1));
  z-index: 2;
}
.orbit__node-in {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
  padding: .95rem 1rem;
  text-align: center;
  transition: transform .5s var(--ease), border-color .5s, background .5s;
}
.orbit__node:hover .orbit__node-in { transform: translateY(-4px); border-color: rgba(255,122,24,.4); }
.orbit__node-in b {
  display: block;
  font-family: var(--f-disp);
  font-size: .96rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}
.orbit__node-in span {
  display: block;
  margin-top: .3rem;
  font-family: var(--f-mono);
  font-size: .56rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.orbit__node--hi .orbit__node-in {
  background: var(--ink-3);
  border-color: rgba(255,122,24,.55);
  box-shadow: 0 18px 40px rgba(255,122,24,.16);
}
.orbit__node--hi .orbit__node-in span { color: var(--ember-2); }

@media (max-width: 860px) {
  .orbit__field { width: 420px; height: 420px; --r: 168px; }
  .orbit__core { width: 138px; height: 138px; }
  .orbit__node { width: 122px; }
}
@media (max-width: 560px) {
  .orbit { min-height: 380px; }
  .orbit__field { width: 300px; height: 300px; --r: 116px; }
  .orbit__ring--in { inset: 44px; }
  .orbit__core { width: 106px; height: 106px; padding: .6rem; }
  .orbit__core b { font-size: .86rem; }
  .orbit__node { width: 94px; }
  .orbit__node-in { padding: .6rem .55rem; }
  .orbit__node-in b { font-size: .74rem; }
  .orbit__node-in span { display: none; }
}

/* ── 16. Inner page hero ───────────────────────────────────── */
.phero {
  position: relative;
  padding: clamp(9rem, 15vw, 12rem) 0 clamp(3.5rem, 7vw, 6rem);
  background: var(--night);
  overflow: hidden;
}
.phero__bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center 35%;
  filter: grayscale(.7) brightness(.36) contrast(1.2);
  transform: scale(1.06);
  animation: heroDrift 24s ease-in-out infinite alternate;
}
.phero__wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(5,9,18,.95) 8%, rgba(5,9,18,.72) 48%, rgba(5,9,18,.42) 100%),
    linear-gradient(to top, var(--night), transparent 55%);
}
.phero__in { position: relative; z-index: 3; }
.phero__title {
  font-family: var(--f-disp);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.6vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -.024em;
  color: #fff;
  max-width: 17ch;
  margin-bottom: 1.4rem;
}
.phero__title em { font-style: italic; font-weight: 400; color: var(--ember); }
.phero__sub {
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  line-height: 1.76;
  color: rgba(255,255,255,.64);
  max-width: 58ch;
}
.crumb {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 1.5rem;
}
.crumb a:hover { color: var(--ember-2); }
.crumb i { color: var(--gold); font-style: normal; }

/* ── 17. Panels & lists ────────────────────────────────────── */
.panels { display: grid; gap: 1.5rem; }
@media (min-width: 820px) {
  .panels--2 { grid-template-columns: repeat(2, 1fr); }
  .panels--3 { grid-template-columns: repeat(3, 1fr); }
}
.panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2rem 1.8rem;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease-io);
}
.panel:hover { transform: translateY(-5px); box-shadow: 0 26px 56px rgba(11,22,51,.11); border-color: rgba(255,122,24,.3); }
.panel:hover::before { transform: scaleX(1); }
.panel__t {
  font-family: var(--f-disp);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}
.panel__k {
  font-family: var(--f-mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ember);
  display: block;
  margin-bottom: .9rem;
}

.ticks { display: grid; gap: .9rem; }
.ticks li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: .8rem;
  font-size: .93rem;
  line-height: 1.62;
  color: var(--slate);
}
.ticks li::before {
  content: "";
  width: 8px; height: 8px;
  margin-top: .48rem;
  border: 1px solid var(--ember);
  transform: rotate(45deg);
  transition: background .35s;
}
.ticks li:hover::before { background: var(--ember); }

/* Ticks placed on a dark band (E-Payment split, etc.) */
.ticks--light li,
.band--dark .ticks li,
.band--ink  .ticks li { color: rgba(255,255,255,.74); }
.ticks--light li::before,
.band--dark .ticks li::before,
.band--ink  .ticks li::before { border-color: var(--ember-2); }
.ticks--light li:hover::before,
.band--dark .ticks li:hover::before,
.band--ink  .ticks li:hover::before { background: var(--ember-2); }

.chips { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 640px) { .chips { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .chips { grid-template-columns: repeat(3, 1fr); } }
.chip {
  background: var(--white);
  padding: 1.35rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .95rem;
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink);
  transition: background .4s, color .4s;
}
.chip i {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: .64rem;
  font-weight: 600;
  color: var(--ember);
  transition: color .4s;
}
.chip:hover { background: var(--ink); color: #fff; }
.chip:hover i { color: var(--gold-2); }

/* ── 18. Gallery (3 images per page, 3D tilt) ──────────────── */
.gallery { display: grid; gap: 1.5rem; }
@media (min-width: 860px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

.shot { position: relative; perspective: 900px; }
.shot__inner {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line-d);
  background: var(--ink);
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .5s var(--ease), border-color .5s;
  will-change: transform;
}
.shot:hover .shot__inner { border-color: rgba(255,122,24,.5); }
.shot__inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.45) brightness(.86) contrast(1.06);
  transform: scale(1.04);
  transition: transform 1.1s var(--ease), filter .7s var(--ease);
}
.shot:hover .shot__inner img { transform: scale(1.1); filter: grayscale(0) brightness(1) contrast(1); }
.shot__inner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,9,18,.9) 2%, rgba(5,9,18,.05) 58%);
}
.shot__glare {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.15) 50%, transparent 60%);
  opacity: 0;
  transition: opacity .5s;
}
.shot:hover .shot__glare { opacity: 1; }
.shot__cap {
  position: absolute;
  left: 1.15rem; right: 1.15rem; bottom: 1.1rem;
  z-index: 3;
  transform: translateZ(38px);
}
.shot__cap b {
  display: block;
  font-family: var(--f-disp);
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}
.shot__cap > span {
  display: block;
  margin-top: .35rem;
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ember-2);
}

/* ── 19. Rate card ─────────────────────────────────────────── */
.rate {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--ink);
  border: 1px solid rgba(199,162,77,.28);
  padding: clamp(2rem, 4vw, 3.2rem);
  position: relative;
  overflow: hidden;
}
@media (min-width: 860px) { .rate { grid-template-columns: 1fr auto; } }
.rate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 85% 0%, rgba(255,122,24,.18), transparent 62%);
}
.rate > * { position: relative; }
.rate__fig {
  font-family: var(--f-disp);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}
.rate__fig i { font-style: normal; color: var(--ember); }
.rate__note {
  margin-top: .9rem;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── 20. CTA band ──────────────────────────────────────────── */
.cta { position: relative; background: var(--ink); overflow: hidden; text-align: center; }
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(199,162,77,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,162,77,.07) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 76%);
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 76%);
}
.cta__in { position: relative; z-index: 2; }
.cta .lede { margin-inline: auto; }
.cta__btns { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2.2rem; }

/* ── 21. Forms ─────────────────────────────────────────────── */
.form { display: grid; gap: 1.4rem; }
.form__row { display: grid; gap: 1.4rem; }
@media (min-width: 700px) { .form__row--2 { grid-template-columns: repeat(2, 1fr); } }

.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: .55rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: .95rem 1rem;
  font-size: .96rem;
  color: var(--ink);
  transition: border-color .35s, box-shadow .35s;
}
.field input::placeholder, .field textarea::placeholder { color: #A9B2C6; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(255,122,24,.12);
}
.field textarea { resize: vertical; min-height: 118px; }

.alert { border-radius: 2px; padding: 1rem 1.15rem; font-size: .92rem; line-height: 1.6; margin-bottom: 1.6rem; }
.alert--err { background: #FEF2F2; border: 1px solid #FECACA; color: #B42318; }
.alert--ok  { background: #F0FDF4; border: 1px solid #BBF7D0; color: #15803D; }

.formcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(1.6rem, 3.4vw, 2.6rem);
  box-shadow: 0 30px 70px rgba(11,22,51,.08);
}

.aside {
  background: var(--ink);
  color: rgba(255,255,255,.68);
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  border: 1px solid rgba(199,162,77,.24);
  position: relative;
  overflow: hidden;
}
.aside::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(90% 70% at 10% 0%, rgba(255,122,24,.16), transparent 60%);
}
.aside > * { position: relative; }
.aside__t { font-family: var(--f-disp); font-size: 1.5rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.aside dl { display: grid; gap: 1.05rem; margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.13); }
.aside dt {
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.aside dd { font-size: .95rem; color: rgba(255,255,255,.8); line-height: 1.6; }
.aside dd a { color: var(--ember-2); }
.aside dd a:hover { text-decoration: underline; }

/* ── 22. Footer ────────────────────────────────────────────── */
.foot {
  position: relative;
  background: var(--night);
  color: rgba(255,255,255,.6);
  border-top: 1px solid var(--line-d);
  overflow: hidden;
}
.foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 12% 0%, rgba(255,122,24,.10), transparent 55%),
    radial-gradient(50% 80% at 88% 10%, rgba(199,162,77,.09), transparent 58%);
}
.foot__in { position: relative; display: grid; gap: 2.6rem; padding-block: clamp(3rem, 6vw, 4.6rem); }
@media (min-width: 900px) { .foot__in { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.2rem; } }

.foot__logo { width: 168px; margin-bottom: 1.3rem; }
.foot__t {
  font-family: var(--f-mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.15rem;
}
.foot p, .foot li { font-size: .9rem; line-height: 1.85; }
.foot__list { display: grid; gap: .55rem; }
.foot__list a { transition: color .3s, padding-left .3s; }
.foot__list a:hover { color: var(--ember-2); padding-left: 5px; }
.foot__bar {
  position: relative;
  border-top: 1px solid var(--line-d);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.6rem;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* ── 23. Scroll reveal ─────────────────────────────────────── */
[data-rise] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-rise].is-in { opacity: 1; transform: none; }

/* ── 24. Responsive ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero__in { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero { padding-block: 7.5rem 5rem; }
  .vault { min-height: 470px; }
  .vault__scene { width: 300px; height: 380px; }
  .vault__face--a { transform: rotateY(0deg)   translateZ(150px); }
  .vault__face--b { transform: rotateY(90deg)  translateZ(150px); }
  .vault__face--c { transform: rotateY(180deg) translateZ(150px); }
  .vault__face--d { transform: rotateY(270deg) translateZ(150px); }
  .vault__ring  { width: 400px; height: 400px; margin-left: -200px; margin-top: -200px; }
  .vault__floor { width: 300px; margin-left: -150px; }
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav {
    background: rgba(5,9,18,.9);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--line-d);
  }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 76px; }
  .hero__facts { gap: 1.5rem 2rem; }
  .hero__fact b { font-size: 1.5rem; }
  .step { grid-template-columns: 1fr; gap: .6rem; }
  .step__n { padding-top: 0; }
  .nav__logo img { height: 38px; }
  .vault__scene { width: 250px; height: 320px; }
  .vault__face--a { transform: rotateY(0deg)   translateZ(125px); }
  .vault__face--b { transform: rotateY(90deg)  translateZ(125px); }
  .vault__face--c { transform: rotateY(180deg) translateZ(125px); }
  .vault__face--d { transform: rotateY(270deg) translateZ(125px); }
  .vault__ring { display: none; }
  .vault__floor { width: 250px; margin-left: -125px; }
  .hero__scroll { display: none; }
}

/* ── 25. Motion & print ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .mline > span { transform: none; }
  [data-rise] { opacity: 1; transform: none; }
}

@media print {
  .nav, .foot, .progress, .hero__bg, .hero__grid, .vault, .rail { display: none !important; }
  body { background: #fff; color: #000; }
  .band--dark, .band--ink, .cta { background: #fff !important; color: #000 !important; }
}

/* ═══════════════════════════════════════════════════════════
   26. FLYER SYSTEM — components that mirror the print flyer
   "Professional Virtual Assistant — Healthcare & Web Solutions"
   ═══════════════════════════════════════════════════════════ */

/* ── 26a. Flyer tagline: "Smart Support. Better Care. Stronger Business." ── */
.tagline {
  font-family: var(--f-disp);
  font-size: clamp(1.35rem, 2.9vw, 2.15rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--ink);
}
.tagline i { font-style: normal; color: var(--ember); }
.band--dark .tagline, .band--ink .tagline, .hero .tagline { color: #fff; }

/* ── 26b. Kicker under the display title (HEALTHCARE & WEB SOLUTIONS) ── */
.kicker {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--f-body);
  font-size: clamp(.8rem, 1.5vw, 1.02rem);
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.kicker--ink { color: var(--ink); }

/* ── 26c. Trusted-partner badge ── */
.badge {
  background: var(--ink);
  border: 1px solid rgba(199,162,77,.3);
  border-radius: 4px;
  padding: 1.45rem 1.55rem;
  max-width: 430px;
  position: relative;
  overflow: hidden;
}
.badge::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(90% 80% at 90% 0%, rgba(255,122,24,.18), transparent 62%);
}
.badge > * { position: relative; }
.badge__row { display: flex; gap: 1rem; align-items: flex-start; }
.badge__row svg { width: 30px; height: 30px; color: var(--ember); flex: none; margin-top: .1rem; }
.badge__row b {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.5;
  color: #fff;
}
.badge__row b i { font-style: normal; color: var(--ember-2); }
.badge p { margin-top: .85rem; font-size: .92rem; line-height: 1.65; color: rgba(255,255,255,.68); }

/* ── 26d. Trust marks strip (Reliable / Secure / Results / Support) ── */
.trust { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 620px) { .trust { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .trust { grid-template-columns: repeat(4, 1fr); } }
.tmark {
  background: var(--white);
  padding: 1.55rem 1.4rem;
  display: flex;
  gap: 1.05rem;
  align-items: center;
  transition: background .4s var(--ease);
}
.tmark svg { width: 34px; height: 34px; color: var(--ember); flex: none; }
.tmark b {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.4;
}
.tmark span {
  display: block;
  margin-top: .2rem;
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-2);
}
.tmark:hover { background: var(--ice-2); }

/* Dark variant of the trust strip */
.trust--d { background: var(--line-d); border-color: var(--line-d); }
.trust--d .tmark { background: var(--ink); }
.trust--d .tmark b { color: #fff; }
.trust--d .tmark span { color: rgba(255,255,255,.45); }
.trust--d .tmark:hover { background: var(--ink-2); }

/* ── 26e. Service columns — "OUR VA SERVICES" ── */
.svcs { display: grid; gap: 1.6rem; }
@media (min-width: 940px) { .svcs { grid-template-columns: repeat(2, 1fr); } }

.svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.svc:hover { transform: translateY(-5px); box-shadow: 0 28px 60px rgba(11,22,51,.12); border-color: rgba(255,122,24,.3); }
.svc__head {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--ink);
  padding: 1.15rem 1.4rem;
}
.svc__head svg { width: 28px; height: 28px; color: var(--ember); flex: none; }
.svc__head b {
  font-family: var(--f-disp);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}
.svc__list { display: grid; gap: .85rem; padding: 1.65rem 1.5rem; }
.svc__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .85rem;
  align-items: start;
  font-size: .93rem;
  line-height: 1.55;
  color: var(--slate);
}
.svc__list li::before {
  content: "\2713";
  width: 18px; height: 18px;
  margin-top: .12rem;
  border-radius: 50%;
  background: var(--ember);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  transition: transform .3s var(--ease);
}
.svc__list li:hover::before { transform: scale(1.18); }
.svc__foot {
  margin-top: auto;
  padding: 0 1.5rem 1.6rem;
}

/* ── 26f. Why-choose grid (six reasons, dark) ── */
.whys { display: grid; gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
@media (min-width: 560px) { .whys { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .whys { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .whys { grid-template-columns: repeat(6, 1fr); } }
.why {
  background: var(--ink);
  padding: 2rem 1.1rem;
  text-align: center;
  transition: background .45s var(--ease);
}
.why svg { width: 34px; height: 34px; color: #fff; margin-inline: auto; transition: color .45s, transform .45s var(--ease); }
.why b {
  display: block;
  margin-top: 1.05rem;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
}
.why:hover { background: var(--ink-2); }
.why:hover svg { color: var(--ember); transform: translateY(-3px); }

/* ── 26g. Contact band — "Let's build your success together" ── */
.cband { display: grid; overflow: hidden; border-radius: 4px; }
@media (min-width: 1020px) { .cband { grid-template-columns: .95fr 1.15fr .9fr; } }

.cband__a {
  background: linear-gradient(135deg, var(--ember) 0%, #E45F07 100%);
  color: #fff;
  padding: clamp(1.9rem, 3.6vw, 2.9rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cband__a h2 {
  font-family: var(--f-disp);
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  font-weight: 600;
  line-height: 1.14;
  color: #fff;
}
.cband__a hr { border: 0; border-top: 1px solid rgba(255,255,255,.42); margin: 1.3rem 0; max-width: 120px; }
.cband__a p { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.92); }

.cband__b { background: var(--ink); padding: clamp(1.9rem, 3.6vw, 2.9rem); display: grid; gap: 1.15rem; align-content: center; }
.cline { display: flex; gap: 1.05rem; align-items: center; }
.cline__i {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ember);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
  transition: transform .35s var(--ease);
}
.cline__i svg { width: 20px; height: 20px; }
.cline:hover .cline__i { transform: scale(1.08); }
.cline b { display: block; font-size: .58rem; font-family: var(--f-mono); letter-spacing: .19em; text-transform: uppercase; color: var(--gold); margin-bottom: .12rem; }
.cline a, .cline span.cval { font-size: 1.02rem; color: #fff; font-weight: 500; }
.cline a:hover { color: var(--ember-2); }

.cband__c {
  background: var(--night);
  padding: clamp(1.9rem, 3.6vw, 2.9rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cband__c::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 20% 20%, rgba(255,122,24,.16), transparent 60%),
    radial-gradient(50% 60% at 85% 75%, rgba(199,162,77,.13), transparent 62%);
}
.cband__c > * { position: relative; }
.cband__c .script {
  font-family: var(--f-script);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ember-2);
}
.cband__c strong {
  display: block;
  margin-top: .5rem;
  font-family: var(--f-disp);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  line-height: 1.18;
  color: #fff;
}
.cband__c em { display: block; margin-top: .9rem; font-style: normal; font-family: var(--f-mono); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* ── 26h. Two-column intro block (photo + dark copy panel) ── */
.intro { display: grid; gap: 0; border-radius: 4px; overflow: hidden; }
@media (min-width: 900px) { .intro { grid-template-columns: .85fr 1.15fr; } }
.intro__copy {
  background: var(--ink);
  padding: clamp(1.9rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro__copy h2 { font-family: var(--f-disp); font-size: clamp(1.4rem, 2.6vw, 1.95rem); font-weight: 600; color: #fff; line-height: 1.16; }
.intro__copy p { margin-top: 1.1rem; font-size: .96rem; line-height: 1.75; color: rgba(255,255,255,.7); }
.intro__media { position: relative; min-height: 260px; background: var(--night); }
.intro__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════
   27. VA APPLICATION FORM — choice groups
   ═══════════════════════════════════════════════════════════ */
.fset { border: 0; padding: 0; margin: 0; }
.fset > legend {
  padding: 0;
  font-family: var(--f-mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: .75rem;
}
.fset__note { font-size: .84rem; color: var(--slate-2); margin: -.35rem 0 .75rem; }

.opts { display: grid; gap: .7rem; }
@media (min-width: 620px) {
  .opts--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .opts--3 { grid-template-columns: repeat(3, 1fr); }
}
.opt {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: .85rem .95rem;
  cursor: pointer;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.opt:hover { border-color: rgba(255,122,24,.45); background: var(--ice-2); }
.opt input { width: 17px; height: 17px; margin-top: .14rem; flex: none; accent-color: #FF7A18; cursor: pointer; }
.opt span { font-size: .92rem; line-height: 1.5; color: var(--ink); }
.opt span small { display: block; margin-top: .18rem; font-size: .79rem; color: var(--slate-2); }
.opt:has(input:checked) {
  border-color: var(--ember);
  background: #FFF6EF;
  box-shadow: 0 0 0 2px rgba(255,122,24,.12);
}
.opt:focus-within { border-color: var(--ember); }

.opt--tile { flex-direction: column; gap: .55rem; padding: 1.15rem 1.15rem; }
.opt--tile b { font-family: var(--f-disp); font-size: 1.02rem; font-weight: 600; color: var(--ink); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.formstep {
  border-top: 1px solid var(--line);
  padding-top: 1.7rem;
  margin-top: .3rem;
}
.formstep:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.formstep__k {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--f-mono);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.2rem;
}
.formstep__k i { font-style: normal; color: var(--slate-2); }

.is-hidden { display: none !important; }

/* ── Applicant-type switch on the VA application ── */
.switch { display: grid; gap: .8rem; }
@media (min-width: 700px) { .switch { grid-template-columns: repeat(2, 1fr); } }
.switch .opt--tile span { font-size: .88rem; color: var(--slate); }

/* ── 28. Small utilities added with the flyer pass ── */
.mt-4 { margin-top: 4rem; }
.center { text-align: center; }
.maxw-60 { max-width: 60ch; }
.stack-sm { display: grid; gap: .9rem; }

/* ── 29. Hero portrait (fills the column the vault used to occupy) ── */
.heroshot { position: relative; perspective: 1100px; }
.heroshot__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(199,162,77,.32);
  box-shadow: -26px 36px 90px rgba(5,9,18,.62);
  transform: rotateY(-4deg) rotateX(1.4deg);
  transition: transform .9s var(--ease);
}
.heroshot:hover .heroshot__frame { transform: rotateY(0deg) rotateX(0deg); }
.heroshot__frame img { width: 100%; height: 100%; object-fit: cover; }
.heroshot__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,9,18,.88) 4%, rgba(5,9,18,0) 56%);
}
.heroshot__tag {
  position: absolute;
  top: -13px; left: -13px;
  z-index: 3;
  background: var(--ember);
  color: #fff;
  font-family: var(--f-mono);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .62rem .95rem;
}
.heroshot__cap { position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.35rem; z-index: 2; }
.heroshot__cap b { display: block; font-family: var(--f-disp); font-size: 1.16rem; font-weight: 600; color: #fff; line-height: 1.25; }
.heroshot__cap span {
  display: block;
  margin-top: .34rem;
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ember-2);
}
.heroshot__pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.heroshot__pills span {
  font-family: var(--f-mono);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  border: 1px solid var(--line-d);
  padding: .5rem .75rem;
}
@media (max-width: 1080px) {
  .heroshot { max-width: 420px; margin-inline: auto; }
  .heroshot__frame { transform: none; }
}
@media (max-width: 640px) {
  .heroshot__tag { top: -10px; left: -10px; }
}


/* ═══════════════════════════════════════════════════════════
   30. FLYER HEADING SYSTEM
   Every H1 / H2 on the site now reads the way the print flyer
   reads: heavy Archivo, uppercase, tight tracking, with the
   accent word carried in ember orange instead of italics.
   ═══════════════════════════════════════════════════════════ */

/* ── 30a. Display headings (d1 / d2 / d3 + both hero titles) ── */
.d1, .d2, .d3,
.hero__title,
.phero__title {
  font-family: var(--f-disp);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.014em;
  line-height: 1.0;
}

.d1, .d2, .d3, .phero__title { text-wrap: balance; }

.d1 { line-height: .94; letter-spacing: -.022em; }
.d2 { line-height: .98; }
.d3 { line-height: 1.06; letter-spacing: -.008em; }

/* Accent word — orange, same weight, no italic (flyer treatment) */
.d1 em, .d2 em, .d3 em,
.hero__title em,
.phero__title em {
  font-style: normal;
  font-weight: 800;
  color: var(--ember);
}

/* ── 30b. Hero lockup: PROFESSIONAL / VIRTUAL / ASSISTANT ── */
.hero__title {
  font-size: clamp(2.35rem, 5.1vw, 4.7rem);
  line-height: .94;
  letter-spacing: -.028em;
}
.hero__title em { display: block; }
/* the masked line reveal clips vertically — give it right-hand slack so a
   long word like PROFESSIONAL can never be cut off */
.hero__title .mline { margin-right: -2.5rem; padding-right: 2.5rem; }

.phero__title {
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  line-height: .94;
  letter-spacing: -.024em;
  max-width: 20ch;
}

/* ── 30c. Secondary headings — bold sans, sentence case kept ── */
.d4,
.aside__t,
.heroshot__cap b,
.orbit__core b,
.orbit__node-in b,
.opt--tile b,
.cband__a h2,
.cband__c strong {
  font-weight: 700;
  letter-spacing: -.012em;
}

/* ── 30d. Card + panel headings — small caps lockups, flyer style ── */
.svc__head b { font-weight: 800; text-transform: uppercase; letter-spacing: .01em; font-size: 1.02rem; }

.panel__t,
.intro__copy h2 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: 1.15;
}
.intro__copy h2 em { font-style: normal; font-weight: 800; color: var(--ember); }

.cband__a h2 { text-transform: uppercase; letter-spacing: -.005em; line-height: 1.08; }

/* ── 30e. Supporting flyer type ── */
.tagline { font-weight: 600; letter-spacing: -.014em; }
.kicker  { font-weight: 700; }

/* ── 30f. Small screens: let long uppercase lines breathe ── */
@media (max-width: 640px) {
  .d1, .d2, .d3, .hero__title, .phero__title { letter-spacing: -.01em; }
  .d2 { line-height: 1.02; }
  .phero__title { max-width: 100%; }
}
