/* =============================================
   MANGA PARADISE — Design System & Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --rouge-aka: #E94560;
  --deep-navy: #2C3E4F;
  --blanc: #FFFFFF;
  --or-gold: #F39C12;
  --vert: #27AE60;
  --bleu-b2b: #2C4A7C;
  --orange: #E67E22;
  --gris: #7F8C8D;
  --violet: #9B59B6;

  /* Tints */
  --tint-rouge: #FDEAEE;
  --tint-navy: #EAF0F6;
  --tint-vert: #EAFAF1;
  --tint-orange: #FEF9E7;

  /* Backgrounds */
  --bg-main: #2C3E4F;
  --bg-dark: #1A2D42;
  --bg-darkest: #0D1B2A;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.08);

  /* Typography */
  --font-display: 'Bebas Neue', cursive;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Container */
  --container-max: 1200px;
  --container-padding: clamp(16px, 4vw, 48px);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--blanc);
  background-color: var(--bg-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--rouge-aka);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--or-gold);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-weight: 700;
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--or-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.body-text {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.caption-text {
  font-size: 0.8125rem;
  color: var(--gris);
  line-height: 1.5;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* --- Section Spacing --- */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--rouge-aka);
  color: var(--blanc);
}

.btn-primary:hover {
  background: #d63a52;
  color: var(--blanc);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,69,96,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--blanc);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: var(--blanc);
  background: rgba(255,255,255,0.05);
  color: var(--blanc);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--or-gold);
  color: var(--bg-darkest);
}

.btn-gold:hover {
  background: #e08e0b;
  color: var(--bg-darkest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243,156,18,0.35);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blanc);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rouge-aka);
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: var(--blanc);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 20px !important;
  background: var(--rouge-aka) !important;
  color: var(--blanc) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #d63a52 !important;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blanc);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-darkest);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: var(--space-xl);
    transition: right var(--transition-normal);
    box-shadow: -8px 0 32px rgba(0,0,0,0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-normal);
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* --- Form Elements --- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: rgba(255,255,255,0.9);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--blanc);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gris);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--rouge-aka);
  background: rgba(255,255,255,0.08);
  outline: none;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select option {
  background: var(--bg-darkest);
  color: var(--blanc);
}

.form-inline {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.form-inline .form-input {
  flex: 1;
  min-width: 180px;
}

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-red {
  background: var(--rouge-aka);
  color: var(--blanc);
}

.badge-green {
  background: var(--vert);
  color: var(--blanc);
}

.badge-gold {
  background: var(--or-gold);
  color: var(--bg-darkest);
}

.badge-blue {
  background: var(--bleu-b2b);
  color: var(--blanc);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--bg-dark);
  padding: clamp(32px, 5vw, 56px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--or-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-item .stat-label {
  font-size: 0.875rem;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-main);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Screentone dots */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 8px
  );
  z-index: 1;
}

/* Speed lines */
.hero-speed-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  opacity: 0.04;
}

.hero-speed-lines::before,
.hero-speed-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 2px;
  background: var(--blanc);
}

.hero-speed-lines::before {
  transform: translate(-50%, -50%) rotate(15deg);
}

.hero-speed-lines::after {
  transform: translate(-50%, -50%) rotate(-15deg);
}

.hero-kanji {
  position: absolute;
  bottom: 5%;
  right: 5%;
  font-size: clamp(8rem, 20vw, 20rem);
  font-family: serif;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--rouge-aka);
  color: var(--blanc);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: var(--space-xl);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,69,96,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(233,69,96,0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: var(--space-lg);
  line-height: 1;
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-form {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-form .form-input {
  max-width: 200px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-top: var(--space-lg);
  transition: color var(--transition-fast);
}

.hero-scroll:hover {
  color: var(--blanc);
}

/* Hero on pages that don't use two-col layout */
.page-hero .hero-content {
  text-align: center;
  max-width: 800px;
}

/* --- Modules Grid --- (V3: 2x2 grid, see bottom) */

.module-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.module-card.otaku::before { background: var(--rouge-aka); }
.module-card.cosplayer::before { background: var(--violet); }
.module-card.gamer::before { background: var(--vert); }
.module-card.creatif::before { background: var(--orange); }

.module-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
}

.module-card.otaku:hover { box-shadow: 0 12px 40px rgba(233,69,96,0.15); }
.module-card.cosplayer:hover { box-shadow: 0 12px 40px rgba(155,89,182,0.15); }
.module-card.gamer:hover { box-shadow: 0 12px 40px rgba(39,174,96,0.15); }
.module-card.creatif:hover { box-shadow: 0 12px 40px rgba(230,126,34,0.15); }

.module-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.module-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.module-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* --- Timeline / Roadmap --- */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.1);
}

.timeline-item {
  position: relative;
  padding: 0 0 var(--space-xl) var(--space-lg);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid;
}

.timeline-dot.done {
  background: var(--vert);
  border-color: var(--vert);
}

.timeline-dot.current {
  background: var(--rouge-aka);
  border-color: var(--rouge-aka);
  box-shadow: 0 0 0 4px rgba(233,69,96,0.3);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(233,69,96,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(233,69,96,0); }
}

.timeline-dot.upcoming {
  background: transparent;
  border-color: var(--gris);
}

.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--gris);
}

/* --- Logo Carousel --- */
.carousel-container {
  overflow: hidden;
  padding: var(--space-xl) 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
  display: flex;
  gap: var(--space-3xl);
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 140px;
}

.carousel-item img {
  max-height: 50px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.carousel-item:hover img {
  opacity: 0.9;
}

.carousel-text-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.carousel-text-card .initial {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blanc);
  flex-shrink: 0;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  background: var(--bg-card-hover);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: var(--space-xl);
}

.blog-card-meta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 0.8125rem;
  color: var(--gris);
}

.blog-card-meta .cat {
  color: var(--rouge-aka);
  font-weight: 600;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.blog-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* --- Blog Skeleton Loading --- */
.blog-skeleton {
  pointer-events: none;
}

.blog-skeleton-image {
  width: 100%;
  aspect-ratio: 3/2;
  background: linear-gradient(110deg, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.8s ease infinite;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-skeleton-body {
  padding: var(--space-lg);
}

.blog-skeleton-line {
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(110deg, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.8s ease infinite;
  margin-bottom: 10px;
}

.blog-skeleton-line.w60 { width: 60%; }
.blog-skeleton-line.w80 { width: 80%; }
.blog-skeleton-line.w40 { width: 40%; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Article Detail View --- */
.article-detail {
  max-width: 760px;
  margin: 0 auto;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  background: none;
  border: none;
  color: var(--rouge-aka);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: var(--space-xl);
  transition: color var(--transition-fast);
}

.btn-back:hover { color: var(--blanc); }

.article-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
}

.article-cat {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(233,69,96,0.12);
  color: var(--rouge-aka);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-date {
  color: var(--gris);
  font-size: 0.8125rem;
}

.article-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  letter-spacing: 0.02em;
}

.article-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
  aspect-ratio: 3/2;
  object-fit: cover;
}

.article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--rouge-aka);
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin: var(--space-xl) 0 var(--space-sm);
  color: var(--blanc);
}

.article-body p {
  margin-bottom: var(--space-md);
}

.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: var(--space-md);
}

.article-body li {
  margin-bottom: 6px;
}

.article-body strong {
  color: var(--blanc);
  font-weight: 600;
}

.article-body blockquote {
  border-left: 3px solid var(--rouge-aka);
  padding-left: var(--space-md);
  color: var(--gris);
  margin: var(--space-lg) 0;
  font-style: italic;
}

.article-body code {
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.875rem;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  color: var(--gris);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* --- Newsletter Section --- */
.newsletter-section {
  background: var(--bg-darkest);
  text-align: center;
}

.newsletter-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-md);
}

.newsletter-section p {
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  font-size: 0.95rem;
  line-height: 1.6;
}

.newsletter-gdpr {
  font-size: 0.75rem;
  color: var(--gris);
  margin-top: var(--space-md);
}

/* --- Partner CTA --- */
.partner-cta {
  background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(233,69,96,0.15) 100%);
  text-align: center;
}

.partner-cta-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin: var(--space-xl) 0 var(--space-2xl);
  flex-wrap: wrap;
}

.partner-cta-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.partner-cta-icon span:first-child {
  font-size: 2rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-darkest);
  padding: var(--space-3xl) 0 var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gris);
  margin-bottom: var(--space-lg);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris);
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--rouge-aka);
  color: var(--blanc);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
  color: var(--blanc);
}

.footer-links a {
  display: block;
  padding: 4px 0;
  color: var(--gris);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--blanc);
}

.footer-contact p {
  color: var(--gris);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.footer-contact a {
  color: var(--rouge-aka);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: var(--gris);
}

.footer-bottom a {
  color: var(--gris);
}

.footer-bottom a:hover {
  color: var(--blanc);
}

.footer-legal-links {
  display: flex;
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Pricing Table --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
}

.pricing-card.popular {
  border-color: var(--rouge-aka);
  background: rgba(233,69,96,0.05);
}

.pricing-card.popular::before {
  content: 'POPULAIRE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rouge-aka);
  color: var(--blanc);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--or-gold);
  margin-bottom: var(--space-xs);
}

.pricing-price small {
  font-size: 0.9rem;
  color: var(--gris);
  font-family: var(--font-body);
}

.pricing-features {
  text-align: left;
  margin: var(--space-lg) 0;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--vert);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--blanc);
  text-align: left;
  background: none;
  border: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--rouge-aka);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding: 0 0 var(--space-lg);
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  padding: 140px 0 60px;
  background: var(--bg-main);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 8px
  );
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .two-col-reverse {
    direction: ltr;
  }
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Toast Notification --- */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--vert);
  color: var(--blanc);
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--blanc);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* --- Misc --- */
.text-center { text-align: center; }
.text-gold { color: var(--or-gold); }
.text-rouge { color: var(--rouge-aka); }
.text-gris { color: var(--gris); }
.text-vert { color: var(--vert); }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

/* --- Events Grid (association page) --- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.event-card:hover img {
  transform: scale(1.05);
}

.event-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.event-card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.event-card-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* --- Blog overlay --- */
.blog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
}

.blog-overlay span {
  background: var(--rouge-aka);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Filter buttons --- */
.filter-btns {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--rouge-aka);
  border-color: var(--rouge-aka);
  color: var(--blanc);
}

/* --- Team member --- */
.team-card {
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-lg);
  border: 3px solid var(--rouge-aka);
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.team-card .role {
  color: var(--rouge-aka);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.team-card p {
  color: var(--gris);
  font-size: 0.9rem;
}

/* --- Speed lines SVG overlay (hero) --- */
.speed-lines-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.speed-lines-svg svg {
  width: 100%;
  height: 100%;
  opacity: 0.03;
}

/* --- Section Divider --- */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--rouge-aka);
  margin: var(--space-md) auto var(--space-xl);
  border-radius: 2px;
}

/* Legal page */
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--blanc);
}

.legal-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Partner advantages table */
.partner-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-xl) 0;
}

.partner-table th,
.partner-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}

.partner-table th {
  background: rgba(255,255,255,0.04);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--or-gold);
}

.partner-table td {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 640px) {
  .partner-table {
    display: block;
    overflow-x: auto;
  }
}

/* === V3 — SCROLL PROGRESS BAR (MOD-V3-14) === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rouge-aka), var(--or-gold));
  z-index: 9999;
  width: 0;
  transition: none;
}

/* === V3 — BACK TO TOP (MOD-V3-13) === */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rouge-aka);
  color: var(--blanc);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  pointer-events: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(233,69,96,0.35);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(233,69,96,0.5);
}

/* === V3 — HERO TWO COLUMNS (MOD-V3-03) === */
.hero-content {
  text-align: left;
  max-width: var(--container-max);
}

.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  text-align: left;
}

.hero-left .hero-badge {
  display: inline-block;
}

.hero-left h1 {
  text-align: left;
}

.hero-left h2 {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.hero-left .hero-form {
  justify-content: flex-start;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup {
  max-height: 480px;
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  animation: heroMockupEntry 0.8s ease-out 0.4s both, floating 3.5s ease-in-out infinite 1.2s;
}

@keyframes heroMockupEntry {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 900px) {
  .hero-two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left h1,
  .hero-left h2 {
    text-align: center;
  }

  .hero-left .hero-form {
    justify-content: center;
  }

  .hero-right {
    display: none;
  }

  .hero-mockup {
    max-height: 320px;
  }
}

/* === V3 — CTA GHOST BUTTON (MOD-V3-06) === */
.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  color: white;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
  margin-top: 16px;
}

.cta-ghost:hover {
  border-color: var(--rouge-aka);
  background: rgba(233, 69, 96, 0.1);
  color: white;
}

.cta-ghost .arrow {
  animation: bounce-down 1.5s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* === V3 — MODULES GRID FIX (MOD-V3-04) === */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 1200px) {
  .modules-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === V3 — NAV ACTIVE STATE (MOD-V3-05) === */
.nav-links a.active {
  color: var(--rouge-aka);
}

.nav-links a.active::after {
  width: 100%;
  background: var(--rouge-aka);
}

/* Mobile nav improved (MOD-V3-05.2) */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 0;
    overflow: hidden;
    background: rgba(10, 21, 32, 0.98);
    flex-direction: column;
    padding: 0 0;
    gap: 0;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
    box-shadow: none;
    border-bottom: 2px solid var(--rouge-aka);
    z-index: 999;
    align-items: center;
  }

  .nav-links.open {
    max-height: 450px;
    padding: 80px 0 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }

  .nav-links a {
    font-family: var(--font-body);
    font-size: 18px;
    padding: 12px 0;
  }
}

/* === V3 — ROADMAP ANIMATION (MOD-V3-07) === */
.timeline-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.timeline-item.timeline-visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline::before {
  height: 0;
  transition: height 1.5s ease-out;
}

.timeline.timeline-animated::before {
  height: 100%;
}

/* === V3 — MOCKUP CAROUSEL /projet (MOD-V3-08) === */
.mockup-carousel {
  position: relative;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-viewport {
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  margin: 0 auto;
}

.carousel-slides {
  position: relative;
  height: 520px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-height: 520px;
  width: auto;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.3));
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: var(--rouge-aka);
  border-color: var(--rouge-aka);
}

.carousel-arrow-left {
  left: -60px;
}

.carousel-arrow-right {
  right: -60px;
}

.carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot.active {
  background: var(--rouge-aka);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .carousel-arrow-left { left: 8px; }
  .carousel-arrow-right { right: 8px; }
  .carousel-slides { height: 400px; }
  .carousel-slide { max-height: 400px; }
}

/* === V3 — MODULES NAV STICKY (MOD-V3-09) === */
.modules-nav {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  gap: 0;
}

.modules-nav-btn {
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #8899AA;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-transform: uppercase;
}

.modules-nav-btn.active,
.modules-nav-btn:hover {
  color: #FFFFFF;
  border-bottom-color: var(--rouge-aka);
}

@media (max-width: 640px) {
  .modules-nav-btn {
    padding: 12px 12px;
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}

/* === V3 — NEWSLETTER INPUT CLEAN (MOD-V3-10) === */
.newsletter-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 20px;
  color: white;
  font-size: 15px;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  border-color: var(--rouge-aka);
  outline: none;
  background: rgba(255, 255, 255, 0.12);
}

/* === V3 — WHY JOIN SECTION (MOD-V3-11) === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233,69,96,0.3);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--rouge-aka);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: white;
}

.why-card p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #8899AA;
  line-height: 1.7;
}

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

/* === V3 — EARLY ACCESS BLOCK (MOD-V3-01) === */
.early-access-block {
  background: var(--bg-darkest);
  border: 1px solid rgba(233, 69, 96, 0.3);
  border-radius: 12px;
  padding: 60px 40px;
}

.early-access-block .section-eyebrow {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--or-gold);
}

@media (max-width: 640px) {
  .early-access-block {
    padding: 40px 20px;
  }
}

/* --- Responsive utils --- */
@media (max-width: 640px) {
  .hero-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-form .form-input {
    max-width: none;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   V4 — Hero Video Background
   ============================================= */
.hero--has-video {
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.55);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero--video-loaded .hero-video-overlay {
  opacity: 1;
}

/* When video is present, hide the static fallback BG */
.hero--has-video .hero-bg {
  z-index: 0;
}

.hero--has-video .hero-kanji,
.hero--has-video .hero-content {
  position: relative;
  z-index: 2;
}

/* =============================================
   V4 — Video Presentation Section
   ============================================= */
.video-presentation-section {
  background: var(--bg-dark);
}

.video-thumbnail-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rouge-aka);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(233, 69, 96, 0.4);
}

.video-play-btn svg {
  margin-left: 4px; /* optical center for play icon */
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ff4d6d;
  box-shadow: 0 12px 40px rgba(233, 69, 96, 0.6);
}

/* =============================================
   V4 — Video Modal
   ============================================= */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.video-modal-content {
  position: relative;
  width: 90vw;
  max-width: 960px;
  transform: scale(0.9);
  transition: transform 0.35s ease;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 12px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.video-modal-close:hover {
  opacity: 1;
}

.video-modal-player {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-modal-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .video-play-btn {
    width: 60px;
    height: 60px;
  }
  .video-play-btn svg {
    width: 24px;
    height: 24px;
  }
  .video-modal-close {
    top: -40px;
    font-size: 2rem;
  }
}
