/* Growth Informer Software Services · chromatic brutalist
   Canvas: near-white paper. Ink: cool off-black. One accent: electric violet.
   The dark band and dark CTA are the page's single deliberate color-block story.
   Shape system: pill buttons + chips, 20px cards and media. */

:root {
  --paper: #fafaf8;
  --paper-2: #f1f0ec;
  --ink: #101014;
  --ink-soft: #1a1920;
  --muted: #5e5c66;
  --violet: #6c2bf2;
  --violet-deep: #5a21cf;
  --violet-soft: rgba(108, 43, 242, 0.08);
  --hairline: rgba(16, 16, 20, 0.12);
  --dark-bg: #0d0c11;
  --dark-ink: #f5f4f1;
  --dark-muted: #98959f;
  --dark-hairline: rgba(245, 244, 241, 0.14);
  --sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --r-card: 20px;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain, fixed and inert */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 70; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

::selection { background: rgba(108, 43, 242, 0.25); }

img, video, canvas, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.shell { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

/* ---------- type ---------- */
.mega {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
}
.h-sec {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.1rem, 5.4vw, 4rem); line-height: 0.98;
}
.h-sec .vio { color: var(--violet); }
.lede { color: var(--muted); max-width: 52ch; font-size: clamp(0.98rem, 1.5vw, 1.1rem); }

/* ---------- buttons & chips ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 1rem 1.75rem; border-radius: 999px;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--wa { background: var(--violet); color: #ffffff; }
.btn--wa:hover { background: var(--violet-deep); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ink-soft); }
.btn--ghost { border: 1px solid var(--hairline); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: var(--dark-ink); color: var(--ink); }
.btn--light:hover { background: #ffffff; }

.chip {
  display: inline-flex; align-items: center;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  border: 1px solid var(--hairline); color: var(--muted);
  white-space: nowrap;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 40; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(250, 250, 248, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--hairline);
}
.nav__brand { font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; display: inline-flex; align-items: center; }
.nav__brand span { color: var(--violet); }
.nav__brand img { height: 34px; width: auto; display: block; }
.logo-invert { filter: brightness(0) invert(1); opacity: 0.92; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.25rem); }
.nav__links > a:not(.btn) { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.25s ease; }
.nav__links > a:not(.btn):hover { color: var(--ink); }
.nav .btn { padding: 0.65rem 1.3rem; font-size: 0.88rem; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vh, 4.5rem);
  overflow: hidden;
}
.hero__title {
  position: relative; z-index: 2;
  font-size: clamp(3.4rem, 13.8vw, 12rem);
  color: var(--ink);
}
.hero__title .t-line { display: block; overflow: hidden; }
.hero__title .t-inner { display: block; will-change: transform; }
.hero__title .vio { color: var(--violet); }
.hero__title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.hero__row {
  position: relative; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-top: clamp(1.8rem, 4vh, 3rem); flex-wrap: wrap;
}
.hero__sub { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 34ch; }
.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* holographic orb, pure CSS */
.orb {
  position: absolute; z-index: 1;
  top: max(9vh, 90px); right: clamp(-40px, 4vw, 9vw);
  width: clamp(220px, 30vw, 460px); aspect-ratio: 1;
  pointer-events: none;
}
.orb__glow {
  position: absolute; inset: -12%;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #6c2bf2, #21d4fd, #ff3dd4, #b8b6d9, #ffd166, #6c2bf2);
  filter: blur(46px) saturate(1.35);
  opacity: 0.5;
}
.orb__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 40deg, #7c3aed, #22d3ee 22%, #f0abfc 38%, #e5e4ef 52%, #facc15 66%, #7c3aed 82%, #22d3ee 100%);
  -webkit-mask: radial-gradient(closest-side, transparent 58%, #000 60%, #000 98%, transparent 100%);
  mask: radial-gradient(closest-side, transparent 58%, #000 60%, #000 98%, transparent 100%);
  filter: saturate(1.5) blur(1px);
}
.orb__core {
  position: absolute; inset: 26%;
  border-radius: 50%;
  background:
    radial-gradient(120% 120% at 30% 25%, rgba(255,255,255,0.95), rgba(255,255,255,0) 42%),
    conic-gradient(from 140deg, #cfcde4, #8b5cf6 30%, #22d3ee 55%, #f0abfc 75%, #cfcde4);
  filter: blur(0.5px) saturate(1.3);
  box-shadow: 0 30px 80px rgba(108, 43, 242, 0.35);
}

/* ---------- stats strip ---------- */
.stats { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--paper); }
.stats__row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1280px; margin: 0 auto;
}
.stat b.usd::before { content: "$"; }
.stat {
  padding: clamp(1.6rem, 4vh, 2.6rem) clamp(1.25rem, 3vw, 2.5rem);
  border-left: 1px solid var(--hairline);
}
.stat:first-child { border-left: none; }
.stat b {
  font-family: var(--display); font-weight: 400; display: block;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1; color: var(--ink);
}
.stat b em { font-style: normal; color: var(--violet); }
.stat span { color: var(--muted); font-size: 0.9rem; }

/* ---------- services accordions ---------- */
.services { padding: clamp(5rem, 11vh, 8rem) 0; }
.services__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.acc { border-top: 1px solid var(--hairline); }
.acc__item { border-bottom: 1px solid var(--hairline); }
.acc__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: clamp(1.4rem, 3.4vh, 2.1rem) 0.25rem;
  text-align: left;
  transition: padding 0.3s ease;
}
.acc__btn:hover { padding-left: 1rem; }
.acc__btn h3 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.6rem, 4.4vw, 3.2rem); line-height: 1;
  transition: color 0.25s ease;
}
.acc__item.is-open .acc__btn h3, .acc__btn:hover h3 { color: var(--violet); }
.acc__x {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 300; line-height: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, color 0.25s ease;
}
.acc__item.is-open .acc__x { transform: rotate(45deg); background: var(--violet); border-color: var(--violet); color: #fff; }
.acc__panel { overflow: hidden; height: 0; }
.acc__body { padding: 0 0.25rem 2rem; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 2rem; }
.acc__body p { color: var(--muted); max-width: 56ch; }
.acc__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; align-content: flex-start; justify-content: flex-end; }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  overflow: hidden; padding: 1.1rem 0; background: var(--paper-2);
}
.marquee__track { display: flex; gap: 2.75rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee__track span {
  font-family: var(--display); text-transform: uppercase; font-size: 1.05rem;
  letter-spacing: 0.06em; color: var(--muted); white-space: nowrap;
}
.marquee__track span i { font-style: normal; color: var(--violet); margin-right: 2.75rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- dark band (the color-block story) ---------- */
.band { background: var(--dark-bg); color: var(--dark-ink); }
.band__stage {
  min-height: 100dvh; display: flex; align-items: center;
  padding: 0 clamp(1.25rem, 4vw, 3rem); overflow: hidden;
}
.band__inner { max-width: 1280px; margin: 0 auto; width: 100%; }
.band__word {
  font-size: clamp(3.6rem, 15vw, 13rem);
  color: var(--dark-ink); display: block;
}
.band__word .vio { color: #7c3aed; -webkit-text-stroke: 0; }
.band__word.outline { color: transparent; -webkit-text-stroke: 2px rgba(245, 244, 241, 0.55); }
.band__tail { color: var(--dark-muted); font-size: clamp(1rem, 1.8vw, 1.25rem); max-width: 44ch; margin-top: 2.2rem; }
.band__tail strong { color: var(--dark-ink); font-weight: 500; }

/* ---------- work gallery (horizontal on desktop) ---------- */
.work { padding: clamp(5rem, 11vh, 8rem) 0 0; }
.work__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.work__viewport { overflow: hidden; margin-top: 2.8rem; }
.work__track {
  display: flex; gap: clamp(1rem, 2vw, 1.5rem); align-items: center;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  width: max-content; height: 100dvh;
}
.wcard {
  width: clamp(300px, 34vw, 430px); min-height: 380px;
  border-radius: var(--r-card); padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column; flex: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.wcard:hover { transform: translateY(-8px); }
.wcard__meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.wcard__img { border-radius: 12px; aspect-ratio: 16 / 10; height: auto; object-fit: cover; object-position: top; width: 100%; margin-bottom: 1.1rem; }
.wcard h3 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 1; margin-top: auto;
}
.wcard p { font-size: 0.95rem; margin-top: 0.8rem; }
.wcard__link { margin-top: 1.4rem; font-weight: 500; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.45rem; }
.wcard__link:hover { text-decoration: underline; text-underline-offset: 4px; }
/* three alternating card treatments */
.wcard--ink { background: var(--ink); color: var(--paper); }
.wcard--ink .chip { border-color: rgba(250, 250, 248, 0.25); color: rgba(250, 250, 248, 0.75); }
.wcard--ink p { color: rgba(250, 250, 248, 0.65); }
.wcard--ink .wcard__link { color: #c9b3ff; }
.wcard--vio { background: linear-gradient(150deg, #6c2bf2, #4c1d95 78%); color: #ffffff; }
.wcard--vio .chip { border-color: rgba(255, 255, 255, 0.35); color: rgba(255, 255, 255, 0.85); }
.wcard--vio p { color: rgba(255, 255, 255, 0.78); }
.wcard--vio .wcard__link { color: #ffffff; }
.wcard--paper { background: var(--paper); border: 1px solid var(--hairline); color: var(--ink); }
.wcard--paper p { color: var(--muted); }
.wcard--paper .wcard__link { color: var(--violet); }

/* ---------- process ---------- */
.process { padding: clamp(5rem, 11vh, 8rem) 0; background: var(--paper-2); }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.6rem; }
.pstep { background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 1.8rem 1.6rem; }
.pstep h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.7rem; }
.pstep h3 span { color: var(--violet); }
.pstep p { color: var(--muted); font-size: 0.95rem; margin-top: 0.7rem; }
.process__terms { display: flex; gap: clamp(1.2rem, 4vw, 3rem); flex-wrap: wrap; margin-top: 2.4rem; }
.process__terms li { color: var(--muted); font-size: 0.92rem; }
.process__terms b { color: var(--ink); font-weight: 500; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden;
  background: var(--dark-bg); color: var(--dark-ink);
  padding: clamp(6rem, 14vh, 10rem) clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}
.cta__aurora {
  position: absolute; inset: -30%; pointer-events: none; filter: blur(70px); opacity: 0.55;
  background:
    radial-gradient(38% 42% at 30% 62%, #6c2bf2 0%, transparent 70%),
    radial-gradient(30% 34% at 72% 40%, #21d4fd 0%, transparent 70%),
    radial-gradient(26% 30% at 55% 78%, #ff3dd4 0%, transparent 70%);
}
.cta__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.24;
  background-image:
    linear-gradient(rgba(245, 244, 241, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 244, 241, 0.28) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask: radial-gradient(75% 65% at 50% 45%, #000 25%, transparent 78%);
  mask: radial-gradient(75% 65% at 50% 45%, #000 25%, transparent 78%);
}
.cta__inner { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2.8rem, 9vw, 7.5rem); }
.cta h2 .vio { color: transparent; -webkit-text-stroke: 2px rgba(245, 244, 241, 0.75); }
.cta p { color: var(--dark-muted); margin: 1.4rem auto 0; max-width: 44ch; }
.cta .btn { margin-top: 2.4rem; }

/* ---------- footer ---------- */
.footer { background: var(--dark-bg); color: var(--dark-muted); border-top: 1px solid var(--dark-hairline); overflow: hidden; }
.footer__mark {
  font-family: var(--display); text-transform: lowercase; text-align: center;
  font-size: clamp(3rem, 12.5vw, 11rem); line-height: 1.05; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(245, 244, 241, 0.3);
  padding: clamp(2rem, 5vh, 3.5rem) 1rem 0;
  user-select: none;
}
.footer__mark span { -webkit-text-stroke: 0; color: var(--violet); }
.footer__row {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 2.4rem;
  font-size: 0.85rem;
}
.footer__row a { color: var(--dark-muted); transition: color 0.25s ease; }
.footer__row a:hover { color: var(--dark-ink); }
.footer__links { display: flex; gap: 1.6rem; }

/* ---------- portfolio page ---------- */
.pf-hero { padding: calc(var(--nav-h) + clamp(3.5rem, 9vh, 6rem)) 0 clamp(2.5rem, 6vh, 4rem); }
.pf-hero h1 { font-size: clamp(3.6rem, 15vw, 12rem); }
.pf-hero h1 .vio { color: var(--violet); }
.pf-hero .lede { margin-top: 1.4rem; }
.pf-group { padding: clamp(2.2rem, 5vh, 3.6rem) 0; }
.pf-group__title { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--violet); }
.pf-list { margin-top: 1.2rem; border-top: 1px solid var(--hairline); }
.pf-row {
  display: grid; grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr) minmax(0, 2fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem); align-items: baseline;
  padding: 1.8rem 0.25rem; border-bottom: 1px solid var(--hairline);
  position: relative; isolation: isolate;
  transition: padding 0.3s ease;
}
.pf-row::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--violet-soft);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
a.pf-row:hover { padding-left: 1.1rem; }
a.pf-row:hover::before { transform: scaleY(1); }
.pf-row h3 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem); line-height: 1;
}
.pf-row__industry { color: var(--violet); font-size: 0.85rem; font-weight: 500; }
.pf-row__desc { color: var(--muted); font-size: 0.93rem; }
.pf-row__desc small { display: block; margin-top: 0.45rem; font-size: 0.78rem; opacity: 0.75; }
.pf-row__go { font-size: 1.15rem; justify-self: end; color: var(--violet); }
.pf-row--static .pf-row__go { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.05em; }

/* ---------- portfolio grid + filters + viewer ---------- */
.pf-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.pf-filters .chip { cursor: pointer; transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease; background: none; }
.pf-filters .chip:hover { border-color: var(--ink); color: var(--ink); }
.pf-filters .chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.2rem; }
.pcard {
  border: 1px solid var(--hairline); border-radius: var(--r-card); overflow: hidden;
  background: #ffffff; display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(16, 16, 20, 0.1); }
.pcard.is-hidden { display: none; }
.pcard__shot { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); cursor: pointer; }
.pcard__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.pcard:hover .pcard__shot img { transform: scale(1.04); }
.pcard__phone {
  position: absolute; right: 0.8rem; bottom: 0.8rem; width: 25%;
  border-radius: 12px; border: 3px solid #101014; overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 16, 20, 0.35);
  background: #fff;
  pointer-events: none;
}
.pcard__phone img { width: 100%; height: auto; display: block; }
.pcard__shot::after {
  content: "Preview"; position: absolute; inset: auto auto 0.9rem 0.9rem;
  background: rgba(16, 16, 20, 0.82); color: #fff; font-size: 0.78rem; font-weight: 500;
  padding: 0.4rem 0.9rem; border-radius: 999px; opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pcard:hover .pcard__shot::after { opacity: 1; transform: none; }
.pcard__body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.pcard__meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.pcard h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 1.45rem; line-height: 1.05; margin-top: 0.75rem; }
.pcard p { color: var(--muted); font-size: 0.9rem; margin-top: 0.55rem; flex: 1; }
.pcard__actions { display: flex; align-items: center; gap: 1rem; margin-top: 1.1rem; flex-wrap: wrap; }
.pcard__actions .visit { font-weight: 500; font-size: 0.86rem; color: var(--ink); }
.pcard__actions .visit:hover { text-decoration: underline; text-underline-offset: 4px; }
.pcard__actions .similar { font-weight: 600; font-size: 0.86rem; color: var(--violet); }
.pcard__actions .similar:hover { text-decoration: underline; text-underline-offset: 4px; }

.viewer { position: fixed; inset: 0; z-index: 90; display: none; }
.viewer.is-open { display: block; }
.viewer__backdrop { position: absolute; inset: 0; background: rgba(13, 12, 17, 0.78); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.viewer__panel {
  position: absolute; inset: clamp(0.75rem, 3vh, 2.5rem);
  background: var(--paper); border-radius: var(--r-card); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}
.viewer__bar {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.8rem 1.1rem; border-bottom: 1px solid var(--hairline); background: #ffffff;
}
.viewer__bar strong { font-weight: 600; font-size: 0.95rem; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.viewer__bar .btn { padding: 0.5rem 1rem; font-size: 0.82rem; }
.viewer__close {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--hairline); font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.viewer__close:hover { background: var(--ink); color: var(--paper); }
.viewer__frame { flex: 1; position: relative; background: var(--paper-2); }
.viewer__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #fff; transition: width 0.3s ease, left 0.3s ease; }
.viewer__frame.is-mobile iframe { width: 390px; left: 50%; transform: translateX(-50%); box-shadow: 0 0 0 8px #101014, 0 30px 80px rgba(0,0,0,0.35); border-radius: 18px; top: 2%; height: 96%; }
.viewer__devices { display: flex; gap: 0.35rem; }
.viewer__devices button {
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: 0.4rem 0.9rem; font-size: 0.8rem; font-weight: 500; color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}
.viewer__devices button.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.viewer__note {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  background: rgba(16, 16, 20, 0.85); color: rgba(250, 250, 248, 0.9);
  font-size: 0.82rem; text-align: center; padding: 0.55rem 1rem;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
/* screenshot-preview mode (for sites that block iframe embedding) */
.viewer__frame[data-mode="shot"] { overflow-y: auto; overflow-x: hidden; background: var(--paper-2); }
.viewer__shotwrap { display: block; }
.viewer__shot { display: block; width: 100%; height: auto; }
.viewer__shotwrap.is-phone { max-width: 340px; margin: 1.6rem auto; border: 8px solid #101014; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35); }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); }

/* ---------- tablet ---------- */
@media (max-width: 1100px) and (min-width: 821px) {
  .pgrid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- mobile ---------- */
@media (max-width: 820px) {
  .nav__links > a:not(.btn) { display: none; }
  .stats__row { grid-template-columns: 1fr 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--hairline); }
  .stat:nth-child(-n+2) { border-top: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--hairline); }
  .pgrid { grid-template-columns: 1fr; }
  .viewer__panel { inset: 0.5rem; }
  .viewer__bar .btn--wa { display: none; }
  .acc__body { grid-template-columns: 1fr; }
  .acc__chips { justify-content: flex-start; }
  .process__grid { grid-template-columns: 1fr; }
  .pf-row { grid-template-columns: 1fr auto; }
  .pf-row h3 { grid-column: 1; }
  .pf-row__go { grid-column: 2; grid-row: 1; align-self: start; }
  .pf-row__industry, .pf-row__desc { grid-column: 1 / -1; }
  /* horizontal gallery degrades to a native swipe rail */
  .work__viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .work__viewport::-webkit-scrollbar { display: none; }
  .work__track { height: auto; padding-bottom: 3.5rem; }
  .wcard { scroll-snap-align: start; width: min(78vw, 340px); min-height: 330px; }
  .orb { top: 14vh; right: -18vw; width: 62vw; opacity: 0.9; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .wcard:hover { transform: none; }
}

/* ============================================================
   SEO / content + service pages
   ============================================================ */

/* breadcrumb */
.crumbs { padding: calc(var(--nav-h) + 1.4rem) 0 0; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: var(--muted); }
.crumbs li { display: flex; align-items: center; gap: 0.5rem; }
.crumbs li + li::before { content: "/"; color: var(--hairline); }
.crumbs a:hover { color: var(--ink); }
.crumbs [aria-current] { color: var(--ink); }

/* service / article hero */
.lead {
  padding: 1.6rem 0 clamp(2.5rem, 6vh, 4rem);
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.lead--solo { grid-template-columns: 1fr; max-width: 60rem; }
.lead__eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet); }
.lead h1 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 0.96; letter-spacing: 0.004em; margin-top: 1rem; }
.lead h1 .vio { color: var(--violet); }
.lead__sub { color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.18rem); max-width: 46ch; margin-top: 1.3rem; }
.lead__price { display: inline-flex; align-items: baseline; gap: 0.5rem; margin-top: 1.5rem; font-weight: 500; }
.lead__price b { font-family: var(--display); font-weight: 400; font-size: 1.9rem; color: var(--ink); }
.lead__price span { color: var(--muted); font-size: 0.9rem; }
.lead__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.6rem; }
.lead__media { border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--hairline); box-shadow: 0 30px 80px rgba(16,16,20,0.1); }
.lead__media img { width: 100%; height: auto; display: block; }
.lead__stats { display: flex; gap: clamp(1rem, 3vw, 2.2rem); flex-wrap: wrap; margin-top: 1.8rem; }
.lead__stats div b { font-family: var(--display); font-weight: 400; font-size: 1.7rem; display: block; line-height: 1.1; }
.lead__stats div span { color: var(--muted); font-size: 0.82rem; }

/* generic content section */
.csec { padding: clamp(3rem, 8vh, 5.5rem) 0; }
.csec--tint { background: var(--paper-2); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.csec__head { max-width: 42rem; margin-bottom: 2.4rem; }
.csec h2 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.7rem, 4.4vw, 3rem); line-height: 1; }
.csec h2 .vio { color: var(--violet); }
.csec__head p { color: var(--muted); margin-top: 0.9rem; max-width: 54ch; }

/* feature grid */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.fgrid--2 { grid-template-columns: repeat(2, 1fr); }
.fcard { background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 1.6rem 1.5rem; }
.fcard h3 { font-weight: 600; font-size: 1.1rem; }
.fcard p { color: var(--muted); font-size: 0.93rem; margin-top: 0.55rem; }
.fnum { counter-reset: fc; }
.fcard--num { counter-increment: fc; }
.fcard--num h3::before { content: counter(fc, decimal-leading-zero); font-family: var(--display); color: var(--violet); margin-right: 0.6rem; }

/* checklist (CSS-drawn tick, no data URI) */
.checks { list-style: none; display: grid; gap: 0.75rem; }
.checks li { position: relative; padding-left: 1.9rem; color: var(--muted); }
.checks li::before { content: ""; position: absolute; left: 0; top: 0.08em; width: 1.15rem; height: 1.15rem; border-radius: 50%; background: var(--violet-soft); border: 1px solid rgba(108, 43, 242, 0.35); }
.checks li::after { content: ""; position: absolute; left: 0.42rem; top: 0.28em; width: 0.3rem; height: 0.55rem; border: solid var(--violet-deep); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.checks li b { color: var(--ink); font-weight: 600; }

/* prose (blog articles) */
.prose { max-width: 44rem; margin: 0 auto; }
.prose > * + * { margin-top: 1.15rem; }
.prose p, .prose li { color: #2b2a31; font-size: 1.06rem; line-height: 1.75; }
.prose h2 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.5rem, 3.6vw, 2.2rem); line-height: 1.05; margin-top: 2.6rem; }
.prose h3 { font-weight: 600; font-size: 1.28rem; margin-top: 1.8rem; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: 0.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a { color: var(--violet-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose strong { font-weight: 600; color: var(--ink); }
.prose blockquote { border-left: 3px solid var(--violet); padding: 0.4rem 0 0.4rem 1.3rem; color: var(--muted); font-size: 1.12rem; }
.prose figure img { border-radius: var(--r-card); border: 1px solid var(--hairline); width: 100%; height: auto; }
.prose figcaption { color: var(--muted); font-size: 0.85rem; margin-top: 0.6rem; text-align: center; }

/* pricing table */
.ptable-wrap { overflow-x: auto; border: 1px solid var(--hairline); border-radius: var(--r-card); }
table.ptable { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 34rem; background: #fff; }
table.ptable caption { text-align: left; padding: 0.9rem 1.1rem; color: var(--muted); font-size: 0.85rem; caption-side: bottom; }
table.ptable th, table.ptable td { text-align: left; padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--hairline); }
table.ptable thead th { font-weight: 600; background: var(--paper-2); }
table.ptable tbody tr:last-child td { border-bottom: 0; }
table.ptable td:first-child { font-weight: 600; color: var(--ink); }
table.ptable .hl { color: var(--violet-deep); font-weight: 600; }

/* article meta + TOC */
.amsg { display: flex; flex-wrap: wrap; gap: 0.5rem 1.1rem; color: var(--muted); font-size: 0.85rem; margin-top: 1.2rem; align-items: center; }
.toc { max-width: 44rem; margin: 2rem auto 0; background: var(--paper-2); border: 1px solid var(--hairline); border-radius: var(--r-card); padding: 1.2rem 1.4rem; }
.toc h2 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--violet); font-weight: 600; font-family: var(--sans); }
.toc ol { list-style: none; margin-top: 0.7rem; display: grid; gap: 0.45rem; }
.toc a { color: var(--ink); font-size: 0.95rem; }
.toc a:hover { color: var(--violet-deep); }

/* blog hub cards */
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.bcard { display: flex; flex-direction: column; border: 1px solid var(--hairline); border-radius: var(--r-card); overflow: hidden; background: #fff; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease; }
.bcard:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(16,16,20,0.1); }
.bcard__body { padding: 1.5rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.bcard__tag { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--violet); font-weight: 600; }
.bcard h3 { font-weight: 600; font-size: 1.2rem; line-height: 1.25; margin-top: 0.7rem; }
.bcard p { color: var(--muted); font-size: 0.93rem; margin-top: 0.6rem; flex: 1; }
.bcard__go { margin-top: 1.1rem; color: var(--violet-deep); font-weight: 600; font-size: 0.9rem; }

/* related links */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related a { border: 1px solid var(--hairline); border-radius: 14px; padding: 1.1rem 1.2rem; transition: border-color 0.25s ease, background 0.25s ease; }
.related a:hover { border-color: var(--violet); background: var(--violet-soft); }
.related span { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet); font-weight: 600; }
.related b { display: block; font-weight: 600; margin-top: 0.3rem; }

/* rich SEO footer */
.footer__grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding: clamp(2.5rem, 6vh, 4rem) clamp(1.25rem, 4vw, 3rem) 1rem; }
.footer__brandcol p { color: var(--dark-muted); font-size: 0.9rem; margin: 1rem 0 1.3rem; max-width: 30ch; }
.footer__brandcol img { height: 30px; width: auto; }
.footer__col h4 { color: var(--dark-ink); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 600; }
.footer__col a:not(.btn) { display: block; color: var(--dark-muted); font-size: 0.9rem; padding: 0.32rem 0; transition: color 0.2s ease; }
.footer__col a:not(.btn):hover { color: var(--dark-ink); }
.footer__brandcol .btn--wa { color: #ffffff; margin-top: 0.2rem; }
.footer__geo { color: var(--dark-muted); font-size: 0.8rem; }

@media (max-width: 900px) {
  .lead { grid-template-columns: 1fr; }
  .lead__media { order: -1; }
  .fgrid, .fgrid--2, .bgrid, .related { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer__brandcol { grid-column: 1 / -1; }
}
