/* ═══════════════════════════════════════════════════════════════════
   Tripletic — shared.css
   Single stylesheet for all pages. No inline <style> blocks needed.
   Sections:
     1.  Tokens & Reset
     2.  Typography helpers
     3.  Buttons
     4.  Nav & Drawer
     5.  Hero (index)
     6.  Client strip / Marquee
     7.  Sections & Section headers
     8.  Page hero (interior pages)
     9.  Services grid
     10. Stats band
     11. Portfolio grid
     12. Tools grid
     13. Process card
     14. Testimonials
     15. CTA / Contact form
     16. Blog grid & Newsletter
     17. About — Story, Values, Team, Quotes
     18. Careers — Culture, Jobs, Benefits
     19. Contact page
     20. Portfolio page
     21. Services page (full list layout)
     22. Legal pages (Privacy / Terms)
     23. Footer
     24. Reveal animations
     25. Hero browser mockup
═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');


/* ── 1. TOKENS & RESET ─────────────────────────────────────────── */
:root {
  --w:         #ffffff;
  --g50:       #F9F9F9;
  --g100:      #F3F3F3;
  --g200:      #E8E8E8;
  --g400:      #A0A0A0;
  --g500:      #6B6B6B;
  --g700:      #353535;
  --ink:       #0C0C0C;
  --accent:    #1843EF;
  --accent-dk: #1236C9;
  --accent-lt: #EDF1FE;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --sh:    0 1px 2px rgba(0,0,0,.05), 0 4px 16px -4px rgba(0,0,0,.08);
  --sh-lg: 0 8px 40px -12px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.04);
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--w); color: var(--ink);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
p { margin: 0; }


/* ── 2. TYPOGRAPHY HELPERS ─────────────────────────────────────── */
.fr   { font-family: 'Fraunces', serif; font-weight: 400; }
.mono { font-family: 'JetBrains Mono', monospace; }

.w { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 680px) { .w { padding: 0 20px; } }

/* eyebrow label */
.eb {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--g400);
}
.eb::before { content: ""; width: 20px; height: 1px; background: var(--g400); }

/* tag pill */
.tag {
  font-size: 12px; padding: 4px 10px; border-radius: 999px;
  background: var(--g100); color: var(--g500); font-weight: 500;
}


/* ── 3. BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; font-family: 'Inter', sans-serif;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: all .2s ease;
}
.btn .ico { font-size: 16px; transition: transform .25s; }
.btn:hover .ico { transform: translate(2px, -2px); }
.btn-ink    { background: var(--ink);    color: #fff; border-color: var(--ink); }
.btn-ink:hover { background: #000; }
.btn-out    { background: transparent;  color: var(--ink); border-color: var(--g200); }
.btn-out:hover { border-color: var(--ink); }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dk); }


/* ── 4. NAV & DRAWER ────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
#nav.scrolled { border-bottom-color: var(--g200); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo-img {
  height: 75px;
  width: auto;
}
.logo-img-footer {
  height: 140px;
  width: auto;
}
.logo {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 26px; letter-spacing: -.03em; color: var(--ink);
  display: flex; align-items: center; gap: 2px;
}
.logo .dot { color: var(--accent); }
.nav-menu  { display: flex; align-items: center; gap: 2px; }
.nav-lnk {
  padding: 9px 15px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; color: var(--g700);
  transition: background .2s, color .2s;
}
.nav-lnk:hover  { background: var(--g100); color: var(--ink); }
.nav-lnk.active { color: var(--accent); background: var(--accent-lt); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-ham {
  display: none; width: 40px; height: 40px; border-radius: 999px;
  background: var(--g100); border: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-ham span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink); border-radius: 2px; transition: all .25s;
}
.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-drawer {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 99; padding: 24px 20px;
  flex-direction: column; gap: 4px; border-top: 1px solid var(--g200);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 16px; font-size: 20px; font-weight: 500; color: var(--ink);
  border-radius: var(--r); transition: background .2s;
}
.nav-drawer a:hover { background: var(--g50); }
.nav-drawer .sep { height: 1px; background: var(--g200); margin: 8px 0; }
@media (max-width: 920px) {
  .nav-menu { display: none; }
  .nav-ham  { display: flex; }
  .nav-right .btn { display: none; }
}


/* ── 5. HERO (index page) ───────────────────────────────────────── */
.hero {
  padding: 144px 0 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--g200);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, var(--g200) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  mask-image:         radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  opacity: .6;
}
.hero .w { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-lt); color: var(--accent);
  border: 1px solid rgba(24,67,239,.2);
  border-radius: 999px; padding: 5px 14px 5px 8px;
  font-size: 13px; font-weight: 500; margin-bottom: 28px;
}
.hero-tag .pip {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: ping 2s ease-in-out infinite;
}
@keyframes ping {
  0%,100% { box-shadow: 0 0 0 0 rgba(24,67,239,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(24,67,239,0); }
}
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(46px, 6vw, 88px); line-height: 1;
  letter-spacing: -.03em; margin: 0 0 24px;
  color: var(--ink); text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 18px; color: var(--g500); line-height: 1.6;
  max-width: 500px; margin: 0 0 36px;
}
.hero-btns  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--g500);
}
.stars { color: #F59E0B; letter-spacing: 1px; font-size: 14px; }
.trust-divider { width: 1px; height: 20px; background: var(--g200); }

.float-badge {
  position: absolute; top: -20px; right: 20px;
  background: #fff; border: 1px solid var(--g200);
  border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  animation: float 4s ease-in-out infinite;
}
.float-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}


/* ── 6. CLIENT STRIP / MARQUEE ─────────────────────────────────── */
.clients {
  border-top: 1px solid var(--g200); border-bottom: 1px solid var(--g200);
  padding: 22px 0; background: var(--g50); overflow: hidden;
}
.clients-lbl {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--g400); margin-bottom: 18px;
}
.mq-wrap {
  overflow: hidden; position: relative;
  mask-image:         linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.mq { display: flex; gap: 56px; width: max-content; animation: mq 36s linear infinite; }
@keyframes mq { to { transform: translateX(-50%); } }
.mq-item {
  font-size: 16px; font-weight: 600; letter-spacing: -.01em;
  color: var(--g400); white-space: nowrap; transition: color .2s;
}


/* ── 7. SECTIONS & SECTION HEADERS ─────────────────────────────── */
section { position: relative; }
.sec    { padding: 112px 0; }
.sec-sm { padding: 80px 0; }
.sec-alt { background: var(--g50); }
@media (max-width: 680px) {
  .sec    { padding: 72px 0; }
  .sec-sm { padding: 56px 0; }
}
.sh {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end; margin-bottom: 64px;
}
@media (max-width: 820px) { .sh { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; } }
.sh h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px); line-height: 1.05;
  letter-spacing: -.03em; margin: 16px 0 0; text-wrap: balance;
}
.sh h2 em  { font-style: italic; color: var(--accent); }
.sh-sub    { font-size: 17px; color: var(--g500); max-width: 480px; line-height: 1.55; }


/* ── 8. PAGE HERO (interior pages) ─────────────────────────────── */
.page-hero {
  padding: 136px 0 80px; background: var(--g50);
  border-bottom: 1px solid var(--g200);
}
.page-hero .eb   { margin-bottom: 20px; display: block; }
.page-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px); line-height: 1.02;
  letter-spacing: -.035em; margin: 0 0 22px; max-width: 800px; text-wrap: balance;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p     { font-size: 19px; color: var(--g500); max-width: 580px; line-height: 1.55; }

/* two-col page hero (services, etc.) */
.page-hero-split {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 64px; align-items: center;
}
@media (max-width: 880px) {
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-art   { display: block !important; }
}
.page-hero-art { display: block; }


/* ── 9. SERVICES GRID ───────────────────────────────────────────── */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--g200);
  border: 1px solid var(--g200); border-radius: var(--r-lg); overflow: hidden;
}
@media (max-width: 960px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: #fff; padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.svc:hover { background: var(--g50); }
.svc-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--g100); display: grid; place-items: center;
  margin-bottom: 20px;
}
.svc-ico svg { width: 22px; height: 22px; }
.svc .num {
  position: absolute; top: 28px; right: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--g400); letter-spacing: .1em;
}
.svc h3 { font-size: 19px; font-weight: 600; letter-spacing: -.015em; margin: 0 0 10px; }
.svc p  { font-size: 14px; color: var(--g500); line-height: 1.55; margin: 0; }
.svc-arrow {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500; color: var(--accent);
  margin-top: 20px; opacity: 0; transform: translateY(4px); transition: all .2s;
}
.svc:hover .svc-arrow { opacity: 1; transform: none; }

/* Services page — full list layout */
.svc-list { display: flex; flex-direction: column; gap: 0; }
.svc-row {
  display: grid; grid-template-columns: 64px 1fr 1fr;
  gap: 48px; align-items: start; padding: 56px 0;
  border-top: 1px solid var(--g200);
}
.svc-row:last-child { border-bottom: 1px solid var(--g200); }
@media (max-width: 880px) { .svc-row { grid-template-columns: 1fr; gap: 20px; } }
.svc-row .sn {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: .2em; color: var(--g400); padding-top: 8px;
}
.svc-row h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px); letter-spacing: -.02em; margin: 0 0 16px;
}
.svc-row .tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.svc-row p        { font-size: 15px; color: var(--g500); line-height: 1.65; }
.svc-row ul       { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.svc-row ul li    { font-size: 15px; color: var(--g700); display: flex; align-items: flex-start; gap: 10px; }
.svc-row ul li::before { content: "→"; color: var(--accent); font-size: 13px; margin-top: 2px; flex: none; }
.svc-row .ico-box {
  width: 56px; height: 56px; border-radius: var(--r-lg);
  background: var(--accent-lt); display: grid; place-items: center; flex: none;
}
.svc-row .ico-box svg { width: 26px; height: 26px; }

/* Services tools band */
.tools-band {
  background: var(--g50); padding: 80px 0;
  border-top: 1px solid var(--g200); border-bottom: 1px solid var(--g200);
}
.tools-grid2 {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px; margin-top: 48px;
}
@media (max-width: 960px) { .tools-grid2 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .tools-grid2 { grid-template-columns: repeat(3, 1fr); } }
.tool2 {
  border: 1px solid var(--g200); border-radius: var(--r); padding: 18px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: #fff; transition: all .22s; text-align: center;
}
.tool2:hover { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-lt); transform: translateY(-2px); }
.tool2 img  { width: 28px; height: 28px; }
.tool2 svg  { width: 28px; height: 28px; }
.tool2 span { font-size: 12px; font-weight: 500; color: var(--g500); }
.tool2:hover span { color: var(--ink); }

/* Services process strip */
.process-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}
@media (max-width: 820px) { .process-strip { grid-template-columns: repeat(2, 1fr); } }
.ps-cell { background: #fff; border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 28px 24px; }
.ps-cell .pn {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .2em; color: var(--accent); margin-bottom: 16px;
}
.ps-cell h4 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 8px; }
.ps-cell p  { font-size: 14px; color: var(--g500); line-height: 1.55; }

/* Services CTA row */
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
@media (max-width: 720px) { .cta-row { grid-template-columns: 1fr; } }
.cta-cell { border-radius: var(--r-xl); padding: 48px 36px; }
.cta-cell h3 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 28px; letter-spacing: -.02em; margin: 0 0 12px; }
.cta-cell p  { font-size: 15px; line-height: 1.55; margin-bottom: 24px; }
.cta-cell.dark  { background: var(--ink); color: #fff; }
.cta-cell.dark h3 { color: #fff; }
.cta-cell.dark p  { color: rgba(255,255,255,.5); }
.cta-cell.light { background: var(--g50); border: 1px solid var(--g200); }
.cta-cell.light h3 { color: var(--ink); }
.cta-cell.light p  { color: var(--g500); }


/* ── 10. STATS BAND ─────────────────────────────────────────────── */
.stats-band { background: var(--ink); color: #fff; padding: 80px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
@media (max-width: 820px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; } }
.stat { border-left: 2px solid rgba(255,255,255,.1); padding-left: 24px; }
.stat .sv {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(44px, 5vw, 72px); line-height: 1;
  letter-spacing: -.03em; color: #fff;
  display: flex; align-items: baseline; gap: 3px;
}
.stat .sv .sfx {
  font-family: 'Inter', sans-serif; font-size: .45em;
  font-weight: 400; color: rgba(255,255,255,.5);
}
.stat .sl { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 12px; }


/* ── 11. PORTFOLIO GRID ─────────────────────────────────────────── */
.port-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.pf {
  padding: 8px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500; border: 1.5px solid var(--g200);
  background: #fff; color: var(--g500); cursor: pointer; transition: all .2s;
}
.pf.on         { background: var(--ink); color: #fff; border-color: var(--ink); }
.pf:hover:not(.on) { border-color: var(--g500); color: var(--ink); }
.port-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (max-width: 820px) { .port-grid { grid-template-columns: 1fr; } }
.port-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--g200); background: #fff;
  cursor: pointer; transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.port-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.port-card.hidden { display: none; }
.port-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.port-thumb svg { width: 100%; height: 100%; }
.port-overlay {
  position: absolute; inset: 0; background: rgba(12,12,12,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.port-card:hover .port-overlay { opacity: 1; }
.port-overlay-btn {
  background: #fff; color: var(--ink);
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transform: translateY(8px); transition: transform .25s;
}
.port-card:hover .port-overlay-btn { transform: none; }
.port-body { padding: 22px 24px 24px; }
.port-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.port-body h4 { font-size: 20px; font-weight: 600; letter-spacing: -.015em; margin: 0 0 6px; }
.port-body p  { font-size: 14px; color: var(--g500); margin: 0; }
.port-tags    { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }

/* Portfolio page extras */
.pg  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 820px) { .pg { grid-template-columns: 1fr; } }
.pc  {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--g200);
  background: #fff; cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease; position: relative;
}
.pc:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.pc.wide  { grid-column: span 2; }
@media (max-width: 820px) { .pc.wide { grid-column: span 1; } }
.pc.hidden { display: none; }
.pt { position: relative; overflow: hidden; }
.pt svg { display: block; width: 100%; height: 100%; }
.po {
  position: absolute; inset: 0; background: rgba(12,12,12,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.pc:hover .po { opacity: 1; }
.po-btn {
  background: #fff; color: var(--ink); padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px; transform: translateY(8px); transition: transform .25s;
}
.pc:hover .po-btn { transform: none; }
.pb { padding: 22px 24px 24px; }
.pb .cat {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.pb h4   { font-size: 20px; font-weight: 600; letter-spacing: -.015em; margin: 0 0 6px; }
.pb p    { font-size: 14px; color: var(--g500); margin: 0; }
.pb .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.result-badge {
  position: absolute; top: 16px; right: 16px;
  background: #fff; border-radius: 999px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: var(--ink); box-shadow: var(--sh);
}
.cta-band {
  background: var(--ink); border-radius: var(--r-xl);
  padding: 72px 64px; text-align: center; margin-top: 16px;
}
@media (max-width: 720px) { .cta-band { padding: 48px 24px; border-radius: var(--r-lg); } }
.cta-band h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 3.8vw, 48px); letter-spacing: -.03em;
  color: #fff; margin: 12px 0 16px;
}
.cta-band p    { color: rgba(255,255,255,.45); font-size: 17px; max-width: 480px; margin: 0 auto 28px; }
.cta-band .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Portfolio filter bar (page version) */
.pf-bar   { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.pf-btn {
  padding: 8px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500; border: 1.5px solid var(--g200);
  background: #fff; color: var(--g500); cursor: pointer;
  transition: all .2s; font-family: 'Inter', sans-serif;
}
.pf-btn.on         { background: var(--ink); color: #fff; border-color: var(--ink); }
.pf-btn:hover:not(.on) { border-color: var(--g500); color: var(--ink); }


/* ── 12. TOOLS GRID ─────────────────────────────────────────────── */
.tools-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
@media (max-width: 960px) { .tools-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }
.tool {
  border: 1px solid var(--g200); border-radius: var(--r); padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: #fff; transition: all .22s; text-align: center;
}
.tool:hover { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-lt); transform: translateY(-2px); }
.tool-icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 10px; background: var(--g50);
}
.tool-icon img { width: 26px; height: 26px; filter: grayscale(1); transition: filter .2s; }
.tool:hover .tool-icon img { filter: grayscale(0); }
.tool-icon svg { width: 26px; height: 26px; }
.tool span { font-size: 12px; font-weight: 500; color: var(--g500); }
.tool:hover span { color: var(--ink); }


/* ── 13. PROCESS CARD ───────────────────────────────────────────── */
.process-card {
  background: var(--ink); border-radius: var(--r-xl);
  padding: 80px 64px; position: relative; overflow: hidden;
}
@media (max-width: 720px) { .process-card { padding: 52px 28px; border-radius: var(--r-lg); } }
.process-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 100% 0%, rgba(24,67,239,.35), transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(24,67,239,.2), transparent 60%);
  pointer-events: none;
}
.process-card .eb         { color: rgba(255,255,255,.35); }
.process-card .eb::before { background: rgba(255,255,255,.35); }
.process-card h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(32px, 4vw, 56px); letter-spacing: -.03em;
  line-height: 1.05; color: #fff; margin: 16px 0 0;
  text-wrap: balance; max-width: 700px; position: relative;
}
.process-card h2 em { font-style: italic; color: rgba(255,255,255,.55); }
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 64px; border-top: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 820px) { .steps-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { 
  .steps-row { grid-template-columns: 1fr; } 
  .portfolio-hero {
    padding: 120px 0 60px;
  }
  .portfolio-hero-copy h1 {
    font-size: 32px;
  }
  .portfolio-hero-copy .hero-sub {
    font-size: 15px;
  }
  .portfolio-trust {
    gap: 6px;
  }
  .pt-pill {
    font-size: 12px;
    padding: 5px 10px;
  }
  .port-vis-card {
    max-width: 100%;
  }
  .pvc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
  }
  .pvc-tabs { flex-wrap: wrap; }
  .pvc-row { gap: 8px; padding: 10px 12px; }
  .pvc-thumb { display: none; }
  .pvc-name { font-size: 12px; }
  .pvc-stack { font-size: 10px; }
  .pvc-result { font-size: 10px; padding: 3px 8px; }
  .pvc-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 12px;
    font-size: 11px;
  }
}
.step { padding: 36px 28px 36px 0; border-right: 1px solid rgba(255,255,255,.1); }
.step:not(:first-child) { padding-left: 28px; }
.step:last-child { border-right: none; }
.step .sn {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,.3); letter-spacing: .2em; margin-bottom: 28px;
}
.step h4 { font-size: 18px; font-weight: 600; color: #fff; margin: 0 0 10px; }
.step p  { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; margin: 0; }


/* ── 14. TESTIMONIALS ───────────────────────────────────────────── */
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .tm-grid { grid-template-columns: 1fr; } }
.tm-card {
  background: #fff; border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.tm-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.tm-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 18px; }
.tm-card q {
  font-size: 16px; color: var(--g700); line-height: 1.55; flex: 1;
  quotes: "\201C" "\201D";
}
.tm-card q::before { content: open-quote; }
.tm-card q::after  { content: close-quote; }
.tm-foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--g200);
}
.tm-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600; font-size: 13px; color: #fff; flex: none;
}
.tm-card:nth-child(1) .tm-av { background: #1843EF; }
.tm-card:nth-child(2) .tm-av { background: #0f766e; }
.tm-card:nth-child(3) .tm-av { background: #9333ea; }
.tm-who strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.tm-who span   { font-size: 13px; color: var(--g500); }


/* ── 15. CTA / CONTACT FORM ─────────────────────────────────────── */
.cta-wrap {
  background: linear-gradient(135deg, #0C0C0C 60%, #1843EF 200%);
  border-radius: var(--r-xl); padding: 80px 64px;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 64px; align-items: center;
  position: relative; overflow: hidden;
}
@media (max-width: 820px) { .cta-wrap { grid-template-columns: 1fr; padding: 52px 28px; gap: 40px; border-radius: var(--r-lg); } }
.cta-wrap::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 100% 50%, rgba(24,67,239,.4), transparent 65%);
  pointer-events: none;
}
.cta-wrap h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(34px, 4.2vw, 58px); letter-spacing: -.03em;
  line-height: 1.05; color: #fff; margin: 12px 0 0;
  text-wrap: balance; position: relative;
}
.cta-wrap h2 em { font-style: italic; color: rgba(255,255,255,.5); }
.cta-wrap .sub  { color: rgba(255,255,255,.5); margin-top: 16px; font-size: 17px; position: relative; }
.cta-form .field { margin-bottom: 14px; }
.cta-form label {
  display: block; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  font-family: 'JetBrains Mono', monospace; margin-bottom: 6px;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 12px 16px;
  color: #fff; font-size: 15px; font-family: 'Inter', sans-serif;
  outline: none; resize: none; transition: border-color .2s;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,.25); }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus { border-color: rgba(255,255,255,.35); }
.cta-form select { appearance: none; cursor: pointer; }
.cta-form select option { background: #1A1A1A; }
.cta-form .btn-submit {
  width: 100%; justify-content: center; margin-top: 4px;
  background: #fff; color: var(--ink); border: none;
  padding: 15px; border-radius: var(--r);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background .2s;
}
.cta-form .btn-submit:hover { background: var(--g100); }

/* Simple dark CTA block (about page, etc.) */
.cta-simple {
  background: var(--ink); border-radius: var(--r-xl);
  padding: 72px 64px; text-align: center;
  position: relative; overflow: hidden;
}
@media (max-width: 720px) { .cta-simple { padding: 48px 24px; border-radius: var(--r-lg); } }
.cta-simple h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(32px, 4vw, 52px); letter-spacing: -.03em;
  color: #fff; margin: 12px 0 20px;
}
.cta-simple p    { color: rgba(255,255,255,.45); font-size: 17px; max-width: 480px; margin: 0 auto 32px; }
.cta-simple .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ── 16. BLOG GRID & NEWSLETTER ─────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  border: 1px solid var(--g200); border-radius: var(--r-lg);
  overflow: hidden; background: #fff; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.blog-card.featured { grid-column: span 2; }
@media (max-width: 960px) { .blog-card.featured { grid-column: span 1; } }
.blog-thumb {
  aspect-ratio: 16/9; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.blog-card.featured .blog-thumb { aspect-ratio: 21/9; }
.blog-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.blog-body h3 { font-size: 20px; font-weight: 600; letter-spacing: -.015em; margin: 0 0 10px; line-height: 1.25; }
.blog-card.featured .blog-body h3 { font-size: 26px; }
.blog-body p  { font-size: 14px; color: var(--g500); line-height: 1.55; flex: 1; }
.blog-foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--g200);
}
.blog-av {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 600; color: #fff; flex: none;
}
.blog-author { font-size: 13px; font-weight: 500; color: var(--ink); }
.blog-date   { font-size: 12px; color: var(--g400); margin-left: auto; }
.read-time   { font-size: 12px; color: var(--g400); }

/* Newsletter band */
.newsletter-band {
  background: var(--g50); border: 1px solid var(--g200);
  border-radius: var(--r-xl); padding: 56px 64px;
  text-align: center; margin-top: 40px;
}
@media (max-width: 720px) { .newsletter-band { padding: 40px 24px; border-radius: var(--r-lg); } }
.newsletter-band h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(24px, 3vw, 38px); letter-spacing: -.025em; margin: 12px 0 12px;
}
.newsletter-band p { color: var(--g500); margin-bottom: 24px; }
.nl-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 13px 16px; border: 1.5px solid var(--g200);
  border-radius: 999px; font-size: 15px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .2s;
}
.nl-form input:focus  { border-color: var(--accent); }
.nl-form button {
  padding: 13px 22px; background: var(--ink); color: #fff;
  border: none; border-radius: 999px; font-size: 14px; font-weight: 500;
  cursor: pointer; font-family: 'Inter', sans-serif;
  white-space: nowrap; transition: background .2s;
}
.nl-form button:hover { background: #000; }
@media (max-width: 480px) {
  .nl-form { flex-direction: column; }
  .nl-form button { width: 100%; justify-content: center; }
}


/* ── 17. ABOUT PAGE ─────────────────────────────────────────────── */

/* About hero */
.about-hero-wrap {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 64px; align-items: center;
}
@media (max-width: 880px) { .about-hero-wrap { grid-template-columns: 1fr; gap: 40px; } }
.about-hero-art svg { width: 100%; height: auto; display: block; }

/* Story section */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }
.story-lead {
  font-size: 21px; font-family: 'Fraunces', serif; font-weight: 400;
  line-height: 1.35; letter-spacing: -.02em; color: var(--ink); margin-bottom: 24px;
}
.story-body p { font-size: 16px; color: var(--g500); line-height: 1.65; margin-bottom: 16px; }
.tl {
  margin-top: 36px; border-left: 2px solid var(--g200);
  padding-left: 24px; display: flex; flex-direction: column; gap: 20px;
}
.tl-item .yr {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .16em; color: var(--accent); margin-bottom: 4px;
}
.tl-item p { font-size: 15px; color: var(--g700); font-weight: 500; }

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }
.val-card {
  background: #fff; border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: box-shadow .25s, transform .25s;
}
.val-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.val-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .2em; color: var(--g400); margin-bottom: 14px;
}
.val-card h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 26px; letter-spacing: -.02em; margin: 0 0 10px;
}
.val-card p { font-size: 15px; color: var(--g500); line-height: 1.6; }

/* Team portraits */
.tm-portrait {
  width: 100%; aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
  margin: 0 auto 14px; background: var(--g100);
  position: relative; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.06);
  border: 3px solid #fff;
}
.tm-portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.16,1,.3,1), filter .5s ease;
  filter: grayscale(20%); transform: scale(1.03); position: relative; z-index: 1;
}
.tm-portrait img.img-in { transform: scale(1); filter: grayscale(0%); }
.tm-portrait::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--g100) 25%, var(--g50) 50%, var(--g100) 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite;
  z-index: 0; border-radius: inherit;
}
@keyframes shimmer {
  0%   { background-position:  200% 0; }
  100% { background-position: -200% 0; }
}
.tm-portrait:hover img { transform: scale(1.06); filter: grayscale(0%); }

/* Team badge */
.tm-badge {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff; border-radius: 999px; padding: 5px 12px;
  font-size: 12px; font-weight: 600; color: var(--ink); white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  display: flex; align-items: center; gap: 5px;
  opacity: 0; transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
}
.tm-badge.senior { background: #FFD700; }
.tm-badge .crown { font-size: 11px; }
.tm-portrait:hover .tm-badge,
.tm-portrait.badge-in .tm-badge { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Team grid responsive */
.team-row-1,
.team-row-2 { display: grid; gap: 28px; }
.team-row-1 { grid-template-columns: repeat(4, 1fr); margin-bottom: 28px; }
.team-row-2 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 960px) {
  .team-row-1 { grid-template-columns: repeat(2, 1fr); }
  .team-row-2 { grid-template-columns: repeat(3, 1fr); }
  .about-float-left,
  .about-float-right,
  .about-float-badge {
    display: none;
  }
  .portfolio-float-left,
  .portfolio-float-right,
  .portfolio-float-badge {
    display: none !important;
  }
  .portfolio-hero-vis {
    padding-top: 0;
    overflow: hidden;
  }
  .port-vis-card {
    max-width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 600px) {
  .team-row-1,
  .team-row-2 { grid-template-columns: repeat(2, 1fr); }
  .about-stats-row {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .about-stats-row > div {
    border-right: none !important;
    padding: 0 !important;
  }
  .about-quotes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .hero-tag {
    font-size: 11px;
    padding: 5px 10px 5px 6px;
  }
}

/* Quote band (about page — 3 cards) */
.quote-band {
  background: var(--g50);
  border-top: 1px solid var(--g200); border-bottom: 1px solid var(--g200);
  padding: 80px 0;
}
.quote-card {
  background: #fff; border: 1px solid var(--g200);
  border-radius: var(--r-xl); padding: 36px 32px;
  opacity: 0;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, border-color .35s ease;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--accent) !important; }
.quote-card.q-in { animation: quoteFadeIn .7s cubic-bezier(.16,1,.3,1) forwards; }
.quote-card.q-in:nth-child(2) { animation-delay: .1s; }
.quote-card.q-in:nth-child(3) { animation-delay: .2s; }
@keyframes quoteFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.star-wrap { display: flex; gap: 4px; margin-bottom: 20px; }
.star-wrap svg { opacity: 0; transform: scale(0); animation: starPop .3s cubic-bezier(.34,1.56,.64,1) forwards; }
.quote-card.q-in .star-wrap svg:nth-child(1) { animation-delay: .15s; }
.quote-card.q-in .star-wrap svg:nth-child(2) { animation-delay: .22s; }
.quote-card.q-in .star-wrap svg:nth-child(3) { animation-delay: .29s; }
.quote-card.q-in .star-wrap svg:nth-child(4) { animation-delay: .36s; }
.quote-card.q-in .star-wrap svg:nth-child(5) { animation-delay: .43s; }
@keyframes starPop { to { opacity: 1; transform: scale(1); } }
.q-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 16px;
  flex-shrink: 0; transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.quote-card:hover .q-avatar { transform: scale(1.12); }

/* About stats band */
.stats2 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; padding: 48px; background: var(--ink);
  border-radius: var(--r-xl); margin-top: 40px;
}
@media (max-width: 720px) { .stats2 { grid-template-columns: 1fr; padding: 32px; } }
.st2 .n {
  font-family: 'Fraunces', serif; font-size: 56px; line-height: 1;
  letter-spacing: -.04em; color: #fff; margin-bottom: 8px;
}
.st2 .l { font-size: 13px; color: rgba(255,255,255,.4); }

/* Stat count-up animation */
.stat-num {
  display: inline-block; opacity: 0; transition: none;
}
.stat-num.counted { animation: countUp .6s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes countUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ── 18. CAREERS PAGE ───────────────────────────────────────────── */
.culture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .culture-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .culture-grid { grid-template-columns: 1fr; } }
.culture-cell {
  padding: 32px 28px; border-radius: var(--r-lg);
  border: 1px solid var(--g200); background: #fff;
  transition: box-shadow .25s, transform .25s;
}
.culture-cell:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.culture-cell .ico  { font-size: 32px; margin-bottom: 16px; }
.culture-cell h4    { font-size: 18px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 8px; }
.culture-cell p     { font-size: 14px; color: var(--g500); line-height: 1.6; }

.jobs-list { display: flex; flex-direction: column; gap: 16px; }
.job {
  background: #fff; border: 1px solid var(--g200); border-radius: var(--r-lg);
  padding: 28px 32px; display: flex; justify-content: space-between;
  align-items: center; gap: 32px; cursor: pointer; transition: all .25s;
}
.job:hover { border-color: var(--accent); box-shadow: var(--sh-lg); }
@media (max-width: 720px) { .job { flex-direction: column; align-items: flex-start; gap: 16px; } }
.job-left h3    { font-size: 22px; font-weight: 600; letter-spacing: -.015em; margin: 0 0 8px; }
.job-tags       { display: flex; gap: 8px; flex-wrap: wrap; }
.job-right      { display: flex; align-items: center; gap: 12px; flex: none; }
.job-type {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--g500);
  padding: 6px 12px; border: 1px solid var(--g200); border-radius: 999px;
}
.job-apply {
  padding: 12px 22px; background: var(--ink); color: #fff;
  border-radius: 999px; font-size: 14px; font-weight: 500;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background .2s;
}
.job-apply:hover { background: #000; }

.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px; background: #fff; border: 1px solid var(--g200); border-radius: var(--r-lg);
}
.benefit .bi {
  width: 40px; height: 40px; border-radius: var(--r);
  display: grid; place-items: center; flex: none; font-size: 20px;
}
.benefit h4 { font-size: 16px; font-weight: 600; margin: 0 0 4px; }
.benefit p  { font-size: 14px; color: var(--g500); line-height: 1.55; }

.apply-band {
  background: linear-gradient(135deg, var(--ink) 50%, #1843EF 200%);
  border-radius: var(--r-xl); padding: 72px 64px;
  text-align: center; position: relative; overflow: hidden;
}
@media (max-width: 720px) { .apply-band { padding: 48px 24px; border-radius: var(--r-lg); } }
.apply-band h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 3.8vw, 48px); letter-spacing: -.03em;
  color: #fff; margin: 12px 0 16px;
}
.apply-band p { color: rgba(255,255,255,.45); font-size: 16px; max-width: 480px; margin: 0 auto 28px; }


/* ── 19. CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 64px; align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.c-form {
  background: var(--g50); border: 1px solid var(--g200);
  border-radius: var(--r-xl); padding: 40px;
}
@media (max-width: 480px) { .c-form { padding: 24px; } }
.c-form h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 28px; letter-spacing: -.02em; margin: 0 0 8px;
}
.c-form .sub { font-size: 15px; color: var(--g500); margin-bottom: 28px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--g500); margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%; background: #fff; border: 1.5px solid var(--g200);
  border-radius: var(--r); padding: 12px 16px;
  font-size: 15px; font-family: 'Inter', sans-serif; color: var(--ink);
  outline: none; transition: border-color .2s; resize: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.field input::placeholder,
.field textarea::placeholder { color: var(--g400); }
.field select { appearance: none; cursor: pointer; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { 
  .row2 { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: 1fr; }  
  .cta-cell { padding: 32px 24px; }
  .pf-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
    padding-bottom: 4px;
  }
  .pf-bar::-webkit-scrollbar { display: none; }
  .pf-btn { flex: none; font-size: 13px; padding: 7px 14px; }
  .pc.wide .pt { aspect-ratio: 16/10 !important; }
  .pb { padding: 16px; }
  .pb h4 { font-size: 17px; }
  .pb .tags { gap: 4px; }
  .pb .tag, .tag { font-size: 11px; padding: 3px 8px; }
}
.submit-btn {
  width: 100%; padding: 16px; background: var(--ink); color: #fff;
  border: none; border-radius: var(--r); font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background .2s; margin-top: 4px;
}
.submit-btn:hover { background: #000; }
.c-info { display: flex; flex-direction: column; gap: 0; }
.c-info h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(32px, 4vw, 52px); letter-spacing: -.03em;
  margin: 16px 0 20px;
}
.c-info h2 em { font-style: italic; color: var(--accent); }
.c-info .lead { font-size: 17px; color: var(--g500); line-height: 1.55; margin-bottom: 40px; }
.contact-links { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.c-link {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: #fff; border: 1px solid var(--g200);
  border-radius: var(--r-lg); transition: box-shadow .2s, transform .2s;
}
.c-link:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.c-link .ico-w {
  width: 44px; height: 44px; border-radius: var(--r);
  display: grid; place-items: center; flex: none;
}
.c-link .ico-w svg { width: 22px; height: 22px; }
.c-link .title { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.c-link .val   { font-size: 14px; color: var(--g500); }

/* FAQ accordion */
.faq2     { margin-top: 8px; }
.faq2 h3  {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 24px; letter-spacing: -.02em; margin: 0 0 20px;
}
.faq2-item { border-top: 1px solid var(--g200); padding: 18px 0; cursor: pointer; }
.faq2-item:last-child { border-bottom: 1px solid var(--g200); }
.faq2-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; font-weight: 500; font-size: 15px; color: var(--ink);
}
.faq2-q .tog {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--g200); display: grid; place-items: center;
  font-size: 16px; line-height: 1; flex: none; transition: all .2s;
}
.faq2-item.open .faq2-q .tog {
  background: var(--ink); color: #fff; border-color: var(--ink); transform: rotate(45deg);
}
.faq2-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--g500); line-height: 1.6;
  transition: max-height .35s ease, margin .35s;
}
.faq2-item.open .faq2-a { max-height: 200px; margin-top: 10px; }


/* ── 20. LEGAL PAGES ────────────────────────────────────────────── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 80px 0 112px; }
.legal-wrap h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -.025em;
  margin: 48px 0 16px; color: var(--ink);
}
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p  { font-size: 15.5px; color: var(--g500); line-height: 1.7; margin-bottom: 16px; }
.legal-wrap ul { padding-left: 20px; margin-bottom: 16px; }
.legal-wrap ul li { font-size: 15.5px; color: var(--g500); line-height: 1.7; margin-bottom: 8px; }
.legal-wrap a  { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-wrap .updated {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--g400); margin-bottom: 40px; display: block;
}
.legal-divider { height: 1px; background: var(--g200); margin: 40px 0; }


/* ── 21. FOOTER ─────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--g200); padding: 72px 0 32px; background: #fff; }
.foot-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 60px;
}
@media (max-width: 960px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
/* .foot-brand .logo  { font-size: 28px; margin-bottom: 14px; display: inline-block; } */
.foot-brand p      { font-size: 14px; color: var(--g500); max-width: 300px; line-height: 1.6; margin-bottom: 20px; }
.socials { display: flex; gap: 8px; }
.soc {
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--g200); display: grid; place-items: center;
  color: var(--g500); transition: all .2s;
}
.soc:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.soc svg { width: 15px; height: 15px; }
.foot-col h5 {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--g400); margin: 0 0 16px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a  { font-size: 14.5px; color: var(--g500); transition: color .18s; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom {
  border-top: 1px solid var(--g200); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--g400);
}
.foot-bottom a { color: var(--g400); margin-left: 16px; }
.foot-bottom a:hover { color: var(--ink); }


/* ── 22. REVEAL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.in  { opacity: 1; transform: none; }
.reveal-d1  { transition-delay: .08s; }
.reveal-d2  { transition-delay: .16s; }
.reveal-d3  { transition-delay: .24s; }
.reveal-d4  { transition-delay: .32s; }


/* ── 23. HERO BROWSER MOCKUP ────────────────────────────────────── */
.hero-vis { position: relative; padding: 32px 0 0; }
.hb-float {
  position: absolute; background: #fff; border: 1px solid #E8E8E8;
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 12px; z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.hb-float-left  { left: -28px; bottom: 90px; animation-delay: 0s; }
.hb-float-right { right: -16px; top: 56px; animation-delay: 1.6s; }
.hbf-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: #EDF1FE; display: grid; place-items: center; flex: none;
}
.hbf-icon svg { width: 18px; height: 18px; }
.hbf-val {
  font-family: 'Fraunces', serif; font-size: 22px;
  letter-spacing: -.02em; color: #0C0C0C; line-height: 1;
}
.hbf-lbl { font-size: 11px; color: #A0A0A0; margin-top: 2px; }

.hero-browser {
  background: #F9F9F9; border: 1px solid #E8E8E8; border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.06);
  position: relative; z-index: 2;
}
.hb-chrome {
  background: #F3F3F3; border-bottom: 1px solid #E8E8E8;
  padding: 10px 14px; display: flex; align-items: center; gap: 12px;
}
.hb-dots { display: flex; gap: 5px; }
.hb-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hb-dots span:nth-child(1) { background: #FF5F57; }
.hb-dots span:nth-child(2) { background: #FEBC2E; }
.hb-dots span:nth-child(3) { background: #28C840; }
.hb-bar {
  flex: 1; background: #fff; border: 1px solid #E8E8E8; border-radius: 6px;
  padding: 5px 10px; font-size: 11px; color: #A0A0A0;
  display: flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
}
.hb-body    { display: flex; height: 320px; }
.hb-sidebar {
  width: 52px; background: #0C0C0C;
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 0; gap: 16px; flex: none;
}
.hbs-logo {
  width: 30px; height: 30px; border-radius: 8px;
  background: #1843EF; color: #fff;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 16px; margin-bottom: 8px;
}
.hbs-item {
  width: 34px; height: 34px; border-radius: 8px;
  display: grid; place-items: center; color: rgba(255,255,255,.3);
}
.hbs-item svg    { width: 16px; height: 16px; }
.hbs-item.active { background: rgba(255,255,255,.1); color: #fff; }
.hb-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.hb-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid #E8E8E8; background: #fff;
}
.hb-page-title { font-size: 13px; font-weight: 600; color: #0C0C0C; }
.hb-avatar {
  width: 28px; height: 28px; border-radius: 50%; background: #1843EF;
  color: #fff; display: grid; place-items: center; font-size: 10px; font-weight: 600;
}
.hb-stats {
  display: flex; gap: 8px; padding: 10px 12px;
  background: #fff; border-bottom: 1px solid #E8E8E8;
}
.hb-stat-card {
  flex: 1; background: #F9F9F9; border: 1px solid #E8E8E8;
  border-radius: 8px; padding: 8px 10px; min-width: 0;
}
.hb-sc-label {
  font-size: 10px; color: #A0A0A0; margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hb-sc-val {
  font-family: 'Fraunces', serif; font-size: 16px;
  letter-spacing: -.02em; color: #0C0C0C; line-height: 1.1;
}
.hb-sc-delta   { font-size: 10px; margin-top: 2px; font-weight: 600; }
.hb-sc-delta.up { color: #16a34a; }
.hb-sc-delta.dn { color: #dc2626; }
.hb-chart-area {
  padding: 10px 14px 6px; background: #fff; border-bottom: 1px solid #E8E8E8;
}
.hb-chart-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px;
}
.hb-chart-title { font-size: 11px; font-weight: 600; color: #0C0C0C; }
.hb-chart-range { font-size: 10px; color: #A0A0A0; }
.hb-chart       { height: 60px; }
.hb-rows {
  padding: 8px 12px; display: flex; flex-direction: column;
  gap: 6px; background: #fff; flex: 1;
}
.hb-row { display: flex; align-items: center; gap: 8px; }
.hb-row-dot  { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.hb-row-name {
  font-size: 11px; color: #6B6B6B; width: 82px; flex: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hb-row-bar  { flex: 1; height: 5px; background: #F3F3F3; border-radius: 999px; overflow: hidden; }
.hb-row-bar span { display: block; height: 100%; border-radius: 999px; background: #E8E8E8; }
.hb-row:nth-child(1) .hb-row-bar span { background: #1843EF; }
.hb-row:nth-child(2) .hb-row-bar span { background: #0f766e; }
.hb-row:nth-child(3) .hb-row-bar span { background: #9333ea; }
.hb-row-val { font-size: 11px; font-weight: 600; color: #0C0C0C; width: 28px; text-align: right; flex: none; }

/* ── CONTACT PAGE HERO ──────────────────────────────────────────── */
.contact-hero {
  padding: 144px 0 100px;
  position: relative; overflow: hidden;
  background: var(--g50);
  border-bottom: 1px solid var(--g200);
}
.contact-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, var(--g200) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  mask-image:         radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  opacity: .5;
}
.contact-hero .w { position: relative; z-index: 1; }
.contact-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 960px) { 
  .contact-hero-grid { grid-template-columns: 1fr; gap: 56px; } 
  .portfolio-float-left,
  .portfolio-float-right,
  .portfolio-float-badge {
    display: none;
  }
}

/* Copy side */
.contact-hero-copy h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px); line-height: 1.02;
  letter-spacing: -.035em; margin: 0 0 22px; text-wrap: balance; color: var(--ink);
}
.contact-hero-copy h1 em { font-style: italic; color: var(--accent); }
.contact-hero-copy .hero-sub {
  font-size: 18px; color: var(--g500); line-height: 1.6; max-width: 480px; margin: 0 0 32px;
}
.contact-trust { display: flex; flex-direction: column; gap: 12px; }
.ct-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--g700); font-weight: 500;
}

/* Visual side */
.contact-hero-vis { position: relative; padding-top: 28px; }

/* Ping badge top */
.contact-float-badge {
  position: absolute; top: -8px; right: 16px;
  background: #fff; border: 1px solid var(--g200);
  border-radius: 999px; padding: 8px 16px 8px 12px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  z-index: 4; animation: float 4s ease-in-out infinite;
}
.contact-float-badge .pip {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: ping 2s ease-in-out infinite; flex: none;
}

/* Main chat card */
.contact-vis-card {
  background: #fff; border: 1px solid var(--g200); border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.05);
  position: relative; z-index: 2;
}
.cvc-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--g200);
  background: #fff;
}
.cvc-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--ink);
  color: #fff; display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 18px; flex: none;
}
.cvc-name   { font-size: 14px; font-weight: 600; color: var(--ink); }
.cvc-status {
  font-size: 12px; color: var(--g500);
  display: flex; align-items: center; gap: 5px; margin-top: 2px;
}
.cvc-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex: none;
}
.cvc-time { margin-left: auto; font-size: 12px; color: var(--g400); }

/* Messages */
.cvc-messages {
  padding: 20px 16px; display: flex; flex-direction: column;
  gap: 12px; background: var(--g50); min-height: 200px;
}
.cvc-msg { display: flex; }
.cvc-msg-out { justify-content: flex-end; }
.cvc-bubble {
  max-width: 78%; padding: 10px 14px; border-radius: 16px;
  font-size: 14px; line-height: 1.5;
}
.cvc-msg-in  .cvc-bubble {
  background: #fff; border: 1px solid var(--g200);
  border-bottom-left-radius: 4px; color: var(--ink);
}
.cvc-msg-out .cvc-bubble {
  background: var(--accent); color: #fff;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.cvc-typing {
  background: #fff; border: 1px solid var(--g200);
  border-radius: 16px; border-bottom-left-radius: 4px;
  padding: 12px 16px; display: flex; gap: 5px; align-items: center;
}
.cvc-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--g400);
  animation: typingDot 1.2s ease-in-out infinite;
}
.cvc-typing span:nth-child(2) { animation-delay: .2s; }
.cvc-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%,60%,100% { transform: translateY(0); opacity: .4; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

/* Message stagger animations */
.msg-1 { opacity: 0; animation: msgIn .5s cubic-bezier(.16,1,.3,1) .3s forwards; }
.msg-2 { opacity: 0; animation: msgIn .5s cubic-bezier(.16,1,.3,1) .9s forwards; }
.msg-3 { opacity: 0; animation: msgIn .5s cubic-bezier(.16,1,.3,1) 1.5s forwards; }
.msg-4 { opacity: 0; animation: msgIn .5s cubic-bezier(.16,1,.3,1) 2.1s forwards; }
@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Input row */
.cvc-input-row {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-top: 1px solid var(--g200); background: #fff;
}
.cvc-input {
  flex: 1; background: var(--g50); border: 1px solid var(--g200);
  border-radius: 999px; padding: 9px 16px;
  font-size: 13px; color: var(--g400);
}
.cvc-send {
  width: 34px; height: 34px; border-radius: 50%; background: var(--accent);
  border: none; display: grid; place-items: center; cursor: pointer;
  transition: background .2s, transform .2s; flex: none;
}
.cvc-send:hover { background: var(--accent-dk); transform: scale(1.08); }

/* Floating stat cards */
.contact-float-left,
.contact-float-right {
  position: absolute;
  background: #fff; border: 1px solid var(--g200); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 10px; z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.contact-float-left  { left: -24px; bottom: 72px; animation-delay: .8s; }
.contact-float-right { right: -20px; top: 80px; animation-delay: 2s; }
.cfl-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-lt); display: grid; place-items: center; flex: none;
}
.cfl-val {
  font-family: 'Fraunces', serif; font-size: 20px;
  letter-spacing: -.02em; color: var(--ink); line-height: 1;
}
.cfl-lbl { font-size: 11px; color: var(--g400); margin-top: 2px; }
/* ── ABOUT PAGE HERO ────────────────────────────────────────────── */
.about-hero {
  padding: 144px 0 100px;
  position: relative; overflow: hidden;
  background: var(--g50);
  border-bottom: 1px solid var(--g200);
}
.about-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, var(--g200) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  mask-image:         radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  opacity: .5;
}
.about-hero .w { position: relative; z-index: 1; }
.about-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 960px) { .about-hero-grid { grid-template-columns: 1fr; gap: 56px; } }

/* Copy */
.about-hero-copy h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(40px, 5.2vw, 72px); line-height: 1.02;
  letter-spacing: -.035em; margin: 0 0 22px; text-wrap: balance; color: var(--ink);
}
.about-hero-copy h1 em { font-style: italic; color: var(--accent); }
.about-hero-copy .hero-sub {
  font-size: 18px; color: var(--g500); line-height: 1.6; max-width: 480px; margin: 0 0 32px;
}

/* Trust items */
.about-trust { display: flex; flex-direction: column; gap: 14px; }
.at-item {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 14px 18px;
  transition: box-shadow .25s, transform .25s;
}
.at-item:hover { transform: translateX(4px); box-shadow: var(--sh); }
.at-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; flex: none;
}
.at-label { font-size: 14px; font-weight: 600; color: var(--ink); }
.at-sub   { font-size: 12px; color: var(--g500); margin-top: 2px; }

/* Visual side */
.about-hero-vis { position: relative; padding-top: 28px; }

/* Floating badge */
.about-float-badge {
  position: absolute; top: -8px; right: 16px;
  background: #fff; border: 1px solid var(--g200);
  border-radius: 999px; padding: 8px 16px 8px 12px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  z-index: 4; animation: float 4s ease-in-out infinite;
}
.about-float-badge .pip {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: ping 2s ease-in-out infinite; flex: none;
}

/* Main card */
.about-vis-card {
  background: #fff; border: 1px solid var(--g200); border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.05);
  position: relative; z-index: 2;
}

/* Card header */
.avc-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--g200);
}
.avc-logo {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 20px; flex: none;
}
.avc-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.avc-meta { font-size: 12px; color: var(--g500); margin-top: 2px; }
.avc-live {
  margin-left: auto; display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: #16a34a;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 999px; padding: 4px 10px;
}
.avc-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #16a34a;
  animation: ping 2s ease-in-out infinite;
}

/* Team avatars */
.avc-team { padding: 16px 20px; border-bottom: 1px solid var(--g200); }
.avc-team-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--g400); margin-bottom: 12px;
}
.avc-avatars { display: flex; gap: 0; }
.avc-av {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid #fff;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: #fff;
  margin-left: -8px; cursor: default;
  transition: transform .2s, z-index .2s;
  opacity: 0; animation: avPop .4s cubic-bezier(.34,1.56,.64,1) forwards;
}
.avc-av:first-child { margin-left: 0; }
.avc-av:hover { transform: translateY(-4px) scale(1.1); z-index: 10; }

/* Avatar colours & stagger */
.av-1 { background: #1843EF; animation-delay: .1s; }
.av-2 { background: #0f766e; animation-delay: .18s; }
.av-3 { background: #9333ea; animation-delay: .26s; }
.av-4 { background: #b45309; animation-delay: .34s; }
.av-5 { background: #0e7490; animation-delay: .42s; }
.av-6 { background: #be185d; animation-delay: .50s; }
.av-7 { background: #15803d; animation-delay: .58s; }
.av-8 { background: #6d28d9; animation-delay: .66s; }
@keyframes avPop {
  from { opacity: 0; transform: translateY(10px) scale(.7); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Metrics row */
.avc-metrics {
  display: flex; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--g200);
  background: var(--g50);
}
.avc-metric { flex: 1; text-align: center; }
.avc-metric-div { width: 1px; height: 32px; background: var(--g200); }
.avc-m-val {
  font-family: 'Fraunces', serif; font-size: 24px;
  letter-spacing: -.02em; color: var(--ink); line-height: 1;
}
.avc-m-lbl { font-size: 11px; color: var(--g500); margin-top: 3px; }

/* Activity feed */
.avc-feed { padding: 16px 20px; }
.avc-feed-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--g400); margin-bottom: 12px;
}
.avc-feed-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--g100);
  opacity: 0; animation: feedIn .5s cubic-bezier(.16,1,.3,1) forwards;
}
.avc-feed-item:last-child { border-bottom: none; }
.feed-1 { animation-delay: .4s; }
.feed-2 { animation-delay: .7s; }
.feed-3 { animation-delay: 1.0s; }
@keyframes feedIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.avc-feed-dot  { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.avc-feed-text { font-size: 13px; color: var(--g500); flex: 1; }
.avc-feed-text span { color: var(--ink); font-weight: 500; }
.avc-feed-time { font-size: 11px; color: var(--g400); flex: none; font-family: 'JetBrains Mono', monospace; }

/* Floating stat cards */
.about-float-left,
.about-float-right {
  position: absolute;
  background: #fff; border: 1px solid var(--g200); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 10px; z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.about-float-left  { left: -24px; bottom: 80px; animation-delay: .6s; }
.about-float-right { right: -20px; top: 72px; animation-delay: 2.2s; }
.afl-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-lt); display: grid; place-items: center; flex: none;
}
.afl-val {
  font-family: 'Fraunces', serif; font-size: 20px;
  letter-spacing: -.02em; color: var(--ink); line-height: 1;
}
.afl-lbl { font-size: 11px; color: var(--g400); margin-top: 2px; }
/* ── SERVICES PAGE HERO ─────────────────────────────────────────── */
.services-hero {
  padding: 144px 0 100px;
  position: relative; overflow: hidden;
  background: var(--g50); border-bottom: 1px solid var(--g200);
}
.services-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, var(--g200) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  mask-image:         radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  opacity: .5;
}
.services-hero .w { position: relative; z-index: 1; }
.services-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { 
  .services-hero-grid { grid-template-columns: 1fr; gap: 56px; } 
  .about-quotes-grid { grid-template-columns: 1fr 1fr; }
}

/* Copy */
.services-hero-copy h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(40px, 5.2vw, 72px); line-height: 1.02;
  letter-spacing: -.035em; margin: 0 0 22px; text-wrap: balance; color: var(--ink);
}
.services-hero-copy h1 em { font-style: italic; color: var(--accent); }
.services-hero-copy .hero-sub {
  font-size: 18px; color: var(--g500); line-height: 1.6;
  max-width: 480px; margin: 0 0 36px;
}

/* Stats row */
.services-trust {
  display: flex; align-items: center; gap: 0;
  background: #fff; border: 1px solid var(--g200);
  border-radius: var(--r-lg); overflow: hidden;
  max-width: 380px;
}
.svt-item { flex: 1; padding: 16px 20px; text-align: center; }
.svt-div  { width: 1px; height: 48px; background: var(--g200); }
.svt-num  {
  font-family: 'Fraunces', serif; font-size: 28px;
  letter-spacing: -.02em; color: var(--ink); line-height: 1;
}
.svt-lbl  { font-size: 11px; color: var(--g500); margin-top: 3px; }

/* Visual side */
.services-hero-vis { position: relative; padding-top: 28px; }

/* Floating badge */
.services-float-badge {
  position: absolute; top: -8px; right: 16px;
  background: #fff; border: 1px solid var(--g200);
  border-radius: 999px; padding: 8px 16px 8px 12px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  z-index: 4; animation: float 4s ease-in-out infinite;
}
.services-float-badge .pip {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: ping 2s ease-in-out infinite; flex: none;
}

/* Main card */
.svc-vis-card {
  background: #fff; border: 1px solid var(--g200); border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.05);
  position: relative; z-index: 2;
}
.svc-vis-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--g200); background: #fff;
}
.svc-vis-title {
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.svc-vis-count {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--accent); background: var(--accent-lt);
  padding: 3px 10px; border-radius: 999px;
}

/* 3-col service grid inside card */
.svc-vis-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--g200);
}
.svc-vis-item {
  background: #fff; padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; animation: svcItemIn .45s cubic-bezier(.16,1,.3,1) forwards;
  transition: background .2s;
}
.svc-vis-item:hover { background: var(--g50); }

/* Stagger each card */
.si-1 { animation-delay: .05s; }
.si-2 { animation-delay: .10s; }
.si-3 { animation-delay: .15s; }
.si-4 { animation-delay: .20s; }
.si-5 { animation-delay: .25s; }
.si-6 { animation-delay: .30s; }
.si-7 { animation-delay: .35s; }
.si-8 { animation-delay: .40s; }
.si-9 { animation-delay: .45s; }
@keyframes svcItemIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.svc-vis-ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; flex: none;
}
.svc-vis-name {
  font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.2;
}
.svc-vis-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  letter-spacing: .08em; padding: 2px 7px;
  border-radius: 999px; display: inline-block; width: fit-content;
}

/* Footer bar */
.svc-vis-footer {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; background: var(--ink);
  font-size: 12px; color: rgba(255,255,255,.5);
}
.svc-vis-footer-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; flex: none;
  animation: ping 2s ease-in-out infinite;
}

/* Floating stat cards */
.services-float-left,
.services-float-right {
  position: absolute;
  background: #fff; border: 1px solid var(--g200); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 10px; z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.services-float-left  { left: -24px; bottom: 72px; animation-delay: .8s; }
.services-float-right { right: -20px; top: 72px; animation-delay: 2s; }
.sfl-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-lt); display: grid; place-items: center; flex: none;
}
.sfl-val {
  font-family: 'Fraunces', serif; font-size: 20px;
  letter-spacing: -.02em; color: var(--ink); line-height: 1;
}
.sfl-lbl { font-size: 11px; color: var(--g400); margin-top: 2px; }
/* ── PORTFOLIO PAGE HERO ────────────────────────────────────────── */
.portfolio-hero {
  padding: 144px 0 100px;
  position: relative; overflow: hidden;
  background: var(--g50); border-bottom: 1px solid var(--g200);
}
.portfolio-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, var(--g200) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  mask-image:         radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  opacity: .5;
}
.portfolio-hero .w { position: relative; z-index: 1; }
.portfolio-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 960px) { .portfolio-hero-grid { grid-template-columns: 1fr; gap: 56px; } }

/* Copy */
.portfolio-hero-copy h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(32px, 5.2vw, 72px); line-height: 1.02;
  letter-spacing: -.035em; margin: 0 0 22px; text-wrap: balance; color: var(--ink);
}
.portfolio-hero-copy h1 em { font-style: italic; color: var(--accent); }
.portfolio-hero-copy .hero-sub {
  font-size: 18px; color: var(--g500); line-height: 1.6;
  max-width: 480px; margin: 0 0 32px;
}

/* Category pills */
.portfolio-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.pt-pill {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--g200);
  border-radius: 999px; padding: 7px 14px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  transition: box-shadow .2s, transform .2s;
}
.pt-pill:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.pt-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }

/* Visual side */
.portfolio-hero-vis { position: relative; padding-top: 28px; }

/* Floating badge */
.portfolio-float-badge {
  position: absolute; top: -8px; right: 16px;
  background: #fff; border: 1px solid var(--g200);
  border-radius: 999px; padding: 8px 16px 8px 12px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  z-index: 4; animation: float 4s ease-in-out infinite;
}
.portfolio-float-badge .pip {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: ping 2s ease-in-out infinite; flex: none;
}

/* Main card */
.port-vis-card {
  background: #fff; border: 1px solid var(--g200); border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.05);
  position: relative; z-index: 2;
}

/* Tabs header */
.pvc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 1px solid var(--g200); background: #fff;
}
.pvc-tabs { display: flex; gap: 4px; }
.pvc-tab {
  padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--g500);
  cursor: default; transition: all .2s;
}
.pvc-tab.active {
  background: var(--ink); color: #fff;
}
.pvc-count {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--g400);
}

/* Project rows */
.pvc-list { display: flex; flex-direction: column; }
.pvc-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; border-bottom: 1px solid var(--g100);
  opacity: 0; animation: rowIn .45s cubic-bezier(.16,1,.3,1) forwards;
  transition: background .2s;
}
.pvc-row:last-child { border-bottom: none; }
.pvc-row:hover { background: var(--g50); }
.pr-1 { animation-delay: .1s; }
.pr-2 { animation-delay: .2s; }
.pr-3 { animation-delay: .3s; }
.pr-4 { animation-delay: .4s; }
.pr-5 { animation-delay: .5s; }
@keyframes rowIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.pvc-thumb {
  width: 48px; height: 36px; border-radius: 8px;
  display: grid; place-items: center; flex: none; overflow: hidden;
}
.pvc-info { flex: 1; min-width: 0; }
.pvc-name {
  font-size: 13px; font-weight: 600; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pvc-stack {
  font-size: 11px; color: var(--g500); margin-top: 2px;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pvc-result {
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 999px; white-space: nowrap; flex: none;
}

/* Footer bar */
.pvc-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--g50);
  border-top: 1px solid var(--g200);
}
.pvc-footer-left {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--g500);
}
.pvc-footer-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  animation: ping 2s ease-in-out infinite; flex: none;
}
.pvc-footer-right {
  font-size: 12px; font-weight: 600; color: var(--accent); cursor: default;
}

/* Floating stat cards */
.portfolio-float-left,
.portfolio-float-right {
  position: absolute;
  background: #fff; border: 1px solid var(--g200); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 10px; z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.portfolio-float-left  { left: -24px; bottom: 72px; animation-delay: .7s; }
.portfolio-float-right { right: -20px; top: 72px; animation-delay: 1.9s; }
.pfl-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-lt); display: grid; place-items: center; flex: none;
}
.pfl-val {
  font-family: 'Fraunces', serif; font-size: 20px;
  letter-spacing: -.02em; color: var(--ink); line-height: 1;
}
.pfl-lbl { font-size: 11px; color: var(--g400); margin-top: 2px; }
/* ── BLOG PAGE HERO ─────────────────────────────────────────────── */
.blog-hero {
  padding: 144px 0 100px;
  position: relative; overflow: hidden;
  background: var(--g50); border-bottom: 1px solid var(--g200);
}
.blog-hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, var(--g200) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  mask-image:         radial-gradient(ellipse 80% 60% at 60% 40%, transparent 30%, black 80%);
  opacity: .5;
}
.blog-hero .w { position: relative; z-index: 1; }
.blog-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 960px) { .blog-hero-grid { grid-template-columns: 1fr; gap: 56px; } }

/* Copy */
.blog-hero-copy h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(40px, 5.2vw, 72px); line-height: 1.02;
  letter-spacing: -.035em; margin: 0 0 22px; text-wrap: balance; color: var(--ink);
}
.blog-hero-copy h1 em { font-style: italic; color: var(--accent); }
.blog-hero-copy .hero-sub {
  font-size: 18px; color: var(--g500); line-height: 1.6;
  max-width: 480px; margin: 0 0 32px;
}

/* Topic pills */
.blog-topics { display: flex; flex-wrap: wrap; gap: 8px; }
.bt-pill {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--g200);
  border-radius: 999px; padding: 7px 14px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  transition: box-shadow .2s, transform .2s;
}
.bt-pill:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.bt-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }

/* Visual side */
.blog-hero-vis { position: relative; padding-top: 28px; }

/* Floating badge */
.blog-float-badge {
  position: absolute; top: -8px; right: 16px;
  background: #fff; border: 1px solid var(--g200);
  border-radius: 999px; padding: 8px 16px 8px 12px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  z-index: 4; animation: float 4s ease-in-out infinite;
}
.blog-float-badge .pip {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  animation: ping 2s ease-in-out infinite; flex: none;
}

/* Main card */
.blog-vis-card {
  background: #fff; border: 1px solid var(--g200); border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.05);
  position: relative; z-index: 2;
}

/* Header */
.bvc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--g200);
}
.bvc-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.bvc-rss {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500; color: #d97706;
  background: #fffbeb; border: 1px solid #fde68a;
  padding: 4px 10px; border-radius: 999px; cursor: default;
}

/* Article list */
.bvc-list { display: flex; flex-direction: column; }
.bvc-article {
  padding: 14px 18px; border-bottom: 1px solid var(--g100);
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; animation: articleIn .5s cubic-bezier(.16,1,.3,1) forwards;
  transition: background .2s; cursor: default;
}
.bvc-article:last-child { border-bottom: none; }
.bvc-article:hover { background: var(--g50); }
.ba-1 { animation-delay: .1s; }
.ba-2 { animation-delay: .22s; }
.ba-3 { animation-delay: .34s; }
.ba-4 { animation-delay: .46s; }
@keyframes articleIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bvc-art-cat {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 999px;
  display: inline-block; width: fit-content;
}
.bvc-art-title {
  font-size: 13px; font-weight: 600; color: var(--ink);
  line-height: 1.35;
}
.bvc-art-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--g500);
}
.bvc-av {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 8px; font-weight: 700; color: #fff; flex: none;
}
.bvc-sep { color: var(--g400); }

/* Reading progress bar */
.bvc-art-bar {
  height: 3px; background: var(--g100); border-radius: 999px; overflow: hidden;
}
.bvc-bar-fill {
  height: 100%; border-radius: 999px;
  transform: scaleX(0); transform-origin: left;
  animation: barGrow .8s cubic-bezier(.16,1,.3,1) forwards;
}
.ba-1 .bvc-bar-fill { animation-delay: .3s; }
.ba-2 .bvc-bar-fill { animation-delay: .5s; }
.ba-3 .bvc-bar-fill { animation-delay: .7s; }
.ba-4 .bvc-bar-fill { animation-delay: .9s; }
@keyframes barGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Newsletter strip */
.bvc-newsletter {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 18px;
  background: var(--accent-lt); border-top: 1px solid rgba(24,67,239,.12);
}
.bvc-nl-left { display: flex; align-items: center; gap: 10px; }
.bvc-nl-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: #fff; display: grid; place-items: center; flex: none;
  box-shadow: 0 1px 4px rgba(24,67,239,.15);
}
.bvc-nl-title { font-size: 13px; font-weight: 600; color: var(--accent); }
.bvc-nl-sub   { font-size: 11px; color: rgba(24,67,239,.6); margin-top: 1px; }
.bvc-nl-btn {
  font-size: 13px; font-weight: 600; color: #fff;
  background: var(--accent); border-radius: 999px;
  padding: 8px 16px; white-space: nowrap; cursor: default;
  transition: background .2s;
}
.bvc-nl-btn:hover { background: var(--accent-dk); }

/* Floating stat cards */
.blog-float-left,
.blog-float-right {
  position: absolute;
  background: #fff; border: 1px solid var(--g200); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 10px; z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.blog-float-left  { left: -24px; bottom: 72px; animation-delay: .6s; }
.blog-float-right { right: -20px; top: 72px; animation-delay: 2s; }
.bfl-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-lt); display: grid; place-items: center; flex: none;
}
.bfl-val {
  font-family: 'Fraunces', serif; font-size: 20px;
  letter-spacing: -.02em; color: var(--ink); line-height: 1;
}
.bfl-lbl { font-size: 11px; color: var(--g400); margin-top: 2px; }

/* Quote slider on mobile */
@media (max-width: 768px) {
  .about-quotes-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .about-quotes-grid::-webkit-scrollbar { display: none; }
  .about-quotes-grid > div {
    width: calc(100vw - 64px);
    min-width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    flex: none;
    scroll-snap-align: center;
    box-sizing: border-box;
  }
  .about-quotes-grid > div p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .quote-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .quote-dots span {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--g200); transition: background .3s;
  }
  .quote-dots span.active { background: var(--accent); }
}
@media (min-width: 769px) {
  .quote-dots { display: none; }
}
@media (max-width: 680px) {
  .about-quotes-grid > div {
    min-width: calc(100vw - 40px);
  }
}