*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #09090D;
  --ink2:    #0F0F16;
  --paper:   #F3F0E8;
  --paper2:  #EBEBDF;
  --blue:    #2563EB;
  --elec:    #3B82F6;
  --violet:  #7C3AED;
  --white:   #FFFFFF;
  --muted:   #9CA3AF;
  --dim:     #6B7280;
  --green:   #10B981;
  --border-d: rgba(255,255,255,0.07);
  --border-l: rgba(0,0,0,0.09);
  --sans: 'Sora', sans-serif;
  --serif: 'Instrument Serif', serif;
  --mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--ink); color: var(--white); overflow-x: hidden; cursor: none; }
::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--elec); }

/* ── CURSOR ─────────────────────────────────────────────────────────── */
#dot { position:fixed; width:8px; height:8px; border-radius:50%; background:var(--elec); pointer-events:none; z-index:9999; transform:translate(-50%,-50%); mix-blend-mode:difference; transition:transform .1s; }
#dot.big { transform:translate(-50%,-50%) scale(4); opacity:.2; }

/* ── NAV ────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  padding: 20px 40px;
  display: flex; align-items:center; justify-content:space-between;
  transition: background .4s, padding .4s, backdrop-filter .4s;
}
nav.scrolled {
  background: rgba(9,9,13,.92);
  backdrop-filter: blur(24px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border-d);
}

/* LOGO — premier logo SVG complet */
.logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo-svg { width:40px; height:40px; flex-shrink:0; }
.logo-text { display:flex; flex-direction:column; gap:1px; }
.logo-name { font-size:13px; font-weight:800; letter-spacing:-.3px; line-height:1; }
.logo-name em { font-style:normal; font-weight:300; color:rgba(255,255,255,.4); }
.logo-tag { font-family:var(--mono); font-size:7.5px; color:var(--elec); letter-spacing:.18em; text-transform:uppercase; }

.nav-links { display:flex; align-items:center; gap:28px; }
.nav-links a { color:rgba(255,255,255,.5); font-size:13px; font-weight:500; text-decoration:none; transition:color .2s; }
.nav-links a:hover { color:#fff; }
.nav-cta {
  background: linear-gradient(90deg, var(--blue), var(--violet));
  color:#fff !important; font-size:12px !important; font-weight:700 !important;
  padding:9px 20px; border-radius:100px; letter-spacing:.02em;
}

/* ── HERO ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}

/* Animated background */
.hero::before {
  content: '';
  position: absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(37,99,235,.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 70%, rgba(124,58,237,.1) 0%, transparent 70%),
    var(--ink);
  animation: breathe 8s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { opacity:1; }
  50% { opacity:.75; }
}

/* dot grid */
.hero::after {
  content: '';
  position: absolute; inset:0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: 120px;
  position: relative; z-index:2;
}

.hero-left { flex: 0 0 58%; }
.hero-right { flex: 1; display:flex; justify-content:flex-end; align-items:flex-end; }

.h-eyebrow {
  display: inline-flex; align-items:center; gap:10px;
  font-family: var(--mono); font-size:10px; color:rgba(255,255,255,.35);
  letter-spacing:.18em; text-transform:uppercase; margin-bottom:28px;
}
.h-eyebrow span { width:24px; height:1px; background:var(--elec); }

.h1 {
  font-size: clamp(56px, 8.5vw, 120px);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -5px;
  margin-bottom: 36px;
}
.h1-plain  { display:block; color:#fff; }
.h1-outline {
  display:block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.22);
  font-family: var(--serif); font-style:italic; font-weight:400;
  letter-spacing: -2px;
}
.h1-blue { display:block; color:var(--elec); }

.h-sub {
  font-size: 15px; color:rgba(255,255,255,.45); line-height:1.75;
  max-width: 380px; margin-bottom:40px; font-weight:400;
}
.h-sub strong { color:rgba(255,255,255,.8); font-weight:600; }

.hero-cta-wrap { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }

.btn-hero {
  display: inline-flex; align-items:center; gap:12px;
  background: #fff; color: var(--ink);
  font-size: 14px; font-weight:800;
  padding: 15px 28px; border-radius:100px;
  text-decoration:none;
  transition: transform .25s, box-shadow .25s;
}
.btn-hero:hover { transform:translateY(-3px); box-shadow:0 20px 50px rgba(255,255,255,.12); }
.btn-hero-arr {
  width:26px; height:26px; background:var(--elec); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition: transform .25s;
}
.btn-hero:hover .btn-hero-arr { transform:rotate(45deg); }
.btn-hero-arr svg { width:11px; height:11px; }

.btn-ghost {
  color:rgba(255,255,255,.5); font-size:13px; font-weight:600;
  text-decoration:none; border-bottom:1px solid rgba(255,255,255,.2);
  padding-bottom:2px; transition:color .2s, border-color .2s;
}
.btn-ghost:hover { color:#fff; border-color:rgba(255,255,255,.5); }

/* floating stat card top-right */
.hero-stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
  margin-bottom: 30px;
  margin-right: 20px;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hsc-val { font-size:32px; font-weight:800; letter-spacing:-2px; color:var(--elec); }
.hsc-label { font-size:11px; color:rgba(255,255,255,.35); margin-top:2px; }

/* hero bottom bar */
.hero-bottom {
  position: relative; z-index:2;
  display: flex; align-items:center; justify-content:space-between;
  padding: 20px 0;
  border-top: 1px solid var(--border-d);
}
.hb-pills { display:flex; gap:8px; flex-wrap:wrap; }
.hb-pill {
  font-size:11px; font-weight:600;
  color:rgba(255,255,255,.3);
  border:1px solid var(--border-d);
  border-radius:20px; padding:5px 12px;
}
.hb-pill.active { color:var(--elec); border-color:rgba(59,130,246,.3); }
.scroll-hint-r {
  font-family:var(--mono); font-size:9px;
  color:rgba(255,255,255,.2); letter-spacing:.15em; text-transform:uppercase;
  display:flex; align-items:center; gap:8px;
}
.scroll-hint-r::after {
  content:''; width:32px; height:1px;
  background: linear-gradient(90deg, var(--elec), transparent);
}

/* ── MARQUEE ─────────────────────────────────────────────────────────── */
.marquee {
  overflow:hidden;
  border-top:1px solid var(--border-d);
  border-bottom:1px solid var(--border-d);
  background: rgba(255,255,255,.015);
  padding:12px 0;
}
.marquee-inner { display:flex; animation:mq 20s linear infinite; white-space:nowrap; }
.marquee-inner:hover { animation-play-state:paused; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mi { display:inline-flex; align-items:center; gap:16px; padding:0 24px; font-size:11px; font-weight:600; color:rgba(255,255,255,.2); letter-spacing:.1em; text-transform:uppercase; }
.mi-dot { width:3px; height:3px; border-radius:50%; background:var(--elec); flex-shrink:0; }

/* ── SECTION: MAQUETTE (DARK) ─────────────────────────────────────────── */
.s-maquette {
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

/* broken grid element */
.s-maquette::before {
  content: 'MAQUETTE\AGRATUITE';
  white-space: pre;
  position: absolute;
  right: -30px; top: 60px;
  font-size: 120px; font-weight:800; letter-spacing:-6px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  pointer-events: none; line-height:.9;
  transform: rotate(90deg);
  transform-origin: right top;
}

.maq-label {
  font-family:var(--mono); font-size:10px; color:var(--elec);
  letter-spacing:.18em; text-transform:uppercase; margin-bottom:16px;
  display:flex; align-items:center; gap:10px;
}
.maq-label::before { content:''; width:18px; height:1px; background:var(--elec); }

.maq-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight:800; letter-spacing:-2px; line-height:1.04;
  margin-bottom:20px;
}
.maq-h2 i {
  font-family:var(--serif); font-style:italic; font-weight:400;
  color:rgba(255,255,255,.3); display:block;
}
.maq-desc { font-size:14px; color:rgba(255,255,255,.42); line-height:1.8; margin-bottom:36px; max-width:420px; }

.step-list { display:flex; flex-direction:column; }
.step-item {
  display:flex; align-items:flex-start; gap:16px;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.step-item:last-child { border-bottom:none; }
.step-n { font-family:var(--mono); font-size:10px; color:var(--elec); width:28px; flex-shrink:0; margin-top:3px; }
.step-title { font-size:14px; font-weight:700; margin-bottom:4px; }
.step-text { font-size:12px; color:rgba(255,255,255,.38); line-height:1.65; }

/* browser card */
.browser-card {
  background: #13131C;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.bc-bar {
  background: #1C1C28;
  padding: 12px 16px;
  display:flex; align-items:center; gap:10px;
}
.bc-dots { display:flex; gap:6px; }
.bc-dots span { width:10px; height:10px; border-radius:50%; }
.bc-url {
  flex:1; background:rgba(255,255,255,.05);
  border-radius:6px; padding:5px 12px;
  font-family:var(--mono); font-size:9px; color:rgba(255,255,255,.28);
}
.bc-body { padding:24px; }
.bc-tag { font-size:7.5px; color:var(--elec); font-weight:700; letter-spacing:.15em; text-transform:uppercase; margin-bottom:10px; }
.bc-h1 { font-size:20px; font-weight:800; line-height:1.1; margin-bottom:8px; }
.bc-h1 span { color:var(--elec); }
.bc-sub { font-size:9px; color:rgba(255,255,255,.35); margin-bottom:14px; line-height:1.5; }
.bc-btn { display:inline-block; background:linear-gradient(90deg,var(--blue),var(--violet)); color:#fff; font-size:9px; font-weight:700; padding:7px 16px; border-radius:100px; margin-bottom:20px; }
.bc-stats { display:grid; grid-template-columns:1fr 1fr 1fr; gap:8px; }
.bc-stat { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06); border-radius:10px; padding:12px; }
.bc-stat-v { font-size:20px; font-weight:800; letter-spacing:-1px; margin-bottom:3px; }
.bc-stat-l { font-size:8.5px; color:rgba(255,255,255,.3); }

/* ── SECTION: SERVICES (LIGHT) ──────────────────────────────────────── */
.s-services {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

/* big decorative number */
.s-services::before {
  content: '04';
  position:absolute; right:-20px; top:-30px;
  font-size:320px; font-weight:800;
  color:rgba(0,0,0,.04); pointer-events:none;
  line-height:1; letter-spacing:-20px;
}

.srv-header {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:56px; gap:24px; flex-wrap:wrap;
}
.srv-h2 {
  font-size:clamp(28px,4.5vw,52px);
  font-weight:800; letter-spacing:-2px; line-height:1.04; color:var(--ink);
}
.srv-h2 i {
  font-family:var(--serif); font-style:italic; font-weight:400;
  color:rgba(0,0,0,.3); display:block;
}
.srv-note { font-size:13px; color:rgba(0,0,0,.4); max-width:260px; line-height:1.6; }

.srv-list { display:flex; flex-direction:column; gap:2px; }
.srv-row {
  background: var(--paper2);
  border-radius: 4px;
  display:grid; grid-template-columns: 56px 1fr auto auto;
  align-items:center; gap:24px; padding:24px 20px;
  cursor:none; position:relative; overflow:hidden;
  transition: background .25s, padding-left .3s;
}
.srv-row::before {
  content:'';
  position:absolute; left:0; top:0; bottom:0; width:0;
  background:linear-gradient(90deg, rgba(37,99,235,.08), transparent);
  transition:width .4s;
}
.srv-row:hover { background: var(--white); padding-left:32px; }
.srv-row:hover::before { width:100%; }
.srv-idx { font-family:var(--mono); font-size:10.5px; color:rgba(0,0,0,.25); }
.srv-name { font-size:16px; font-weight:700; color:var(--ink); letter-spacing:-.2px; }
.srv-sub { font-size:12px; color:rgba(0,0,0,.4); margin-top:3px; }
.srv-pills { display:flex; gap:5px; flex-wrap:wrap; }
.srv-pill {
  font-family:var(--mono); font-size:9px;
  color:rgba(0,0,0,.4); border:1px solid rgba(0,0,0,.12);
  border-radius:4px; padding:2px 8px;
}
.srv-price { font-size:16px; font-weight:800; color:var(--blue); white-space:nowrap; }
.srv-delay { font-size:9px; color:rgba(0,0,0,.3); text-align:right; margin-top:3px; font-family:var(--mono); }

/* ── SECTION: PROOF (DARK) ──────────────────────────────────────────── */
.s-proof {
  padding: 120px 40px;
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:start;
  position:relative;
}

.proof-nums { display:grid; grid-template-columns:1fr 1fr; gap:2px; margin-top:32px; }
.pn {
  background: #111118; padding:28px 22px;
}
.pn:nth-child(1){border-radius:12px 0 0 0}
.pn:nth-child(2){border-radius:0 12px 0 0}
.pn:nth-child(3){border-radius:0 0 0 12px}
.pn:nth-child(4){border-radius:0 0 12px 0}
.pn-v { font-size:44px; font-weight:800; letter-spacing:-3px; line-height:1; margin-bottom:8px; }
.pn-l { font-size:11px; color:rgba(255,255,255,.3); line-height:1.5; }

.proof-right {}
.why-item {
  display:flex; align-items:flex-start; gap:16px;
  padding:22px 0; border-bottom:1px solid rgba(255,255,255,.06);
}
.why-item:last-child { border-bottom:none; }
.why-ic {
  width:36px; height:36px; border-radius:8px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; margin-top:2px;
}
.why-ic svg { width:18px; height:18px; }
.why-t { font-size:14px; font-weight:700; margin-bottom:5px; }
.why-p { font-size:12px; color:rgba(255,255,255,.38); line-height:1.65; }

/* ── SECTION: TECH (LIGHT, ASYMMETRIC) ──────────────────────────────── */
.s-tech {
  background: var(--paper);
  color: var(--ink);
  padding: 100px 40px;
  border-top: 1px solid var(--border-l);
}
.tech-inner { display:grid; grid-template-columns:1fr 2fr; gap:80px; align-items:center; }
.tech-label { font-family:var(--mono); font-size:10px; color:var(--blue); letter-spacing:.18em; text-transform:uppercase; margin-bottom:14px; }
.tech-h3 { font-size:clamp(24px,3vw,36px); font-weight:800; letter-spacing:-1px; line-height:1.1; margin-bottom:12px; color:var(--ink); }
.tech-p { font-size:13px; color:rgba(0,0,0,.45); line-height:1.75; }
.tech-badges { display:flex; flex-wrap:wrap; gap:8px; }
.tb {
  display:flex; align-items:center; gap:8px;
  background:var(--paper2); border:1px solid var(--border-l);
  border-radius:8px; padding:10px 14px;
  transition:all .25s;
}
.tb:hover { border-color:rgba(37,99,235,.3); background:#fff; }
.tb-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.tb-n { font-size:12px; font-weight:700; color:var(--ink); }
.tb-r { font-size:10px; color:rgba(0,0,0,.38); }

/* ── SECTION: PRICING (DARK) ─────────────────────────────────────────── */
.s-pricing {
  padding: 120px 40px;
  background: var(--ink2);
  border-top: 1px solid var(--border-d);
}
.price-header { margin-bottom:60px; }
.price-label { font-family:var(--mono); font-size:10px; color:var(--elec); letter-spacing:.18em; text-transform:uppercase; margin-bottom:14px; }
.price-h2 { font-size:clamp(28px,4vw,50px); font-weight:800; letter-spacing:-2px; line-height:1.05; margin-bottom:12px; }
.price-h2 i { font-family:var(--serif); font-style:italic; font-weight:400; color:rgba(255,255,255,.3); }
.price-sub { font-size:14px; color:rgba(255,255,255,.38); max-width:480px; line-height:1.7; }
.price-cols { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.pc {
  background:#111118; border:1px solid var(--border-d);
  border-radius:20px; padding:34px; position:relative;
  transition:transform .3s, box-shadow .3s;
}
.pc:hover { transform:translateY(-6px); box-shadow:0 30px 80px rgba(0,0,0,.5); }
.pc.pop {
  border-color:rgba(37,99,235,.35);
  background:linear-gradient(160deg,rgba(37,99,235,.07),#111118);
}
.pc-flag {
  position:absolute; top:-1px; left:50%; transform:translateX(-50%);
  background:linear-gradient(90deg,var(--blue),var(--violet));
  color:#fff; font-size:9px; font-weight:700;
  padding:5px 18px; border-radius:0 0 10px 10px;
  letter-spacing:.08em; text-transform:uppercase; white-space:nowrap;
}
.pc-for { font-family:var(--mono); font-size:9px; color:rgba(255,255,255,.28); letter-spacing:.1em; text-transform:uppercase; margin-bottom:8px; }
.pc-n { font-size:21px; font-weight:800; letter-spacing:-.4px; margin-bottom:4px; }
.pc-t { font-size:11px; color:rgba(255,255,255,.32); margin-bottom:22px; line-height:1.5; }
.pc-div { height:1px; background:rgba(255,255,255,.07); margin:20px 0; }
.pc-price { display:flex; align-items:baseline; gap:4px; margin-bottom:8px; }
.pc-fr { font-size:11px; color:rgba(255,255,255,.28); }
.pc-v { font-size:38px; font-weight:800; letter-spacing:-2px; }
.pc-del { font-family:var(--mono); font-size:10px; color:rgba(255,255,255,.22); display:flex; align-items:center; gap:6px; margin-bottom:22px; }
.pc-del::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--green); flex-shrink:0; }
.pc-feats { list-style:none; display:flex; flex-direction:column; gap:9px; margin-bottom:28px; }
.pc-feats li { font-size:12px; color:rgba(255,255,255,.45); display:flex; gap:8px; line-height:1.4; }
.pc-feats li::before { content:'→'; color:var(--elec); font-size:11px; flex-shrink:0; margin-top:2px; }
.pc-btn { display:block; text-align:center; text-decoration:none; font-size:13px; font-weight:700; padding:13px; border-radius:10px; transition:all .2s; }
.pc-btn.out { border:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.55); }
.pc-btn.out:hover { border-color:rgba(255,255,255,.28); color:#fff; }
.pc-btn.fil { background:#fff; color:var(--ink); }
.pc-btn.fil:hover { background:var(--paper); }

/* ── SECTION: FAQ (LIGHT) ────────────────────────────────────────────── */
.s-faq {
  background: var(--paper);
  color: var(--ink);
  padding: 120px 40px;
  border-top: 1px solid var(--border-l);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-l {}
.faq-label { font-family:var(--mono); font-size:10px; color:var(--blue); letter-spacing:.18em; text-transform:uppercase; margin-bottom:14px; }
.faq-h2 { font-size:clamp(26px,3.2vw,38px); font-weight:800; letter-spacing:-1.5px; line-height:1.1; margin-bottom:12px; color:var(--ink); }
.faq-h2 i { font-family:var(--serif); font-style:italic; font-weight:400; color:rgba(0,0,0,.3); display:block; }
.faq-note { font-size:12px; color:rgba(0,0,0,.38); line-height:1.65; }
.faq-r {}
.fq { border-bottom:1px solid rgba(0,0,0,.08); }
.fq-btn { width:100%; background:none; border:none; color:var(--ink); display:flex; align-items:center; justify-content:space-between; padding:20px 0; cursor:none; text-align:left; gap:16px; }
.fq-q { font-size:14px; font-weight:600; line-height:1.3; color:var(--ink); }
.fq-ic { width:26px; height:26px; border-radius:50%; border:1px solid rgba(0,0,0,.15); flex-shrink:0; display:flex; align-items:center; justify-content:center; transition:transform .3s,border-color .2s,background .2s; }
.fq-ic svg { width:11px; height:11px; stroke:rgba(0,0,0,.4); stroke-width:2; }
.fq.open .fq-ic { transform:rotate(45deg); border-color:var(--blue); background:var(--blue); }
.fq.open .fq-ic svg { stroke:#fff; }
.fq-a { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.fq.open .fq-a { max-height:200px; }
.fq-ai { padding:0 0 20px; font-size:13px; color:rgba(0,0,0,.48); line-height:1.8; }

/* ── SECTION: CTA (DARK SPECIAL) ────────────────────────────────────── */
.s-cta {
  padding: 80px 40px 120px;
  background: var(--ink);
}
.cta-box {
  background: linear-gradient(135deg,rgba(37,99,235,.1),rgba(124,58,237,.07));
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 24px;
  padding: 80px 64px;
  display:grid; grid-template-columns:1fr auto;
  gap:60px; align-items:center;
  position:relative; overflow:hidden;
}
.cta-box::before {
  content:'';
  position:absolute; top:-80px; right:-80px;
  width:320px; height:320px; border-radius:50%;
  background:radial-gradient(circle,rgba(37,99,235,.15),transparent 65%);
}
.cta-box::after {
  content: 'BUILD THE NEXT';
  position:absolute; bottom:-12px; left:0; right:0;
  text-align:center;
  font-size:100px; font-weight:800; letter-spacing:-6px;
  color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.04);
  pointer-events:none; white-space:nowrap;
}
.cta-l { position:relative; z-index:1; }
.cta-label { font-family:var(--mono); font-size:10px; color:var(--elec); letter-spacing:.18em; text-transform:uppercase; margin-bottom:14px; }
.cta-h2 { font-size:clamp(28px,3.5vw,44px); font-weight:800; letter-spacing:-1.5px; line-height:1.06; margin-bottom:14px; }
.cta-h2 i { font-family:var(--serif); font-style:italic; font-weight:400; color:rgba(255,255,255,.3); }
.cta-desc { font-size:14px; color:rgba(255,255,255,.42); line-height:1.75; max-width:490px; }
.cta-r { display:flex; flex-direction:column; gap:12px; position:relative; z-index:1; align-items:flex-end; }
.cta-note { font-size:10px; color:rgba(255,255,255,.22); letter-spacing:.04em; text-align:right; }
.btn-w { display:inline-flex; align-items:center; gap:8px; background:#fff; color:var(--ink); font-size:14px; font-weight:800; padding:15px 28px; border-radius:100px; text-decoration:none; white-space:nowrap; transition:transform .2s,box-shadow .2s; }
.btn-w:hover { transform:scale(1.04); box-shadow:0 14px 48px rgba(255,255,255,.12); }
.btn-outline { display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(255,255,255,.15); color:rgba(255,255,255,.55); font-size:13px; font-weight:600; padding:13px 22px; border-radius:100px; text-decoration:none; white-space:nowrap; transition:all .2s; }
.btn-outline:hover { border-color:rgba(255,255,255,.3); color:#fff; }

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Instrument+Serif:ital@0;1&family=DM+Mono:wght@400;500&display=swap');
:root{
  --ink:#09090D;--ink2:#0F0F16;--paper:#F3F0E8;--blue:#2563EB;--elec:#3B82F6;--violet:#7C3AED;--green:#10B981;
  --border-d:rgba(255,255,255,0.07);--sans:'Sora',sans-serif;--serif:'Instrument Serif',serif;--mono:'DM Mono',monospace;
}
*{box-sizing:border-box;margin:0;padding:0;}

.s-work{
  background:var(--ink);color:#fff;
  padding:120px 40px;
  position:relative;overflow:hidden;
  font-family:var(--sans);
}
.s-work::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 55% 40% at 10% 80%,rgba(124,58,237,.07) 0%,transparent 70%),
    radial-gradient(ellipse 40% 50% at 90% 20%,rgba(37,99,235,.06) 0%,transparent 70%);
  pointer-events:none;
}

/* — header — */
.work-label{
  font-family:var(--mono);font-size:10px;color:var(--elec);
  letter-spacing:.18em;text-transform:uppercase;margin-bottom:16px;
  display:flex;align-items:center;gap:10px;
}
.work-label::before{content:'';width:18px;height:1px;background:var(--elec);}
.work-title-row{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;flex-wrap:wrap;margin-bottom:64px;}
.work-h2{font-size:clamp(32px,4vw,52px);font-weight:800;letter-spacing:-2px;line-height:1.04;}
.work-h2 i{font-family:var(--serif);font-style:italic;font-weight:400;color:rgba(255,255,255,.3);display:block;}
.work-note{font-size:12px;color:rgba(255,255,255,.3);line-height:1.7;max-width:220px;text-align:right;}

/* — grid — */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

/* — card — */
.proj-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #0D0D15;
  border: 1px solid var(--border-d);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: none;
  width: 100%;
  transition: transform .35s cubic-bezier(.22,1,.36,1), border-color .3s, box-shadow .35s;
}
.proj-card:hover{
  transform:translateY(-8px);
  border-color:rgba(59,130,246,.25);
  box-shadow:0 32px 80px rgba(0,0,0,.55);
}
/* accent line on hover */
.proj-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--accent,var(--elec)),var(--violet));
  opacity:0;transition:opacity .3s;z-index:2;
}
.proj-card:hover::before{opacity:1;}


/* — browser chrome — */
.pc-bar{
  background:#181820;padding:10px 12px;
  display:flex;align-items:center;gap:8px;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.pc-dots{display:flex;gap:5px;}
.pc-dots span{width:9px;height:9px;border-radius:50%;}
.pc-url{
  flex:1;background:rgba(255,255,255,.05);border-radius:5px;
  padding:4px 10px;font-family:var(--mono);font-size:8px;color:rgba(255,255,255,.22);
}
.pc-ext{
  width:22px;height:22px;border:1px solid rgba(255,255,255,.1);
  border-radius:5px;display:flex;align-items:center;justify-content:center;flex-shrink:0;
  opacity:0;transition:opacity .25s;
}
.proj-card:hover .pc-ext{opacity:1;}
.pc-ext svg{width:9px;height:9px;}

/* — preview zone — */
.pc-preview { height: 220px; position: relative; overflow: hidden; }

.pc-iframe {
  position: absolute;
  top: 0; left: 0;
  width: 1440px;
  height: 900px;
  border: none;
  transform: scale(0.278);   /* sera écrasé par le JS ci-dessous */
  transform-origin: top left;
  pointer-events: none;
}

/* bloque les clics sur l'iframe, c'est la carte entière qui est cliquable */
.pc-preview-shield {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* fondu bas */
.pc-preview::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, #0D0D15, transparent);
  pointer-events: none; z-index: 2;
}
/* — project UI mockup inside preview — */
.pp-body{position:absolute;inset:0;padding:18px 16px;}
.pp-nav{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;}
.pp-logo-pill{height:14px;width:60px;border-radius:3px;opacity:.6;}
.pp-nav-links{display:flex;gap:6px;}
.pp-nav-link{height:6px;border-radius:2px;opacity:.3;}
.pp-hero-line{height:18px;border-radius:3px;margin-bottom:8px;opacity:.85;}
.pp-hero-sub{height:8px;border-radius:2px;width:70%;opacity:.4;margin-bottom:16px;}
.pp-hero-btn{height:24px;width:90px;border-radius:12px;opacity:.7;}
.pp-cards{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;margin-top:12px;}
.pp-card{border-radius:6px;padding:8px;border:1px solid rgba(255,255,255,.08);}
.pp-card-h{height:8px;border-radius:2px;margin-bottom:6px;width:60%;opacity:.7;}
.pp-card-b{height:6px;border-radius:2px;opacity:.35;}
.pp-rows{display:flex;flex-direction:column;gap:7px;margin-top:4px;}
.pp-row{height:28px;border-radius:5px;border:1px solid rgba(255,255,255,.06);display:flex;align-items:center;padding:0 10px;gap:8px;}
.pp-row-dot{width:6px;height:6px;border-radius:50%;flex-shrink:0;}
.pp-row-line{height:6px;border-radius:2px;flex:1;opacity:.35;}
.pp-row-val{height:10px;width:36px;border-radius:2px;opacity:.6;}
.pp-tags{display:flex;gap:5px;flex-wrap:wrap;margin-top:8px;}
.pp-tag{height:18px;border-radius:9px;padding:0 8px;font-family:var(--mono);font-size:7px;display:flex;align-items:center;opacity:.5;}
.pp-stat-row{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:8px;}
.pp-stat{border-radius:8px;padding:8px 10px;border:1px solid rgba(255,255,255,.07);}
.pp-stat-n{height:16px;width:50%;border-radius:3px;margin-bottom:4px;opacity:.8;}
.pp-stat-l{height:5px;border-radius:2px;width:70%;opacity:.3;}
/* gradient overlays on preview */
.pc-preview-overlay{
  position:absolute;bottom:0;left:0;right:0;height:48px;
  background:linear-gradient(to top,#0D0D15,transparent);
  pointer-events:none;z-index:1;
}

/* — card footer — */
.pc-foot{padding:16px 18px 20px;}
.pc-foot-top{display:flex;align-items:flex-start;justify-content:space-between;gap:10px;margin-bottom:8px;}
.pc-name{font-size:14px;font-weight:700;letter-spacing:-.2px;line-height:1.2;}
.pc-type{
  font-family:var(--mono);font-size:8.5px;
  color:var(--accent,var(--elec));
  border:1px solid currentColor;border-radius:4px;
  padding:2px 7px;opacity:.7;white-space:nowrap;flex-shrink:0;margin-top:2px;
}
.pc-desc{font-size:11.5px;color:rgba(255,255,255,.35);line-height:1.6;margin-bottom:12px;}
.pc-stack{display:flex;gap:5px;flex-wrap:wrap;}
.pc-badge{
  font-family:var(--mono);font-size:8px;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.09);
  border-radius:3px;padding:2px 7px;color:rgba(255,255,255,.4);
}
.pc-cta{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:14px;padding-top:12px;border-top:1px solid rgba(255,255,255,.05);
}
.pc-visit{font-size:11px;font-weight:600;color:rgba(255,255,255,.35);letter-spacing:.04em;}
.proj-card:hover .pc-visit{color:rgba(255,255,255,.75);}
.pc-arr{
  width:24px;height:24px;border:1px solid rgba(255,255,255,.1);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  transition:background .25s,border-color .25s,transform .25s;
}
.proj-card:hover .pc-arr{background:var(--accent,var(--elec));border-color:transparent;transform:rotate(45deg);}
.pc-arr svg{width:9px;height:9px;}

/* — "voir tous" link — */
.work-more{display:flex;justify-content:center;margin-top:48px;}
.work-more-link{
  font-size:13px;font-weight:600;color:rgba(255,255,255,.35);
  text-decoration:none;border-bottom:1px solid rgba(255,255,255,.12);
  padding-bottom:2px;transition:color .2s,border-color .2s;
}
.work-more-link:hover{color:#fff;border-color:rgba(255,255,255,.4);}

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer {
  border-top:1px solid var(--border-d);
  padding:48px 40px 32px;
  background:var(--ink);
}
.ft { display:grid; grid-template-columns:2fr 1fr 1fr; gap:56px; margin-bottom:44px; }
.ft-brand { display:flex; align-items:center; gap:10px; margin-bottom:14px; text-decoration:none; }
.ft-brand svg { width:28px; height:28px; flex-shrink:0; }
.ft-brand-text { font-size:13px; font-weight:800; }
.ft-brand-text em { font-style:normal; opacity:.3; font-weight:300; }
.ft-tag { font-family:var(--mono); font-size:9px; color:var(--elec); letter-spacing:.18em; text-transform:uppercase; margin-bottom:12px; }
.ft-desc { font-size:12px; color:rgba(255,255,255,.28); line-height:1.7; max-width:270px; }
.ft-col h5 { font-size:10px; font-weight:700; color:rgba(255,255,255,.28); letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; }
.ft-col ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.ft-col ul li a { font-size:13px; color:rgba(255,255,255,.4); text-decoration:none; transition:color .2s; }
.ft-col ul li a:hover { color:#fff; }
.ft-bot { display:flex; justify-content:space-between; align-items:center; padding-top:22px; border-top:1px solid var(--border-d); font-size:11px; color:rgba(255,255,255,.2); flex-wrap:wrap; gap:12px; }
.live-row { display:flex; align-items:center; gap:8px; }
.live { width:7px; height:7px; border-radius:50%; background:var(--green); animation:blink 2.2s infinite; }
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}

/* ── REVEAL ──────────────────────────────────────────────────────────── */
[data-r] { opacity:0; transform:translateY(28px); transition:opacity .75s ease,transform .75s ease; }
[data-r="L"] { transform:translateX(-28px); }
[data-r="R"] { transform:translateX(28px); }
[data-r="S"] { transform:scale(.97); }
[data-r].in { opacity:1; transform:none; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media(max-width:1024px) {
  .hero { padding:0 24px; }
  .hero-inner { flex-direction:column; align-items:flex-start; gap:40px; }
  .hero-left { flex:none; }
  .hero-right { display:none; }
  .s-maquette,.s-proof,.s-faq { grid-template-columns:1fr; }
  .tech-inner { grid-template-columns:1fr; }
  .price-cols { grid-template-columns:1fr; }
  .cta-box { grid-template-columns:1fr; text-align:center; }
  .cta-r { align-items:center; }
  .ft { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  nav { padding:16px 20px; }
  nav.scrolled { padding:12px 20px; }
  .nav-links a:not(.nav-cta) { display:none; }
  .s-maquette,.s-proof,.s-services,.s-tech,.s-pricing,.s-faq,.s-cta { padding:80px 20px; }
  .h1 { letter-spacing:-2px; }
  .srv-row { grid-template-columns:1fr; gap:10px; }
  .srv-idx,.srv-pills,.srv-delay { display:none; }
  .proof-nums { grid-template-columns:1fr 1fr; }
  .ft { grid-template-columns:1fr; }
  .hero-bottom { padding:16px 0; }
  .cta-box { padding:40px 24px; }
}

@media(max-width:960px) { .work-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media(max-width:640px) { .work-grid { grid-template-columns: 1fr; } .s-work { padding:80px 20px; } .work-note { text-align:left; } }