/* =========================================
   SEEPATH AGENCY — main.css
   Design tokens + base + sections
   ========================================= */

:root {
  /* COLORS */
  --bg: #FFFFFF;
  --ink: #0A0A0A;
  --ink-soft: #1A1A1A;
  --red: #FF2D2D;
  --red-deep: #D70015;
  --muted: #6B6B6B;
  --line: rgba(10, 10, 10, 0.08);
  --line-white: rgba(255, 255, 255, 0.12);

  /* TYPE */
  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Inter Tight", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", monospace;

  /* RHYTHM */
  --pad-x: clamp(24px, 5vw, 96px);
  --pad-section: clamp(96px, 14vw, 200px);
}

/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
html { scroll-behavior: auto; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: none; color: inherit; }

/* TYPOGRAPHY UTILITIES */
.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.mono-red { color: var(--red); }
.section-label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
  font-weight: 500;
}
.display {
  font-family: var(--f-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.display .italic { font-style: italic; font-weight: 400; }

/* CUSTOM CURSOR */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-dot.hover {
  width: 36px;
  height: 36px;
  background: var(--red);
  mix-blend-mode: normal;
}
.cursor-ring.hover { opacity: 0; }
@media (max-width: 768px) {
  body { cursor: auto; }
  button, a { cursor: pointer; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* =========================================
   LOADER
   ========================================= */
#loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: #fff;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--pad-x);
  padding-bottom: 64px;
}
#loader .loader-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(40px, 8vw, 96px);
  letter-spacing: -0.02em;
}
#loader .loader-count {
  font-family: var(--f-mono);
  font-size: clamp(40px, 8vw, 96px);
  letter-spacing: -0.02em;
  color: var(--red);
}
#loader.done { transform: translateY(-100%); transition: transform 0.9s cubic-bezier(.85,0,.15,1); }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--pad-x);
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px var(--pad-x);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.nav-logo .dot { color: var(--red); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--red-deep); transform: translateY(-1px); }
@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  padding: 140px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-text { max-width: 720px; }
.hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 6.8vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 28px 0 32px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .word { display: inline-block; }
.hero h1 em {
  font-style: italic;
  color: var(--red);
  font-weight: 400;
}
.hero-lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}
.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: var(--red); transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-visual {
  height: 70vh;
  min-height: 480px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #1a1a1a 0%, #0a0a0a 70%);
}
.hero-visual spline-viewer { width: 100%; height: 100%; }
.hero-visual-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Background grid */
.hv-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
}

/* Automation flow canvas */
.hv-flow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hv-flow .line {
  fill: none;
  stroke: rgba(255,255,255,0.18);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
  animation: flow-march 18s linear infinite;
}
.hv-flow .line.red {
  stroke: var(--red);
  stroke-opacity: 0.6;
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(255,45,45,0.5));
}
@keyframes flow-march {
  to { stroke-dashoffset: -200; }
}

/* Animated packets that travel along the lines */
.hv-packet {
  fill: var(--red);
  filter: drop-shadow(0 0 8px rgba(255,45,45,0.8));
}

/* Nodes */
.hv-node {
  position: absolute;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 0;
}
.hv-node .hv-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-node .hv-ico svg { width: 100%; height: 100%; display: block; }
.hv-node .hv-label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.hv-node .hv-sub {
  font-family: var(--f-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
  white-space: nowrap;
}
.hv-node.center {
  border-color: var(--red);
  background: #1a0a0a;
  box-shadow:
    0 0 0 4px rgba(255,45,45,0.08),
    0 8px 32px rgba(255,45,45,0.25);
  animation: node-pulse 3s ease-in-out infinite;
}
@keyframes node-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,45,45,0.08), 0 8px 32px rgba(255,45,45,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(255,45,45,0.15), 0 8px 40px rgba(255,45,45,0.4); }
}

/* Node positions — percentages so it scales */
.hv-node.n1 { top: 16%;  left: 8%; }
.hv-node.n2 { top: 38%;  left: 4%; }
.hv-node.n3 { top: 44%;  left: 41%; }    /* center hub */
.hv-node.n4 { top: 16%;  right: 8%; }
.hv-node.n5 { top: 42%;  right: 4%; }
.hv-node.n6 { bottom: 14%; right: 12%; }
.hv-node.n7 { bottom: 16%; left: 14%; }

/* Pulse dot on each node */
.hv-node::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(255,45,45,0.8);
  animation: dot-blink 2.4s ease-in-out infinite;
}
.hv-node.n2::after { animation-delay: 0.4s; }
.hv-node.n3::after { animation-delay: 0.8s; }
.hv-node.n4::after { animation-delay: 1.2s; }
.hv-node.n5::after { animation-delay: 1.6s; }
.hv-node.n6::after { animation-delay: 2.0s; }
.hv-node.n7::after { animation-delay: 2.4s; }
@keyframes dot-blink {
  0%, 80%, 100% { opacity: 0.3; }
  10%, 30% { opacity: 1; }
}

.hv-label-corner {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  z-index: 3;
}
.hv-label-corner::before {
  content: "● LIVE — ";
  color: var(--red);
  margin-right: 2px;
}

.hv-counter {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 3;
  text-align: right;
}
.hv-counter .num {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--red);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

@media (max-width: 1100px) {
  .hv-node .hv-label { font-size: 9px; }
  .hv-node .hv-sub { display: none; }
  .hv-node { padding: 8px 10px; gap: 8px; }
  .hv-node .hv-ico { width: 18px; height: 18px; }
}
@media (max-width: 900px) {
  .hv-node.n2, .hv-node.n7 { display: none; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }
  .hero-visual {
    height: 50vh;
    min-height: 360px;
    order: -1;
  }
}

/* =========================================
   STATS BAR (BLACK)
   ========================================= */
.stats {
  background: var(--ink);
  color: #fff;
  padding: var(--pad-section) var(--pad-x);
}
.stats-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 32px;
}
.stats-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.stats-head h2 em {
  font-style: italic;
  color: var(--red);
}
.stats-head .label { color: var(--red); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-white);
}
.stat {
  padding: 48px 24px 32px 0;
  border-bottom: 1px solid var(--line-white);
  border-right: 1px solid var(--line-white);
}
.stat:nth-child(3n) { border-right: none; }
.stat-num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.stat-num .plus { color: var(--red); font-style: italic; }
.stat-label {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.stat-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.05em;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3n) { border-right: 1px solid var(--line-white); }
  .stat:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; }
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: var(--pad-section) var(--pad-x);
  background: var(--bg);
}
.services-head {
  margin-bottom: 96px;
  max-width: 900px;
}
.services-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 24px;
}
.services-head h2 em { font-style: italic; color: var(--red); }

.service {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  transition: color 0.4s, -webkit-text-stroke-color 0.4s;
}
.service:hover .service-num {
  color: var(--red);
  -webkit-text-stroke-color: var(--red);
}
.service-body { max-width: 480px; }
.service-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 16px;
}
.service h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.service p.tagline {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.service ul {
  list-style: none;
  margin-bottom: 28px;
}
.service ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  border-left: 2px solid var(--red);
  padding-left: 16px;
  margin-top: 24px;
}
.service-visual {
  height: 360px;
  background: #0A0A0A;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  padding: 20px;
  color: #fff;
}
.service-visual.light {
  background: #FAFAFA;
  color: var(--ink);
}
.service-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: absolute;
  inset: auto 16px 16px 16px;
  z-index: 2;
}
.integration-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.integration-pill svg { width: 12px; height: 12px; }

/* ===== SV1 — Google Ads Dashboard mock ===== */
.sv-ads {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 14px;
}
.sv-ads-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sv-ads-camp {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sv-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,204,113,0.15);
  color: #2ecc71;
  padding: 3px 8px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}
.sv-status .dot {
  width: 5px; height: 5px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.sv-ads-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.sv-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 12px;
}
.sv-metric .lbl {
  font-family: var(--f-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.sv-metric .val {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.sv-metric .val em { color: var(--red); font-style: italic; }
.sv-metric .trend {
  font-family: var(--f-mono);
  font-size: 9px;
  color: #2ecc71;
  margin-top: 2px;
}
.sv-metric .trend.down { color: var(--red); }
.sv-chart {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px;
  position: relative;
  overflow: hidden;
  min-height: 100px;
}
.sv-chart-title {
  font-family: var(--f-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.sv-chart-val {
  font-family: var(--f-display);
  font-size: 18px;
}
.sv-chart svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60%;
}
.sv-spark {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(255,45,45,0.5));
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: spark-draw 2.5s 0.3s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes spark-draw { to { stroke-dashoffset: 0; } }
.sv-spark-fill {
  fill: url(#spark-grad);
  opacity: 0;
  animation: spark-fade 1s 2s forwards;
}
@keyframes spark-fade { to { opacity: 0.4; } }

/* ===== SV2 — Landing page mock ===== */
.sv-landing {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  color: var(--ink);
}
.sv-landing-bar {
  height: 22px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.sv-landing-bar span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #d4d4d4;
}
.sv-landing-bar span.r { background: #ff5f57; }
.sv-landing-bar span.y { background: #febc2e; }
.sv-landing-bar span.g { background: #28c840; }
.sv-landing-body {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.sv-landing-logo {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
}
.sv-landing-logo .dot { color: var(--red); }
.sv-landing-h {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.sv-landing-h em { color: var(--red); font-style: italic; }
.sv-landing-form {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sv-landing-input {
  height: 28px;
  background: #f7f7f7;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.06);
}
.sv-landing-btn {
  height: 32px;
  background: var(--red);
  border-radius: 4px;
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-cwv {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  gap: 4px;
  z-index: 5;
}
.sv-cwv .pill {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 4px 8px;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #137333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.sv-cwv .pill .ico {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2ecc71;
}
.sv-cwv .pill.score {
  color: var(--ink);
}
.sv-cwv .pill.score b {
  color: #2ecc71;
  font-size: 11px;
}

/* ===== SV3 — Automation flow mock ===== */
.sv-flow {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 8px;
}
.sv-flow-node {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.sv-flow-node.active {
  border-color: var(--red);
  background: rgba(255,45,45,0.08);
  box-shadow: 0 0 0 3px rgba(255,45,45,0.1);
}
.sv-flow-node .ico {
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
}
.sv-flow-node .ico svg { width: 100%; height: 100%; }
.sv-flow-node .ttl {
  font-family: var(--f-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sv-flow-node .sub {
  font-family: var(--f-mono);
  font-size: 8px;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}
.sv-flow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--red);
  z-index: 1;
  font-family: var(--f-mono);
}
.sv-flow svg.flow-lines {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
  z-index: 0;
}
.sv-flow .progress-line {
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 6 4;
  animation: flow-march 3s linear infinite;
  filter: drop-shadow(0 0 4px rgba(255,45,45,0.5));
}
.sv-flow .pkt {
  fill: var(--red);
  filter: drop-shadow(0 0 6px rgba(255,45,45,0.8));
}
.sv-flow-log {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 6px 10px;
  font-family: var(--f-mono);
  font-size: 9px;
  color: #2ecc71;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sv-flow-log::before {
  content: "●";
  color: #2ecc71;
  animation: pulse 1.5s infinite;
}
.sv-flow-top {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--f-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  z-index: 3;
}

@media (max-width: 1000px) {
  .service { grid-template-columns: 1fr; gap: 32px; }
  .service-num { font-size: 96px; }
  .service-visual { height: 240px; }
}

/* =========================================
   PIPELINE (signature)
   ========================================= */
.pipeline {
  background: #FAFAFA;
  position: relative;
}
.pipeline-pin {
  height: 100vh;
  min-height: 640px;
  position: sticky;
  top: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(64px, 8vh, 100px) var(--pad-x) 56px;
}
.pipeline-track { height: 400vh; }
.pipeline-head {
  margin-bottom: 32px;
  flex-shrink: 0;
}
.pipeline-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.pipeline-head h2 em { color: var(--red); font-style: italic; }
.pipeline-stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.pipeline-step > * {
  max-height: 100%;
}
.pipeline-step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.pipeline-step.active { opacity: 1; pointer-events: auto; }
.pipeline-label {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
}
.pipeline-label .num { color: var(--red); }

/* progress indicator */
.pipeline-progress {
  position: absolute;
  top: 32px;
  right: var(--pad-x);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.pipeline-progress .dot {
  width: 32px;
  height: 2px;
  background: rgba(10,10,10,0.15);
  transition: background 0.3s;
}
.pipeline-progress .dot.active { background: var(--red); }

/* --- Step 1: SERP --- */
.browser-frame {
  width: min(720px, 90%);
  max-height: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f3f3f3;
  border-bottom: 1px solid var(--line);
}
.browser-bar .light {
  width: 12px; height: 12px; border-radius: 50%;
}
.browser-bar .light.r { background: #ff5f57; }
.browser-bar .light.y { background: #febc2e; }
.browser-bar .light.g { background: #28c840; }
.browser-bar .url {
  margin-left: 16px;
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--line);
}
.serp-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.serp-logo { width: 92px; }
.serp-search {
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.serp-search .query { color: var(--ink); }
.serp-search .caret {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: var(--ink);
  animation: caret-blink 1s infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }
.serp-results { display: flex; flex-direction: column; gap: 16px; }
.serp-result.organic {
  opacity: 0.35;
  filter: blur(1.5px);
}
.serp-result.organic .r-url {
  font-size: 11px;
  color: #4d5156;
  margin-bottom: 4px;
}
.serp-result.organic .r-title {
  font-size: 16px;
  color: #1a0dab;
  margin-bottom: 4px;
}
.serp-result.organic .r-desc {
  font-size: 12px;
  color: #4d5156;
  line-height: 1.4;
}
.serp-result.ad {
  background: #fff;
  border: 2px solid var(--red);
  padding: 14px;
  border-radius: 8px;
  transform: translateY(-30px);
  opacity: 0;
  box-shadow: 0 0 0 0 rgba(255, 45, 45, 0.6);
}
.serp-result.ad.in {
  animation: ad-in 0.8s 0.2s cubic-bezier(.85,0,.15,1) forwards,
             ad-pulse 1.6s 1s ease-in-out infinite;
}
@keyframes ad-in {
  to { transform: translateY(0); opacity: 1; }
}
@keyframes ad-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,45,45,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(255,45,45,0); }
}
.serp-result.ad .badge {
  display: inline-block;
  background: #e6f4ea;
  color: #137333;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  margin-right: 8px;
}
.serp-result.ad .r-url {
  font-size: 12px;
  color: #202124;
}
.serp-result.ad .r-title {
  font-size: 18px;
  color: #1a0dab;
  font-weight: 600;
  margin: 4px 0;
}
.serp-result.ad .r-desc {
  font-size: 13px;
  color: #4d5156;
}

/* --- Step 2: Landing page --- */
.landing-frame {
  width: min(640px, 88%);
  height: 70%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.landing-progress {
  height: 3px;
  background: var(--red);
  width: 0%;
  transition: width 0.05s linear;
}
.landing-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
}
.landing-logo {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
}
.landing-logo .dot { color: var(--red); }
.skeleton-bar {
  background: linear-gradient(90deg, #ececec 0%, #f7f7f7 50%, #ececec 100%);
  background-size: 200% 100%;
  height: 14px;
  border-radius: 4px;
  animation: shimmer 1.4s linear infinite;
  width: 0%;
  transition: width 0.6s ease;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-bar.tall { height: 28px; }
.landing-form-skel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}
.skel-field {
  height: 40px;
  background: #f4f4f4;
  border-radius: 6px;
  width: 0%;
  transition: width 0.5s ease;
}
.cursor-icon {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 4;
  pointer-events: none;
}
.flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
}

/* --- Step 3: Form --- */
.form-frame {
  width: min(520px, 88%);
  background: #fff;
  border-radius: 14px;
  padding: 36px 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}
.form-frame h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 24px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--f-body);
  background: #fff;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.form-input.filling {
  border-color: var(--red);
  background: rgba(255,45,45,0.04);
  box-shadow: 0 0 0 4px rgba(255,45,45,0.1);
}
.form-input .typed { color: var(--ink); }
.form-input .caret {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: var(--red);
  animation: caret-blink 0.8s infinite;
  margin-left: 2px;
}
.form-submit {
  width: 100%;
  background: var(--ink);
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}
.form-submit.pulse {
  animation: btn-pulse 0.8s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { transform: scale(1); background: var(--red); }
  50% { transform: scale(1.03); background: var(--red-deep); }
}
.form-success {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.form-success.show { opacity: 1; }
.form-success .check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success .check svg { width: 40px; height: 40px; }
.form-success .text {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
}

/* --- Step 4: Split notifications --- */
.split-stage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  width: min(1100px, 95%);
  max-height: 85%;
}
.split-panel {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  flex-direction: column;
}
.split-panel.in {
  opacity: 1;
  transform: translateY(0);
}
.panel-header {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.panel-header svg { width: 18px; height: 18px; }

/* Gmail panel */
.gmail-row {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.gmail-row .sender { font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.gmail-row .subject { color: var(--ink); }
.gmail-row.new {
  background: rgba(255,45,45,0.06);
  border-left: 3px solid var(--red);
}
.gmail-row.new .sender { display: flex; align-items: center; gap: 8px; }
.gmail-row.new .badge {
  background: var(--red);
  color: #fff;
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 999px;
}

/* Sheets panel */
.sheets-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.sheets-table th, .sheets-table td {
  padding: 8px 10px;
  border: 1px solid #e8e8e8;
  text-align: left;
  font-family: var(--f-mono);
}
.sheets-table th {
  background: #f6f6f6;
  font-weight: 500;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.sheets-table tr.new {
  background: rgba(46, 204, 113, 0.12);
  animation: row-flash 1s ease;
}
@keyframes row-flash {
  0% { background: rgba(46,204,113,0.3); }
  100% { background: rgba(46,204,113,0.12); }
}

/* Telegram panel */
.telegram-panel { background: #17212B; color: #fff; }
.telegram-panel .panel-header { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.1); }
.telegram-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.tg-msg {
  background: #2B5278;
  align-self: flex-start;
  padding: 12px 14px;
  border-radius: 10px 10px 10px 2px;
  max-width: 90%;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-line;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.tg-msg.in { opacity: 1; transform: translateY(0); }
.tg-msg .head {
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tg-msg .sep {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 6px 0;
}
.tg-time {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  text-align: right;
}

.timer-final {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink);
}
.timer-final .num {
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  color: var(--red);
  margin-left: 8px;
}

@media (max-width: 900px) {
  .split-stage { grid-template-columns: 1fr; max-height: 80%; overflow-y: auto; }
}

/* =========================================
   PROJECTS (horizontal scroll)
   ========================================= */
.projects {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.projects-pin {
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 72px 0 48px;
  position: relative;
}
.projects-track {
  position: relative;
}
.projects-head {
  position: static;
  padding: 0 var(--pad-x);
  margin-bottom: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.projects-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 720px;
}
.projects-head h2 em { font-style: italic; color: var(--red); }
.projects-row {
  flex: 1;
  display: flex;
  gap: 32px;
  padding: 0 var(--pad-x);
  align-items: center;
  will-change: transform;
}
.project-card {
  width: 56vw;
  min-width: 480px;
  max-width: 720px;
  height: 64vh;
  background: #161616;
  border: 1px solid var(--line-white);
  border-radius: 20px;
  padding: 40px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.project-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.project-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.project-meta .tag {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 5px 10px;
  border-radius: 999px;
}
.project-num {
  position: absolute;
  top: 32px;
  right: 40px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 80px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.25);
}
.project-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 32px;
}
.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line-white);
  padding-top: 24px;
}
.project-stat .v {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.project-stat .v em { color: var(--red); font-style: italic; }
.project-stat .k {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.project-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.08;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 12px,
    rgba(255,255,255,0.5) 12px,
    rgba(255,255,255,0.5) 13px
  );
}
.project-card > * { position: relative; z-index: 1; }

.projects-progress {
  position: absolute;
  bottom: 48px;
  left: var(--pad-x);
  right: var(--pad-x);
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 3;
}
.projects-progress .fill {
  height: 100%;
  background: var(--red);
  width: 0%;
}

/* ancienne règle mobile supprimée — remplacée par le bloc scroll-snap plus bas */

/* =========================================
   PROCESS
   ========================================= */
.process {
  padding: var(--pad-section) var(--pad-x);
  background: var(--bg);
}
.process-head { margin-bottom: 96px; max-width: 720px; }
.process-head h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 24px;
}
.process-head h2 em { font-style: italic; color: var(--red); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step {
  border-top: 2px solid var(--ink);
  padding-top: 32px;
  position: relative;
}
.process-step .num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--red);
  margin-bottom: 16px;
}
.process-step .when {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}
.process-step h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.process-step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: var(--pad-section) var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
.contact h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 24px;
  margin-bottom: 32px;
}
.contact h2 em { font-style: italic; color: var(--red); }
.contact-lede {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 440px;
}
.contact-list {
  list-style: none;
  margin-bottom: 40px;
}
.contact-list li {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.contact-list li a {
  font-family: var(--f-mono);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.contact-list li a:hover { color: var(--red); }
.contact-list .ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--red);
}

.contact-form .field {
  margin-bottom: 24px;
  position: relative;
}
.contact-form label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
  font-family: var(--f-body);
  color: var(--ink);
  resize: none;
  cursor: none;
}
.contact-form textarea { min-height: 120px; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-bottom-color: var(--red);
}
.select-wrap {
  position: relative;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
}
.select-wrap .select-caret {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.select-wrap select:focus + .select-caret { color: var(--red); }

/* =========================================
   FOUNDER CREDIT
   ========================================= */
.founder-credit {
  background: var(--ink);
  color: #fff;
  padding: 120px var(--pad-x);
  border-top: 1px solid var(--line-white);
}
.founder-inner {
  max-width: 880px;
}
.founder-label {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 32px;
}
.founder-headline {
  font-family: var(--f-display);
  font-weight: 300;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 24px;
  row-gap: 8px;
}
.founder-name {
  font-size: clamp(48px, 7vw, 104px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.founder-sub {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0;
}
.founder-sub em {
  color: var(--red);
  font-style: italic;
  font-weight: 500;
}
.founder-bio {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  margin-bottom: 32px;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.founder-tags span {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: 999px;
}
.contact-form button {
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* =========================================
   FOOTER STATEMENT MEGA
   ========================================= */
.footer-statement {
  background: var(--ink);
  color: #fff;
  padding: 200px var(--pad-x) 120px;
  overflow: hidden;
}
.footer-statement .intro {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 600px;
}
.footer-statement .mega {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(64px, 16vw, 280px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin-bottom: 64px;
}
.footer-statement .mega .it { font-style: italic; font-weight: 300; }
.footer-statement .mega .red { color: var(--red); }
.footer-statement .ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-statement .btn-ghost {
  border-color: #fff;
  color: #fff;
}
.footer-statement .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

/* =========================================
   FOOTER MICRO
   ========================================= */
.footer-micro {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 40px var(--pad-x);
  border-top: 1px solid var(--line-white);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-micro a:hover { color: var(--red); }

/* =========================================
   SCROLL REVEAL
   ========================================= */
.form-feedback {
  font-family: var(--f-mono);
  font-size: 12px;
  margin-top: 16px;
  min-height: 18px;
  letter-spacing: 0.05em;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(.2,.6,.2,1), transform 0.9s cubic-bezier(.2,.6,.2,1);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* =========================================
   MOBILE POLISH — 390px optimisé
   ========================================= */

/* ── GLOBAL ── */
@media (max-width: 700px) {
  :root { --pad-x: 20px; --pad-section: 72px; }
  body { font-size: 16px; }
}

/* ── HERO ── */
@media (max-width: 700px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px var(--pad-x) 60px;
    gap: 32px;
  }
  .hero-visual {
    height: 44vh;
    min-height: 280px;
    order: -1;
    border-radius: 16px;
  }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero-lede { font-size: 15px; }
  .hero-badge { margin-top: 28px; }
  /* Masquer les nœuds superflus sur petit écran */
  .hv-node.n2, .hv-node.n7 { display: none; }
  .hv-node { padding: 6px 8px; gap: 6px; }
  .hv-node .hv-ico { width: 16px; height: 16px; }
  .hv-node .hv-label { font-size: 8px; }
}

/* ── STATS ── */
@media (max-width: 700px) {
  .stats-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 48px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 32px 16px 24px 0; }
  .stat-num { font-size: clamp(44px, 12vw, 72px); }
  .stat:nth-child(3n) { border-right: 1px solid var(--line-white); }
  .stat:nth-child(2n) { border-right: none; }
}

/* ── SERVICES ── */
@media (max-width: 700px) {
  .service { grid-template-columns: 1fr; gap: 24px; }
  .service-num { font-size: 80px; }
  .service-visual { height: 200px; }
  .services-head { margin-bottom: 56px; }
}

/* ── PIPELINE ── */
@media (max-width: 700px) {
  .pipeline-pin {
    height: 100svh;
    min-height: 560px;
    padding: 72px var(--pad-x) 48px;
  }
  .pipeline-head { margin-bottom: 20px; }
  .pipeline-head h2 { font-size: clamp(22px, 6vw, 34px); line-height: 1.1; }
  .pipeline-progress { top: 20px; }
  .pipeline-label { font-size: 10px; bottom: 10px; }

  /* Step 4 panels — scroll horizontal + timer en dessous */
  .pipeline-step[data-step="4"] {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
  }
  .split-stage {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    gap: 10px;
    max-height: none;
    overflow-x: auto;
    overflow-y: visible;
    width: 100%;
    padding: 4px 16px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-shrink: 0;
  }
  .split-stage::-webkit-scrollbar { display: none; }
  .split-panel {
    border-radius: 8px;
    min-width: 72vw;
    max-width: 72vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    height: auto;
    max-height: 38vh;
    overflow-y: auto;
  }
  .panel-header { padding: 8px 12px; font-size: 9px; }
  .gmail-row { padding: 8px 12px; font-size: 11px; }
  .sheets-table th, .sheets-table td { padding: 5px 6px; font-size: 9px; }
  .telegram-body { padding: 10px; }
  .tg-msg { font-size: 10px; padding: 8px 10px; }
  .timer-final { position: relative; bottom: auto; margin-top: 0; text-align: center; font-size: 11px; flex-shrink: 0; }
  .timer-final .num { font-size: 20px; }

  /* Step 1 SERP */
  .browser-frame { width: 100%; }
  .browser-bar .url { font-size: 9px; padding: 4px 8px; }
  .serp-body { padding: 14px 16px; gap: 10px; }
  .serp-result.organic { display: none; }

  /* Step 2 Landing */
  .landing-frame { width: 100%; height: 60%; }
  .landing-body { padding: 20px 24px; gap: 14px; }

  /* Step 3 Form */
  .form-frame { width: 100%; padding: 24px 20px; border-radius: 10px; }
  .form-frame h4 { font-size: 20px; margin-bottom: 18px; }
}

/* ── PROJECTS MOBILE — scroll horizontal natif ── */
@media (max-width: 700px) {
  .projects-pin {
    height: auto !important;
    padding: 64px 0 48px;
    flex-direction: column;
    align-items: flex-start;
  }
  .projects-head {
    padding: 0 var(--pad-x);
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
    gap: 12px;
  }
  .projects-head p { font-size: 13px; }
  .projects-head h2 { font-size: clamp(28px, 8vw, 40px); }
  .projects-row {
    flex-direction: row !important;
    flex: none;
    width: 100%;
    gap: 16px;
    padding: 0 var(--pad-x) 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    transform: none !important;
    /* scrollbar invisible */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .projects-row::-webkit-scrollbar { display: none; }
  .project-card {
    width: 82vw !important;
    min-width: 260px !important;
    max-width: 340px !important;
    height: auto !important;
    min-height: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 24px 20px;
    border-radius: 14px;
  }
  .project-num { font-size: 52px; top: 16px; right: 16px; }
  .project-card h3 { font-size: clamp(20px, 5.5vw, 28px); margin-top: 16px; }
  .project-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 14px; }
  .project-stat .v { font-size: 17px; }
  .project-stat .k { font-size: 8px; letter-spacing: 0.05em; }
  .projects-progress { display: none; }
}

/* ── PROCESS ── */
@media (max-width: 700px) {
  .process-head { margin-bottom: 48px; }
  .process-head h2 { font-size: clamp(32px, 9vw, 48px); }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-step .num { font-size: 48px; }
}

/* ── CONTACT ── */
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact h2 { font-size: clamp(32px, 9vw, 48px); }
  .contact-form input,
  .contact-form textarea,
  .contact-form select { font-size: 16px; } /* Évite le zoom iOS */
}

/* ── FOOTER STATEMENT ── */
@media (max-width: 700px) {
  .footer-statement { padding: 96px var(--pad-x) 72px; }
  .footer-statement .mega { font-size: clamp(56px, 18vw, 96px); margin-bottom: 40px; }
  .footer-statement .ctas { flex-direction: column; }
  .footer-statement .ctas .btn { width: 100%; justify-content: center; }
}

/* ── FOOTER MICRO ── */
@media (max-width: 700px) {
  .footer-micro { flex-direction: column; gap: 12px; text-align: center; }
  .footer-micro nav { display: flex; gap: 20px; justify-content: center; }
}

/* ── ABOUT ── */
@media (max-width: 700px) {
  .about { padding: var(--pad-section) var(--pad-x); }
  .about h2 { font-size: clamp(36px, 10vw, 52px); }
}

/* ── PREVENT HORIZONTAL OVERFLOW GLOBAL ── */
@media (max-width: 700px) {
  .projects, .projects-track, .projects-pin { overflow-x: hidden; max-width: 100vw; }
  /* .projects-row garde overflow-x: auto pour le scroll horizontal natif */
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.12);
  padding: 12px 20px 12px 16px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.wa-float:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(230,51,41,0.35);
}
.wa-float svg { flex-shrink: 0; }
.wa-label { line-height: 1; }

@media (max-width: 700px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    padding: 11px 16px 11px 14px;
    font-size: 11px;
    gap: 8px;
  }
}

/* =========================================
   SCROLL ARROW INDICATOR (mobile)
   ========================================= */
.scroll-hint {
  display: none;
}
@media (max-width: 700px) {
  .scroll-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin: 12px var(--pad-x) 0;
    animation: hint-pulse 2s ease-in-out infinite;
  }
  .scroll-hint svg {
    animation: hint-slide 1.4s ease-in-out infinite;
  }
  @keyframes hint-slide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
  }
  @keyframes hint-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  /* Smooth scroll mobile */
  .projects-row,
  .split-stage {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}

/* =========================================
   PAGE INNER HERO (pages internes)
   ========================================= */
.page-hero {
  padding: 160px var(--pad-x) 80px;
  max-width: 900px;
}
.page-hero .section-label { margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(38px, 5.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.page-hero h1 em { font-style: italic; color: var(--red); }
.page-hero .lede {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.55;
}

/* PAGE SECTION */
.page-section {
  padding: clamp(64px, 10vw, 120px) var(--pad-x);
  border-top: 1px solid var(--line);
}
.page-section h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.page-section h2 em { font-style: italic; color: var(--red); }

/* BENEFITS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.benefit-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.benefit-card:hover { border-color: var(--red); transform: translateY(-4px); }
.benefit-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.benefit-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* FAQ */
.faq-list { margin-top: 40px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.faq-a { color: var(--muted); line-height: 1.65; font-size: 16px; }

/* STATS INLINE */
.stats-inline {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin: 48px 0;
  padding: 40px;
  background: var(--ink);
  border-radius: 20px;
  color: #fff;
}
.stat-inline-item .num {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #fff;
}
.stat-inline-item .num em { color: var(--red); font-style: normal; }
.stat-inline-item .lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* PROCESS STEPS */
.steps-list { margin-top: 40px; counter-reset: steps; }
.step-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.step-item:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-top: 4px;
}
.step-body h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-body p { color: var(--muted); line-height: 1.6; font-size: 15px; }

/* CTA BLOCK */
.cta-block {
  padding: clamp(64px, 10vw, 120px) var(--pad-x);
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.cta-block h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 72px);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.cta-block h2 em { font-style: italic; color: var(--red); }
.cta-block p { color: rgba(255,255,255,0.6); margin-bottom: 40px; font-size: 18px; }
.cta-block .btn-ghost { border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-block .btn-ghost:hover { background: #fff; color: var(--ink); }

/* DROPDOWN NAV */
.nav-dropdown { position: relative; }
.nav-dropdown > ul.dropdown {
  position: absolute;
  top: 100%;                         /* Collé au parent — plus de gap */
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 8px 8px;             /* padding-top = bridge visuel */
  list-style: none;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 200;
}
/* Bridge invisible entre le lien et le dropdown */
.nav-dropdown > ul.dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0; right: 0;
  height: 16px;
}
.nav-dropdown:hover > ul.dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown > ul.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.nav-dropdown > ul.dropdown li a::after { display: none; }
.nav-dropdown > ul.dropdown li a:hover { background: var(--red); color: #fff; }

/* =========================================
   MOBILE NAV — BURGER
   ========================================= */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px var(--pad-x) 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-mobile > a {
  font-family: var(--f-display);
  font-size: clamp(26px, 7vw, 44px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 8px 0;
  transition: color 0.2s;
}
.nav-mobile > a:hover { color: var(--red); }
.nav-mobile .mob-sub {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
.nav-mobile .mob-sub a {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.nav-mobile .mob-sub a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.nav-mobile .mob-cta {
  margin-top: 24px;
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-burger { display: flex; }
}

/* MERCI PAGE */
.merci-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--pad-x);
}
.merci-check {
  width: 72px; height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
}
.merci-wrap h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.merci-wrap h1 em { font-style: italic; color: var(--red); }
.merci-wrap p { color: var(--muted); font-size: 18px; margin-bottom: 40px; }
.merci-wrap .ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* BLOG HUB */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.blog-cat-card {
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-cat-card:hover { border-color: var(--red); transform: translateY(-4px); }
.blog-cat-card .cat-icon {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}
.blog-cat-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.blog-cat-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.blog-cat-card .arrow-link {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* LEGAL PAGE */
.legal-wrap {
  padding: 140px var(--pad-x) 80px;
  max-width: 800px;
}
.legal-wrap h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.legal-wrap .updated {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.legal-wrap h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  margin: 40px 0 12px;
}
.legal-wrap p, .legal-wrap li { color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap a { color: var(--red); }

/* CASE STUDIES PAGE */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.case-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.case-card:hover { border-color: var(--red); transform: translateY(-4px); }
.case-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.case-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.case-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.case-stat .v {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.case-stat .v em { font-style: normal; color: var(--red); }
.case-stat .k { font-family: var(--f-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.case-tags span {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ==========================================
   BLOG ARTICLE CARDS + ARTICLE PAGE — v6
   ========================================== */
.blog-article-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  background: var(--bg);
}
.blog-article-card:hover { border-color: var(--red); transform: translateY(-4px); }
.article-card-link { display: block; text-decoration: none; color: inherit; }
.article-card-img { aspect-ratio: 16/9; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-article-card:hover .article-card-img img { transform: scale(1.04); }
.article-card-body { padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 10px; }
.article-card-body .cat-icon { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--red); }
.article-card-body h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(17px,2vw,21px); letter-spacing: -.01em; line-height: 1.2; }
.article-card-body p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.article-card-meta { font-family: var(--f-mono); font-size: 10px; color: var(--muted); letter-spacing: .05em; }
.article-card-body .arrow-link { margin-top: 8px; font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; display: flex; align-items: center; gap: 8px; }

/* Article full page */
.article-page { max-width: 800px; margin: 0 auto; }
.article-meta { display: flex; gap: 8px; align-items: center; font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: .05em; margin-top: 20px; flex-wrap: wrap; }
.article-featured-img { margin: 0 var(--pad-x) 56px; border-radius: 16px; overflow: hidden; }
.article-featured-img img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.article-body { padding: 0 var(--pad-x); max-width: 780px; margin: 0 auto; }
.article-body h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(22px,2.8vw,32px); letter-spacing: -.015em; line-height: 1.2; margin: 48px 0 16px; }
.article-body h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(17px,2vw,22px); letter-spacing: -.01em; margin: 32px 0 12px; }
.article-body p { font-size: 16px; line-height: 1.8; margin-bottom: 20px; color: var(--ink-soft); }
.article-body ul,.article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 16px; line-height: 1.7; margin-bottom: 10px; }
.article-body strong { font-weight: 600; color: var(--ink); }
.article-body a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.faq-section { margin-top: 48px; padding-top: 12px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { font-family: var(--f-display); font-size: 17px; font-weight: 400; margin-bottom: 10px; }
.faq-a { font-size: 15px; line-height: 1.7; color: var(--muted); }
@media (max-width: 768px) {
  .article-featured-img { margin: 0 0 40px; border-radius: 10px; }
}

/* ABOUT PAGE */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: clamp(64px, 10vw, 120px) var(--pad-x);
}
.about-bio h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-bio h2 em { font-style: italic; color: var(--red); }
.about-bio p { color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.about-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.about-tags span {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.about-visual {
  background: radial-gradient(circle at 30% 30%, #1a1a1a 0%, #0a0a0a 70%);
  border-radius: 24px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: #fff;
}
.about-visual-inner { font-family: var(--f-display); font-style: italic; font-size: 28px; }
.about-visual-inner span { display: block; font-size: 14px; font-style: normal; font-family: var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 8px; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { aspect-ratio: 16/9; }
}
