/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:     #0A0F1E;
  --blue:     #2563EB;
  --blue-dim: rgba(37,99,235,0.15);
  --bg:       #E2E8F0;
  --surface:  #F8FAFC;
  --surface2: #CBD5E1;
  --border:   rgba(15,23,42,0.1);
  --border2:  rgba(15,23,42,0.15);
  --text:     #0F172A;
  --muted:    #64748B;
  --muted2:   #475569;
  --white-el: #E8F4FF;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ── NOISE ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.12;
}

/* ── CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed; z-index: 9999;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: 50%;
  position: fixed; z-index: 9998;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: all 0.15s ease;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 14px; height: 14px; }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 48px; height: 48px; border-color: rgba(37,99,235,0.6); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  border-bottom: 1px solid var(--border);
  background: rgba(226,232,240,0.92);
  backdrop-filter: blur(20px);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 24px; width: auto; display: block; }
.nav-logo a { display: flex; align-items: center; }
.nav-center {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 2px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px;
}
.nav-center a {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--muted); text-decoration: none;
  padding: 6px 14px; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-center a:hover { color: var(--text); background: var(--surface2); }
.nav-right a {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--blue);
  text-decoration: none;
  padding: 9px 20px; border-radius: 4px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-right a:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 40px 80px;
  position: relative; overflow: hidden;
}
.hero-bg-code {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  overflow: hidden; opacity: 0.04;
  font-family: 'Geist Mono', monospace;
  font-size: 13px; line-height: 1.6;
  color: var(--blue);
  padding: 100px 40px;
  white-space: pre;
  pointer-events: none;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, transparent 90%);
}
.hero-line {
  position: absolute; height: 1px; opacity: 0.05;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: scanline 8s linear infinite;
}
.hero-line:nth-child(1) { width: 60%; top: 30%; animation-delay: 0s; }
.hero-line:nth-child(2) { width: 40%; top: 60%; animation-delay: 3s; }
@keyframes scanline {
  0%   { left: -100%; opacity: 0; }
  10%  { opacity: 0.05; }
  90%  { opacity: 0.05; }
  100% { left: 110%; opacity: 0; }
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
.hero-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
}
.hero-tag::before { content: '//'; color: var(--muted); font-size: 13px; }
.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7.5vw, 108px);
  line-height: 0.92; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
}
.hero-h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(37,99,235,0.6); }
.hero-sub {
  font-size: 17px; color: var(--muted2); line-height: 1.75;
  max-width: 520px; margin-bottom: 52px;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.65s forwards;
}
.btn-main {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--blue);
  border: none; padding: 14px 28px; border-radius: 4px;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-main:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-main .arrow { transition: transform 0.2s; }
.btn-main:hover .arrow { transform: translateX(4px); }
.btn-outline {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted2); background: transparent;
  border: 1px solid var(--border2); padding: 14px 28px; border-radius: 4px;
  cursor: pointer; text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-outline:hover { color: var(--text); border-color: rgba(15,23,42,0.25); }
.hero-stats {
  margin-top: 72px; padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex; gap: 56px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.8s forwards;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--text); line-height: 1; margin-bottom: 4px;
}
.hero-stat-num span { color: var(--blue); }
.hero-stat-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--muted); letter-spacing: 0.08em;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TICKER ── */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0; overflow: hidden;
  background: var(--surface);
}
.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); padding: 0 32px;
}
.ticker-track .sep { color: var(--blue); opacity: 0.5; padding: 0 4px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION BASE ── */
.section { padding: 96px 40px; }
.section--dark { background: var(--navy); }
.section--light { background: var(--surface); }
.section--bg { background: var(--bg); }
.section--blue { background: var(--blue); }
.inner { max-width: 1160px; margin: 0 auto; }

.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: '[ '; color: var(--muted); }
.eyebrow::after  { content: ' ]'; color: var(--muted); }
.section-h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800; letter-spacing: -0.025em;
  font-size: clamp(32px, 4.5vw, 60px);
  color: var(--text); line-height: 1.05; margin-bottom: 16px;
}
.section-h2 span { color: var(--blue); }
.section-h2--light { color: var(--white-el); }
.section-desc {
  font-size: 16px; color: var(--muted2);
  line-height: 1.8; max-width: 520px; margin-bottom: 56px;
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.service-card {
  background: var(--surface); padding: 44px 40px;
  position: relative; transition: background 0.25s; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover { background: var(--surface2); }
.service-card:hover::after { transform: scaleX(1); }
.service-card--wide { grid-column: 1 / -1; }
.service-card--wide p { max-width: 600px; }
.service-card--featured {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  border-top: 2px solid var(--blue);
  background: var(--surface); position: relative;
}
.service-card--featured::before {
  content: 'FLAGSHIP'; position: absolute; top: 20px; right: 24px;
  font-family: 'Geist Mono', monospace; font-size: 9px; letter-spacing: 0.2em;
  color: var(--blue); opacity: 0.7;
}
.service-card--featured::after { display: none; }
.service-featured-right {
  display: flex; flex-direction: column;
  justify-content: space-between; padding-top: 4px;
}
.service-index {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; color: var(--muted);
  letter-spacing: 0.15em; margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 12px;
}
.service-card p {
  font-size: 14px; color: var(--muted2);
  line-height: 1.75; margin-bottom: 28px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.stag {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.06em;
  color: var(--blue); background: var(--blue-dim);
  border: 1px solid rgba(37,99,235,0.15);
  padding: 3px 10px; border-radius: 3px;
}
.capability-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.capability-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.capability-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: var(--bg); border-radius: 4px;
  border: 1px solid rgba(37,99,235,0.1); transition: border-color 0.2s;
}
.service-card--featured:hover .capability-item { border-color: rgba(37,99,235,0.2); }
.capability-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 5px;
}
.capability-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.capability-text span { font-size: 12px; color: var(--muted2); line-height: 1.5; }
.ai-note {
  font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--muted);
  border-top: 1px solid var(--border); padding-top: 16px; line-height: 1.6;
}
.ai-note span { color: var(--blue); }

/* ── WORK / PORTFOLIO ── */
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.work-card {
  background: var(--surface); padding: 40px 36px;
  transition: background 0.25s; position: relative;
}
.work-card:hover { background: var(--bg); }
.work-card--wide { grid-column: span 2; }
.work-card--cta { background: var(--blue); grid-column: span 2; }
.work-card--cta:hover { background: var(--blue); opacity: 0.95; }
.work-card-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.work-card-num {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.work-card-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.work-card-type {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue);
}
.work-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 12px;
}
.work-card--wide h3 { font-size: 26px; }
.work-card p { font-size: 14px; color: var(--muted2); line-height: 1.75; margin-bottom: 24px; }
.work-card--cta p { color: rgba(255,255,255,0.8); }
.work-stats { display: flex; gap: 20px; margin-top: 4px; }
.work-stat-num {
  font-family: 'Geist Mono', monospace;
  font-size: 22px; font-weight: 500; color: var(--text);
}
.work-stat-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; color: var(--muted); letter-spacing: 0.08em;
}
.work-link {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--blue); text-decoration: none;
  border-bottom: 1px solid rgba(37,99,235,0.3); padding-bottom: 2px;
  display: inline-flex; align-items: center; gap: 4px;
}
.work-cta-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.work-card--cta h3 { color: #fff; }
.btn-white {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); background: #fff;
  text-decoration: none; padding: 12px 24px;
  border-radius: 4px; display: inline-block;
  transition: opacity 0.2s; margin-top: 12px;
}
.btn-white:hover { opacity: 0.88; }

/* ── PROCESS ── */
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: start; gap: 40px;
  padding: 36px 0; border-bottom: 1px solid var(--border);
  cursor: default; transition: all 0.2s;
}
.process-item:last-child { border-bottom: none; }
.process-item:hover .process-num { color: var(--blue); }
.process-item:hover .process-title { color: var(--blue); }
.process-num {
  font-family: 'Geist Mono', monospace;
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.1em; padding-top: 4px; transition: color 0.2s;
}
.process-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 10px; transition: color 0.2s;
}
.process-desc { font-size: 14px; color: var(--muted2); line-height: 1.75; max-width: 540px; }
.process-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 20px;
  white-space: nowrap; margin-top: 4px;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 24px;
}
.pricing-card {
  background: var(--navy); border: 1px solid rgba(37,99,235,0.2);
  border-radius: 8px; padding: 36px;
  display: flex; flex-direction: column;
}
.pricing-card--featured {
  border-color: rgba(37,99,235,0.4);
  position: relative; overflow: hidden;
}
.pricing-card--featured::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue);
}
.pricing-card--cta { background: var(--blue); border-color: transparent; }
.pricing-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
}
.pricing-card--cta .pricing-label { color: rgba(255,255,255,0.6); }
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 42px; font-weight: 800;
  color: var(--white-el); line-height: 1; margin-bottom: 8px;
}
.pricing-amount-suffix { font-size: 18px; font-weight: 400; color: var(--muted); }
.pricing-card--cta .pricing-amount { color: #fff; }
.pricing-desc {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: rgba(203,213,225,0.5);
  line-height: 1.7; margin-bottom: 28px; flex: 1;
}
.pricing-card--cta .pricing-desc { color: rgba(255,255,255,0.65); }
.pricing-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px; color: rgba(203,213,225,0.35); line-height: 1.6;
}
.pricing-hourly {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 32px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px;
}
.pricing-hourly-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.pricing-hourly-amount {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--text);
}
.pricing-hourly-amount span { color: var(--blue); }
.pricing-hourly-note {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--muted);
  text-align: right; line-height: 1.6;
}
.pricing-note {
  text-align: center; padding-top: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px; color: var(--muted); line-height: 1.8;
}
.pricing-note a { color: var(--blue); text-decoration: none; border-bottom: 1px solid rgba(37,99,235,0.3); }

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 40px; text-align: center;
}
.manifesto-text {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(24px, 4vw, 52px);
  line-height: 1.2; letter-spacing: -0.02em;
  color: var(--white-el); max-width: 860px;
  margin: 0 auto 20px;
}
.manifesto-text span { color: var(--blue); }
.manifesto-sub {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(226,232,240,0.4);
}

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-p { font-size: 15px; color: var(--muted2); line-height: 1.85; margin-bottom: 18px; }
.about-p strong { color: var(--text); font-weight: 500; }
.about-items { display: flex; flex-direction: column; gap: 2px; padding-top: 8px; }
.about-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 4px;
  transition: border-color 0.2s;
}
.about-item:hover { border-color: rgba(37,99,235,0.35); }
.about-item-icon {
  font-family: 'Geist Mono', monospace;
  font-size: 18px; color: var(--blue);
  line-height: 1; padding-top: 2px; flex-shrink: 0;
}
.about-item-label {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.about-item-desc { font-size: 13px; color: var(--muted2); line-height: 1.6; }

/* ── SOCIAL PROOF ── */
.proof-heading {
  text-align: center; margin-bottom: 52px;
}
.proof-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.proof-eyebrow::before { content: '[ '; color: rgba(203,213,225,0.3); }
.proof-eyebrow::after  { content: ' ]'; color: rgba(203,213,225,0.3); }
.clients-strip {
  display: flex; gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px; overflow: hidden;
  margin-bottom: 56px;
}
.client-cell {
  flex: 1; padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.client-cell:last-child { border-right: none; }
.client-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--white-el); margin-bottom: 4px;
}
.client-type {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; color: var(--blue);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.testimonial { max-width: 760px; margin: 0 auto; text-align: center; }
.testimonial-mark {
  font-family: 'Geist Mono', monospace;
  font-size: 32px; color: var(--blue); opacity: 0.4;
  margin-bottom: 20px; line-height: 1;
}
.testimonial-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700; color: var(--white-el);
  line-height: 1.4; letter-spacing: -0.01em; margin-bottom: 28px;
  font-style: normal;
}
.testimonial-attr {
  display: flex; align-items: center;
  justify-content: center; gap: 14px;
}
.testimonial-line { width: 40px; height: 1px; background: rgba(37,99,235,0.4); }
.testimonial-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--white-el);
}
.testimonial-role {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; color: var(--blue);
  letter-spacing: 0.08em; margin-top: 2px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-intro { font-size: 15px; color: var(--muted2); line-height: 1.8; margin-bottom: 40px; }
.contact-meta { display: flex; flex-direction: column; gap: 16px; }
.contact-meta-item { display: flex; align-items: center; gap: 14px; }
.contact-meta-bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.contact-meta-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.08em; margin-right: 8px;
}
.contact-meta-val { font-size: 14px; color: var(--text); }
.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fgroup { display: flex; flex-direction: column; gap: 8px; }
.flabel {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.finput, .fselect, .ftextarea {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px; color: var(--text);
  background: var(--bg); border: 1px solid var(--border2);
  border-radius: 4px; padding: 12px 14px;
  outline: none; width: 100%; transition: border-color 0.2s; appearance: none;
}
.finput::placeholder, .ftextarea::placeholder { color: var(--muted); }
.finput:focus, .fselect:focus, .ftextarea:focus { border-color: var(--blue); }
.ftextarea { resize: vertical; min-height: 120px; }
.fselect { color: var(--muted2); }
.fselect option { background: var(--surface); }
.form-submit {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--blue);
  border: none; padding: 16px; border-radius: 4px;
  cursor: pointer; width: 100%;
  transition: opacity 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { opacity: 0.85; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-success {
  display: none; text-align: center; padding: 24px;
  font-family: 'Geist Mono', monospace; font-size: 13px;
  color: #15803D; background: #F0FDF4;
  border: 1px solid #16A34A; border-radius: 4px;
}
.form-error {
  display: none; text-align: center; padding: 12px;
  font-family: 'Geist Mono', monospace; font-size: 12px;
  color: #DC2626; background: #FEF2F2;
  border: 1px solid #DC2626; border-radius: 4px;
}

/* ── FOOTER ── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 40px 28px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; flex-direction: column; gap: 36px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; }
.footer-brand {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.footer-brand span { color: var(--blue); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.08em; text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.footer-copy, .footer-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; color: var(--muted); opacity: 0.6;
}

/* ════════════════════════════════════════
   MOBILE — 860px and below
   ════════════════════════════════════════ */
@media (max-width: 860px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }

  /* Nav */
  .nav { padding: 0 20px; }
  .nav-center { display: none; }

  /* Hero */
  .hero { padding: 100px 20px 64px; }
  .hero-bg-code { display: none; }
  .hero-stats { gap: 28px; }

  /* Sections */
  .section { padding: 64px 20px; }
  .manifesto { padding: 60px 20px; }
  .footer { padding: 40px 20px 24px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-template-columns: 1fr; gap: 28px; }
  .service-card--wide { grid-column: span 1; }

  /* Work */
  .work-grid { grid-template-columns: 1fr; }
  .work-card--wide { grid-column: span 1; }
  .work-card--cta { grid-column: span 1; }

  /* Process */
  .process-item { grid-template-columns: 48px 1fr; gap: 20px; }
  .process-tag { display: none; }
  .process-title { font-size: 20px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
  .pricing-hourly { flex-direction: column; gap: 12px; align-items: flex-start; }
  .pricing-hourly-note { text-align: left; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Social proof */
  .clients-strip { flex-direction: column; gap: 0; }
  .client-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .client-cell:last-child { border-bottom: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ════════════════════════════════════════
   SMALL MOBILE — 480px and below
   ════════════════════════════════════════ */
@media (max-width: 480px) {
  .nav-right a { display: none; }
  .hero-actions { flex-direction: column; }
  .btn-main, .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .pricing-amount { font-size: 34px; }
  .work-stats { flex-wrap: wrap; gap: 16px; }
}

/* ── Utility spacing ── */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.color-white { color: #fff; }
.color-white-60 { color: rgba(255,255,255,0.6); }