/* ============================================
   VH code — landing
   ============================================ */

:root {
  /* Color tokens */
  --bg: #0a0a0a;
  --bg-raised: #131312;
  --bg-card: #161614;
  --fg: #f3f0e8;
  --fg-muted: #8a8780;
  --fg-dim: #4a4a47;
  --border: #232320;
  --border-strong: #353530;

  /* Brand gradient (from logo) */
  --grad-start: #b8e23a;
  --grad-mid: #e8c829;
  --grad-end: #ff7a1c;
  --grad: linear-gradient(95deg, var(--grad-start), var(--grad-mid) 45%, var(--grad-end));

  /* Type */
  --font-display: "Geist", "Inter Display", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-serif: "Instrument Serif", "Times New Roman", serif;

  /* Spacing rhythm */
  --gutter: clamp(20px, 4vw, 64px);
  --section-pad: clamp(80px, 10vw, 160px);
}

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

html,
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

body {
  overflow-x: hidden;
}

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

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

::selection {
  background: var(--grad-end);
  color: var(--bg);
}

/* ============================================
   Utility / shared
   ============================================ */

.container {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "ss01", "ss02", "calt", "zero";
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: -0.01em;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--grad);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

.gradient-divider {
  height: 1px;
  background: var(--grad);
  width: 100%;
  opacity: 0.6;
}

/* The slash motif */
.slash {
  display: inline-block;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
  transform: skew(-8deg);
}

/* Cursor blink */
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.cursor {
  display: inline-block;
  width: 0.32em;
  height: 0.72em;
  background: var(--grad-end);
  vertical-align: 0.02em;
  margin-left: 0.1em;
  animation: blink 1.05s steps(1) infinite;
}

/* ============================================
   Nav
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(10, 10, 10, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.nav-logo .slash {
  font-size: 36px;
  margin-left: 2px;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}

.nav-links a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
}

.nav-links a::before {
  content: "/";
  margin-right: 6px;
  color: var(--fg-dim);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-links a:hover::before {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 10px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.nav-cta:hover {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
}

.nav-cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-start);
  box-shadow: 0 0 8px var(--grad-start);
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  min-height: 100vh;
  padding: 140px var(--gutter) var(--section-pad);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  background: radial-gradient(circle, var(--grad-start), transparent 60%);
  top: -200px;
  right: -200px;
}

.hero-glow.b {
  background: radial-gradient(circle, var(--grad-end), transparent 60%);
  top: auto;
  bottom: -300px;
  left: -200px;
  right: auto;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

.hero-meta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-label {
  color: var(--fg-dim);
  font-size: 10px;
}

.hero-meta-value {
  color: var(--fg);
}

.hero-headline {
  font-size: clamp(64px, 7vw, 120px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.hero-headline .line {
  display: block;
}

.hero-headline .line.indent {
  padding-left: clamp(40px, 10vw, 220px);
}

.hero-headline .word-stack {
  display: inline-flex;
  position: relative;
  align-items: baseline;
}

.hero-headline .gigaslash {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.05em;
  display: inline-block;
  transform: skew(-6deg);
  margin: 0 0.05em;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-top: 80px;
  align-items: end;
}

.hero-pitch {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--fg-muted);
  max-width: 520px;
}

.hero-pitch strong {
  color: var(--fg);
  font-weight: 500;
}

.hero-pitch .serif {
  color: var(--fg);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  border: 1px solid var(--border-strong);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.btn-primary:hover {
  background: transparent;
  color: var(--fg);
  transform: translateY(-1px);
}

.btn-ghost:hover {
  border-color: var(--fg);
  background: rgba(255, 255, 255, 0.04);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}

/* Hero terminal commit feed */
.commit-feed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.commit-feed-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}

.commit-feed-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fg-dim);
}

.commit-feed-dot.live {
  background: var(--grad-start);
  box-shadow: 0 0 10px var(--grad-start);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.commit-feed-title {
  flex: 1;
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.commit-feed-status {
  font-size: 10px;
  color: var(--grad-start);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commit-feed-body {
  padding: 14px 0;
  height: 280px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

.commit-feed-list {
  display: flex;
  flex-direction: column;
}

.commit-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  padding: 6px 16px;
  align-items: center;
  font-size: 11.5px;
  white-space: nowrap;
  overflow: hidden;
}

.commit-hash {
  color: var(--fg-dim);
  font-size: 10.5px;
}

.commit-msg {
  color: var(--fg);
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 6px;
}

.commit-tag {
  display: inline-block;
  padding: 1px 6px;
  font-size: 9.5px;
  border-radius: 3px;
  border: 1px solid var(--border-strong);
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.commit-tag.feat { color: var(--grad-start); border-color: rgba(184, 226, 58, 0.35); }
.commit-tag.ship { color: var(--grad-end); border-color: rgba(255, 122, 28, 0.35); }
.commit-tag.fix { color: #6ec6ff; border-color: rgba(110, 198, 255, 0.3); }
.commit-tag.perf { color: #d6c4ff; border-color: rgba(214, 196, 255, 0.3); }

.commit-time {
  color: var(--fg-dim);
  font-size: 10.5px;
}

@media (max-width: 900px) {
  .hero-bottom {
    grid-template-columns: 1fr;
  }
  .hero-headline .line.indent {
    padding-left: 0;
  }
}

/* ============================================
   Manifesto
   ============================================ */

.manifesto {
  border-top: 1px solid var(--border);
  padding: var(--section-pad) 0;
}

.manifesto-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.manifesto-text {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  max-width: 1000px;
}

.manifesto-text .dim {
  color: var(--fg-muted);
}

.manifesto-text .serif {
  color: var(--fg);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 0;
}

.manifesto-cell {
  background: var(--bg);
  padding: 40px 32px 56px;
  position: relative;
  min-height: 320px;
  transition: background 0.3s ease;
}

.manifesto-cell:hover {
  background: var(--bg-raised);
}

.manifesto-cell-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}

.manifesto-cell-title {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-weight: 500;
}

.manifesto-cell-desc {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.55;
}

.manifesto-cell-mark {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.manifesto-cell:hover .manifesto-cell-mark {
  opacity: 1;
}

@media (max-width: 900px) {
  .manifesto-head { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Products
   ============================================ */

.products {
  border-top: 1px solid var(--border);
  padding: var(--section-pad) 0;
}

.products-head {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.products-title {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.products-title .serif {
  color: var(--fg-muted);
  font-weight: 400;
}

.products-counter {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  background: var(--bg-card);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 460px;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.product-card.span-7 { grid-column: span 7; }
.product-card.span-5 { grid-column: span 5; }
.product-card.span-6 { grid-column: span 6; }
.product-card.span-12 { grid-column: span 12; }

.product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.product-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
}

.product-status {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-start);
  box-shadow: 0 0 8px var(--grad-start);
}

.product-name {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  font-weight: 500;
  font-family: var(--font-display);
}

.product-name .slash {
  font-size: 0.95em;
}

.product-desc {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 460px;
  margin-bottom: 28px;
}

.product-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px dashed var(--border-strong);
}

.product-meta-stats {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
}

.product-meta-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-meta-stat-label {
  color: var(--fg-dim);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-meta-stat-value {
  color: var(--fg);
  font-size: 13px;
}

.product-link {
  font-family: var(--font-mono);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
  transition: gap 0.2s;
}

.product-card:hover .product-link {
  gap: 12px;
}

.product-link-arrow {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* product visual area */
.product-visual {
  margin-top: 8px;
  margin-bottom: 24px;
  position: relative;
  flex: 1;
  min-height: 140px;
}

@media (max-width: 980px) {
  .product-card.span-7,
  .product-card.span-5,
  .product-card.span-6 {
    grid-column: span 12;
  }
  .products-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ============================================
   Botsapper visual — chat bubbles
   ============================================ */

.bs-vis {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.bs-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 80%;
  line-height: 1.4;
}

.bs-bubble.user {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--fg);
}

.bs-bubble.bot {
  background: linear-gradient(135deg, rgba(184, 226, 58, 0.15), rgba(255, 122, 28, 0.12));
  border: 1px solid rgba(184, 226, 58, 0.3);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: var(--fg);
}

.bs-bubble-meta {
  font-size: 9.5px;
  color: var(--fg-dim);
  margin-top: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bs-typing {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}

.bs-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fg-muted);
  animation: typing 1.4s ease-in-out infinite;
}

.bs-typing span:nth-child(2) { animation-delay: 0.18s; }
.bs-typing span:nth-child(3) { animation-delay: 0.36s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ============================================
   MyDataTalk visual — query + chart
   ============================================ */

.mdt-vis {
  font-family: var(--font-mono);
  font-size: 12px;
}

.mdt-prompt {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mdt-prompt-prefix {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.mdt-chart {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 100px;
  padding-top: 12px;
}

.mdt-bar {
  flex: 1;
  background: linear-gradient(to top, var(--grad-end), var(--grad-start));
  border-radius: 4px 4px 0 0;
  position: relative;
  min-height: 8%;
  transition: height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mdt-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--fg-dim);
}

/* ============================================
   Zwip visual — análisis + automatización
   ============================================ */

.pm-vis {
  font-family: var(--font-mono);
  font-size: 11.5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pm-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}

.pm-row:hover {
  border-color: var(--border-strong);
  transform: translateX(2px);
}

.pm-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-dim);
}

.pm-status.sent { background: var(--grad-start); }
.pm-status.opened { background: var(--grad-end); }
.pm-status.queued { background: var(--fg-dim); animation: pulse 1.6s ease-in-out infinite; }

.pm-subject {
  display: flex;
  flex-direction: column;
}

.pm-subject-line {
  color: var(--fg);
  font-size: 12px;
}

.pm-subject-meta {
  color: var(--fg-dim);
  font-size: 10px;
}

.pm-pct {
  color: var(--fg-muted);
  font-size: 11px;
}

/* ============================================
   Kalir visual — flow
   ============================================ */

.kl-vis {
  font-family: var(--font-mono);
  font-size: 11.5px;
  position: relative;
  height: 100%;
  min-height: 160px;
}

.kl-node {
  position: absolute;
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--fg);
}

.kl-node-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-start);
}

.kl-node.b .kl-node-dot { background: var(--grad-mid); }
.kl-node.c .kl-node-dot { background: var(--grad-end); }

.kl-line {
  position: absolute;
  height: 1px;
  background: var(--grad);
  opacity: 0.5;
  transform-origin: left center;
}

/* ============================================
   Clients / portfolio
   ============================================ */

.clients {
  border-top: 1px solid var(--border);
  padding: var(--section-pad) 0;
}

.clients-head {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.clients-title {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  max-width: 900px;
}

.clients-title .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.clients-counter {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.client-cell {
  background: var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.client-cell:hover {
  background: var(--bg-raised);
}

.client-cell-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(184, 226, 58, 0.08), rgba(255, 122, 28, 0.08));
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.client-cell-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.client-cell:hover .client-cell-thumb img {
  transform: scale(1.03);
}

.client-cell-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 96px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  opacity: 0.18;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.client-cell-body {
  padding: 28px 28px 56px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.client-cell-noimg .client-cell-body {
  padding-top: 36px;
}

.client-cell-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.client-cell-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
}

.client-cell-name .slash {
  font-size: 0.95em;
  margin-left: 2px;
}

.client-projects {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.client-project + .client-project {
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

.client-cell-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.client-cell-desc {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.55;
}

.client-cell-mark {
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.client-cell:hover .client-cell-mark {
  opacity: 1;
}

.client-cell-cta {
  cursor: pointer;
  grid-column: span 2;
}

.client-cell-thumb-cta {
  background: linear-gradient(135deg, rgba(184, 226, 58, 0.18), rgba(232, 200, 41, 0.14) 50%, rgba(255, 122, 28, 0.22));
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-cell-thumb-arrow {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.4s ease;
}

.client-cell-cta:hover .client-cell-thumb-arrow {
  transform: translate(6px, -6px);
}

@media (max-width: 900px) {
  .clients-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .clients-grid { grid-template-columns: 1fr; }
  .client-cell-cta { grid-column: span 1; }
}

/* ============================================
   Process / how we work
   ============================================ */

.process {
  border-top: 1px solid var(--border);
  padding: var(--section-pad) 0;
}

.process-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: end;
}

.process-title {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.process-list {
  display: flex;
  flex-direction: column;
}

.process-row {
  display: grid;
  grid-template-columns: 80px 1fr 280px 60px;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  align-items: start;
  cursor: default;
  position: relative;
  transition: padding 0.3s;
}

.process-row:last-child {
  border-bottom: 1px solid var(--border);
}

.process-row:hover {
  padding-left: 16px;
}

.process-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.process-row:hover::before {
  transform: scaleY(1);
}

.process-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
  padding-top: 8px;
}

.process-step-title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.process-step-title .slash {
  font-size: 0.85em;
}

.process-step-desc {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.55;
  padding-top: 10px;
}

.process-step-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: right;
  padding-top: 14px;
}

@media (max-width: 900px) {
  .process-head { grid-template-columns: 1fr; gap: 24px; }
  .process-row {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }
  .process-step-desc, .process-step-time {
    grid-column: 2 / -1;
  }
}

/* ============================================
   CTA + footer
   ============================================ */

.cta {
  border-top: 1px solid var(--border);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(184, 226, 58, 0.08), transparent 60%),
              radial-gradient(ellipse at 50% 0%, rgba(255, 122, 28, 0.05), transparent 60%);
}

.cta-eyebrow {
  margin-bottom: 32px;
  justify-content: center;
}

.cta-eyebrow {
  display: inline-flex;
}

.cta-headline {
  font-size: clamp(56px, 12vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.cta-headline .serif {
  color: var(--fg-muted);
  font-weight: 400;
}

.cta-sub {
  margin-top: 32px;
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-row {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-terminal {
  margin-top: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 13px;
  overflow: hidden;
}

.cta-terminal-head {
  padding: 10px 14px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--fg-muted);
}

.cta-terminal-dots {
  display: flex;
  gap: 5px;
}

.cta-terminal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-strong);
}

.cta-terminal-body {
  padding: 18px 16px;
  min-height: 100px;
  white-space: pre-wrap;
  line-height: 1.7;
}

.cta-terminal-prompt {
  color: var(--grad-start);
}

.cta-terminal-output {
  color: var(--fg-muted);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 60px var(--gutter) 30px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
}

.footer-logo-img {
  height: 54px;
  width: auto;
  display: block;
}

.footer-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  margin-bottom: 16px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-col-links a {
  transition: color 0.2s;
}

.footer-col-links a:hover {
  color: var(--fg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}

.footer-bottom-glyph {
  font-size: 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   Marquee — sliding tape
   ============================================ */

.tape {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 28px 0;
  position: relative;
  background: var(--bg);
}

.tape-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: tape 38s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.03em;
  font-weight: 500;
  white-space: nowrap;
  align-items: center;
}

.tape-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.tape-slash {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  transform: skew(-6deg);
  display: inline-block;
}

.tape-dim {
  color: var(--fg-dim);
}

@keyframes tape {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
