*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── THEMES ── */
:root {
  --green: #00e5a0;
  --green-dim: rgba(0,229,160,0.12);
  --border-green: rgba(0,229,160,0.22);
  --transition: background 0.3s, color 0.3s, border-color 0.3s;
}

[data-theme="dark"] {
  --bg: #080a0a;
  --surface: #0f0f0f;
  --surface2: #141414;
  --border: rgba(255,255,255,0.06);
  --text: #e0e0e0;
  --muted: #666;
  --muted2: #2a2a2a;
  --white: #ffffff;
  --plan-bg: #0f0f0f;
  --plan-border: #222;
  --divider: #1a1a1a;
  --mod-bg: #080a0a;
  --content-bg: #0f0f0f;
  --nav-bg: rgba(8,10,10,0.92);
  --footer-color: #333;
  --review-bg: #0f0f0f;
}

[data-theme="light"] {
  --bg: #f5f5f0;
  --surface: #ffffff;
  --surface2: #f0f0eb;
  --border: rgba(0,0,0,0.08);
  --text: #1a1a1a;
  --muted: #777;
  --muted2: #ddd;
  --white: #111111;
  --plan-bg: #ffffff;
  --plan-border: #e0e0e0;
  --divider: #ebebeb;
  --mod-bg: #f5f5f0;
  --content-bg: #ffffff;
  --nav-bg: rgba(245,245,240,0.92);
  --footer-color: #aaa;
  --review-bg: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: var(--transition);
}

/* ── CONTROLS NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { width: 40px; height: 40px; object-fit: contain; }
.nav-logo span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* toggle pill */
.toggle-pill {
  display: flex;
  align-items: center;
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}

.toggle-btn {
  background: none;
  border: none;
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}

.toggle-btn.active {
  background: var(--green);
  color: #080a0a;
}

.nav-cta {
  background: var(--green);
  color: #080a0a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 260px;
  background: var(--green);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  border: 0.5px solid var(--border-green);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.dot-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--green); }

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-green {
  background: var(--green);
  color: #080a0a;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.btn-green:hover { opacity: 0.85; }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 8px;
  border: 0.5px solid var(--muted2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: #888; }

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 0.5px solid var(--border);
  animation: fadeUp 0.7s 0.4s ease both;
}

.stat-n { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: var(--white); display: block; }
.stat-l { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 3px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* ── SECTIONS ── */
.section { max-width: 1040px; margin: 0 auto; padding: 80px 24px; }
.section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); font-weight: 500; margin-bottom: 10px; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 16px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-body { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.about-pills { display: flex; flex-direction: column; gap: 10px; }
.pill { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.5; opacity: 0.7; }
.pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 7px; }

.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card { background: var(--surface); border: 0.5px solid var(--border); border-radius: 12px; padding: 22px 18px; text-align: center; transition: var(--transition); }
.stat-card.wide { grid-column: 1 / -1; }
.stat-card-n { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--green); display: block; line-height: 1; margin-bottom: 6px; }
.stat-card-l { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* CONTENT */
.content-bg { background: var(--content-bg); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); transition: var(--transition); }
.modules-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 36px; }
.module-card { background: var(--mod-bg); border: 0.5px solid var(--border); border-radius: 12px; padding: 20px 18px; transition: border-color 0.2s, var(--transition); }
.module-card:hover { border-color: var(--border-green); }
.mod-icon { width: 32px; height: 32px; background: rgba(0,229,160,0.08); border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.mod-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.mod-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* TESTIMONIALS */
.reviews-section { overflow: hidden; padding: 80px 0; position: relative; }
.reviews-section::before,
.reviews-section::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.reviews-section::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.reviews-section::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.reviews-header { text-align: center; padding: 0 24px; margin-bottom: 48px; }
.reviews-track { display: flex; gap: 20px; width: max-content; animation: scroll-left 32s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes scroll-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.review-card { background: var(--review-bg); border: 0.5px solid var(--border); border-radius: 14px; padding: 24px 22px; width: 280px; flex-shrink: 0; transition: var(--transition); }
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.star { width: 14px; height: 14px; fill: var(--green); }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; color: #080a0a; background: var(--green); flex-shrink: 0; }
.review-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; color: var(--white); }
.review-handle { font-size: 12px; color: var(--muted); }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.plan-card { background: var(--plan-bg); border: 0.5px solid var(--plan-border); border-radius: 16px; padding: 30px 26px; position: relative; transition: var(--transition); }
.plan-card.featured { border-color: var(--green); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: #080a0a; font-size: 10px; font-weight: 700; padding: 4px 14px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.plan-name { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 500; margin-bottom: 12px; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 20px; color: var(--muted); font-weight: 400; }
.plan-billing { font-size: 12px; color: var(--muted); margin-bottom: 22px; }
.plan-divider { border: none; border-top: 0.5px solid var(--divider); margin: 18px 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.plan-feature { font-size: 13px; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.plan-feature.on { color: var(--text); }
.feat-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--muted2); margin-top: 6px; flex-shrink: 0; }
.feat-dot.on { background: var(--green); }
.plan-btn { display: block; text-align: center; width: 100%; margin-top: 24px; padding: 13px; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s; }
.plan-btn.outline { background: transparent; color: var(--muted); border: 0.5px solid var(--muted2); }
.plan-btn.outline:hover { color: var(--text); border-color: #888; }
.plan-btn.solid { background: var(--green); color: #080a0a; font-weight: 600; }
.plan-btn.solid:hover { opacity: 0.85; }

.footer { border-top: 0.5px solid var(--border); padding: 36px 24px; text-align: center; font-size: 12px; color: var(--footer-color); line-height: 1.8; transition: var(--transition); }

/* i18n hidden */
[data-lang="fr"] .en { display: none; }
[data-lang="en"] .fr { display: none; }

@media (max-width: 720px) {
  .about-grid, .modules-grid, .pricing-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  nav { padding: 0 16px; }
  .toggle-pill { gap: 1px; }
  .toggle-btn { padding: 5px 8px; font-size: 11px; }
}

  /* POUR QUI */
  .pq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .pq-col {
    border-radius: 14px;
    padding: 28px 24px;
    border: 0.5px solid var(--border);
  }

  .pq-yes {
    background: rgba(0,229,160,0.04);
    border-color: rgba(0,229,160,0.2);
  }

  .pq-no {
    background: rgba(255,255,255,0.02);
    border-color: var(--border);
  }

  .pq-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
  }

  .pq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .pq-yes .pq-icon {
    background: var(--green);
    color: #080a0a;
  }

  .pq-no .pq-icon {
    background: var(--muted2);
    color: var(--muted);
  }

  .pq-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pq-list li {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
  }

  .pq-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--muted2);
    font-size: 12px;
  }

  .pq-yes .pq-list li { color: #999; }

  @media (max-width: 720px) {
    .pq-grid { grid-template-columns: 1fr; }
  }


  /* FAQ */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-item {
    background: var(--surface);
    border: 0.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
  }

  .faq-item.open {
    border-color: var(--border-green);
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--green); }

  .faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--muted2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.2s;
  }

  .faq-item.open .faq-arrow {
    transform: rotate(45deg);
    background: var(--green);
  }

  .faq-arrow svg { fill: var(--muted); width: 10px; height: 10px; }
  .faq-item.open .faq-arrow svg { fill: #080a0a; }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    padding: 0 24px;
  }

  .faq-a-inner {
    padding-bottom: 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
    border-top: 0.5px solid var(--border);
    padding-top: 16px;
  }

  .faq-item.open .faq-a {
    max-height: 500px;
  }


  /* SOCIAL PROOF - TESTIMONIALS WITH SCREENSHOTS */
  .proof-section { padding: 80px 0; overflow: hidden; }
  .proof-header { text-align: center; padding: 0 24px; margin-bottom: 48px; }

  .proof-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll-left 36s linear infinite;
  }
  .proof-track:hover { animation-play-state: paused; }

  .proof-img-card {
    flex-shrink: 0;
    width: 220px;
    border-radius: 14px;
    overflow: hidden;
    border: 0.5px solid var(--border);
    position: relative;
  }

  .proof-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  
  


  


  /* RESULTS — stacked fan */
  .results-section {
    background: var(--surface);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding-bottom: 56px;
  }

  .explosion-wrap {
    position: relative;
    max-width: 860px;
    width: 90%;
    height: 620px;
    margin: 48px auto 0;
    overflow: visible;
    left: 50%;
    transform: translateX(-50%);
  }

  .ex-card {
    position: absolute;
    width: 160px;
    border-radius: 16px;
    overflow: hidden;
    border: 0.5px solid rgba(255,255,255,0.1);
    background: #0a0a0a;
    cursor: pointer;
    opacity: 0;
    animation: card-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.4s ease,
      border-color 0.3s ease,
      z-index 0s;
    will-change: transform;
    box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  }

  @keyframes card-rise {
    from { opacity: 0; transform: var(--from); }
    to   { opacity: 1; transform: var(--to); }
  }

  .ex-card:hover {
    transform: var(--to) translateY(-16px) scale(1.06) !important;
    box-shadow: 0 24px 48px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,229,160,0.35);
    border-color: rgba(0,229,160,0.5);
    z-index: 200 !important;
  }

  .ex-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  .ex-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,229,160,0.95);
    color: #080a0a;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }

  .ex-card:hover .ex-badge { opacity: 1; }

  .results-disclaimer {
    text-align: center;
    font-size: 11px;
    color: var(--muted2);
    margin-top: 16px;
    line-height: 1.6;
    padding: 0 24px;
  }


  /* IDENTITY SECTION */
  .identity-section {
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    overflow: hidden;
  }

  .identity-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 520px;
  }

  .identity-photo {
    position: relative;
    overflow: hidden;
  }

  .identity-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.9);
  }

  .identity-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--surface));
    pointer-events: none;
  }

  .identity-content {
    padding: 64px 48px 64px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .identity-ticker-wrap {
    overflow: hidden;
    margin: 32px 0;
    position: relative;
  }

  .identity-ticker-wrap::before,
  .identity-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
  }
  .identity-ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--surface), transparent); }
  .identity-ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--surface), transparent); }

  .identity-ticker {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker-scroll 20s linear infinite;
  }

  @keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .ticker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    white-space: nowrap;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .ticker-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
  }

  .identity-body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
  }

  .identity-body strong {
    color: var(--text);
    font-weight: 500;
  }

  .identity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
  }

  .identity-tag {
    background: var(--green-dim);
    border: 0.5px solid var(--border-green);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--green);
    letter-spacing: 0.04em;
  }

  @media (max-width: 720px) {
    .identity-inner { grid-template-columns: 1fr; }
    .identity-photo { height: 300px; }
    .identity-photo::after { background: linear-gradient(to top, var(--surface), transparent); }
    .identity-content { padding: 40px 24px; }
  }


  /* IDENTITY SECTION */
  .identity-section {
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 80px 24px;
  }

  .identity-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }

  .identity-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--green);
    box-shadow: 0 0 0 4px rgba(0,229,160,0.12);
    flex-shrink: 0;
  }

  .identity-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  .identity-name {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }

  .identity-role {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 0;
  }

  .typewriter-wrap {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .typewriter {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.01em;
  }

  .typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: var(--green);
    margin-left: 3px;
    vertical-align: middle;
    animation: blink-cursor 0.75s step-end infinite;
  }

  @keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  .identity-body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 560px;
  }

  .identity-body strong {
    color: var(--text);
    font-weight: 500;
  }

  .identity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .identity-tag {
    background: var(--green-dim);
    border: 0.5px solid var(--border-green);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--green);
  }


  /* RESULTS — minimal grid */
  .results-section {
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 80px 24px;
    background: var(--surface);
  }

  .res-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    max-width: 1040px;
    margin: 40px auto 0;
  }

  .res-card {
    background: var(--black);
    border: 0.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
    cursor: default;
  }

  .res-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    border-color: rgba(0,229,160,0.25);
  }

  .res-img-wrap {
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: #000;
  }

  .res-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
  }

  .res-card:hover .res-img-wrap img {
    transform: scale(1.03);
  }

  .res-info {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 0.5px solid var(--border);
  }

  .res-profit {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .res-label {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .res-disclaimer {
    text-align: center;
    font-size: 11px;
    color: var(--muted2);
    margin-top: 32px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 900px) {
    .res-grid { grid-template-columns: repeat(3, 1fr); }
  }

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