/* Parade — Landing · PARADE · Editorial Fencing */

:root {
  /* PARADE palette */
  --ivory: #f3eee4;
  --paper: #fbf8f2;
  --ink: #071a36;
  --cobalt: #1646a0;
  --vermilion: #d84a27;
  --stone: #aaa399;

  --line: rgba(7, 26, 54, 0.12);
  --line-strong: rgba(7, 26, 54, 0.22);
  --selection: rgba(7, 26, 54, 0.06);
  --focus: #d84a27;

  /* Aliases */
  --canvas: var(--ivory);
  --paper-warm: var(--ivory);
  --paper-deep: #e7e1d5;
  --ink-secondary: #2a3d5c;
  --ink-muted: var(--stone);
  --ink-inverse: var(--paper);
  --vermilion-pressed: #b83c1f;
  --vermilion-soft: rgba(216, 74, 39, 0.12);

  --bg-base: var(--ivory);
  --bg-elevated: var(--paper);
  --bg-soft: var(--paper-deep);
  --bg-tension: #ebe5d9;
  --bg-tension-strong: #e0d9cb;
  --text-primary: var(--ink);
  --text-secondary: var(--ink-secondary);
  --text-muted: var(--stone);
  --text-inverse: var(--paper);
  --accent: var(--vermilion);
  --accent-strong: var(--vermilion-pressed);
  --accent-press: #9e341b;
  --accent-soft: var(--vermilion-soft);
  --accent-breath: rgba(216, 74, 39, 0.22);
  --state-used: var(--cobalt);
  --filet: var(--vermilion);

  --font-display: "Bodoni Moda", "Didot", "Bodoni MT", Georgia, serif;
  --font-ui: Inter, system-ui, -apple-system, sans-serif;

  --radius: 8px;
  --radius-hero: 4px;
  --radius-reco: 8px;
  --radius-photo: 4px;
  --radius-phone: 24px;
  --radius-carte: 18px;
  --pad: 24px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --rise: 260ms;
  --control-h: 54px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 400;
  background: var(--ivory);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input {
  font: inherit;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.lock-banner {
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  background: var(--bg-elevated);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.lock-banner a {
  font-weight: 500;
  color: var(--accent);
}

/* ——— Reveal ——— */

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--rise) var(--ease), transform var(--rise) var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ——— Header ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(243, 238, 228, 0.9);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  display: block;
  border: 0;
  background: transparent;
}

/* ——— Hero full-bleed (aligné app / Editorial Fencing) ——— */

.hero-bleed {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bleed__media {
  position: absolute;
  inset: 0;
}

.hero-bleed__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.86) contrast(1.04);
}

.hero-bleed__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(7, 26, 54, 0.9) 0%,
      rgba(7, 26, 54, 0.62) 40%,
      rgba(7, 26, 54, 0.35) 72%,
      rgba(7, 26, 54, 0.5) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 26, 54, 0.35) 0%,
      rgba(7, 26, 54, 0.45) 45%,
      rgba(7, 26, 54, 0.72) 100%
    );
}

.hero-bleed__content {
  position: relative;
  z-index: 2;
  padding: 72px 0 56px;
  max-width: 40rem;
  width: 100%;
}

.hero-bleed__brand {
  display: inline-flex;
  align-items: center;
  margin: 0 0 24px;
  line-height: 0;
}

.hero-bleed__brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

.hero-bleed__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--paper);
  max-width: 16ch;
}

.hero-bleed__dek {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.45;
  color: rgba(251, 248, 242, 0.82);
  max-width: 28rem;
}

.hero-bleed__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-bleed .btn--primary {
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-bleed .btn--primary:hover {
  background: #fff;
  color: var(--ink);
}

.hero-bleed .btn--primary:active {
  background: var(--ivory);
}

.hero-bleed .btn--ghost {
  margin-top: 0;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  color: var(--paper);
  border-color: rgba(251, 248, 242, 0.45);
}

.hero-bleed .btn--ghost:hover {
  background: rgba(251, 248, 242, 0.1);
  border-color: rgba(251, 248, 242, 0.7);
  color: var(--paper);
  text-decoration: none;
}

@media (max-width: 720px) {
  .hero-bleed {
    justify-content: center;
    text-align: center;
  }

  .hero-bleed__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 56px 0 48px;
    max-width: none;
  }

  .hero-bleed__brand {
    justify-content: center;
  }

  .hero-bleed__title {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bleed__dek {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-bleed__cta {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 280px);
  }

  .hero-bleed__cta .btn {
    width: 100%;
  }

  .hero-bleed__veil {
    background:
      linear-gradient(
        180deg,
        rgba(7, 26, 54, 0.55) 0%,
        rgba(7, 26, 54, 0.58) 40%,
        rgba(7, 26, 54, 0.78) 100%
      );
  }
}

.drill-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.drill-who__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(248, 247, 243, 0.22);
  flex-shrink: 0;
}

.drill-who .scenario-demo__who {
  margin: 0;
}

.brand__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.brand__review {
  display: none;
}

.brand__word {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--ink);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-folio {
  display: none;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (min-width: 720px) {
  .header-folio {
    display: inline;
  }
}

.header-cta {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.header-cta:hover {
  color: var(--vermilion);
  text-decoration: none;
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--control-h);
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.btn:active {
  transform: scale(0.99);
}

/* Editorial Action — bleu encre */
.btn--primary {
  background: var(--ink);
  color: var(--paper);
}

.btn--primary:hover {
  background: #0c274d;
  text-decoration: none;
}

.btn--primary:active {
  background: #04101f;
}

/* Critique / Retry — vermillon rare */
.btn--accent {
  background: var(--vermilion);
  color: var(--paper);
}

.btn--accent:hover {
  background: var(--vermilion-pressed);
  text-decoration: none;
}

.btn--accent:active {
  background: var(--accent-press);
}

.btn--full {
  width: 100%;
}

.btn--ghost {
  background: transparent;
  color: var(--text-inverse);
  border: 1px solid rgba(248, 247, 243, 0.35);
  margin-top: 12px;
}

.btn--ghost:hover {
  border-color: rgba(248, 247, 243, 0.7);
  text-decoration: none;
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn--secondary:hover {
  border-color: var(--ink);
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.wrap--narrow {
  max-width: 720px;
}

/* Scenario demo (hero) */
.scenario-demo {
  color: var(--text-inverse);
}

.scenario-demo__who {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 247, 243, 0.65);
}

.scenario-demo__line {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text-inverse);
}

.scenario-demo__prompt {
  margin: 18px 0 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #e8a399;
}

.scenario-demo__choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scenario-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(248, 247, 243, 0.22);
  border-radius: var(--radius);
  background: rgba(248, 247, 243, 0.06);
  color: rgba(248, 247, 243, 0.92);
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.scenario-choice:hover:not(:disabled) {
  border-color: rgba(192, 68, 53, 0.7);
  background: rgba(192, 68, 53, 0.15);
}

.scenario-choice.is-selected {
  border-color: var(--accent);
  background: rgba(192, 68, 53, 0.2);
}

.scenario-choice__key {
  flex-shrink: 0;
  font-weight: 500;
  color: #e8a399;
}

.scenario-demo__reaction {
  margin-top: 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.scenario-demo__reaction.is-in {
  opacity: 1;
  transform: none;
}

.scenario-demo__insight {
  margin: 14px 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(248, 247, 243, 0.72);
}

.scenario-demo__caption {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-phone--hero .product-stage.scenario-demo {
  min-height: 380px;
  max-height: 480px;
  overflow-y: auto;
}

.problem-list {
  margin: 0 0 28px;
  display: grid;
  gap: 20px;
}

.problem-list p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.problem-list span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text-secondary);
}

.quiet-quotes {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.quiet-quotes li {
  padding-left: 14px;
  border-left: 2px solid var(--accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.35;
}

.cred-note {
  margin: 28px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 36rem;
}

.cred-sources {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.cred-sources__label {
  margin: 0 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cred-sources__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: cred-src;
  display: grid;
  gap: 0;
}

.cred-sources__list li {
  counter-increment: cred-src;
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 12px 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cred-sources__list li::before {
  content: counter(cred-src, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cobalt, #1646A0);
  letter-spacing: 0.02em;
}

.cred-sources__list a {
  color: var(--ink, #071A36);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cred-sources__list a:hover {
  color: var(--cobalt, #1646A0);
  border-bottom-color: var(--cobalt, #1646A0);
}

.cred-sources__pmid {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
  text-decoration: none;
}

.cred-sources .cred-note {
  margin-top: 20px;
}

@media (max-width: 640px) {
  .cred-sources__list li {
    grid-template-columns: 2rem 1fr;
  }

  .cred-sources__pmid {
    grid-column: 2;
    margin-top: -6px;
  }
}

.pain-rail {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.pain-rail li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.pain-rail__hook {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.pain-rail__tag {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.skill-rail {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px;
}

.skill-rail li {
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}

.skill-rail h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.skill-rail p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.45;
}

.cred-points {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.cred-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.35;
  display: grid;
  gap: 4px;
}

.cred-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.cred-points strong {
  color: var(--ink, #071A36);
  font-weight: 600;
}

.cred-points span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.how-steps--three {
  max-width: 40rem;
}

/* ——— Photos ——— */

.photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.photo-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
  display: block;
}

.kenburns {
  transform: scale(1);
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.02);
  }
}

.photo-frame__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 23, 22, 0.08) 0%,
    rgba(23, 23, 22, 0.35) 55%,
    rgba(23, 23, 22, 0.62) 100%
  );
  pointer-events: none;
}

.photo-frame__veil--soft {
  background: linear-gradient(
    180deg,
    rgba(23, 23, 22, 0.15) 0%,
    rgba(23, 23, 22, 0.45) 100%
  );
}

/* ——— Filet ——— */

.filet-block {
  position: relative;
  padding-left: 16px;
}

.filet-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 2px;
  background: var(--filet);
  border-radius: 1px;
}

.filet-block--ink::before {
  background: var(--text-primary);
}

.filet-block--saved::before {
  background: var(--state-used);
}

.scene-line__who {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ——— Sections ——— */

.section {
  padding: 88px 0;
}

.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0 0 36px;
  max-width: 18ch;
}

.section__title--display {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  max-width: 14ch;
  font-weight: 600;
}

.section__title--stack {
  max-width: none;
  line-height: 1.12;
}

.section__title:has(+ .section__lead) {
  margin-bottom: 14px;
}

.section__lead {
  margin: 0 0 40px;
  max-width: 40rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.5;
}

.section__outro {
  margin: 36px 0 0;
  max-width: 38rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ——— Profils adversaires ——— */

.section--profiles {
  background: var(--bg-tension);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profiles-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

@media (min-width: 800px) {
  .profiles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .profiles-grid--three {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.profiles-grid--three .profile {
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 800px) {
  .profiles-grid--three .profile {
    padding: 26px 20px;
    border-right: 1px solid var(--line);
  }

  .profiles-grid--three .profile:last-child {
    border-right: 0;
  }

  .profiles-grid--three .profile:nth-child(odd),
  .profiles-grid--three .profile:nth-child(even) {
    padding-left: 20px;
    padding-right: 20px;
    border-right: 1px solid var(--line);
  }

  .profiles-grid--three .profile:last-child {
    border-right: 0;
  }
}

.profile {
  --profile: #6b6560;
  --profile-soft: rgba(107, 101, 96, 0.12);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

/* Teintes adversaires — soft, éditoriales (charte : jamais arc-en-ciel) */
.profile--claire {
  --profile: var(--ink);
  --profile-soft: rgba(7, 26, 54, 0.08);
}

.profile--marc {
  --profile: var(--cobalt);
  --profile-soft: rgba(22, 70, 160, 0.1);
}

.profile--helene {
  --profile: var(--ink);
  --profile-soft: rgba(7, 26, 54, 0.08);
}

.profile--alex {
  --profile: var(--ink);
  --profile-soft: rgba(7, 26, 54, 0.08);
}

.profile--ines {
  --profile: var(--vermilion);
  --profile-soft: rgba(216, 74, 39, 0.1);
}

.profile--lea {
  --profile: var(--cobalt);
  --profile-soft: rgba(22, 70, 160, 0.1);
}

@media (min-width: 800px) {
  .profile:nth-child(odd) {
    padding-right: 28px;
    border-right: 1px solid var(--line);
  }

  .profile:nth-child(even) {
    padding-left: 28px;
  }
}

.profile__mono {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--profile);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.05rem;
  color: var(--profile);
  background: var(--profile-soft);
  flex-shrink: 0;
}

.profile__name {
  margin: 0 0 6px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.profile__archetype {
  font-weight: 400;
  color: var(--profile);
}

.profile__move {
  margin: 0 0 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.4;
}

.profile__quote {
  margin: 0;
  padding-left: 12px;
  border-left: 2px solid var(--profile);
  font-family: var(--font-ui);
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.35;
}

/* ——— Hero · magazine cover ——— */

.hero {
  padding: 20px 0 56px;
}

.hero--cover {
  position: relative;
}

.hero__grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

@media (min-width: 960px) {
  :root {
    --pad: 40px;
  }

  .hero--cover {
    min-height: calc(100svh - 72px);
    padding: 28px 0 64px;
    display: flex;
    align-items: center;
  }

  .hero__grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 48px;
    align-items: stretch;
    width: 100%;
  }

  .hero__grid--try {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(56px, 7vw, 96px);
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  :root {
    --pad: 56px;
  }
}

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.hero__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 6vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 11ch;
}

.hero__dek,
.hero__subtitle {
  margin: 0 0 32px;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-secondary);
  max-width: 30rem;
  line-height: 1.55;
}

.cover-media {
  margin: 0;
  position: relative;
  width: 100%;
  border-radius: var(--radius-hero);
  overflow: hidden;
  background: var(--paper-deep);
  aspect-ratio: 4 / 5;
}

@media (min-width: 960px) {
  .hero--cover .hero__visual {
    display: block;
    min-height: 100%;
  }

  .hero--cover .cover-media {
    height: 100%;
    min-height: 640px;
    max-height: none;
    aspect-ratio: auto;
  }
}

.cover-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(0.88) contrast(1.04);
  transition: opacity 0.35s var(--ease);
}

.cover-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 22, 20, 0.05) 0%,
    rgba(23, 22, 20, 0.15) 45%,
    rgba(23, 22, 20, 0.72) 100%
  );
  pointer-events: none;
}

.cover-media__cap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--ink-inverse);
}

.cover-media__issue {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.cover-media__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.88;
}

.hero-contexts {
  margin: 0;
  max-width: 36rem;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.hero-contexts__label {
  margin: 16px 0 4px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-contexts__segments {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0 0 22px;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.hero-contexts__segments::-webkit-scrollbar {
  display: none;
}

.hero-contexts__seg {
  appearance: none;
  flex: 0 0 auto;
  min-width: max-content;
  min-height: 44px;
  padding: 12px 14px;
  margin-bottom: -1px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  scroll-snap-align: start;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.hero-contexts__seg:hover {
  color: var(--ink);
  background: transparent;
}

.hero-contexts__seg:focus-visible {
  outline: 2px solid var(--vermilion);
  outline-offset: 2px;
}

.hero-contexts__seg.is-active {
  color: var(--ink);
  background: transparent;
  border-bottom-color: var(--vermilion);
  box-shadow: none;
}

.hero-contexts__panel {
  --profile: #6b6560;
  display: none;
}

.hero-contexts__panel.is-active {
  display: block;
  animation: hero-context-in 240ms var(--ease);
}

@keyframes hero-context-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-contexts__panel.is-active {
    animation: none;
  }
}

.hero-contexts__meta {
  margin: 0 0 10px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-contexts__photo {
  display: none;
}

.hero-contexts__who {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-contexts__who span {
  color: var(--profile);
  font-weight: 500;
}

.hero-contexts__line {
  margin: 0 0 10px;
  padding-left: 14px;
  border-left: 2px solid var(--vermilion);
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero-contexts__note {
  margin: 0 0 20px;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--ink-muted);
  padding-left: 14px;
}

.hero-contexts__cta {
  text-decoration: none;
  display: inline-flex;
  justify-content: space-between;
  min-width: min(100%, 280px);
}

.hero-contexts__cta:hover {
  text-decoration: none;
}

.hero-contexts__cta.btn--ghost,
.hero-contexts__cta.btn--secondary,
.hero-contexts__cta.btn--primary {
  margin-top: 0;
}

@media (max-width: 640px) {
  .hero-contexts__seg {
    flex: 0 0 auto;
  }
}

.section--try {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--try .section__lead {
  max-width: 34rem;
  margin-bottom: 28px;
}

.proof-strip--folio {
  background: transparent;
  border-block: 1px solid var(--line);
  padding: 22px 0;
}

.folio-num {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--vermilion);
  margin-right: 8px;
}

.proof-strip--folio p {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.epigraph {
  padding: 48px 0 44px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.epigraph__figure {
  margin: 0 auto;
  max-width: 36rem;
  text-align: center;
}

.epigraph blockquote {
  margin: 0;
}

.epigraph blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.epigraph figcaption {
  margin-top: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.press-strip {
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.press-strip__label {
  margin: 0 0 14px;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.press-row {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
}

.press-row--section {
  justify-content: flex-start;
  margin: 8px 0 8px;
}

.press-mark {
  display: inline-block;
  color: var(--ink);
  opacity: 0.72;
  line-height: 1;
  white-space: nowrap;
}

.press-mark--nyt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  font-style: italic;
}

.press-mark--mag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.press-mark--nice {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
}

.press-mark--inline {
  font-size: inherit;
  letter-spacing: inherit;
  opacity: 0.85;
}

.press-mark--nyt.press-mark--inline {
  font-size: 0.95rem;
}

.press-mark--mag.press-mark--inline {
  font-size: 0.88rem;
}

.press-mark--nice.press-mark--inline {
  font-size: 0.72rem;
}

.cred-sources__list a:hover .press-mark {
  opacity: 1;
  color: var(--cobalt);
}

.hero-pressure {
  display: none;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  opacity: 0.35;
  transition: opacity 0.6s var(--ease);
}

.hero__cta.is-ready {
  opacity: 1;
}

.hero__bullets {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-width: 34rem;
}

.hero__bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.4;
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-capture {
  display: flex;
  flex-direction: column;
  max-width: 440px;
  margin-top: 8px;
}

.capture-panel {
  border-top: 3px solid var(--accent);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.98) 0%, rgba(243, 238, 228, 0.92) 100%);
  padding: 22px 20px 18px;
}

.capture-panel__kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.capture-panel__hook {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.capture-label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-capture__form {
  display: grid;
  gap: 10px;
}

.hero-capture__form--stack {
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-capture__form--stack .capture-label {
  margin-bottom: 8px;
}

.hero-capture__form--stack input[type="email"] {
  margin-bottom: 12px;
}

.hero-capture__form--stack .capture-panel__cta {
  margin-bottom: 0;
}

.hero-capture__form--stack .form-error {
  margin-top: 10px;
}

.hero-capture__form input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color 160ms var(--ease);
}

.hero-capture__form input[type="email"]::placeholder {
  color: var(--stone);
}

.hero-capture__form input[type="email"]:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(7, 26, 54, 0.08);
}

.hero-capture__form .btn,
.capture-panel__cta {
  width: 100%;
  min-height: 56px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.capture-panel__next {
  margin: 12px 0 0;
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--ink-secondary);
}

.hero__micro {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--stone);
}

.capture-panel .trust-row {
  width: 100%;
  justify-content: flex-start;
}

.trust-row--center {
  justify-content: center;
}

.trust-row__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row__icon {
  flex-shrink: 0;
  color: var(--stone);
  opacity: 0.9;
}

.trust-row__sep {
  color: var(--line-strong);
  font-weight: 400;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Anti-bot honeypot — hors écran, non focusable */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.turnstile-slot {
  margin: 0 0 12px;
  min-height: 0;
}

.turnstile-slot:empty {
  display: none;
}

.hero-capture__form--stack .turnstile-slot {
  margin: 0 0 12px;
}

/* Proof strip */
.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-elevated);
  padding: 18px 0;
}

.proof-strip__grid {
  display: grid;
  gap: 12px 24px;
  text-align: center;
}

@media (min-width: 720px) {
  .proof-strip__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proof-strip p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.proof-strip strong {
  color: var(--text-primary);
  font-weight: 500;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

@media (min-width: 960px) {
  .hero__visual {
    justify-content: flex-end;
  }

  .section--try .hero__visual {
    justify-content: center;
    padding-inline-start: 12px;
  }
}

.product-phone--hero {
  max-width: 300px;
  margin: 0;
}

@media (min-width: 960px) {
  .product-phone--hero {
    max-width: 340px;
  }
}

.product-phone--hero .product-phone__bezel {
  max-height: 640px;
}

/* ——— Phone mock = vrai écran Drill (Editorial Fencing) ——— */

.product-phone--app {
  filter: none;
}

.product-phone--app .product-phone__bezel {
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--ink);
  aspect-ratio: 9 / 19.2;
  max-height: 640px;
  overflow: hidden;
  padding: 12px 0 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.62) 0%,
      rgba(251, 248, 242, 0.78) 38%,
      rgba(243, 238, 228, 0.88) 100%
    );
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 -1px 0 rgba(7, 26, 54, 0.05) inset,
    0 0 0 1px rgba(7, 26, 54, 0.08),
    0 18px 40px rgba(7, 26, 54, 0.12),
    0 40px 72px rgba(7, 26, 54, 0.1);
}

.product-phone--app .product-phone__bezel::before {
  display: block;
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 33px;
  border: 1px solid rgba(7, 26, 54, 0.06);
  background: rgba(243, 238, 228, 0.55);
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.product-phone--app .product-phone__status,
.product-phone--app .app-drill {
  position: relative;
  z-index: 1;
}

.product-phone__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 26px 12px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.product-phone__island {
  width: 92px;
  height: 24px;
  border-radius: 16px;
  background: rgba(7, 26, 54, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.app-drill {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px 22px 10px;
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  color: var(--ink);
}

.app-drill__meta {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.pressure-quote {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: stretch;
}

.pressure-quote__rail {
  width: 1px;
  background: var(--line-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  gap: 16px;
}

.pressure-quote__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-left: -2px;
  background: transparent;
  flex-shrink: 0;
}

.pressure-quote__dot.is-active {
  background: var(--vermilion);
}

.pressure-quote__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.pressure-quote__step {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--stone);
}

.pressure-quote__line {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.app-drill__choices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.choice-row {
  appearance: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.2s ease;
}

.choice-row:hover:not(:disabled):not(.is-selected) {
  background: var(--selection);
}

.choice-row.is-selected {
  background: var(--ink);
  border-color: var(--ink);
}

.choice-row.is-selected .choice-row__num,
.choice-row.is-selected .choice-row__text {
  color: var(--paper);
}

.choice-row.is-dimmed {
  opacity: 0.28;
}

.choice-row__num {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--stone);
}

.choice-row__text {
  flex: 1;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--ink);
}

.app-debrief {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.app-debrief[hidden],
.app-drill__choices[hidden],
.pressure-quote[hidden] {
  display: none !important;
}

.app-debrief.is-in {
  opacity: 1;
  transform: none;
}

.app-debrief__kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vermilion);
}

.app-debrief__tip {
  padding: 14px 14px 16px;
  background: var(--selection);
  border-left: 3px solid var(--vermilion);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-debrief__tip-label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vermilion);
}

.app-debrief__takeaway {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.app-debrief__label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.45;
}

.app-debrief__body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink);
  opacity: 0.85;
}

.app-btn {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.app-btn--accent {
  background: var(--vermilion);
  color: var(--paper);
}

.app-btn--accent:hover {
  background: var(--vermilion-pressed);
}

.product-phone--app .scenario-demo__caption {
  color: var(--stone);
  font-size: 0.82rem;
}

@media (prefers-reduced-motion: reduce) {
  .app-debrief {
    transition: none;
  }
}

/* Fight card + avatar (téléphone) */
.fight-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fight-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fight-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 18%;
  flex-shrink: 0;
  background: var(--bg-soft);
  display: block;
  border: 1px solid var(--line);
}

.fight-card__meta {
  min-width: 0;
}

.fight-card__name {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.fight-card__role {
  margin: 2px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--profile, #a45c4a);
}

.fight-card__quote {
  margin: 0;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  white-space: nowrap;
}

.photo-frame--hero {
  aspect-ratio: 4 / 5;
  width: min(100%, 520px);
  border-radius: var(--radius-hero);
}

.photo-frame--hero .photo-frame__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame--hero .photo-frame__veil {
  background: linear-gradient(
    180deg,
    rgba(23, 23, 22, 0.12) 0%,
    rgba(23, 23, 22, 0.45) 42%,
    rgba(23, 23, 22, 0.78) 78%,
    rgba(23, 23, 22, 0.88) 100%
  );
}

.scene-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}

.scene-overlay .scene-line__who {
  color: rgba(248, 247, 243, 0.88);
}

.scene-line {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--rise) var(--ease), transform var(--rise) var(--ease);
}

.scene-line.is-in {
  opacity: 1;
  transform: none;
}

.scene-line__text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.3;
  color: var(--text-inverse);
  letter-spacing: -0.015em;
  max-width: 22ch;
  text-shadow: 0 1px 12px rgba(23, 23, 22, 0.35);
}

.scene-line:not(.scene-line--user) .scene-line__text {
  white-space: nowrap;
  max-width: none;
}

.scene-line--user .scene-line__text {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.scene-debrief {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--rise) var(--ease), transform var(--rise) var(--ease);
  padding-top: 8px;
  border-top: 1px solid rgba(248, 247, 243, 0.35);
}

.scene-debrief.is-in {
  opacity: 1;
  transform: none;
}

.scene-debrief__label {
  margin: 0 0 6px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 247, 243, 0.82);
}

.scene-debrief__score {
  margin: 0 0 6px;
  color: var(--text-inverse);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  text-shadow: 0 1px 10px rgba(23, 23, 22, 0.3);
}

.scene-debrief__style {
  margin: 0;
  color: rgba(248, 247, 243, 0.92);
  font-size: 0.9rem;
  line-height: 1.35;
}

/* ——— Reconnaissance ——— */

.reco-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 800px) {
  .reco-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

.reco-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.photo-frame--reco {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--radius-reco);
}

.photo-frame--reco .photo-frame__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reco-card:hover .photo-frame__img {
  transform: scale(1.01);
}

.reco-card__caption {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

/* ——— Product demo (phone) ——— */

.section--product {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-layout {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr minmax(280px, 340px);
    gap: 56px;
    align-items: center;
  }
}

.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.how-steps li:first-child {
  border-top: 1px solid var(--line);
}

.how-steps__num {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.25rem;
  color: var(--accent);
  line-height: 1.2;
  padding-top: 2px;
}

.how-steps h3 {
  margin: 0 0 6px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.how-steps p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.45;
}

.product-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
  filter: drop-shadow(0 28px 50px rgba(23, 23, 22, 0.22));
}

.product-phone__bezel {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  max-height: 640px;
  border: 3px solid #2a2a28;
  border-radius: var(--radius-phone);
  padding: 14px 12px 18px;
  position: relative;
  box-shadow: none;
  overflow: hidden;
  color: var(--text-inverse);
  background:
    radial-gradient(ellipse 80% 50% at 50% 18%, rgba(192, 68, 53, 0.38), transparent 55%),
    linear-gradient(165deg, #3a3532 0%, #1c1b19 45%, #121110 100%);
}

.product-phone__bezel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(23, 23, 22, 0.12) 0%,
    rgba(23, 23, 22, 0.28) 48%,
    rgba(23, 23, 22, 0.55) 100%
  );
  z-index: 0;
}

.product-phone__notch,
.product-stage {
  position: relative;
  z-index: 1;
}

.product-phone__notch {
  width: 96px;
  height: 18px;
  margin: 4px auto 18px;
  background: rgba(248, 247, 243, 0.92);
  border-radius: 10px;
  opacity: 0.9;
}

.product-stage {
  min-height: 280px;
  position: relative;
  padding: 8px 10px 0;
}

.product-phone .product-kicker {
  color: #e8a399;
}

.product-phone .fight-card__name,
.product-phone .product-line--user,
.product-phone .product-scores__value,
.product-phone .fight-card__quote {
  color: var(--text-inverse);
}

.product-phone .fight-card__role {
  color: #e8a399;
}

.product-phone .product-line,
.product-phone .product-scores__label {
  color: rgba(248, 247, 243, 0.72);
}

.product-phone .fight-avatar {
  border-color: rgba(248, 247, 243, 0.22);
}

.product-phone .fight-card__quote {
  border-left-color: var(--accent);
}

.product-phone .filet-block--ink::before {
  background: rgba(248, 247, 243, 0.85);
}

.product-phone .filet-block::before {
  background: var(--accent);
}

.product-stage__panel {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.product-stage__panel.is-in {
  opacity: 1;
  transform: none;
}

.product-stage__panel[hidden] {
  display: none;
}

.product-stage__panel:not([hidden]) {
  display: block;
}

.product-kicker {
  margin: 0 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.product-line {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.product-line--user {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--text-primary);
  letter-spacing: -0.015em;
}

.product-scores {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-scores li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-scores__value {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
}

.product-scores__label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.35;
}

.la-carte {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-base) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-carte);
  padding: 22px 18px 16px;
}

.la-carte__brand {
  margin: 18px 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
}

.product-saved-meta {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--state-used);
}

.product-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.product-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line-strong);
  transition: background 0.3s ease;
}

.product-dots span.is-active {
  background: var(--accent);
}

/* ——— Styles ——— */

.styles-stage {
  display: grid;
  gap: 24px;
}

.photo-frame--styles {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--radius-photo);
}

.photo-frame--styles .photo-frame__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.styles-prompt {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 2;
}

.styles-prompt__text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--text-inverse);
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.styles-prompt .scene-line__who {
  color: rgba(248, 247, 243, 0.7);
}

.styles-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.styles-tab {
  appearance: none;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.styles-tab:hover {
  color: var(--text-primary);
}

.styles-tab.is-active {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: transparent;
}

.styles-tabs__line {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  min-height: 2.6em;
}

.styles-tabs__when {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.styles-tabs__panel.is-swap .styles-tabs__line,
.styles-tabs__panel.is-swap .styles-tabs__when {
  animation: fade-rise var(--rise) var(--ease);
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Gallery situations (magazine) ——— */

.gallery {
  display: grid;
  gap: 14px;
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
  }

  .gallery__hero {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .gallery__item:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery__item:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery__item--wide {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

.gallery .photo-frame {
  width: 100%;
  border-radius: var(--radius-photo);
}

.gallery__hero .photo-frame {
  aspect-ratio: 4 / 5;
}

.gallery__item .photo-frame {
  aspect-ratio: 1 / 1;
}

.gallery__item--wide .photo-frame {
  aspect-ratio: 21 / 9;
}

.gallery .photo-frame__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-inverse);
  letter-spacing: -0.015em;
}

.gallery article:hover .photo-frame__img {
  transform: scale(1.01);
}

/* ——— Why ——— */

.why-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

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

.why-col {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .why-col {
    padding: 36px 32px 36px 0;
    border-bottom: none;
  }

  .why-col + .why-col {
    border-left: 1px solid var(--line);
    padding-left: 32px;
  }
}

.why-col__icon {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.why-col--method .why-col__icon {
  color: var(--accent);
}

.why-col h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 500;
}

.why-col--method h3 {
  color: var(--accent);
}

.why-col p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 1rem;
}

/* ——— Manifesto bleed ——— */

.manifesto-bleed {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0;
}

.manifesto-bleed__photo {
  position: absolute;
  inset: 0;
}

.manifesto-bleed__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.03);
}

.manifesto-bleed__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(23, 23, 22, 0.2) 0%,
    rgba(23, 23, 22, 0.55) 100%
  );
}

.manifesto-bleed__content {
  position: relative;
  z-index: 2;
  padding: 64px 0 72px;
}

.manifesto-bleed .section__eyebrow {
  color: rgba(248, 247, 243, 0.7);
}

.manifesto-bleed__text {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-inverse);
  max-width: 16ch;
}

.mid-cta {
  margin: 40px 0 0;
  text-align: center;
}

/* Podium */
.section--podium {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
}

.podium-grid {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

@media (min-width: 800px) {
  .podium-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.podium-card {
  padding: 22px 20px;
  border-top: 2px solid var(--accent);
  background: var(--bg-base);
}

.podium-card__tag {
  margin: 0 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.podium-card__text {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.podium-card__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(233, 232, 227, 0.92) 28%);
  backdrop-filter: blur(6px);
}

.sticky-cta[hidden] {
  display: none !important;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none !important;
  }
}

body:has(.sticky-cta:not([hidden])) {
  padding-bottom: 76px;
}

/* ——— Waitlist ——— */

.waitlist {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.waitlist--early {
  padding: 48px 0 72px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192, 68, 53, 0.08), transparent 70%),
    var(--bg-base);
}

.waitlist .section__eyebrow {
  text-align: center;
}

.waitlist__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.waitlist__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) saturate(0.7) brightness(1.15);
  transform: scale(1.08);
  opacity: 0.35;
}

.waitlist__card {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin-inline: auto;
  background: rgba(248, 247, 243, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  text-align: center;
}

.waitlist__card--hot {
  max-width: 480px;
  border-color: var(--line-strong);
  box-shadow: none;
  background: var(--bg-elevated);
  border-radius: 0;
}

.waitlist__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.15;
}

.waitlist__lead {
  margin: 0 0 28px;
  color: var(--text-secondary);
}

.waitlist__lead--compact {
  margin-bottom: 18px;
}

.waitlist__lead--final {
  margin-bottom: 0;
}

.form-stack {
  display: grid;
  gap: 14px;
  text-align: left;
}

.field label,
.field-set legend {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.field-set {
  border: 0;
  padding: 0;
  margin: 0;
}

.field input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text-primary);
  outline: none;
}

.field input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.choice-grid {
  display: grid;
  gap: 8px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  cursor: pointer;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.choice:hover {
  border-color: var(--text-muted);
}

.choice:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.choice input {
  accent-color: var(--accent);
}

.form-note {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.form-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: var(--state-used);
  font-weight: 500;
}

.form-trust__lock {
  flex-shrink: 0;
  color: var(--state-used);
}

.form-legal {
  margin: 12px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: center;
}

.form-legal a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-error {
  margin: 0;
  color: var(--accent);
  font-size: 0.88rem;
}

.form-panel[hidden] {
  display: none !important;
}

/* ——— Footer ——— */

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-footer__links a {
  color: var(--text-muted);
}

.site-footer .brand {
  gap: 10px;
}

.site-footer .brand__mark {
  width: 36px;
  height: 36px;
}

.site-footer .brand__word {
  font-size: 1.25rem;
  color: inherit;
  text-decoration: none;
}

/* ——— Reduced motion ——— */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .kenburns,
  .reveal,
  .scene-line,
  .scene-debrief,
  .product-stage__panel,
  .styles-tabs__panel.is-swap .styles-tabs__line,
  .styles-tabs__panel.is-swap .styles-tabs__when {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .scene-line,
  .scene-debrief,
  .product-stage__panel,
  .hero__cta,
  .hero-capture {
    opacity: 1 !important;
    transform: none !important;
  }
}
