/* ─── samanvayatech ── landing page styles ─────────────────────────────────
   Editorial-bold direction:
   - Cream paper background, deep ink, burnt orange accent (tweakable)
   - Sharp corners everywhere (no border-radius)
   - General Sans (display + body) + JetBrains Mono for labels
   - Subtle rounded corners (4–6px), hairline borders, restrained accents
   ────────────────────────────────────────────────────────────────────────── */

:root {
  /* paper + ink */
  --paper:      #f1ebdd;     /* main cream */
  --paper-2:    #e7dfcc;     /* deeper cream for alt sections */
  --paper-3:    #dcd2bb;     /* deepest warm */
  --ink:        #14110e;     /* near-black ink */
  --ink-2:      #2a251f;     /* secondary ink, hairlines */
  --ink-3:      #6b6357;     /* muted body */
  --ink-4:      #a39988;     /* very muted */
  --accent:     #c2410c;     /* burnt orange (tweakable) */
  --accent-ink: #ffffff;     /* text on accent */
  --hairline:   rgba(20,17,14,.18);
  --hairline-2: rgba(20,17,14,.08);

  /* type */
  --f-display:  "General Sans", "Söhne", ui-sans-serif, sans-serif;
  --f-body:     "General Sans", "Söhne", ui-sans-serif, sans-serif;
  --f-mono:     "JetBrains Mono", ui-monospace, monospace;

  /* scale */
  --container:  1280px;
  --gutter:     32px;
}

/* dark mode (paper inverted) */
[data-theme="dark"] {
  --paper:      #14110e;
  --paper-2:    #1c1814;
  --paper-3:    #25201a;
  --ink:        #f1ebdd;
  --ink-2:      #d9d0bd;
  --ink-3:      #a39988;
  --ink-4:      #6b6357;
  --hairline:   rgba(241,235,221,.18);
  --hairline-2: rgba(241,235,221,.08);
}

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

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  letter-spacing: -0.005em;
}

body {
  background-image:
    radial-gradient(circle at 12% 18%, rgba(20,17,14,.04) 0, transparent 60%),
    radial-gradient(circle at 88% 82%, rgba(194,65,12,.05) 0, transparent 55%);
  min-height: 100vh;
}

::selection { background: var(--accent); color: var(--accent-ink); }

a { color: inherit; text-decoration: none; }

/* ─── reveal-on-scroll ──────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="fade"]      { transform: none; }
[data-reveal="left"]      { transform: translateX(-24px); }
[data-reveal="left"].in   { transform: none; }
[data-reveal="right"]     { transform: translateX(24px); }
[data-reveal="right"].in  { transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto !important; }
}

/* pulse for accent dots */
@keyframes pulseAccent {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 45%, transparent); }
  50%      { box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 0%, transparent); }
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22,163,74,.22); }
  50%      { box-shadow: 0 0 0 7px rgba(22,163,74,0); }
}

/* ─── containers ─────────────────────────────────────────────────────────── */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hr { height: 1px; background: var(--hairline); width: 100%; }
.hr-ink { height: 1px; background: var(--ink); width: 100%; }

/* ─── typography ─────────────────────────────────────────────────────────── */
.display {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink);
}
.display em, .display .ital {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.section-num { display: none; }

.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
  text-wrap: pretty;
  font-weight: 400;
}

.tabular { font-variant-numeric: tabular-nums; }

/* ─── nav ────────────────────────────────────────────────────────────────── */
.ticker {
  background: var(--paper-2);
  color: var(--ink-3);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.ticker-inner {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: tick 60s linear infinite;
  width: max-content;
}
.ticker-inner span { display: inline-flex; align-items: center; gap: 16px; }
.ticker-inner span::before {
  content: "◆";
  font-size: 8px;
  color: var(--accent);
}
@keyframes tick {
  to { transform: translateX(-50%); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--paper) 94%, transparent);
  border-bottom-color: var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding .3s cubic-bezier(.2,.8,.2,1);
}
.nav.scrolled .nav-inner { padding: 13px 0; }
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-mark {
  width: 22px; height: 22px;
  display: inline-block;
  position: relative;
  transform: translateY(2px);
  margin-right: 8px;
}
.brand-tech {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.015em;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right .35s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { right: 0; }

/* ─── hamburger button ───────────────────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 9px;
  flex-shrink: 0;
  border-radius: 4px;
  transition: background .2s;
}
.nav-burger:hover { background: var(--paper-2); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── mobile menu overlay ────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 88px 24px 48px;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.2,.8,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline);
  margin-bottom: 40px;
}
.mobile-nav-links a {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .15s, padding-left .2s;
}
.mobile-nav-links a::after { content: "→"; font-size: 18px; color: var(--ink-4); transition: color .15s; }
.mobile-nav-links a:hover,
.mobile-nav-links a.mob-active { color: var(--accent); padding-left: 6px; }
.mobile-nav-links a:hover::after,
.mobile-nav-links a.mob-active::after { color: var(--accent); }

.mobile-menu-cta { display: flex; flex-direction: column; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px;
  cursor: pointer;
  border: 1px solid var(--ink);
  border-radius: 4px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, border-color .25s, box-shadow .3s;
  letter-spacing: -0.005em;
  background: transparent;
  color: var(--ink);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover {
  box-shadow: 0 12px 28px -10px color-mix(in oklab, var(--accent) 55%, transparent);
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-lg { padding: 14px 24px; font-size: 14.5px; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ─── hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 96px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
}
.hero h1.display {
  font-size: clamp(44px, 6.4vw, 88px);
  margin-top: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.hero-sub {
  margin-top: 28px;
  max-width: 56ch;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
}
.hero-meta b {
  display: block;
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.svc-index {
  border: 1px solid var(--hairline);
  background: var(--paper-2);
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .5s;
}
.svc-index:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -28px rgba(0,0,0,.25);
}
.svc-index-head {
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.svc-index-head .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  animation: pulseAccent 2.6s ease-in-out infinite;
}
.svc-row {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  padding: 22px 18px;
  border-bottom: 1px solid var(--hairline);
  cursor: pointer;
  transition: background .15s, padding .2s;
}
.svc-row:last-child { border-bottom: 0; }
.svc-row:hover { background: var(--paper-3); padding-left: 24px; }
.svc-row:hover .svc-arr { color: var(--accent); transform: translateX(4px); }
.svc-row .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}
.svc-row .name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
}
.svc-row .desc {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 3px;
}
.svc-arr {
  color: var(--ink-3);
  font-family: var(--f-mono);
  transition: transform .2s, color .15s;
  text-align: right;
}

/* accent emphasis (no decoration; color only) */
.scribble {
  color: var(--accent);
  font-weight: 600;
}
.scribble svg { display: none; }

/* ─── section header ─────────────────────────────────────────────────────── */
.section {
  padding: 96px 0;
  position: relative;
}
.section.alt {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.section.dark {
  background: var(--ink);
  color: var(--paper);
}
.section.dark .eyebrow,
.section.dark .section-num { color: var(--ink-4); }
.section.dark .lead { color: var(--paper-2); }
.section.dark .hr { background: rgba(241,235,221,.18); }
.section.dark .display { color: var(--paper); }

.section-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
}
.section-head .meta {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  padding-top: 14px;
  max-width: 22ch;
  text-wrap: balance;
}
.section-head h2 em, .section-head h2 .ital {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

/* ─── services (full section) ────────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}
.svc-card {
  padding: 36px 32px 28px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  min-height: 520px;
  position: relative;
  transition: background .2s;
}
.svc-card:last-child { border-right: 0; }
.svc-card:hover { background: var(--paper-2); }
.svc-card .num-big {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.svc-card .num-big::before { content: "— "; color: var(--accent); }
.svc-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.svc-card h3 .ital {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.svc-card .ital-tag {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 500;
  color: var(--ink-3);
  font-size: 15px;
  margin-bottom: 18px;
}
.svc-card p {
  color: var(--ink-2);
  font-size: 15px;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.svc-card ul {
  list-style: none;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-family: var(--f-mono);
  color: var(--ink-2);
}
.svc-card ul li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.svc-card ul li::before {
  content: "→";
  color: var(--accent);
  font-family: var(--f-body);
  font-size: 14px;
}

/* ─── why us ─────────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.why-cell {
  padding: 32px 24px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background .35s;
}
.why-cell:hover { background: color-mix(in oklab, var(--accent) 6%, transparent); }
.why-cell .ic { transition: letter-spacing .35s, color .25s; }
.why-cell:hover .ic { letter-spacing: 0.2em; }
.why-cell:nth-child(4n) { border-right: 0; }
.why-cell:nth-last-child(-n+4) { border-bottom: 0; }
.why-cell .ic {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.why-cell h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.why-cell p {
  font-size: 14px;
  color: var(--ink-3);
  text-wrap: pretty;
}

/* ─── products ───────────────────────────────────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.prod-card {
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 0;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.prod-card:hover { border-color: var(--ink-3); transform: translateY(-2px); }
.prod-card .pc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  background: var(--paper-2);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pc-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pc-status::before {
  content: "";
  width: 6px; height: 6px;
  background: #16a34a;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(22,163,74,.18);
  animation: pulseGreen 2.6s ease-in-out infinite;
}
.pc-status.beta::before { background: var(--ink-4); animation: none; box-shadow: 0 0 0 3px rgba(163,153,136,.18); }
.prod-card .pc-body {
  padding: 24px 20px 22px;
}
.prod-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.prod-card h3 .ital {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.prod-card .pc-tag {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 500;
  color: var(--ink-3);
  font-size: 14.5px;
  margin-bottom: 16px;
}
.prod-card .pc-desc {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.prod-card .pc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid var(--hairline);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.prod-card .pc-foot a { color: var(--accent); }

/* product visual */
.pc-visual {
  height: 140px;
  background: var(--paper-3);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

/* ─── process ────────────────────────────────────────────────────────────── */
.proc-list {
  border-top: 1px solid var(--ink);
}
.proc-row {
  display: grid;
  grid-template-columns: 100px 280px 1fr 160px;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
  transition: padding .2s;
  cursor: default;
}
.proc-row:hover { padding-left: 12px; }
.proc-row:hover .proc-name { color: var(--accent); }
.proc-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
}
.proc-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: color .15s;
}
.proc-name .ital {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.proc-desc {
  font-size: 15px;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 60ch;
}
.proc-dur {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-align: right;
}

/* ─── case studies ───────────────────────────────────────────────────────── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cs-card {
  border: 1px solid var(--hairline);
  border-radius: 6px;
  background: var(--paper);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .35s;
}
.cs-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink-3);
  box-shadow: 0 20px 40px -22px rgba(0,0,0,.18);
}
.cs-card .cs-hd {
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  justify-content: space-between;
}
.cs-card .cs-body { padding: 26px 20px 22px; }
.cs-card h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  text-wrap: balance;
}
.cs-card .cs-snip {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.cs-card .cs-stat {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.cs-card .cs-stat-l {
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--f-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── tech stack ─────────────────────────────────────────────────────────── */
.stack-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.stack-grid:first-of-type { border-top: 1px solid var(--hairline); }
.stack-cat {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.stack-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stack-item {
  font-family: var(--f-mono);
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  color: var(--ink-2);
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  letter-spacing: 0.02em;
  cursor: default;
}
.stack-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.stack-item:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── testimonials ───────────────────────────────────────────────────────── */
.test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}
.test-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.test-cell:nth-child(2n) { border-right: 0; }
.test-cell:nth-last-child(-n+2) { border-bottom: 0; }
.test-cell .quote-mark { display: none; }
.test-cell .quote {
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-wrap: pretty;
  font-weight: 500;
  color: var(--ink);
}
.test-cell .quote::before { content: open-quote; color: var(--accent); }
.test-cell .quote::after  { content: close-quote; color: var(--accent); }
.test-cell .quote em, .test-cell .quote .ital {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
}
.test-cell .attr {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.test-cell .attr b { color: var(--ink); font-weight: 600; }

/* ─── about ──────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 64px;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4/5;
  background: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.about-portrait .label {
  position: absolute;
  bottom: 16px;
  left: 18px;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  color: #f5efe2;
}
.about-portrait .label b { color: #fff; font-weight: 500; display: block; margin-bottom: 2px; font-size: 12px; }

/* certifications strip */
.certs {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}
.certs h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
  font-weight: 500;
}
.certs ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}
.certs li {
  font-family: var(--f-mono);
  font-size: 11.5px;
  padding: 5px 10px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.certs li b {
  color: var(--accent);
  font-weight: 500;
  margin-right: 4px;
}
.about-text h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  text-wrap: balance;
}
.about-text h3 .ital {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.about-text p {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 14px;
  text-wrap: pretty;
}
.about-sig {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: 32px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.about-sig b { color: var(--ink); display: block; font-weight: 500; }

/* ─── faq ────────────────────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--ink); }
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 0;
}
.faq-q {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  align-items: baseline;
  user-select: none;
}
.faq-q .qn {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.faq-q .qt {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  line-height: 1.35;
  text-wrap: balance;
  color: var(--ink);
}
.faq-q .qx {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 300;
  text-align: right;
  color: var(--ink-3);
  transition: transform .25s, color .15s;
  line-height: 1;
}
.faq-item[open] .qx { transform: rotate(45deg); color: var(--accent); }
.faq-item[open] .qt { color: var(--accent); }
.faq-a {
  padding: 0 64px 0 84px;
  color: var(--ink-2);
  font-size: 15px;
  max-width: 70ch;
  text-wrap: pretty;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s cubic-bezier(.2,.8,.2,1), padding .4s cubic-bezier(.2,.8,.2,1), opacity .35s;
}
.faq-item[open] .faq-a {
  max-height: 500px;
  padding: 0 64px 28px 84px;
  opacity: 1;
}

/* ─── contact ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.2fr);
  gap: 64px;
  align-items: start;
}
.contact-side .display {
  font-size: clamp(40px, 5.4vw, 72px);
}
.contact-meta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(241,235,221,.2);
}
.contact-meta .row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  font-size: 14px;
  align-items: baseline;
}
.contact-meta .row .l {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.contact-meta .row .v {
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 14px;
}
.contact-meta .row .v a:hover { color: var(--accent); }

.contact-form {
  background: var(--paper);
  color: var(--ink);
  padding: 36px 36px 32px;
  border: 1px solid var(--paper);
  border-radius: 8px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-row.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.row-2 > div { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.form-row label .req { color: var(--accent); }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--f-body);
  font-size: 15px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--accent); }
.form-row textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--f-body);
}
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  padding: 8px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  cursor: pointer;
  transition: all .12s;
  letter-spacing: 0;
  background: transparent;
  color: var(--ink-2);
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip.on:hover { background: var(--accent); border-color: var(--accent); }

.form-submit {
  margin-top: 16px;
  width: 100%;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 15px;
  padding: 16px 22px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: -0.005em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .15s;
}
.form-submit:hover { background: var(--accent); }
.form-submit:hover .arr { transform: translateX(4px); }
.form-submit .arr { transition: transform .2s; }

.form-success {
  background: var(--paper);
  color: var(--ink);
  padding: 40px 36px;
  text-align: center;
}
.form-success .checkmark {
  width: 56px; height: 56px;
  background: var(--accent);
  color: white;
  margin: 0 auto 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 500;
}
.form-success h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.form-success p { color: var(--ink-3); font-size: 15px; }

/* ─── footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--paper-2);
  padding: 80px 0 40px;
  border-top: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.footer-big {
  display: flex;
  align-items: flex-end;
  gap: 0;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 10vw, 180px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 56px;
}
.footer-mark {
  width: 0.6em;
  height: 0.6em;
  margin-right: 0.1em;
  margin-bottom: 0.05em;
  flex-shrink: 0;
}
.footer-big .ital {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-col ul a { color: var(--ink-2); }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── page hero (inner pages) ────────────────────────────────────────────── */
.page-hero {
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--hairline);
}
.page-hero .eyebrow { margin-bottom: 4px; }

/* ─── about teaser (on index) ────────────────────────────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-teaser-faces {
  display: flex;
  gap: 0;
}
.about-teaser-faces img {
  width: calc(100% / 6);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  border: 2px solid var(--paper-2);
  margin-left: -12px;
  transition: transform .3s, z-index 0s;
  position: relative;
  filter: saturate(0.88);
}
.about-teaser-faces img:first-child { margin-left: 0; }
.about-teaser-faces img:hover { transform: translateY(-6px) scale(1.06); z-index: 2; filter: saturate(1); }

@media (max-width: 1024px) {
  .about-teaser { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── company story ──────────────────────────────────────────────────────── */
.company-story {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  padding: 48px 0 0;
  border-top: 1px solid var(--hairline);
}
.cs-story-text h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}
.cs-story-text h3 em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}
.cs-story-text p {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.cs-story-text p em { color: var(--ink); font-style: italic; }
.cs-story-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}
.cs-stat-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--hairline);
}
.cs-stat-row:last-child { border-bottom: 0; }
.cs-stat-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.cs-stat-label {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* ─── services 6-card grid ───────────────────────────────────────────────── */
.svc-grid-6 .svc-card { border-bottom: 1px solid var(--hairline); min-height: 460px; }
.svc-grid-6 .svc-card:nth-child(3n) { border-right: 0; }
.svc-grid-6 .svc-card:nth-last-child(-n+3) { border-bottom: 0; }

/* ─── team ───────────────────────────────────────────────────────────────── */
.team-group-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
}
.team-grid { display: grid; gap: 20px; }
.team-grid-3 { grid-template-columns: repeat(3, 1fr); }
.team-grid-4 { grid-template-columns: repeat(4, 1fr); }
.team-card {
  border: 1px solid var(--hairline);
  border-radius: 6px;
  background: var(--paper);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .2s, box-shadow .3s;
}
.team-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink-3);
  box-shadow: 0 16px 36px -18px rgba(0,0,0,.18);
}
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-3);
  position: relative;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.9) contrast(1.02);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-3);
}
.team-photo-placeholder span {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--ink-4);
  letter-spacing: -0.02em;
}
.team-info { padding: 18px 16px 16px; }
.team-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 3px;
}
.team-role {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 500;
}
.team-bio {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 12px;
  text-wrap: pretty;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.team-tags span {
  font-family: var(--f-mono);
  font-size: 10px;
  padding: 3px 8px;
  border: 1px solid var(--hairline);
  border-radius: 3px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* ─── responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: 0; border-bottom: 1px solid var(--ink); min-height: 0; }
  .svc-card:last-child { border-bottom: 0; }
  .svc-grid-6 .svc-card:nth-child(3n) { border-right: 0; }
  .svc-grid-6 .svc-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--ink); }
  .svc-grid-6 .svc-card:last-child { border-bottom: 0; }
  .company-story { grid-template-columns: 1fr; gap: 36px; }
  .team-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .team-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cell:nth-child(4n) { border-right: 1px solid var(--hairline); }
  .why-cell:nth-child(2n) { border-right: 0; }
  .why-cell:nth-last-child(-n+4) { border-bottom: 1px solid var(--hairline); }
  .why-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .prod-grid { grid-template-columns: 1fr; }
  .proc-row { grid-template-columns: 60px 1fr; }
  .proc-row .proc-desc, .proc-row .proc-dur { grid-column: 2; }
  .cs-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .test-cell { border-right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --gutter: 24px; }

  /* nav */
  .nav-links { display: none; }
  .nav .btn-primary { display: none; }
  .nav-burger { display: flex; }
  .brand { font-size: 16px; }
  .brand-tech { font-size: 16px; }

  /* layout */
  .section-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 56px; }
  .page-hero { padding: 48px 0 56px; }

  /* hero meta wraps into 2×2 grid */
  .hero-meta { gap: 16px 24px; }
  .hero-meta > div { min-width: 120px; }

  /* why grid */
  .why-grid { grid-template-columns: 1fr; }
  .why-cell { border-right: 0 !important; border-bottom: 1px solid var(--hairline) !important; }

  /* process — fully stacked on mobile */
  .proc-row { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .proc-row .proc-desc,
  .proc-row .proc-dur { grid-column: 1; }
  .proc-dur { text-align: left; }

  /* misc */
  .stack-grid { grid-template-columns: 1fr; gap: 12px; }
  .footer-cols { grid-template-columns: 1fr; }
  .form-row.row-2 { grid-template-columns: 1fr; }
  .faq-a { padding: 0 0 24px 48px; }
  .team-grid-3, .team-grid-4 { grid-template-columns: 1fr; }

  /* about teaser faces: reduce overlap on small screens */
  .about-teaser-faces img { margin-left: -8px; }

  /* products stat panel: smaller num so long words like "Android" don't bleed */
  .cs-stat-num { font-size: 20px; }
  .cs-stat-row { padding: 14px 16px; }
}

/* ─── services teaser (on index) ────────────────────────────────────────── */
.svc-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 40px;
}
.svc-teaser-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.svc-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  border: 1px solid var(--hairline);
  margin: -1px 0 0 -1px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .2s, color .2s, border-color .2s;
}
.svc-pill:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  z-index: 1;
}
.svc-pill-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  flex-shrink: 0;
}
.svc-pill:hover .svc-pill-num { color: var(--paper-2); }
.svc-teaser-cta { padding-top: 8px; }

/* ─── products teaser (on index) ────────────────────────────────────────── */
.prod-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 40px;
}
.prod-teaser-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
}
.prod-teaser-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  transition: background .15s;
}
.prod-teaser-item:last-child { border-bottom: 0; }
.prod-teaser-item:hover { background: var(--paper-2); }
.prod-teaser-item b { font-weight: 600; color: var(--ink); }
.prod-teaser-item span:last-child {
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}
.prod-teaser-cta { padding-top: 8px; }

/* ─── work teaser (on index) ─────────────────────────────────────────────── */
.work-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 40px;
}
.work-teaser-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
}
.work-teaser-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 22px 20px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.work-teaser-stat:nth-child(2n) { border-right: 0; }
.work-teaser-stat:nth-last-child(-n+2) { border-bottom: 0; }
.work-teaser-stat b {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.work-teaser-stat span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.4;
}
.work-teaser-body { padding-top: 8px; }

@media (max-width: 1024px) {
  .svc-teaser,
  .prod-teaser,
  .work-teaser { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .svc-teaser-pills { grid-template-columns: 1fr; }
  .work-teaser-stats { grid-template-columns: 1fr; }
  .work-teaser-stat { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .work-teaser-stat:last-child { border-bottom: 0; }
}
