/* ═══════════════════════════════════════════════════════════
   INDOMPTABLE STUDIO — Design System
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg:          #0A0A0A;
  --surface:     #121212;
  --surface-alt: #1A1A1A;
  --accent:      #E8FF00;
  --accent-dim:  rgba(232,255,0,0.12);
  --accent-glow: rgba(232,255,0,0.25);
  --accent-purple:     #7C3AED;
  --accent-purple-dim: rgba(124,58,237,0.12);
  --accent-purple-glow:rgba(124,58,237,0.25);
  --text-primary:#F5F0E8;
  --text-muted:  #8A8880;
  --border:      rgba(255,255,255,0.08);
  --border-hover:rgba(232,255,0,0.30);
  --radius:      4px;
  --radius-lg:   12px;
  --transition:  0.35s cubic-bezier(0.22,0.61,0.36,1);
  --font-display:'Instrument Serif', serif;
  --font-body:   'General Sans', sans-serif;
  --font-mono:   'DM Mono', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* ── Noise overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 999;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Typography ── */
.mono { font-family: var(--font-mono); }
.muted { color: var(--text-muted); }
.accent-text { color: var(--accent); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.eyebrow.accent { color: var(--accent); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  text-align: left;
}
.section-header {
  margin-bottom: 64px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
  width: 240px;
  padding: 14px 32px;
  font-size: 14px;
}
.btn-sm, .btn-lg, .btn-xl {
  padding: 14px 32px !important; 
  font-size: 14px !important; 
  width: 240px !important;
  justify-content: center !important;
}
.btn-accent {
  background: var(--accent);
  color: #0A0A0A;
  font-weight: 400;
  border: 1.5px solid transparent;
}
.btn-accent:hover {
  background: #f5ff4d;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(232,255,0,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s cubic-bezier(0.22,0.61,0.36,1) forwards;
}
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.52s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 40px;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 48px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 24px 0;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
}
.nav-mobile a {
  padding: 14px 0;
  font-size: 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text-primary); }
.nav-mobile .btn {
  margin-top: 16px;
  align-self: flex-start;
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

  padding-bottom: 0.25em;
}

.hero-line {
  position: absolute;
  top: 0;
  right: 18%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(232,255,0,0.15) 40%, transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  width: 100%;
}
.hero-text { display: flex; flex-direction: column; }



@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
}

/* ── No italic on any title/heading ── */
.hero-headline, .section-headline, .svc-headline, .proj-headline,
.cta-headline, .persona-title, .pos-quote, .work-title, .step-title {
  font-style: normal !important;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.dot-accent {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 6px var(--accent); }
  50% { box-shadow: 0 0 18px var(--accent), 0 0 32px rgba(232,255,0,0.3); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 28px;
  max-width: 900px;
}


.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
.desktop-br { display: block; }

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  display: flex;
  align-items: center;
  height: 60px;
  overflow: hidden;
  position: relative;
}

.trust-label {
  flex-shrink: 0;
  padding: 0 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--surface);
  z-index: 2;
}
.trust-chip {
  flex-shrink: 0;
  padding: 0 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  border-left: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  z-index: 2;
}

.marquee-wrapper {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.marquee-track .sep {
  color: var(--accent);
  font-size: 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   POSITIONING STATEMENT
   ═══════════════════════════════════════════════════════════ */
.positioning {
  padding: 120px 0;
  background: var(--bg);
}
.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pos-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  border: none;
  padding: 0;
  margin-bottom: 28px;
  quotes: none;
}
.pos-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.stat-card:hover {
  border-color: var(--border-hover);
  background: #161616;
}
.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-plus { font-size: 0.65em; vertical-align: super; }
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   PERSONAS
   ═══════════════════════════════════════════════════════════ */
.personas {
  padding: 120px 0;
  background: var(--surface-alt);
}
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.persona-card {
  background: var(--surface);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.persona-card:last-child { border-right: none; }
.persona-card:hover {
  background: #161616;
  box-shadow: inset 0 0 0 1px var(--accent-glow);
  transform: translateY(-2px);
}
.persona-icon {
  font-size: 28px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 12px;
  border: 1px solid rgba(232,255,0,0.15);
}
.persona-card:nth-child(2) .persona-icon {
  background: var(--accent-purple-dim);
  border-color: rgba(124,58,237,0.2);
}
.persona-card:nth-child(2) .persona-tag { color: #a78bfa; }
.persona-card:nth-child(2) .persona-arrow { color: #a78bfa; }
.persona-card:nth-child(2):hover { box-shadow: inset 0 0 0 1px var(--accent-purple-glow); }
.persona-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
}
.persona-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.persona-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.persona-body { display: flex; flex-direction: column; gap: 12px; }
.persona-arrow {
  font-size: 18px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
  align-self: flex-end;
}
.persona-card:hover .persona-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES — BENTO
   ═══════════════════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--bg);
}

/* ── Section header ── */
.svc-header {
  display: block;
  margin-bottom: 32px;
}
.svc-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-top: 16px;
  max-width: 440px;
}
.svc-intro {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
  text-align: right;
  align-self: flex-end;
  margin-left: auto;
}
.svc-intro--sub {
  text-align: left;
  margin-left: 0;
  margin-top: 20px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}


/* ── Bento grid ── */
.svc-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: #1A1A1A; /* gap colour = grid lines */
  border: 1px solid #1A1A1A;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2px;
}

/* ── Base card ── */
.svc-card {
  background: #0F0F0F;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 0.2s ease, border-left-color 0.2s ease;
  cursor: default;
  border-left: 2px solid transparent;
}
.svc-card:hover {
  background: #141414;
  border-left-color: rgba(232,255,0,0.25);
}

/* ── Featured card (01) — spans 2 cols ── */
.svc-card--featured {
  grid-column: span 2;
  background: #111A00;
  padding: 36px 32px;
  border-left: 2px solid transparent;
}
.svc-card--featured:hover {
  background: #141F00;
  border-left-color: rgba(232,255,0,0.35);
}
.svc-card--featured .svc-card-title {
  font-size: 32px;
  margin-top: 4px;
}
.svc-card--featured .svc-card-desc {
  font-size: 13px;
  max-width: 420px;
}
.svc-card--featured .svc-arrow--accent {
  color: var(--accent);
  opacity: 1;
  transform: none;
}

/* ── Card parts ── */
.svc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.svc-card-num {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #3A3A38;
}
.svc-icon {
  width: 32px;
  height: 32px;
  background: #1A1A1A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5956;
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s;
}
.svc-card:hover .svc-icon {
  color: #8A8880;
  background: #222;
}
.svc-card--featured .svc-icon {
  background: rgba(232,255,0,0.08);
  color: rgba(232,255,0,0.5);
}
.svc-card--featured:hover .svc-icon {
  color: var(--accent);
  background: rgba(232,255,0,0.12);
}

.svc-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.svc-card-desc {
  font-size: 12px;
  color: #7A7874;
  line-height: 1.6;
  flex: 1;
}

/* ── Card footer: tags + arrow ── */
.svc-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.svc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #6A6A68;
  background: #161616;
  border: 1px solid #222;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  transition: color 0.2s, border-color 0.2s;
}

.svc-arrow {
  font-size: 14px;
  color: #6A6A68;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.svc-card:hover .svc-arrow {
  color: #8A8880;
  transform: translateX(2px);
}
.svc-arrow--accent {
  color: var(--accent) !important;
  font-size: 16px;
}


/* ═══════════════════════════════════════════════════════════
   PROJETS & RÉALISATIONS
   ═══════════════════════════════════════════════════════════ */
.projects {
  padding: 120px 0;
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}

/* ── Header split ── */
.proj-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 32px;
}
.proj-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-top: 16px;
}
.proj-intro {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin-top: 24px;
  margin-bottom: 0;
}
.proj-cta-btn {
  margin-bottom: 4px;
  display: block;
  width: fit-content;
}

/* ── Filter bar ── */
.proj-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.proj-filter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.proj-filter:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
}
.proj-filter.active {
  color: #0A0A0A;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 400;
}

/* ── Project grid ── */
.proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

/* ── Large card (featured) spans 3 cols × 1 row ── */
.proj-card--large {
  grid-column: 1 / -1;
}
.proj-card--large .proj-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 360px;
}
.proj-card--large .proj-card-visual {
  height: 100%;
}

/* ── All cards ── */
.proj-card {
  background: var(--surface);
  transition: background 0.25s ease;
}
.proj-card:hover {
  background: #161616;
}
.proj-card.hidden {
  display: none;
}

.proj-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ── Visual placeholder zone ── */
.proj-card-visual {
  position: relative;
  overflow: hidden;
  background: #0D0D0D;
  min-height: 160px;
  flex-shrink: 0;
}
.proj-visual--sm { min-height: 130px; }

.proj-placeholder-art {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Placeholder variant: grid of dots */
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.placeholder-grid span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(232,255,0,0.15);
  animation: dotPulse 2.8s ease-in-out infinite;
}
.placeholder-grid span:nth-child(2) { animation-delay: 0.2s; }
.placeholder-grid span:nth-child(3) { animation-delay: 0.4s; }
.placeholder-grid span:nth-child(4) { animation-delay: 0.6s; }
.placeholder-grid span:nth-child(5) { animation-delay: 0.8s; background: rgba(232,255,0,0.35); }
.placeholder-grid span:nth-child(6) { animation-delay: 1.0s; }
.placeholder-grid span:nth-child(7) { animation-delay: 1.2s; }
.placeholder-grid span:nth-child(8) { animation-delay: 1.4s; }
.placeholder-grid span:nth-child(9) { animation-delay: 1.6s; }

@keyframes dotPulse {
  0%,100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* Placeholder variant: bar chart */
.placeholder-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px;
}
.placeholder-bars span {
  width: 8px;
  height: var(--h, 50%);
  background: rgba(232,255,0,0.15);
  border-radius: 2px 2px 0 0;
  transition: height 0.3s;
  animation: barPulse 3s ease-in-out infinite;
}
.placeholder-bars span:nth-child(2) { animation-delay: 0.3s; background: rgba(232,255,0,0.25); }
.placeholder-bars span:nth-child(3) { animation-delay: 0.6s; }
.placeholder-bars span:nth-child(4) { animation-delay: 0.9s; background: rgba(232,255,0,0.35); }
.placeholder-bars span:nth-child(5) { animation-delay: 1.2s; }
@keyframes barPulse {
  0%,100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Placeholder variant: concentric rings */
.placeholder-rings {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,255,0,0.12);
  animation: ringPulse 3s ease-in-out infinite;
}
.placeholder-rings span:nth-child(1) {
  width: 20px; height: 20px;
  border-color: rgba(232,255,0,0.4);
  animation-delay: 0s;
}
.placeholder-rings span:nth-child(2) {
  width: 38px; height: 38px;
  animation-delay: 0.3s;
}
.placeholder-rings span:nth-child(3) {
  width: 56px; height: 56px;
  animation-delay: 0.6s;
}
@keyframes ringPulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

/* Placeholder variant: horizontal lines */
.placeholder-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 80px;
}
.placeholder-lines span {
  height: 1px;
  background: rgba(232,255,0,0.15);
  border-radius: 1px;
  animation: linePulse 2.5s ease-in-out infinite;
}
.placeholder-lines span:nth-child(1) { width: 100%; animation-delay: 0s; }
.placeholder-lines span:nth-child(2) { width: 75%; animation-delay: 0.2s; background: rgba(232,255,0,0.3); }
.placeholder-lines span:nth-child(3) { width: 90%; animation-delay: 0.4s; }
.placeholder-lines span:nth-child(4) { width: 60%; animation-delay: 0.6s; }
.placeholder-lines span:nth-child(5) { width: 80%; animation-delay: 0.8s; background: rgba(232,255,0,0.2); }
@keyframes linePulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.placeholder-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(138,136,128,0.4);
}

/* ── Card body ── */
.proj-card-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.proj-card--large .proj-card-body {
  padding: 36px 40px;
  justify-content: center;
}

.proj-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.proj-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
}
.proj-tag[data-cat="tech"]    { color: #7AB8F5; border-color: rgba(122,184,245,0.2); background: rgba(122,184,245,0.05); }
.proj-tag[data-cat="data"]    { color: #A8F07A; border-color: rgba(168,240,122,0.2); background: rgba(168,240,122,0.05); }
.proj-tag[data-cat="brand"]   { color: #F5A87A; border-color: rgba(245,168,122,0.2); background: rgba(245,168,122,0.05); }
.proj-tag[data-cat="digital"] { color: var(--accent); border-color: rgba(232,255,0,0.2); background: rgba(232,255,0,0.04); }

.proj-status {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: auto;
}
.proj-status--wip {
  color: rgba(232,255,0,0.6);
  background: rgba(232,255,0,0.06);
  border: 1px solid rgba(232,255,0,0.12);
}
.proj-status--done {
  color: #A8F07A;
  background: rgba(168,240,122,0.06);
  border: 1px solid rgba(168,240,122,0.15);
}

.proj-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.proj-card--large .proj-title { font-size: 26px; }

/* ── Problem block ── */
.proj-problem, .proj-solution {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proj-problem-label, .proj-solution-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(138,136,128,0.5);
}
.proj-problem-text, .proj-solution-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.proj-problem {
  padding-left: 12px;
  border-left: 2px solid rgba(232,255,0,0.2);
}
.proj-card:hover .proj-problem {
  border-left-color: rgba(232,255,0,0.45);
}
.proj-solution {
  padding-left: 12px;
  border-left: 2px solid var(--border);
}

/* ── Results strip ── */
.proj-results {
  display: flex;
  gap: 20px;
  padding-top: 4px;
  flex-wrap: wrap;
}
.proj-results--compact { gap: 16px; }

.proj-result-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proj-result-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
}
.proj-results--compact .proj-result-num { font-size: 20px; }
.proj-result-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(138,136,128,0.6);
  text-transform: uppercase;
}

.proj-link {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: 8px;
  display: inline-block;
  opacity: 0.5;
  transition: opacity 0.2s, letter-spacing 0.2s;
}
.proj-card:hover .proj-link {
  opacity: 1;
  letter-spacing: 0.12em;
}

/* ── Footer bar ── */
.proj-footer {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.proj-footer-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.proj-footer-num {
  font-size: 32px;
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.proj-footer-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.proj-footer-cta {
  margin-left: auto;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .proj-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .proj-intro { text-align: left; margin-left: 0; }
  .proj-cta-btn { margin-left: 0; }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .proj-card--large { grid-column: span 2; }
  .proj-card--large .proj-card-inner { grid-template-columns: 1fr; }
  .proj-card--large .proj-card-visual { min-height: 180px; height: 180px; }
}
@media (max-width: 768px) {
  .proj-grid { grid-template-columns: 1fr; }
  .proj-card--large { grid-column: span 1; }
  .proj-footer { gap: 24px; }
  .proj-footer-cta { margin-left: 0; width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════ */
.process {
  padding: 120px 0;
  background: var(--surface-alt);
}
.process-stepper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.process-step {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.process-step.active .step-num,
.process-step:hover .step-num {
  color: var(--accent);
}
.process-step.active .step-title,
.process-step:hover .step-title {
  color: var(--text-primary);
}
.process-step.active .step-desc,
.process-step:hover .step-desc {
  color: #9A9895;
}
.step-num {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  transition: color 0.3s;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.step-desc {
  font-size: 13px;
  color: rgba(138,136,128,0.6);
  line-height: 1.6;
  transition: color 0.3s;
}
.step-connector {
  width: 1px;
  height: 24px;
  background: var(--border);
  align-self: center;
  margin: 0 24px;
  position: relative;
  top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   CASE STUDIES
   ═══════════════════════════════════════════════════════════ */
.work {
  padding: 120px 0;
  background: var(--bg);
}
.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  margin-bottom: 40px;
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  background: var(--surface);
  cursor: pointer;
}
.work-card-sm { min-height: 240px; }
.work-card:nth-child(1) { grid-row: 1 / 3; }

.work-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
.work-bg-1 {
  background: linear-gradient(135deg, #0d2d1a 0%, #0a1a2e 50%, #1a0d2a 100%);
}
.work-bg-2 {
  background: linear-gradient(135deg, #1a1a0d 0%, #2a1a0d 100%);
}
.work-bg-3 {
  background: linear-gradient(135deg, #0d1a2a 0%, #0d2a1a 100%);
}

/* Geometric accent overlays */
.work-bg-1::after,
.work-bg-2::after,
.work-bg-3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(232,255,0,0.06) 0%, transparent 60%);
}

.work-card:hover .work-card-bg {
  transform: scale(1.04);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.96) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}
.work-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.work-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.07);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.work-metric {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.work-info { display: flex; flex-direction: column; gap: 10px; }
.work-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.work-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 360px;
}
.work-link {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}
.work-link:hover { opacity: 0.7; }
.work-footer {
  display: flex;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: 160px 0;
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,255,0,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 1px 120px at 25% 50%, rgba(232,255,0,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 1px 120px at 75% 50%, rgba(232,255,0,0.08) 0%, transparent 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.cta-headline em {
  font-style: italic;
  color: var(--accent);
}
.cta-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 520px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.cta-detail {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(138,136,128,0.5);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.footer-heading {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-col .muted { font-size: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom .mono { font-size: 11px; letter-spacing: 0.08em; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--text-primary); }
.lang-btn.active { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .process-stepper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .step-connector { display: none; }
  .process-step {
    background: var(--surface);
    padding: 32px;
  }
  .svc-header { grid-template-columns: 1fr; gap: 24px; }
  .svc-intro { text-align: left; margin-left: 0; }
  .svc-bento { grid-template-columns: repeat(2, 1fr); }
  .svc-card--featured { grid-column: span 2; }
  .personas-grid { grid-template-columns: 1fr; }
  .persona-card { border-right: none; border-bottom: 1px solid var(--border); }
  .persona-card:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .navbar .btn-accent { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
  .desktop-br { display: none; }
  .hero { padding: 100px 0 80px; }
  .positioning-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .svc-bento { grid-template-columns: 1fr; }
  .svc-card--featured { grid-column: span 1; }
  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .work-card:nth-child(1) { grid-row: auto; }
  .work-card, .work-card-sm { min-height: 300px; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom { flex-direction: column; text-align: center; padding: 24px; }
  .hero-scroll-hint { display: none; }
  .cta-final { padding: 100px 0; }
  .process-stepper { grid-template-columns: 1fr; }
  /* Section padding reductions for mobile */
  .positioning { padding: 100px 0 80px; }
  .personas, .services, .projets, .process, .work { padding: 80px 0; }
  .proj-card--large .proj-card-visual { min-height: 200px; height: 200px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════════
   CURSOR GLOW
   ═══════════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,255,0,0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  top: 0; left: 0;
}

@media (max-width: 480px) { .btn, .btn-sm, .btn-lg, .btn-xl { width: 100% !important; max-width: 320px; } }

