/* ============================================================
   BLDR5, shared design system
   Dark, geometric, blue-accent. Archivo + JetBrains Mono.
   ============================================================ */

:root {
  --bg: #07090d;
  --bg2: #0c0f15;
  --panel: #10141c;
  --panel2: #141925;
  --line: rgba(255, 255, 255, 0.08);
  --line2: rgba(255, 255, 255, 0.14);
  --txt: #f4f6fa;
  --mut: #9aa3b2;
  --mut2: #6b7484;
  --blue: #1b62fa;
  --blue-hi: #4d86ff;
  --blue-dim: rgba(27, 98, 250, 0.14);
  --paper: #eef1f6;
  --paper2: #e3e8f0;
  --ink: #0b0e13;
  --ink-mut: #4a5260;
  --font-d: "Archivo", system-ui, sans-serif;
  --font-m: "JetBrains Mono", ui-monospace, monospace;
  --wrap: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --nav-h: 72px;
  --r: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-d);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: #fff; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- type ---------- */
.label {
  font-family: var(--font-m);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mut);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.label::before { content: ""; width: 8px; height: 8px; background: var(--blue); flex: none; }
.label.plain::before { display: none; }

.d1, .d2, .d3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-stretch: 112%;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.d1 { font-size: clamp(44px, 9vw, 132px); }
.d2 { font-size: clamp(34px, 5.4vw, 72px); }
.d3 { font-size: clamp(24px, 3.2vw, 40px); }
.lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--mut); max-width: 56ch; text-wrap: pretty; }
.accent { color: var(--blue-hi); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-m);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 30px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn .arr { transition: transform 0.3s; }
.btn:hover .arr { transform: translateX(5px); }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0d47c9;
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn:hover::after { transform: translateY(0); }
.btn.ghost { background: transparent; border-color: var(--line2); color: var(--txt); }
.btn.ghost::after { background: rgba(255, 255, 255, 0.07); }
.btn.ghost:hover { border-color: var(--txt); }
.btn.on-light { }
.btn.ghost.on-light { border-color: rgba(11, 14, 19, 0.25); color: var(--ink); }
.btn.ghost.on-light::after { background: rgba(11, 14, 19, 0.06); }
.btn.ghost.on-light:hover { border-color: var(--ink); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}
.nav.scrolled {
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav.hidden { transform: translateY(-100%); }
.nav-in {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 18px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mut);
  padding: 8px 13px;
  position: relative;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--txt); }
.nav-links a.active { color: var(--txt); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 1px;
  height: 2px;
  background: var(--blue);
}
.nav-cta {
  font-family: var(--font-m);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 11px 20px;
  transition: background 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { background: #0d47c9; }
.burger {
  display: none;
  background: none;
  border: 1px solid var(--line2);
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--txt); transition: transform 0.3s, opacity 0.3s; }
body.menu-open .burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* mobile menu */
.m-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-h) var(--pad) 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
body.menu-open .m-menu { opacity: 1; visibility: visible; }
.m-menu a.m-link {
  font-family: var(--font-d);
  font-weight: 800;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: clamp(30px, 7.5vh, 48px);
  line-height: 1.12;
  color: var(--txt);
  display: flex;
  align-items: baseline;
  gap: 14px;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s, color 0.25s;
}
.m-menu a.m-link:hover, .m-menu a.m-link.active { color: var(--blue-hi); }
.m-menu a.m-link i { font-family: var(--font-m); font-size: 12px; font-style: normal; color: var(--mut2); letter-spacing: 0.15em; }
body.menu-open .m-menu a.m-link { transform: translateY(0); opacity: 1; }
.m-menu .m-foot { margin-top: 7vh; display: flex; flex-direction: column; gap: 6px; font-family: var(--font-m); font-size: 13px; color: var(--mut); }
.m-menu .m-foot a:hover { color: var(--txt); }

/* ---------- sections ---------- */
.sec { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.sec.tight { padding: clamp(56px, 8vw, 100px) 0; }
.sec.light { background: var(--paper); color: var(--ink); }
.sec.light .label { color: var(--ink-mut); }
.sec.light .lead { color: var(--ink-mut); }
.sec.panel-bg { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { display: flex; flex-direction: column; gap: 22px; margin-bottom: clamp(40px, 6vw, 80px); }
.sec-head .row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }

/* page hero (inner pages) */
.page-hero { padding: calc(var(--nav-h) + clamp(64px, 9vw, 130px)) 0 clamp(56px, 7vw, 100px); position: relative; overflow: hidden; }
.page-hero .label { margin-bottom: 26px; }
.page-hero .lead { margin-top: 28px; }
.page-hero::before {
  content: "";
  position: absolute;
  top: -340px; right: -240px;
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(27, 98, 250, 0.16), transparent 65%);
  pointer-events: none;
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  user-select: none;
  white-space: nowrap;
  display: flex;
}
.marquee .track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: mq 30s linear infinite;
  flex: none;
}
.marquee .track > span {
  font-family: var(--font-d);
  font-weight: 800;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 0.02em;
  color: var(--mut2);
  display: inline-flex;
  align-items: center;
}
.marquee .track > span::after { content: ""; width: 9px; height: 9px; background: var(--blue); margin: 0 30px; }
.marquee.fast .track { animation-duration: 20s; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ---------- stat grid ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.stats .stat {
  padding: clamp(28px, 3.4vw, 48px) clamp(20px, 2.6vw, 40px);
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stats .stat:last-child { border-right: 0; }
.stats .num {
  font-family: var(--font-d);
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats .num em { font-style: normal; color: var(--blue-hi); }
.stats .cap { font-family: var(--font-m); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mut); margin-top: 14px; }

/* ---------- service rows (home) ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid;
  grid-template-columns: 90px 1.1fr 1.6fr auto;
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
  padding: clamp(26px, 3.4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue-dim), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.svc-row:hover { padding-left: 18px; }
.svc-row:hover::before { opacity: 1; }
.svc-row .no { font-family: var(--font-m); font-size: 13px; color: var(--mut2); letter-spacing: 0.1em; }
.svc-row:hover .no { color: var(--blue-hi); }
.svc-row h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.05;
}
.svc-row p { color: var(--mut); font-size: 16px; max-width: 48ch; }
.svc-row .go {
  width: 52px; height: 52px;
  border: 1px solid var(--line2);
  display: grid;
  place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  flex: none;
}
.svc-row:hover .go { background: var(--blue); border-color: var(--blue); transform: rotate(-45deg); }
.svc-row .go svg { width: 18px; height: 18px; }

/* ---------- cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.5vw, 32px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(26px, 3vw, 40px);
  position: relative;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover { border-color: rgba(27, 98, 250, 0.45); transform: translateY(-6px); }
.card .label { margin-bottom: 20px; }
.card h3 { font-family: var(--font-d); font-weight: 800; font-stretch: 112%; text-transform: uppercase; font-size: clamp(18px, 1.8vw, 24px); line-height: 1.1; margin-bottom: 12px; }
.card p { color: var(--mut); font-size: 15.5px; }
.sec.light .card { background: #fff; border-color: rgba(11, 14, 19, 0.1); }
.sec.light .card p { color: var(--ink-mut); }
.sec.light .card:hover { border-color: var(--blue); }

/* ---------- work cards ---------- */
.work-card {
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.work-card:hover { border-color: rgba(27, 98, 250, 0.5); transform: translateY(-6px); }
.work-card .thumb { position: relative; overflow: hidden; background: var(--panel2); }
.work-card .thumb image-slot { width: 100%; height: 100%; }
.work-card .meta { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.work-card .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: var(--font-m);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mut);
  border: 1px solid var(--line2);
  padding: 5px 10px;
}
.work-card h3 { font-family: var(--font-d); font-weight: 800; font-stretch: 112%; text-transform: uppercase; font-size: clamp(19px, 2vw, 26px); line-height: 1.08; }
.work-card .result { font-family: var(--font-m); font-size: 12.5px; color: var(--blue-hi); letter-spacing: 0.08em; text-transform: uppercase; margin-top: auto; padding-top: 14px; }
.sec.light .work-card { background: #fff; border-color: rgba(11, 14, 19, 0.1); }
.sec.light .tag { color: var(--ink-mut); border-color: rgba(11, 14, 19, 0.2); }
.sec.light .work-card:hover { border-color: var(--blue); }

/* ---------- process ---------- */
.proc { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.proc .step { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(26px, 3vw, 42px); position: relative; transition: background 0.3s; }
.proc .step:hover { background: var(--blue-dim); }
.proc .step .no { font-family: var(--font-m); font-size: 12px; color: var(--blue-hi); letter-spacing: 0.15em; }
.proc .step h3 { font-family: var(--font-d); font-weight: 800; font-stretch: 112%; text-transform: uppercase; font-size: clamp(20px, 2.2vw, 28px); margin: 16px 0 10px; }
.proc .step p { color: var(--mut); font-size: 15.5px; }

/* ---------- quote ---------- */
.quote-mark { font-family: var(--font-d); font-weight: 800; font-size: 90px; line-height: 0.6; color: var(--blue); }
blockquote.big {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 24ch;
  text-wrap: pretty;
}
blockquote.big em { font-style: normal; color: var(--blue-hi); }
.quote-by { display: flex; flex-direction: column; gap: 2px; margin-top: 30px; }
.quote-by .who { font-family: var(--font-m); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.quote-by .role { font-family: var(--font-m); font-size: 12px; color: var(--mut); }

/* ---------- accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item button.acc-q {
  width: 100%;
  background: none;
  border: 0;
  color: inherit;
  font-family: var(--font-d);
  font-weight: 700;
  font-stretch: 108%;
  font-size: clamp(17px, 1.8vw, 22px);
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
}
.acc-item .acc-q .ic {
  width: 38px; height: 38px;
  border: 1px solid var(--line2);
  display: grid;
  place-items: center;
  flex: none;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.acc-item .acc-q .ic::before, .acc-item .acc-q .ic::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s;
}
.acc-item .acc-q .ic::before { width: 14px; height: 2px; }
.acc-item .acc-q .ic::after { width: 2px; height: 14px; }
.acc-item.open .acc-q .ic { background: var(--blue); border-color: var(--blue); color: #fff; }
.acc-item.open .acc-q .ic::after { transform: rotate(90deg); }
.acc-item .acc-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.acc-item .acc-a p { color: var(--mut); padding: 0 0 28px; max-width: 68ch; }
.sec.light .acc, .sec.light .acc-item { border-color: rgba(11, 14, 19, 0.12); }
.sec.light .acc-item .acc-a p { color: var(--ink-mut); }
.sec.light .acc-item .acc-q .ic { border-color: rgba(11, 14, 19, 0.25); }

/* ---------- pricing ---------- */
.price-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(30px, 3.4vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(27, 98, 250, 0.45); }
.price-card.hot { border-color: var(--blue); background: linear-gradient(180deg, rgba(27, 98, 250, 0.12), var(--panel) 55%); }
.price-card .pop {
  position: absolute;
  top: -1px; right: -1px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-m);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
}
.price-card h3 { font-family: var(--font-d); font-weight: 800; font-stretch: 112%; text-transform: uppercase; font-size: 24px; }
.price-card .for { font-family: var(--font-m); font-size: 12px; color: var(--mut); letter-spacing: 0.08em; margin-top: 6px; min-height: 2.4em; }
.price-card .amt { font-family: var(--font-d); font-weight: 800; font-stretch: 112%; font-size: clamp(40px, 4vw, 56px); line-height: 1; margin: 26px 0 4px; }
.price-card .amt span { font-size: 15px; font-weight: 500; font-stretch: 100%; color: var(--mut); }
.price-card .from { font-family: var(--font-m); font-size: 11.5px; color: var(--mut2); letter-spacing: 0.1em; text-transform: uppercase; }
.price-card ul { list-style: none; margin: 28px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.price-card ul li { display: flex; gap: 12px; align-items: baseline; color: var(--mut); font-size: 15.5px; }
.price-card ul li::before { content: ""; width: 7px; height: 7px; background: var(--blue); flex: none; transform: translateY(-1px); }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ---------- journal ---------- */
.post-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.post-card:hover { border-color: rgba(27, 98, 250, 0.45); transform: translateY(-6px); }
.post-card .pmeta { display: flex; justify-content: space-between; gap: 16px; font-family: var(--font-m); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mut2); }
.post-card .pmeta b { color: var(--blue-hi); font-weight: 500; }
.post-card h3 { font-family: var(--font-d); font-weight: 800; font-stretch: 110%; font-size: clamp(19px, 2vw, 25px); line-height: 1.15; text-transform: uppercase; }
.post-card p { color: var(--mut); font-size: 15.5px; }
.post-card .read { font-family: var(--font-m); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--txt); margin-top: auto; display: inline-flex; gap: 10px; align-items: center; }
.post-card:hover .read { color: var(--blue-hi); }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 10px; }
.field label { font-family: var(--font-m); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mut); }
.field input, .field textarea, .field select {
  background: var(--panel);
  border: 1px solid var(--line2);
  color: var(--txt);
  font-family: var(--font-d);
  font-size: 16px;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  border-radius: 0;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); background: var(--panel2); }
.field textarea { resize: vertical; min-height: 140px; }

/* ---------- CTA band ---------- */
.cta-band { padding: clamp(90px, 12vw, 170px) 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -55%;
  transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse, rgba(27, 98, 250, 0.22), transparent 65%);
  pointer-events: none;
}
.cta-band .d1 { margin: 24px 0 18px; }
.cta-band .lead { margin: 0 auto 42px; }
.cta-band .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  background: var(--bg2);
  padding: clamp(60px, 8vw, 100px) 0 36px;
}
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(32px, 4vw, 64px); padding-bottom: clamp(48px, 6vw, 72px); }
.foot-brand img { height: 26px; width: auto; margin-bottom: 22px; }
.foot-brand p { color: var(--mut); font-size: 15px; max-width: 30ch; }
.foot-col h4 { font-family: var(--font-m); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mut2); margin-bottom: 20px; font-weight: 500; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { color: var(--mut); font-size: 15px; transition: color 0.25s; }
.foot-col a:hover { color: var(--txt); }
.foot-col .contact-line { color: var(--mut); font-size: 15px; line-height: 1.5; }
.foot-col .contact-line a { color: var(--txt); }
.foot-col .contact-line a:hover { color: var(--blue-hi); }
.foot-mega {
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: clamp(20px, 3vw, 40px) 0 0;
}
.foot-mega img { width: 100%; height: auto; opacity: 0.1; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
  font-family: var(--font-m);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--mut2);
  text-transform: uppercase;
}
.foot-bottom a:hover { color: var(--txt); }

/* ---------- reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .rv {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .rv.in { opacity: 1; transform: translateY(0); }
  .rv.dl1 { transition-delay: 0.08s; } .rv.dl2 { transition-delay: 0.16s; }
  .rv.dl3 { transition-delay: 0.24s; } .rv.dl4 { transition-delay: 0.32s; }
  .rv.dl5 { transition-delay: 0.4s; }  .rv.dl6 { transition-delay: 0.48s; }
}


/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:nth-child(2) { border-right: 0; }
  .stats .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proc { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 56px 1fr auto; }
  .svc-row p { grid-column: 2 / 3; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .svc-row .no { order: -1; }
  .svc-row .go { display: none; }
  .svc-row p { grid-column: auto; }
  .proc { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}

/* ============================================================
   v3, premium dark gradient system (overrides)
   ============================================================ */

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  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.55'/%3E%3C/svg%3E");
}

/* every section dark, retire the light theme */
.sec.light {
  background:
    radial-gradient(1100px 520px at 50% -10%, rgba(27, 98, 250, 0.12), transparent 62%),
    var(--bg2);
  color: var(--txt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec.light .label { color: var(--mut); }
.sec.light .lead { color: var(--mut); }
.sec.light .card, .sec.light .work-card { background: var(--panel); border-color: var(--line); }
.sec.light .card p, .sec.light .acc-item .acc-a p { color: var(--mut); }
.sec.light .tag { color: var(--mut); border-color: var(--line2); }
.sec.light .acc, .sec.light .acc-item { border-color: var(--line); }
.sec.light .acc-item .acc-q .ic { border-color: var(--line2); }
.btn.ghost.on-light { border-color: var(--line2); color: var(--txt); }
.btn.ghost.on-light::after { background: rgba(255, 255, 255, 0.07); }
.btn.ghost.on-light:hover { border-color: var(--txt); }

/* gradient boxes, premium, minimal */
.card, .work-card, .price-card, .post-card, .proc .step, .stats .stat,
.split .col, .char, .subscribe, .cform, .case-hero {
  position: relative;
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(22, 27, 40, 0.92), rgba(10, 13, 19, 0.96)) padding-box,
    linear-gradient(165deg, rgba(77, 134, 255, 0.38), rgba(255, 255, 255, 0.07) 38%, rgba(27, 98, 250, 0.10)) border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 44px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}
.split .col.fix {
  background:
    linear-gradient(180deg, rgba(27, 98, 250, 0.16), rgba(10, 13, 19, 0.96) 62%) padding-box,
    linear-gradient(165deg, rgba(77, 134, 255, 0.65), rgba(255, 255, 255, 0.08) 45%, rgba(27, 98, 250, 0.2)) border-box;
}
.price-card.hot {
  background:
    linear-gradient(180deg, rgba(27, 98, 250, 0.2), rgba(10, 13, 19, 0.96) 58%) padding-box,
    linear-gradient(165deg, rgba(77, 134, 255, 0.8), rgba(255, 255, 255, 0.1) 45%, rgba(27, 98, 250, 0.3)) border-box;
}

/* cursor glare on boxes */
.card::after, .work-card::after, .price-card::after, .post-card::after,
.proc .step::after, .stats .stat::after, .split .col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(77, 134, 255, 0.16), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover::after, .work-card:hover::after, .price-card:hover::after,
.post-card:hover::after, .proc .step:hover::after, .stats .stat:hover::after,
.split .col:hover::after { opacity: 1; }

.card:hover, .work-card:hover, .price-card:hover, .post-card:hover {
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(25, 31, 48, 0.95), rgba(11, 14, 21, 0.97)) padding-box,
    linear-gradient(165deg, rgba(77, 134, 255, 0.75), rgba(255, 255, 255, 0.1) 38%, rgba(27, 98, 250, 0.28)) border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 26px 60px rgba(0, 0, 0, 0.5), 0 10px 50px rgba(27, 98, 250, 0.18);
}

/* stats, gradient numerals, floating boxes */
.stats { border: 0; gap: clamp(14px, 1.6vw, 22px); }
.stats .stat, .stats .stat:last-child { border: 1px solid transparent; }
.stats .stat:nth-child(-n+2) { border-bottom-color: transparent; }
.stats .num {
  background: linear-gradient(120deg, #ffffff 30%, #93b4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats .num em, .stats .num span { background: inherit; -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats .num em {
  background: linear-gradient(120deg, var(--blue-hi), #8fb0ff);
  -webkit-background-clip: text;
  background-clip: text;
}

/* process, floating gradient steps */
.proc { border: 0; gap: clamp(14px, 1.6vw, 22px); }
.proc .step { border: 1px solid transparent; }
.proc .step:hover { background:
    linear-gradient(180deg, rgba(27, 98, 250, 0.14), rgba(10, 13, 19, 0.96) 70%) padding-box,
    linear-gradient(165deg, rgba(77, 134, 255, 0.6), rgba(255, 255, 255, 0.08) 45%, rgba(27, 98, 250, 0.2)) border-box; }

/* media never crops, letterbox on a glow field */
.work-card .thumb {
  display: grid;
  place-items: center;
  background: radial-gradient(60% 60% at 50% 0%, rgba(27, 98, 250, 0.18), transparent 72%), var(--panel2);
}
.work-card .thumb img { object-fit: contain; }

/* marquee, alternating outline words */
.marquee .track > span:nth-child(odd) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
}

/* CTA band, abstract field behind the glow */
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../uploads/unsplash-1618005182384.jpg") center / cover no-repeat;
  opacity: 0.13;
  pointer-events: none;
}

/* accordion + quote polish */
.acc-item.open { background: linear-gradient(90deg, rgba(27, 98, 250, 0.07), transparent 65%); }
blockquote.big em {
  background: linear-gradient(120deg, var(--blue-hi), #9db9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Small phones — display sizes that overflow 320px-class viewports */
@media (max-width: 380px) {
  .d2 { font-size: clamp(26px, 8.5vw, 34px); }
  .m-menu a.m-link { font-size: clamp(24px, 8vw, 48px); }
}
