/* Modele theme for internal pages (keeps existing layout from style.css) */

:root {
  --modele-bg: #07070f;
  --modele-bg2: #0d0d1a;
  --modele-surface: rgba(255, 255, 255, 0.04);
  --modele-border: rgba(255, 255, 255, 0.08);
  --modele-purple: #7c3aed;
  --modele-purple-lt: #a78bfa;
  --modele-green: #10b981;
  --modele-green-lt: #34d399;
  --modele-text: #f4f4f8;
  --modele-muted: #8b8ba7;
}

body.site {
  background: var(--modele-bg);
  color: var(--modele-text);
  /* Remap base tokens from css/style.css to dark theme */
  --ink: var(--modele-bg);
  --on-dark: var(--modele-text);
  --text: var(--modele-text);
  --muted: rgba(244, 244, 248, 0.72);
  --bg: var(--modele-surface);
  --surface: var(--modele-surface);
  --bg-subtle: rgba(255, 255, 255, 0.03);
  --border: var(--modele-border);
  --navy: var(--modele-text);
  --navy-soft: rgba(244, 244, 248, 0.86);
  --violet: var(--modele-purple);
  --violet-dark: #5b21b6;
  --lime: var(--modele-green);
  --lime-dark: #059669;
  --teal-muted: rgba(124, 58, 237, 0.18);
}

body.site::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* Ensure content is above noise overlay (exclude fixed mobile drawer) */
body.site > :not(.mobile-drawer) {
  position: relative;
  z-index: 2;
}

/* Typography */
body.site,
body.site input,
body.site textarea,
body.site select,
body.site button {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

body.site h1,
body.site h2,
body.site h3,
body.site h4 {
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Nav (modele-like, using the same markup as index.html) */
nav#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}

nav#navbar.scrolled {
  background: rgba(7, 7, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--modele-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--modele-muted) !important;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--modele-text) !important;
}

.nav-links a[aria-current="page"],
.nav-links a.active {
  color: var(--modele-text) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  padding: 9px 20px;
  font-size: 13px;
}

/* Mobile menu button (reuses existing markup/classes) */
.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(7, 7, 15, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--modele-text);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 1025px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* Space under fixed navbar */
body.site main#main {
  padding-top: 92px;
}

/* Accueil : le hero intègre déjà le décalage sous la navbar fixe */
body.site.home main#main {
  padding-top: 0;
}

/* Bannière : le décalage navbar est dans la bannière, pas sur main (évite le vide en haut) */
body.site main#main:has(> .page-banner) {
  padding-top: 0;
}

/* Page banner recolor */
body.site .page-banner {
  background: transparent;
  color: var(--modele-text);
  align-items: flex-start;
  min-height: 0;
}

body.site .page-banner__inner {
  padding-top: calc(68px + clamp(28px, 4vw, 48px));
  padding-bottom: clamp(28px, 4vw, 48px);
}

body.site .page-banner__scrim {
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(124, 58, 237, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(99, 102, 241, 0.12) 0%, transparent 55%);
  opacity: 1;
}

body.site .page-banner__eyebrow {
  color: var(--modele-purple-lt);
}

body.site .page-banner__subtitle {
  color: rgba(244, 244, 248, 0.72);
}

/* Réduit l'espace entre bannière et premier bloc de contenu */
body.site .page-banner + .section.section--soft {
  padding-top: clamp(32px, 5vw, 56px);
}

/* Sections/panels */
body.site .section--soft {
  background: transparent;
}

body.site .panel,
body.site .panel--faq-cta,
body.site .contact-panel,
body.site .faq-intro-panel {
  background: var(--modele-surface);
  border: 1px solid var(--modele-border);
  color: var(--modele-text);
  backdrop-filter: blur(16px);
}

body.site .panel p,
body.site .panel li,
body.site .panel .muted,
body.site .panel small {
  color: rgba(244, 244, 248, 0.72);
}

body.site a {
  color: var(--modele-green-lt);
}

body.site a:hover {
  color: var(--modele-text);
}

/* Buttons: modele-like, but respect project rule (no transform motion) */
body.site .btn {
  border: 1px solid var(--modele-border);
  background: var(--modele-surface);
  color: var(--modele-text);
  backdrop-filter: blur(12px);
  justify-content: center;
  text-align: center;
  font-weight: 500;
}

body.site .btn-primary {
  border: none;
  background: linear-gradient(135deg, var(--modele-purple), #5b21b6);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.4), 0 8px 24px rgba(124, 58, 237, 0.25);
  font-weight: 500;
}

body.site .btn-ghost {
  background: var(--modele-surface);
}

body.site .btn:hover,
body.site .btn:active,
body.site .btn-primary:hover,
body.site .btn-primary:active {
  transform: none;
}

/* Forms */
body.site input,
body.site textarea,
body.site select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--modele-border);
  color: var(--modele-text);
}

body.site input::placeholder,
body.site textarea::placeholder {
  color: rgba(139, 139, 167, 0.85);
}

/* Forms inside panels (style.css is very specific) */
body.site .panel label,
body.site .panel label > span {
  color: rgba(244, 244, 248, 0.9);
}

body.site .panel input,
body.site .panel select,
body.site .panel textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--modele-border);
  color: var(--modele-text);
}

body.site .panel input::placeholder,
body.site .panel textarea::placeholder {
  color: rgba(139, 139, 167, 0.85);
}

/* Choix joueur / manager — thème sombre */
body.site .radio-segmented label {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--modele-border);
  color: var(--modele-text);
}

body.site .radio-segmented label > span {
  color: inherit;
}

body.site .radio-segmented label:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(124, 58, 237, 0.35);
}

body.site .radio-segmented label:has(input[type="radio"]:checked) {
  background: rgba(124, 58, 237, 0.18);
  border-color: var(--modele-purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.22);
  color: var(--modele-text);
}

/* Disable image zoom on dark theme */
body.site .panel:hover .inline-media {
  transform: none;
}

body.site .inline-media {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Managers readability boosts */
body.managers-page .panel--login .eyebrow {
  background: rgba(124, 58, 237, 0.16);
  color: var(--modele-purple-lt);
}

body.managers-page .panel--login h3 {
  color: var(--modele-text);
}

body.managers-page .panel--login__header > p {
  color: rgba(244, 244, 248, 0.78);
}

body.managers-page .managers-how-video {
  border-color: rgba(124, 58, 237, 0.45);
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.12), rgba(16, 185, 129, 0.1));
}

body.managers-page .managers-how-video__placeholder {
  color: rgba(244, 244, 248, 0.78);
}

body.managers-page .managers-how-video:has(.managers-how-video__player),
body.managers-page .managers-how-video:has(.managers-how-video__embed) {
  border-color: rgba(255, 255, 255, 0.12);
  background: #000;
}

body.managers-page .managers-how-screen {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(244, 244, 248, 0.7);
}

body.managers-page .managers-how-steps li {
  color: rgba(244, 244, 248, 0.92);
}

body.managers-page .proof {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

body.managers-page .proof:hover {
  transform: none;
  box-shadow: none;
}

body.managers-page .proof .num {
  color: var(--modele-green-lt);
}

body.managers-page .proof .label {
  color: rgba(244, 244, 248, 0.72);
}

body.managers-page .help-strip {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.25);
}

body.managers-page .help-strip__text strong {
  color: rgba(244, 244, 248, 0.92);
}

body.managers-page .help-strip__text span {
  color: rgba(244, 244, 248, 0.72);
}

/* Accordions */
body.site .acc-btn,
body.site .faq-q {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--modele-border);
  color: var(--modele-text);
}

body.site .acc-panel,
body.site .faq-a {
  background: transparent;
  color: rgba(244, 244, 248, 0.75);
}

/* FAQ page polish (contrast + less “white cards”) */
body.faq-page .faq-intro-panel__title,
body.faq-page .faq-contact-panel__title,
body.faq-page .faq-hot-panel__title,
body.faq-page .faq-column-heading {
  color: rgba(244, 244, 248, 0.92);
}

body.faq-page .faq-intro-panel__text,
body.faq-page .faq-contact-panel__text {
  color: rgba(244, 244, 248, 0.72);
  font-weight: 500;
}

body.faq-page .accordion {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

body.faq-page .acc-item + .acc-item {
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.faq-page .acc-btn {
  color: rgba(244, 244, 248, 0.92);
}

body.faq-page .acc-btn:hover {
  background: rgba(255, 255, 255, 0.02);
}

body.faq-page .acc-icon {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(244, 244, 248, 0.9);
}

body.faq-page .acc-item[data-open="true"] .acc-icon {
  background: rgba(124, 58, 237, 0.22);
  border-color: rgba(124, 58, 237, 0.45);
}

body.faq-page .acc-panel-inner {
  color: rgba(244, 244, 248, 0.72);
  font-weight: 500;
}

body.faq-page .faq-hotlinks__a {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.28);
  color: rgba(244, 244, 248, 0.92);
}

body.faq-page .faq-hotlinks__a:hover {
  background: rgba(16, 185, 129, 0.18);
}

/* Mobile drawer (fixed overlay — same behavior as home-modele.css) */
body.site .mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

body.site .mobile-drawer.is-open {
  display: block;
}

body.site .mobile-drawer__panel {
  background: linear-gradient(180deg, rgba(13, 13, 26, 0.98) 0%, rgba(7, 7, 15, 0.99) 100%);
  border-left-color: rgba(255, 255, 255, 0.06);
}

body.site .mobile-drawer__close {
  background: rgba(255, 255, 255, 0.05);
  color: var(--modele-text);
  border-color: rgba(255, 255, 255, 0.1);
}

body.site .mobile-drawer__backdrop {
  background: rgba(0, 0, 0, 0.55);
}

body.site .mobile-nav a {
  color: rgba(244, 244, 248, 0.82);
}

body.site .mobile-nav a[aria-current="page"] {
  background: rgba(124, 58, 237, 0.18);
  color: var(--modele-text);
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.35);
}

body.site .mobile-drawer__cta {
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.site .mobile-drawer__cta .btn {
  justify-content: center;
}

/* Footer (modele markup copied from index) */
body.site footer {
  border-top: 1px solid var(--modele-border);
  padding: 72px 0 40px;
}

body.site .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

body.site .footer-brand p {
  font-size: 14px;
  color: var(--modele-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 320px;
}

body.site .footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--modele-text);
}

body.site .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

body.site .footer-col ul a {
  font-size: 13px;
  color: var(--modele-muted);
  text-decoration: none;
  transition: color 0.2s;
}

body.site .footer-col ul a:hover {
  color: var(--modele-text);
}

body.site .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--modele-border);
  font-size: 13px;
  color: var(--modele-muted);
  gap: 12px;
  flex-wrap: wrap;
}

body.site .footer-social-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
}

body.site .footer-social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.site .footer-social-list a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

body.site .footer-social-list__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  body.site .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-logo {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 52px);
    overflow: hidden;
  }

  .nav-logo-img {
    height: 32px !important;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
  }

  .menu-toggle {
    display: inline-flex !important;
    flex-shrink: 0;
    margin-left: auto;
    position: relative;
    z-index: 101;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    height: auto;
    min-height: 68px;
    padding: 6px 0;
  }

  .nav-logo {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 52px);
  }

  .nav-logo-img {
    height: 32px !important;
    width: auto;
    display: block;
  }

  body.site main#main:not(:has(> .page-banner)) {
    padding-top: calc(98px + 20px);
  }

  body.site .page-banner__inner {
    padding-top: calc(98px + clamp(24px, 4vw, 40px));
    padding-bottom: 28px;
  }

  body.site .page-banner + .section,
  body.site main#main > .section.section--soft:first-of-type {
    padding-top: 32px;
  }

  body.site .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  body.site footer {
    padding: 48px 0 32px;
  }

  body.site .footer-brand p {
    max-width: 100%;
  }

  body.site .footer-brand .nav-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
  }

  body.site .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 24px;
  }
}

/* ── Page À propos (thème modele, lisibilité) ── */
body.about-page main#main {
  padding-top: 0;
}

body.about-page .about-hero {
  padding: calc(68px + 60px) 0 84px;
  background: var(--modele-bg);
  border-bottom: 1px solid var(--modele-border);
  position: relative;
  overflow: hidden;
}

body.about-page .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(124, 58, 237, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 60% 80%, rgba(99, 102, 241, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

body.about-page .about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 100%);
  pointer-events: none;
  opacity: 0.8;
}

body.about-page .about-hero .container {
  position: relative;
  z-index: 1;
}

body.about-page .about-hero__title {
  color: var(--modele-text);
}

body.about-page .about-hero__lead {
  color: rgba(244, 244, 248, 0.72);
  font-weight: 500;
}

body.about-page .about-hero .btn-primary {
  border: none;
  background: linear-gradient(135deg, var(--modele-green), #059669);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.35), 0 8px 24px rgba(16, 185, 129, 0.25);
}

body.about-page .about-hero .btn:not(.btn-primary) {
  border: 1px solid var(--modele-border);
  background: var(--modele-surface);
  color: var(--modele-text);
}

body.about-page .about-phone__frame {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.about-page .about-phone__frame img {
  filter: saturate(0.95) contrast(1.02);
}

body.about-page .section {
  padding: clamp(64px, 8vw, 96px) 0;
}

body.about-page .section--soft {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--modele-border);
  border-bottom: 1px solid var(--modele-border);
}

body.about-page .about-narrow h2,
body.about-page .about-impact-heading h2,
body.about-page .about-impact-card h3,
body.about-page .about-founder__project-title,
body.about-page .about-section-title--center h2 {
  color: var(--modele-text);
}

body.about-page .about-narrow > p,
body.about-page .about-checklist li,
body.about-page .about-impact-card p,
body.about-page .about-founder__bio p,
body.about-page .about-founder__bio p:last-child,
body.about-page .about-founder__role,
body.about-page .about-founder__org {
  color: rgba(244, 244, 248, 0.78);
  font-weight: 500;
}

body.about-page .about-cta-band .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--modele-text);
}

body.about-page .about-founder__bio p strong {
  color: var(--modele-green-lt);
}

body.about-page .about-founder__kicker {
  color: var(--modele-purple-lt);
}

body.about-page .about-founder__byline {
  color: var(--modele-green-lt);
}

body.about-page .about-pullquote {
  background: rgba(16, 185, 129, 0.1);
  border-left-color: var(--modele-green);
  color: var(--modele-text);
  font-style: normal;
}

body.about-page .about-checklist li::before {
  background: rgba(124, 58, 237, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334D399' stroke-width='2.5'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
}

body.about-page .about-impact-card,
body.about-page .panel.about-impact-card {
  background: var(--modele-surface);
  border: 1px solid var(--modele-border);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(16px);
  box-shadow: none;
  transition: border-color 0.3s, transform 0.3s;
}

body.about-page .about-impact-card:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-4px);
}

body.about-page .about-founder-section {
  border-bottom: none;
  padding-bottom: 0;
}

body.about-page .about-founder {
  background: var(--modele-surface);
  border: 1px solid var(--modele-border);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  backdrop-filter: blur(16px);
}

body.about-page .about-founder__portrait {
  background: linear-gradient(135deg, var(--modele-purple), #5b21b6);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.35);
}

body.about-page .about-legal-links a {
  color: var(--modele-purple-lt);
}

body.about-page .about-legal-links a:hover {
  color: var(--modele-text);
}

body.about-page .about-cta-band {
  margin-top: 56px;
  background: transparent;
  border-top: none;
  padding: 0 0 24px;
}

body.about-page .about-cta-band__wave {
  display: none;
}

body.about-page .about-cta-band__inner {
  border-radius: 24px;
  padding: clamp(44px, 6vw, 64px) clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, #1a0533 0%, #0d1259 50%, #0a2b1e 100%);
  border: 1px solid rgba(124, 58, 237, 0.2);
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr;
}

body.about-page .about-cta-band__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

body.about-page .about-cta-band__copy {
  position: relative;
  z-index: 1;
}

body.about-page .about-cta-band__visual {
  display: none;
}

body.about-page .about-cta-band__copy h2 {
  background: linear-gradient(135deg, #fff 0%, var(--modele-purple-lt) 60%, var(--modele-green-lt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.about-page .about-cta-band .btn-primary {
  border: none;
  background: linear-gradient(135deg, var(--modele-green), #059669);
  color: #fff;
}

body.about-page .cta-dark {
  background: transparent;
  padding: 0 0 96px;
  border-top: none;
}

body.about-page .cta-dark .container {
  border-radius: 24px;
  padding: clamp(48px, 6vw, 72px) clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.2);
  position: relative;
  overflow: hidden;
}

body.about-page .cta-dark .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(124, 58, 237, 0.16) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

body.about-page .cta-dark h2,
body.about-page .cta-dark p {
  position: relative;
  z-index: 1;
}

body.about-page .cta-dark h2 {
  background: linear-gradient(135deg, #fff 0%, var(--modele-purple-lt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: none;
}

body.about-page .cta-dark p {
  color: rgba(244, 244, 248, 0.72);
}

body.about-page .store-badges {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  body.about-page .about-founder__content {
    text-align: center;
  }
}

