/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --ink:     #0a0a12;
  --ink2:    #14141f;
  --ink3:    #1c1c2a;
  --white:   #ffffff;
  --bg:      #f5f4f0;
  --bg2:     #eeedea;
  --purple:  #5b45c2;
  --purple2: #7c68e0;
  --blue:    #2e6be6;
  --green:   #16a34a;
  --text:    #3d3d52;
  --muted:   #7a7a8e;
  --border-d: rgba(255,255,255,0.07);
  --border-l: rgba(0,0,0,0.08);
  --grad: linear-gradient(135deg, #5b45c2, #2e6be6);
  --pad: clamp(20px, 5vw, 72px);
  --r: 10px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════════
   LOGO MARK — the typographic system
═══════════════════════════════════════════ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  flex-shrink: 0;
}
.logo .l-smc {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.02em;
}
.logo .l-rule {
  width: 1px;
  height: 16px;
  background: var(--purple2);
  margin: 0 9px;
  flex-shrink: 0;
}
.logo .l-frame {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* Logo on light bg */
.logo-light .l-smc  { color: var(--ink); }
.logo-light .l-rule { background: var(--purple); }
.logo-light .l-frame{ color: var(--muted); }

/* Large variant (footer) */
.logo-lg .l-smc  { font-size: 19px; }
.logo-lg .l-rule { height: 20px; margin: 0 11px; }
.logo-lg .l-frame{ font-size: 13px; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav-outer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 18px var(--pad);
  pointer-events: none;
}
.nav-pill {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  max-width: 1060px;
  background: rgba(14,14,20,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-d);
  border-radius: 100px;
  padding: 10px 10px 10px 22px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  padding: 7px 13px;
  border-radius: 100px;
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 3px;
}
.lb {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.18s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
}
.lb.on { background: rgba(255,255,255,0.1); color: #fff; }
.btn-nav {
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 100px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 16px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,18,0.97);
  backdrop-filter: blur(24px);
  padding: 100px var(--pad) 40px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  font-weight: 600;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
  letter-spacing: -0.02em;
}
.mobile-nav a:hover { color: #fff; }
.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   HERO — dark, full bleed, photo-backed
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  overflow: hidden;
}

/* Unsplash photo background — user drops their chosen URL here */
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?w=1800&auto=format&fit=crop&q=60');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
}

/* Layered atmospheric overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,18,0.6) 0%, rgba(10,10,18,0.1) 50%, rgba(10,10,18,0.85) 100%),
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(91,69,194,0.12) 0%, transparent 70%);
}

/* Thin horizontal scan lines for texture */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.012) 2px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
}

/* Vertical purple accent line — left edge signal */
.hero-accent-line {
  position: absolute;
  left: var(--pad);
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--purple2), transparent);
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 140px var(--pad) 100px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--purple2);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--purple2);
}

.hero-h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 780px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.35s;
}
.hero-h1 em {
  font-style: italic;
  color: var(--purple2);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.52);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.5s;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.65s;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
  font-family: 'DM Sans', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero metrics row */
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.85s;
}
.h-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.h-metric-val {
  font-family: 'Space Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.h-metric-val span { color: var(--purple2); }
.h-metric-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.h-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}
.scroll-hint span {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-section {
  background: var(--ink2);
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.mitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  white-space: nowrap;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mdot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--purple2);
  opacity: 0.5;
}

/* ═══════════════════════════════════════════
   SECTION SHELLS
═══════════════════════════════════════════ */
.section-light { background: var(--bg); padding: 100px 0; }
.section-white { background: var(--white); padding: 100px 0; }
.section-dark  { background: var(--ink2); padding: 100px 0; }
.section-ink   { background: var(--ink); padding: 100px 0; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  color: var(--purple);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--purple);
}
.eyebrow-light { color: var(--purple2); }
.eyebrow-light::before { background: var(--purple2); }

.section-h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-h2 em { font-style: italic; color: var(--purple); }
.section-h2-light { color: #fff; }
.section-h2-light em { color: var(--purple2); }

.section-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}
.section-lead-light { color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════
   SERVICES — light bg, asymmetric grid
═══════════════════════════════════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  background: var(--border-l);
  border: 1px solid var(--border-l);
  border-radius: var(--r);
  overflow: hidden;
}
.svc-card {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { background: #fafaff; }

.svc-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--purple);
  letter-spacing: 0.08em;
  opacity: 0.6;
}
.svc-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.svc-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.svc-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid var(--border-l);
  padding-top: 20px;
  margin-top: 4px;
}
.svc-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}
.svc-feat::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}
.svc-price {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--purple);
  border-top: 1px solid var(--border-l);
  padding-top: 16px;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   WORK — dark section, proof card
═══════════════════════════════════════════ */
.work-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-d);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 52px;
}
.work-info {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.work-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.work-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
.work-h {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.work-p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.work-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chip {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 12px;
  border-radius: 100px;
}
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple2);
  transition: gap 0.2s;
}
.work-link:hover { gap: 12px; }

/* Work visual panel */
.work-visual {
  background: var(--ink3);
  border-left: 1px solid var(--border-d);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.wv-bar {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-d);
  border-radius: 8px 8px 0 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.wv-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  margin: 0 8px;
  font-family: 'Space Mono', monospace;
}
.wv-body {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-d);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.wv-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 14px;
}
.wv-stat-label {
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.wv-stat-val {
  font-family: 'Space Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.wv-stat-sub {
  font-size: 10px;
  margin-top: 3px;
}
.wv-chat {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wv-msg {
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 85%;
  line-height: 1.45;
}
.wv-msg.in {
  background: rgba(91,69,194,0.2);
  color: rgba(255,255,255,0.7);
  align-self: flex-start;
  border: 1px solid rgba(91,69,194,0.25);
}
.wv-msg.out {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  align-self: flex-end;
  border: 1px solid rgba(255,255,255,0.06);
}
.wv-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px 0;
  align-self: flex-start;
}
.wv-typing span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(124,104,224,0.5);
  animation: typ 1.2s ease-in-out infinite;
}
.wv-typing span:nth-child(2) { animation-delay: 0.2s; }
.wv-typing span:nth-child(3) { animation-delay: 0.4s; }

/* ═══════════════════════════════════════════
   WHY US — light, split layout
═══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 0;
}
.why-left { padding-top: 8px; }
.why-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}
.why-point {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border-l);
  transition: background 0.2s;
}
.why-point:last-child { border-bottom: 1px solid var(--border-l); }
.why-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--purple);
  padding-top: 3px;
  letter-spacing: 0.06em;
}
.why-point-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.why-point-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
.why-right {
  position: sticky;
  top: 100px;
}
.why-card {
  background: var(--ink2);
  border-radius: var(--r);
  padding: 40px;
  border: 1px solid var(--border-d);
}
.why-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.why-card-title em { font-style: italic; color: var(--purple2); }
.why-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-stack-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 13px 16px;
}
.why-stack-name {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.why-stack-bar {
  height: 3px;
  border-radius: 2px;
  background: var(--grad);
  flex-shrink: 0;
}
.why-stack-label {
  font-size: 10px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   TESTIMONIAL STRIP — dark
═══════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--border-d);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 52px;
  border: 1px solid var(--border-d);
}
.testi-card {
  background: var(--ink3);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-quote {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  font-style: italic;
  flex: 1;
}
.testi-who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border-d);
  padding-top: 20px;
}
.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.testi-role {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   CTA — full dark, editorial
═══════════════════════════════════════════ */
.cta-section {
  background: var(--ink);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-photo {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1600&auto=format&fit=crop&q=50');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.cta-h {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.cta-h em { font-style: italic; color: var(--purple2); }
.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-bottom: 44px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border-d);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border-d);
}
.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 240px;
}
.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  padding: 5px 0;
  transition: color 0.18s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.18);
}
.footer-bottom .lang-toggle { background: rgba(255,255,255,0.04); }

/* ═══════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════ */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.js-ready .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes typ {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.2; transform: scaleY(1); }
  50% { opacity: 0.6; transform: scaleY(1.15); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .svc-grid { grid-template-columns: 1fr; }
  .work-card { grid-template-columns: 1fr; }
  .work-visual { border-left: none; border-top: 1px solid var(--border-d); }
  .why-grid { grid-template-columns: 1fr; gap: 52px; }
  .why-right { position: static; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links, .lang-toggle { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .h-divider { display: none; }
  .hero-metrics { gap: 20px; }
  .why-grid { gap: 36px; }
  .work-info { padding: 32px 28px; }
}
