/* ============================================================
   AITOUMO — Stylesheet
   Direction: dark-wave NexWav, signature atoumo en trait fin
   ============================================================ */

:root {
  /* Encre */
  --ink-950: #08101F;
  --ink-900: #0F172A;
  --ink-800: #111C35;
  --ink-700: #1E2A4A;
  --ink-600: #334155;

  /* Bleus */
  --blue-700: #1D4ED8;
  --blue-600: #2563EB;
  --blue-500: #3B82F6;

  /* Cyan / signal */
  --cyan-500: #06B6D4;
  --cyan-400: #22D3EE;
  --cyan-300: #67E8F9;

  /* Accent CTA */
  --amber-500: #F59E0B;
  --amber-400: #FBBF24;

  /* Surfaces claires */
  --paper:   #FFFFFF;
  --mist:    #F5F7FA;
  --fog:     #E5E9F0;

  /* Neutres */
  --steel:   #94A3B8;
  --slate:   #64748B;
  --graphite: #334155;

  /* Tokens dérivés */
  --line-dark:  rgba(255,255,255,0.08);
  --line-light: rgba(15,23,42,0.08);

  --grad-signature: linear-gradient(120deg, #0F172A 0%, #1E3A8A 32%, #2563EB 62%, #06B6D4 100%);
  --grad-bright:    linear-gradient(90deg, #2563EB 0%, #06B6D4 100%);

  /* Typo */
  --f-display: 'Archivo', sans-serif;
  --f-body:    'Inter', sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --max:    1280px;
  --pad-x:  clamp(20px, 5vw, 64px);
  --nav-h:  76px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink-950);
  color: #E2E8F0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--cyan-500); color: var(--ink-900); }

a { color: inherit; text-decoration: none; }

/* ============================================================
   TYPO
   ============================================================ */
.f-display { font-family: var(--f-display); font-weight: 900; letter-spacing: -0.025em; line-height: 0.95; }
.f-title   { font-family: var(--f-display); font-weight: 800; letter-spacing: -0.015em; line-height: 1.05; }
.f-h3      { font-family: var(--f-display); font-weight: 700; letter-spacing: -0.005em; line-height: 1.2; }
.f-label   { font-family: var(--f-display); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.f-body    { font-family: var(--f-body); font-weight: 400; line-height: 1.6; }
.f-mono    { font-family: var(--f-mono); font-weight: 500; letter-spacing: 0.02em; }

.gradient-text {
  background: linear-gradient(92deg, #3B82F6 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: rgba(226,232,240,0.6); }
.muted-strong { color: rgba(226,232,240,0.4); }

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
.app {
  min-height: 100vh;
  background: var(--ink-950);
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section { position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.5);
  margin-bottom: 24px;
}
.section-label .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.18);
}
.section-label .idx {
  color: rgba(226,232,240,0.85);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  background: rgba(8,16,31,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.3s;
}
.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.015em;
}
.nav-brand .ai {
  background: linear-gradient(92deg, #3B82F6 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14px;
  color: rgba(226,232,240,0.7);
  letter-spacing: 0.01em;
  cursor: pointer;
  background: none;
  border: none;
  transition: all 0.18s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.04); }
.nav-link.active { color: #fff; }
.nav-link.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--cyan-500);
  margin-top: 4px;
  border-radius: 2px;
}
.nav-cta {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--amber-500);
  color: var(--ink-900);
  padding: 11px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.nav-cta:hover { background: var(--amber-400); transform: translateY(-1px); }

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--ink-900);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-mobile-open .nav-link { width: 100%; text-align: left; padding: 12px 16px; }
  .nav-mobile-open .nav-cta {
    display: inline-block;
    margin: 8px 16px 16px;
    text-align: center;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(37,99,235,0.18) 0%, transparent 60%),
    radial-gradient(900px 500px at 95% 90%, rgba(6,182,212,0.12) 0%, transparent 55%);
}
.hero-bg::after {
  content: '';
  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: 80px 80px;
  mask-image: radial-gradient(1200px 800px at 50% 30%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(1200px 800px at 50% 30%, #000 30%, transparent 90%);
}
.hero-waves {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50%;
  opacity: 0.4;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.7);
  margin-bottom: 32px;
  background: rgba(255,255,255,0.02);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 12px var(--cyan-400);
}
.hero-title {
  font-size: clamp(48px, 8vw, 112px);
  color: #fff;
  margin: 0 0 28px;
  max-width: 1100px;
}
.hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(226,232,240,0.75);
  max-width: 720px;
  line-height: 1.5;
  margin: 0 0 48px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* CTA buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber-500);
  color: var(--ink-900);
  box-shadow: 0 8px 24px rgba(245,158,11,0.25);
}
.btn-primary:hover { background: var(--amber-400); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--cyan-400); color: var(--cyan-300); }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid var(--line-dark);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); }
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin-top: 80px;
}
.stat-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--line-dark);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .v {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 44px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-cell .v .accent { color: var(--cyan-400); }
.stat-cell .l {
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(226,232,240,0.5);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .stat-cell { border-right: none; border-bottom: 1px solid var(--line-dark); }
  .stat-cell:last-child { border-bottom: none; }
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.sec {
  padding: 100px 0;
  position: relative;
}
.sec-light {
  background: var(--paper);
  color: var(--ink-900);
}
.sec-light .section-label { color: rgba(15,23,42,0.5); }
.sec-light .section-label .idx { color: var(--ink-900); }

.sec-mist { background: var(--mist); color: var(--ink-900); }
.sec-mist .section-label { color: rgba(15,23,42,0.5); }
.sec-mist .section-label .idx { color: var(--ink-900); }

.sec h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 900px;
}
.sec p.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  max-width: 700px;
  margin: 0 0 56px;
  color: rgba(226,232,240,0.7);
}
.sec-light p.lead, .sec-mist p.lead { color: var(--graphite); }

/* ============================================================
   WORKFLOW DIAGRAM (animated)
   ============================================================ */
.workflow {
  position: relative;
  padding: 56px 40px;
  background: linear-gradient(135deg, rgba(15,23,42,0.6) 0%, rgba(30,42,74,0.4) 100%);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  overflow: hidden;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}
.wf-node {
  background: rgba(15,23,42,0.85);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 18px 16px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wf-node.active {
  border-color: var(--cyan-400);
  box-shadow: 0 0 0 1px var(--cyan-400), 0 0 32px rgba(34,211,238,0.18);
}
.wf-node .wf-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--cyan-400);
  letter-spacing: 0.1em;
}
.wf-node .wf-icon {
  width: 28px; height: 28px;
  margin-top: 6px;
  color: var(--cyan-300);
}
.wf-node .wf-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-top: 12px;
}
.wf-node .wf-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(226,232,240,0.4);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.wf-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  z-index: 1;
}
.wf-pulse-line {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, transparent 0%, var(--cyan-400) 50%, transparent 100%);
  animation: wfMove 4s linear infinite;
  opacity: 0.6;
}
@keyframes wfMove {
  0%   { left: -30%; }
  100% { left: 100%; }
}

@media (max-width: 800px) {
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FEATURE CARDS (services, valeurs)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  overflow: hidden;
}
.card {
  background: var(--ink-900);
  padding: 32px 28px;
  position: relative;
  transition: background 0.25s;
}
.card:hover { background: var(--ink-800); }
.card-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cyan-400);
  margin-bottom: 18px;
}
.card-icon {
  width: 36px; height: 36px;
  color: var(--cyan-300);
  margin-bottom: 22px;
}
.card-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
}
.card-desc {
  font-size: 15px;
  color: rgba(226,232,240,0.65);
  line-height: 1.55;
  margin: 0 0 20px;
}
.card-list {
  list-style: none;
  margin: 0; padding: 0;
}
.card-list li {
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(226,232,240,0.6);
  padding: 6px 0;
  border-top: 1px dashed var(--line-dark);
  display: flex;
  gap: 10px;
}
.card-list li::before {
  content: '→';
  color: var(--cyan-400);
}

/* Light variant */
.sec-light .cards-grid {
  background: var(--line-light);
  border-color: var(--line-light);
}
.sec-light .card { background: var(--paper); }
.sec-light .card:hover { background: var(--mist); }
.sec-light .card-title { color: var(--ink-900); }
.sec-light .card-desc { color: var(--graphite); }
.sec-light .card-list li {
  color: var(--graphite);
  border-color: var(--line-light);
}

/* ============================================================
   SPLIT / EDITORIAL
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

.kicker-list { list-style: none; margin: 0; padding: 0; }
.kicker-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}
.kicker-list li:last-child { border-bottom: 1px solid var(--line-dark); }
.kicker-list .k-num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--cyan-400);
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.kicker-list .k-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 0 0 6px;
}
.kicker-list .k-desc {
  font-size: 14px;
  color: rgba(226,232,240,0.6);
  margin: 0;
  line-height: 1.55;
}
.sec-light .kicker-list li, .sec-mist .kicker-list li {
  border-color: var(--line-light);
}
.sec-light .kicker-list .k-title, .sec-mist .kicker-list .k-title { color: var(--ink-900); }
.sec-light .kicker-list .k-desc, .sec-mist .kicker-list .k-desc { color: var(--graphite); }

/* ============================================================
   TIMELINE / PROCESS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-dark) 0, var(--line-dark) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.proc-step {
  position: relative;
  z-index: 1;
}
.proc-bullet {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--ink-900);
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--cyan-400);
  margin-bottom: 22px;
  position: relative;
}
.proc-bullet::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--cyan-400);
  opacity: 0;
  transition: opacity 0.3s;
}
.proc-step:hover .proc-bullet::after { opacity: 1; }
.proc-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.proc-desc {
  font-size: 14px;
  color: rgba(226,232,240,0.6);
  line-height: 1.55;
  margin: 0;
}
.proc-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--cyan-400);
  letter-spacing: 0.1em;
  margin-top: 12px;
}
.sec-light .proc-bullet, .sec-mist .proc-bullet {
  background: var(--paper);
  border-color: var(--line-light);
}
.sec-light .proc-title, .sec-mist .proc-title { color: var(--ink-900); }
.sec-light .proc-desc, .sec-mist .proc-desc { color: var(--graphite); }
.sec-light .process::before, .sec-mist .process::before {
  background: repeating-linear-gradient(90deg, var(--line-light) 0, var(--line-light) 6px, transparent 6px, transparent 12px);
}

@media (max-width: 800px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process::before { display: none; }
}
@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING / OFFERS
   ============================================================ */
.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.offer {
  background: var(--ink-900);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.offer.featured {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 1px var(--cyan-500), 0 16px 48px rgba(6,182,212,0.12);
}
.offer-flag {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--cyan-500);
  color: var(--ink-900);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 8px 8px;
}
.offer-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cyan-400);
  margin-bottom: 18px;
}
.offer-name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.offer-tagline {
  font-size: 14px;
  color: rgba(226,232,240,0.6);
  margin: 0 0 28px;
  line-height: 1.5;
}
.offer-price {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 36px;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}
.offer-price .currency { color: rgba(226,232,240,0.5); font-size: 24px; margin-right: 4px; }
.offer-price-sub {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--cyan-400);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.offer-divider {
  height: 1px;
  background: var(--line-dark);
  margin: 26px 0;
}
.offer-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  flex: 1;
}
.offer-features li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: rgba(226,232,240,0.75);
  line-height: 1.5;
}
.offer-features li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--cyan-400);
}
.offer .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.faq-item {
  border-bottom: 1px solid var(--line-dark);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  letter-spacing: -0.005em;
}
.faq-q:hover { color: var(--cyan-300); }
.faq-q .plus {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.25s;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--cyan-400);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .plus::before { width: 14px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 14px; transition: transform 0.25s; }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 15px;
  color: rgba(226,232,240,0.7);
  line-height: 1.65;
  max-width: 760px;
}
.sec-light .faq-list, .sec-mist .faq-list { border-color: var(--line-light); }
.sec-light .faq-item, .sec-mist .faq-item { border-color: var(--line-light); }
.sec-light .faq-q, .sec-mist .faq-q { color: var(--ink-900); }
.sec-light .faq-a-inner, .sec-mist .faq-a-inner { color: var(--graphite); }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  overflow: hidden;
}
.testimonial {
  background: var(--ink-900);
  padding: 32px;
  position: relative;
}
.testimonial-quote {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: -8px;
  font-size: 64px;
  color: var(--cyan-500);
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 1;
  opacity: 0.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--ink-900);
  font-size: 15px;
}
.testimonial-name {
  font-family: var(--f-display);
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  margin: 0;
}
.testimonial-role {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(226,232,240,0.5);
  margin: 2px 0 0;
}

/* ============================================================
   APPS GRID (logos / placeholders)
   ============================================================ */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  overflow: hidden;
}
.app-cell {
  background: var(--ink-900);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 100px;
  transition: background 0.2s;
}
.app-cell:hover { background: var(--ink-800); }
.app-cell .ic {
  width: 28px; height: 28px;
  color: var(--cyan-300);
}
.app-cell .nm {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(226,232,240,0.7);
  letter-spacing: 0.04em;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-700) 100%);
  border-radius: 24px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 50%, rgba(34,211,238,0.18) 0%, transparent 60%),
    radial-gradient(500px 250px at 90% 80%, rgba(37,99,235,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-block h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
  color: #fff;
}
.cta-block p {
  color: rgba(226,232,240,0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line-dark);
  padding: 80px 0 40px;
  background: var(--ink-950);
  color: rgba(226,232,240,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.5);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 6px 0; }
.footer li button, .footer li a {
  background: none; border: none; padding: 0;
  color: rgba(226,232,240,0.7);
  font-size: 14px;
  font-family: var(--f-body);
  cursor: pointer;
  transition: color 0.15s;
}
.footer li button:hover, .footer li a:hover { color: var(--cyan-300); }
.footer-brand-block {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
  color: rgba(226,232,240,0.65);
}
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(226,232,240,0.45);
}

/* ============================================================
   FORM
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(226,232,240,0.6);
}
.field input, .field textarea, .field select {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--f-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--cyan-400);
  background: rgba(34,211,238,0.04);
}
.field select option {
  background-color: #0F172A;
  color: #E2E8F0;
}
.field textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(37,99,235,0.14) 0%, transparent 60%),
    radial-gradient(600px 300px at 90% 100%, rgba(6,182,212,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin: 12px 0 20px;
  color: #fff;
  max-width: 1000px;
}
.page-header p {
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(226,232,240,0.7);
  max-width: 720px;
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   ATOUMO SIGNATURE
   ============================================================ */
.atoumo-mark {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 5;
  width: 64px; height: 64px;
  opacity: 0.35;
  pointer-events: none;
  color: var(--cyan-400);
}
@media (max-width: 700px) { .atoumo-mark { display: none; } }

/* ============================================================
   UTILITIES
   ============================================================ */
.divider {
  height: 1px;
  background: var(--line-dark);
  margin: 0 auto;
  max-width: var(--max);
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cyan-300);
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
  padding: 4px 10px;
  border-radius: 999px;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeIn 0.6s ease forwards;
}
.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }
.fade-in.delay-4 { animation-delay: 0.4s; }
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Light theme overrides */
body.theme-light, body.theme-light .app {
  background: var(--paper);
  color: var(--ink-900);
}
body.theme-light .nav { background: rgba(255,255,255,0.78); border-bottom-color: var(--line-light); }
body.theme-light .nav-brand { color: var(--ink-900); }
body.theme-light .nav-link { color: var(--graphite); }
body.theme-light .nav-link:hover { color: var(--ink-900); background: var(--mist); }
body.theme-light .nav-link.active { color: var(--ink-900); }
body.theme-light .hero, body.theme-light .page-header { color: var(--ink-900); }
body.theme-light .hero-title, body.theme-light .page-header h1 { color: var(--ink-900); }
body.theme-light .hero-sub, body.theme-light .page-header p { color: var(--graphite); }
body.theme-light .hero-bg::after {
  background-image:
    linear-gradient(rgba(15,23,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.05) 1px, transparent 1px);
}
body.theme-light .hero-eyebrow { border-color: var(--line-light); color: var(--graphite); background: var(--mist); }
body.theme-light .stat-strip,
body.theme-light .stat-cell { border-color: var(--line-light); }
body.theme-light .stat-cell .v { color: var(--ink-900); }
body.theme-light .stat-cell .l { color: var(--slate); }
body.theme-light .footer { background: var(--mist); border-color: var(--line-light); color: var(--graphite); }
body.theme-light .footer h4 { color: var(--slate); }
body.theme-light .footer-bottom { border-color: var(--line-light); color: var(--slate); }

/* Density */
body.density-comfy .sec { padding: 120px 0; }
body.density-compact .sec { padding: 72px 0; }


/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.sec-roi { padding-top: 0; }

.roi-calc {
  position: relative;
  background: linear-gradient(180deg, rgba(15,23,42,0.6), rgba(8,16,31,0.8));
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 48px 56px;
  overflow: hidden;
}
.roi-calc::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(34,211,238,0.08), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(245,158,11,0.06), transparent 50%);
  pointer-events: none;
}
.roi-calc > * { position: relative; }

.roi-calc-head { margin-bottom: 36px; }
.roi-calc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--cyan-300);
  margin-bottom: 16px;
  padding: 6px 12px;
  border: 1px solid rgba(34,211,238,0.25);
  border-radius: 999px;
  background: rgba(34,211,238,0.05);
}
.roi-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 0 rgba(34,211,238,0.7);
  animation: roiPulse 1.6s ease-out infinite;
}
@keyframes roiPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,211,238,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,211,238,0); }
}
.roi-calc-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}

.roi-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.roi-calc-inputs { display: flex; flex-direction: column; gap: 32px; }

.roi-slider-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
}
.roi-slider-label {
  font-size: 14px; font-weight: 500;
  color: rgba(226,232,240,0.85);
}
.roi-slider-value {
  font-size: 22px; font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.roi-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--cyan-400) 0%, var(--cyan-400) var(--p, 50%), rgba(226,232,240,0.12) var(--p, 50%), rgba(226,232,240,0.12) 100%);
  border-radius: 999px; outline: none;
}
.roi-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--cyan-400);
  box-shadow: 0 2px 8px rgba(34,211,238,0.4);
  cursor: pointer;
  transition: transform 0.12s ease;
}
.roi-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.roi-range::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--cyan-400);
  box-shadow: 0 2px 8px rgba(34,211,238,0.4);
  cursor: pointer;
}

.roi-slider-scale {
  display: flex; justify-content: space-between;
  font-size: 11px;
  color: rgba(226,232,240,0.4);
  margin-top: 8px;
}

.roi-calc-output {
  background: rgba(8,16,31,0.6);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 0;
}
.roi-out-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}
.roi-out-row:first-child { padding-top: 0; }
.roi-out-row:last-child { border-bottom: 0; padding-bottom: 0; }
.roi-out-row-hl {
  margin-top: 10px;
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.02));
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 12px;
  padding: 20px;
}
.roi-out-label {
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(226,232,240,0.5);
  margin-bottom: 6px;
}
.roi-out-value {
  font-size: 38px; font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.roi-out-eur { color: var(--amber-400, #FBBF24); }
.roi-out-foot {
  font-size: 11px;
  color: rgba(226,232,240,0.35);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-dark);
}

@media (max-width: 880px) {
  .roi-calc { padding: 32px 24px; }
  .roi-calc-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   LIVE DEMO
   ============================================================ */
.livedemo {
  background: linear-gradient(180deg, rgba(15,23,42,0.5), rgba(8,16,31,0.7));
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  overflow: hidden;
}
.livedemo-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8,16,31,0.5);
}
.livedemo-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.livedemo-tab {
  font-family: inherit;
  font-size: 13px; font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(226,232,240,0.7);
  cursor: pointer;
  transition: all 0.12s ease;
}
.livedemo-tab:hover:not(:disabled) {
  border-color: rgba(34,211,238,0.35);
  color: #fff;
}
.livedemo-tab.active {
  background: rgba(34,211,238,0.1);
  border-color: rgba(34,211,238,0.45);
  color: var(--cyan-300);
}
.livedemo-tab:disabled { opacity: 0.5; cursor: not-allowed; }
.livedemo-tabs-tag {
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(226,232,240,0.35);
}

.livedemo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.livedemo-input {
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 16px;
}
.livedemo-input-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(226,232,240,0.55);
}
.livedemo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 8px rgba(34,211,238,0.6);
}
.livedemo-dot.ok { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.6); }

.livedemo-textarea {
  flex: 1;
  width: 100%;
  min-height: 280px;
  background: rgba(8,16,31,0.6);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 18px;
  font-family: var(--f-mono);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(226,232,240,0.85);
  resize: vertical;
  outline: none;
  transition: border-color 0.12s ease;
}
.livedemo-textarea:focus { border-color: rgba(34,211,238,0.4); }
.livedemo-textarea:disabled { opacity: 0.6; }

.livedemo-controls { display: flex; }

.livedemo-output {
  padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
  overflow-y: auto;
}

.livedemo-pipeline {
  display: flex; flex-direction: column;
  gap: 4px;
  background: rgba(8,16,31,0.4);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 12px;
}
.ld-step {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.ld-step-num {
  font-size: 11px;
  color: rgba(226,232,240,0.4);
  letter-spacing: 0.1em;
  width: 24px;
}
.ld-step-body { flex: 1; }
.ld-step-lbl {
  font-size: 14px; font-weight: 500;
  color: rgba(226,232,240,0.65);
}
.ld-step-sub {
  font-size: 11px;
  color: rgba(226,232,240,0.35);
  margin-top: 2px;
}
.ld-step-icon {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}

.ld-active {
  background: rgba(34,211,238,0.06);
}
.ld-active .ld-step-num,
.ld-active .ld-step-lbl { color: var(--cyan-300); }
.ld-active .ld-step-icon { color: var(--cyan-400); }

.ld-done .ld-step-lbl { color: rgba(226,232,240,0.85); }
.ld-done .ld-step-num { color: rgba(34,211,238,0.7); }
.ld-done .ld-step-icon {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.ld-spinner {
  width: 12px; height: 12px;
  border: 1.5px solid rgba(34,211,238,0.25);
  border-top-color: var(--cyan-400);
  border-radius: 50%;
  animation: ldSpin 0.7s linear infinite;
}
@keyframes ldSpin { to { transform: rotate(360deg); } }

.livedemo-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: #fca5a5;
}

.livedemo-result {
  background: rgba(8,16,31,0.6);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 12px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 16px;
  animation: ldFadeIn 0.4s ease;
}
@keyframes ldFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.ld-result-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(226,232,240,0.7);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}
.ld-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ld-result-cell {
  display: flex; flex-direction: column; gap: 6px;
}
.ld-cell-label {
  font-size: 10px; letter-spacing: 0.16em;
  color: rgba(226,232,240,0.4);
}
.ld-tag {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px; font-weight: 500;
  border-radius: 6px;
  font-family: var(--f-mono);
  text-transform: uppercase; letter-spacing: 0.04em;
  align-self: flex-start;
}
.ld-tag-blue {
  background: rgba(59,130,246,0.12);
  color: #93c5fd;
  border: 1px solid rgba(59,130,246,0.3);
}
.ld-tag-cyan {
  background: rgba(34,211,238,0.12);
  color: var(--cyan-300);
  border: 1px solid rgba(34,211,238,0.3);
}
.ld-tag-amber {
  background: rgba(245,158,11,0.12);
  color: #fcd34d;
  border: 1px solid rgba(245,158,11,0.3);
}
.ld-tag-mute {
  background: rgba(226,232,240,0.06);
  color: rgba(226,232,240,0.65);
  border: 1px solid var(--line-dark);
}

.ld-result-resume p {
  font-size: 14px; line-height: 1.55;
  color: rgba(226,232,240,0.85);
  margin: 4px 0 0;
}
.ld-result-reply pre {
  font-family: var(--f-mono);
  font-size: 12.5px; line-height: 1.65;
  color: rgba(226,232,240,0.85);
  background: rgba(8,16,31,0.7);
  border: 1px solid var(--line-dark);
  border-left: 2px solid var(--cyan-400);
  padding: 14px 16px;
  border-radius: 8px;
  margin: 4px 0 0;
  white-space: pre-wrap;
  overflow-x: auto;
}

@media (max-width: 880px) {
  .livedemo-body { grid-template-columns: 1fr; min-height: 0; }
  .livedemo-input { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .ld-result-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLOOMING ATOUMO
   ============================================================ */
.bloom-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-400);
  margin: 0 auto;
}
.bloom-wrap svg {
  filter: drop-shadow(0 0 24px rgba(34,211,238,0.15));
}

.bloom-readout {
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(226,232,240,0.5);
  background: rgba(8,16,31,0.7);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}
.bloom-readout-bar {
  display: inline-block;
  width: 60px; height: 3px;
  background: rgba(226,232,240,0.1);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bloom-readout-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-400), #3B82F6);
  transition: width 0.2s ease;
}

.split-bloom {
  align-items: center;
}
.split-bloom-art {
  display: flex; align-items: center; justify-content: center;
  min-height: 460px;
}

@media (max-width: 880px) {
  .split-bloom-art { min-height: 360px; }
}

/* ============================================================
   OFFRE FLASH
   ============================================================ */
.offre-flash-grid {
  display: grid;
  grid-template-columns: clamp(260px, 55%, 620px) 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 760px) {
  .offre-flash-grid {
    grid-template-columns: 1fr;
  }
}
