/* ═══════════════════════════════════════════════════════
   agence-web-shared.css — CSS commun à toutes les pages
   du micro-site agence-web.rj6.fr
   Version: 20260322
   ═══════════════════════════════════════════════════════ */

/* ── Font ── */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://www.rj6.fr/assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
}

/* ── Reset / Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
@media (pointer: fine) and (hover: hover) {
  * {
    cursor: none;
  }
}
html,
body {
  margin: 0;
}
body {
  background: #020205;
  color: #fff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* ── Lenis smooth scroll ── */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis-scrolling iframe {
  pointer-events: none;
}

/* ── Cursor — masqué sur écrans tactiles ── */
@media (pointer: coarse) {
  .cursor,
  .cursor-follower {
    display: none !important;
  }
}
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent, #fff); /* accent = couleur de la page courante */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference; /* var(--accent) sur bouton accent = noir ; sur texte noir = accent */
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}
.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    left 0.12s ease,
    top 0.12s ease,
    opacity 0.2s ease;
}

/* ── Nav ── */
/* ── Floating Pill Navbar ── */
.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.55rem 0.55rem 0.55rem 1.5rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Scroll progress bar — top of viewport */
.nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 101;
  pointer-events: none;
}
.nav-progress-bar {
  height: 100%;
  width: 100%;
  background: var(--accent, #00d4ff);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}
/* ── Back to top button ── */
.btn-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.btn-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.btn-top:hover {
  border-color: var(--accent, #00d4ff);
  color: var(--accent, #00d4ff);
}

.nav.scrolled {
  top: 0.5rem;
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
  margin-right: auto;
}
.nav-logo span {
  color: var(--accent);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}
.nav-item {
  position: relative;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-radius: 999px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-link[aria-current="page"],
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-chevron {
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
.nav-has-mega.open .nav-chevron {
  transform: rotate(180deg);
}
.nav-cta {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #fff;
  color: #000;
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--accent);
}
@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
@media (min-width: 768px) {
  .nav-burger {
    display: none;
  }
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition:
    transform 0.35s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.2s;
  transform-origin: center;
}
.nav-burger.open span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.nav-burger.open span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ── Mega Menu ── */
.mega {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: calc(100% - 2rem);
  max-width: 720px;
  background: rgba(8, 8, 12, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.25rem;
  padding: 1rem;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.35rem;
}
.mega-card {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem;
  border-radius: 0.85rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.mega-card:hover {
  border-color: var(--card-accent, var(--accent));
  background: rgba(255, 255, 255, 0.025);
}
.mega-card.active {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.mega-icon {
  width: 34px;
  height: 34px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card-accent, var(--accent));
  margin-bottom: 0.2rem;
}
.mega-icon svg {
  width: 16px;
  height: 16px;
}
.mega-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}
.mega-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
}

/* ── Mobile Fullscreen ── */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(5, 5, 8, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  padding: 6rem 1.5rem 2rem;
  min-height: 100%;
}
.nav-mobile-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0 0.75rem;
}

/* ── Service cards ── */
.mob-services {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mob-svc {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  transition:
    background 0.2s,
    border-color 0.2s;
  min-height: 44px;
}
.mob-svc:active {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--svc);
}
.mob-svc.active {
  border-color: var(--svc);
  background: color-mix(in srgb, var(--svc) 8%, transparent);
}
.mob-svc-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: color-mix(in srgb, var(--svc) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--svc);
  flex-shrink: 0;
}
.mob-svc-icon svg {
  width: 18px;
  height: 18px;
}
.mob-svc-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}
.mob-svc-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
.mob-svc-price {
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 0.5rem;
}
.mob-svc-desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.3;
}

/* ── Separator ── */
.mob-sep {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 1.25rem 0;
}

/* ── Main links ── */
.mob-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mob-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 0.75rem;
  transition:
    color 0.2s,
    background 0.2s;
  min-height: 44px;
}
.mob-link svg {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.mob-link:active {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.mob-link.active {
  color: var(--accent);
}
.mob-link.active svg {
  color: var(--accent);
}

/* ── CTA ── */
.mob-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.9rem 1.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #00d4ff, #8b5cf6);
  color: #000;
  border-radius: 999px;
  text-decoration: none;
  align-self: stretch;
  min-height: 48px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.mob-cta:active {
  transform: scale(0.97);
}

/* ── Contact info ── */
.mob-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.5rem;
}
.mob-contact a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.mob-contact a:active {
  color: rgba(255, 255, 255, 0.6);
}

/* ── GSAP animation — items start hidden ── */
.mob-item {
  opacity: 0;
  transform: translateY(16px);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  min-height: 48px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #000;
  border-radius: 999px;
  text-decoration: none;
  transition: box-shadow 0.3s;
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.4);
}
/* Icône animée au hover */
.btn-primary i,
.btn-primary svg {
  transition: transform 0.3s ease;
  pointer-events: none;
}
.btn-primary:hover i,
.btn-primary:hover svg {
  transform: translate(3px, -3px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  min-height: 48px;
  min-width: 48px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  text-decoration: none;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: #fff;
}

/* Boutons pleine largeur dans les cartes de prix */
.pricing-card .btn-primary,
.pricing-card .btn-ghost {
  width: 100%;
  justify-content: center;
}

/* ── Section commons ── */
section {
  padding: 6rem 1.5rem;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.section-title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.section-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 0 3.5rem;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── FAQ — Cinematic Accordion ── */
#faq {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.25rem;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Header — split layout with giant counter */
.faq-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 4rem;
  opacity: 0;
  translate: 0 40px;
}
.faq-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--section-color, var(--accent, #ff3e00));
  margin: 0 0 0.75rem;
}
.faq-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1rem;
}
.faq-title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.faq-subtitle {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin: 0;
  max-width: 440px;
}

/* Item list */
.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Single item */
.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  opacity: 0;
  translate: 0 30px;
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Accent glow line on active */
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--section-color, var(--accent, #ff3e00));
  border-radius: 2px;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(var(--accent-rgb, 255, 62, 0), 0.4);
}
.faq-item.is-open::before {
  height: 100%;
}

/* Trigger button */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  position: relative;
}
.faq-trigger:focus-visible {
  outline: 2px solid var(--section-color, var(--accent, #ff3e00));
  outline-offset: 4px;
  border-radius: 4px;
}

/* Number — masqué */
.faq-num {
  display: none;
}

/* Question text */
.faq-question {
  flex: 1;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s;
}
.faq-trigger:hover .faq-question {
  color: rgba(255, 255, 255, 0.8);
}
.faq-item.is-open .faq-question {
  color: #fff;
}

/* Plus/minus icon — cross morphs to minus */
.faq-icon-wrap {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition:
    border-color 0.4s,
    background 0.4s;
}
.faq-item.is-open .faq-icon-wrap {
  border-color: var(--section-color, var(--accent, #ff3e00));
  background: rgba(var(--accent-rgb, 255, 62, 0), 0.1);
}
.faq-icon-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s;
}
.faq-bar-h {
  width: 12px;
  height: 1.5px;
  translate: -50% -50%;
}
.faq-bar-v {
  width: 1.5px;
  height: 12px;
  translate: -50% -50%;
}
.faq-item.is-open .faq-bar-v {
  transform: rotate(90deg);
}
.faq-item.is-open .faq-icon-bar {
  background: var(--section-color, var(--accent, #ff3e00));
}

/* Answer wrapper — height animated by JS */
.faq-answer-wrap {
  height: 0;
  overflow: hidden;
}
.faq-answer {
  padding: 0 0 1.75rem 2.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  font-size: 0.92rem;
  max-width: 600px;
}
.faq-answer strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* Responsive — desktop overrides */
@media (min-width: 641px) {
  #faq {
    padding: 8rem 1.5rem;
  }
  .faq-header {
    flex-direction: row;
    gap: 2rem;
  }
  .faq-trigger {
    padding: 1.5rem 0;
    gap: 1.25rem;
  }
  .faq-answer {
    padding-left: 3.05rem;
  }
}

/* ── FAQ (sub-pages) — <details> accordion ── */
/* Used by site-vitrine, e-commerce, refonte, referencement, web-app */
:where(details) {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.875rem;
  overflow: hidden;
}
:where(details[open]) {
  border-color: rgba(var(--accent-rgb, 255, 62, 0), 0.25);
}
:where(summary)::-webkit-details-marker {
  display: none;
}
:where(summary)::marker {
  content: "";
}
:where(summary) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s;
}
:where(summary):hover {
  background: rgba(255, 255, 255, 0.03);
}
:where(summary) .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  transition:
    transform 0.3s,
    border-color 0.3s,
    color 0.3s;
}
:where(details[open]) :where(summary) .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent, var(--section-color, #ff3e00));
  color: var(--accent, var(--section-color, #ff3e00));
}
.faq-body {
  overflow: hidden;
  padding: 0.25rem 1.5rem 1.4rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  font-size: 0.9rem;
}

/* ── Maillage inter-services ── */
#related {
  padding: 3rem 1.5rem 0;
}
#related .section-inner {
  max-width: 1100px;
}
#related .related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}
#related .related-links .btn-ghost {
  font-size: 0.85rem;
}

/* ── CTA section ── */
#cta {
  text-align: center;
  padding: 8rem 1.5rem;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
}
.cta-title em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-link-back {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2px;
  transition:
    color 0.25s,
    border-color 0.25s;
}
.cta-link-back:hover {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
#footer-rj6 {
  position: relative;
  z-index: 10;
  background: #050506;
  color: #fff;
  overflow: hidden;
  border-radius: 3rem 3rem 0 0;
  isolation: isolate;
}
#footer-noise-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
#footer-rj6 > *:not(#footer-noise-canvas) {
  position: relative;
  z-index: 1;
}
.ftr-separator,
.ftr-divider-svg {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.ftr-separator svg,
.ftr-divider-svg svg {
  display: block;
  width: 100%;
  height: 1px;
}
.ftr-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
}
.ftr-hero {
  padding: clamp(5rem, 10vh, 9rem) 0 clamp(4rem, 8vh, 7rem);
}
.ftr-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0 clamp(2rem, 4vh, 3.5rem);
  opacity: 0;
  transform: translateY(12px);
}
.ftr-pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  animation: ftr-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes ftr-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}
.ftr-headline-wrap {
  margin: 0 0 clamp(2.5rem, 5vh, 4rem);
  overflow: hidden;
}
.ftr-headline-row {
  display: block;
  overflow: hidden;
  line-height: 1;
}
.ftr-word {
  display: block;
  font-size: clamp(4rem, 11vw, 10.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #fff;
  transform: translateY(110%);
  font-family: "Inter", sans-serif;
}
.ftr-word-serif {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.ftr-word-accent {
  color: var(--accent);
}
.ftr-headline-dot {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  transform: scale(0);
  transform-origin: left center;
  display: inline-block;
  margin-left: 0.6em;
}
.ftr-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  opacity: 0;
  transform: translateY(20px);
}
.ftr-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.ftr-tel-icon {
  display: flex;
  align-items: center;
  color: var(--accent);
}
.ftr-tel:hover {
  color: #fff;
}
.ftr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 0.7rem 1rem;
  margin-top: 1.75rem;
  opacity: 0;
  transform: translateY(20px);
}
.ftr-badge-score {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.ftr-badge-stars {
  color: #fbbf24;
  font-size: 0.8rem;
  line-height: 1;
}
.ftr-badge-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.ftr-grid-zone {
  padding: clamp(3rem, 5vh, 4.5rem) 0 clamp(3.5rem, 6vh, 5rem);
  overflow-x: clip;
}
.ftr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.ftr-col {
  opacity: 0;
  transform: translateY(24px);
}
.ftr-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin: 0 0 1.6rem;
}
.ftr-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.ftr-logo-rj6 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.ftr-logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.ftr-brand-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.32);
  margin: 0 0 1.75rem;
  max-width: 28ch;
}
.ftr-socials {
  display: flex;
  gap: 0.6rem;
}
.ftr-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.ftr-social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.ftr-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ftr-nav-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: color 0.25s;
}
.ftr-nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
.ftr-nav-link:hover {
  color: #fff;
}
.ftr-nav-link:hover::after {
  width: 100%;
}
.ftr-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
}
.ftr-contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  min-height: 44px;
  text-decoration: none;
  transition: color 0.25s;
}
.ftr-contact-link:hover {
  color: #fff;
}
.ftr-contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
}
.ftr-contact-mono {
  font-family: "Inter", monospace;
}
.ftr-contact-addr {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
}
.ftr-legal-bar {
  padding: 1.25rem 0;
}
.ftr-legal-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ftr-legal-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  margin: 0;
}
.ftr-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ftr-legal-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 0.25s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.ftr-legal-link:hover {
  color: rgba(255, 255, 255, 0.6);
}
.ftr-legal-sep {
  color: rgba(255, 255, 255, 0.1);
}
.ftr-back-top {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.ftr-back-top:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.ftr-wordmark {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: visible;
  pointer-events: auto;
  cursor: default;
  z-index: 2 !important;
}
.ftr-wordmark-text {
  display: block;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: transparent;
  line-height: 1;
  text-align: center;
  user-select: none;
}
#ftr-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Footer responsive (mobile-first) ── */
@media (min-width: 561px) {
  .ftr-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ftr-col-brand {
    grid-column: 1 / -1;
  }
  .ftr-legal-inner {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 901px) {
  .ftr-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  .ftr-col-brand {
    grid-column: auto;
  }
}

/* ══════════════════════════════════════
   PAGES INTERNES (Hero, Features, Procédure, Pricing, etc.)
   ══════════════════════════════════════ */
/* ── Hero ── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(var(--accent-rgb), 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-content {
  max-width: 1100px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-particle-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
@media (pointer: fine) {
  .hero-particle-wrap {
    width: calc(100% + 100px);
    margin-left: -50px;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 999px;
  padding: 0.4rem 1rem 0.4rem 0.7rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
}
.hero-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 1.5rem;
  opacity: 0;
  transform: translateY(60px);
}
.hero-h1 em {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(40px);
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(25px);
}
.hero-ctas .btn-primary,
.hero-ctas .btn-ghost {
  width: 100%;
  justify-content: center;
  text-align: center;
}
@media (min-width: 641px) {
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: auto;
  }
}

/* ── Features ── */
#features {
  background: #020205;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  padding: 2rem;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.feat-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.04);
}
.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.feat-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.feat-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin: 0;
}

/* ── Process ── */
#process {
  background: #040408;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.process-step {
  position: relative;
}
.process-num {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(var(--accent-rgb), 0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.process-step-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin: 0;
}

/* ── Pricing ── */
#pricing {
  background: #020205;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: rgba(var(--accent-rgb), 0.4);
  background: rgba(var(--accent-rgb), 0.05);
}
.pricing-card.featured::before {
  content: "Recommandé";
  position: absolute;
  top: -1px;
  right: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
.pricing-plan {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 0.75rem;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 0 0 0.25rem;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}
.pricing-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 2rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Stack (web-app.php) ── */
#stack-section {
  background: #040408;
}
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.stack-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.stack-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}
.stack-item-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Stack (e-commerce.php) ── */
.stack-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.stack-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stack-name {
  font-size: 0.95rem;
  font-weight: 700;
}
.stack-when {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* ── Metrics / Ecosystem (referencement.php) ── */
#metrics {
  background: #040408;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.stat-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1.25rem;
  padding: 2rem;
  border-left: 3px solid var(--accent);
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: 1;
  margin: 0 0 0.5rem;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}
#ecosystem {
  background: #020205;
}
.eco-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.eco-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  transition: background 0.3s;
}
.eco-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.eco-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: rgba(var(--accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.eco-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.eco-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.6;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
*,
:after,
:before {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
} /*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com*/
*,
:after,
:before {
  box-sizing: border-box;
  border: 0 solid #e5e7eb;
}
:after,
:before {
  --tw-content: "";
}
:host,
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: Inter, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  line-height: inherit;
}
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
  color: var(--accent);
}
code,
kbd,
pre,
samp {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    Liberation Mono,
    Courier New,
    monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
:where(summary) {
  display: list-item;
}
blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
}
fieldset,
legend {
  padding: 0;
}
menu,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}
[role="button"],
button {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.visible {
  visibility: visible;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0;
}
.-left-4 {
  left: -1rem;
}
.-top-3 {
  top: -0.75rem;
}
.-top-6 {
  top: -1.5rem;
}
.bottom-10 {
  bottom: 2.5rem;
}
.bottom-2 {
  bottom: 0.5rem;
}
.bottom-4 {
  bottom: 1rem;
}
.left-0 {
  left: 0;
}
.left-1\/2 {
  left: 50%;
}
.left-4 {
  left: 1rem;
}
.right-0 {
  right: 0;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0;
}
.top-1\/2 {
  top: 50%;
}
.top-2 {
  top: 0.5rem;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.m-0 {
  margin: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.-mb-16 {
  margin-bottom: -4rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-1\.5 {
  margin-bottom: 0.375rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-auto {
  margin-top: auto;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-\[100vh\] {
  height: 100vh;
}
.h-\[80vw\] {
  height: 80vw;
}
.h-full {
  height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-\[80vw\] {
  width: 80vw;
}
.w-full {
  width: 100%;
}
.w-max {
  width: -moz-max-content;
  width: max-content;
}
.w-px {
  width: 1px;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
}
.-translate-x-1\/2,
.-translate-y-1\/2 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
}
.translate-y-full {
  --tw-translate-y: 100%;
}
.rotate-180,
.translate-y-full {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
  --tw-rotate: 180deg;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes bounce {
  0%,
  to {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.animate-bounce {
  animation: bounce 1s infinite;
}
.cursor-pointer {
  cursor: pointer;
}
.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.resize {
  resize: both;
}
.list-none {
  list-style-type: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * (1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.overflow-hidden {
  overflow: hidden;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-t-\[3rem\] {
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-l {
  border-left-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-\[\#8b5cf6\] {
  --tw-border-opacity: 1;
  border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
}
.border-\[var\(--section-color\2c \#ff3e00\)\] {
  border-color: var(--section-color, #ff3e00);
}
.border-white\/10 {
  border-color: hsla(0, 0%, 100%, 0.1);
}
.border-white\/20 {
  border-color: hsla(0, 0%, 100%, 0.2);
}
.border-white\/5 {
  border-color: hsla(0, 0%, 100%, 0.05);
}
.bg-\[\#050505\] {
  --tw-bg-opacity: 1;
  background-color: rgb(5 5 5 / var(--tw-bg-opacity, 1));
}
.bg-\[\#0a0a0a\] {
  --tw-bg-opacity: 1;
  background-color: rgb(10 10 10 / var(--tw-bg-opacity, 1));
}
.bg-\[\#0a0a0a\]\/50 {
  background-color: hsla(0, 0%, 4%, 0.5);
}
.bg-\[\#0a0a0a\]\/95 {
  background-color: hsla(0, 0%, 4%, 0.95);
}
.bg-\[\#8b5cf6\] {
  --tw-bg-opacity: 1;
  background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
}
.bg-\[var\(--section-color\2c \#ff3e00\)\] {
  background-color: var(--section-color, #ff3e00);
}
.bg-black\/80 {
  background-color: rgba(0, 0, 0, 0.8);
}
.bg-white\/10 {
  background-color: hsla(0, 0%, 100%, 0.1);
}
.bg-white\/5 {
  background-color: hsla(0, 0%, 100%, 0.05);
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-orange-400 {
  --tw-gradient-from: #fb923c var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(251, 146, 60, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-transparent {
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
  --tw-gradient-stops:
    var(--tw-gradient-from), transparent var(--tw-gradient-via-position),
    var(--tw-gradient-to);
}
.to-\[\#0a0a0a\] {
  --tw-gradient-to: #0a0a0a var(--tw-gradient-to-position);
}
.to-purple-600 {
  --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-32 {
  padding-bottom: 8rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pt-24 {
  padding-top: 6rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-mono {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    Liberation Mono,
    Courier New,
    monospace;
}
.font-serif {
  font-family: "Playfair Display", Georgia, serif;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[12vw\] {
  font-size: 12vw;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.leading-\[0\.9\] {
  line-height: 0.9;
}
.leading-none {
  line-height: 1;
}
.leading-normal {
  line-height: 1.5;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-\[\#0a0a0a\]\/70 {
  color: hsla(0, 0%, 4%, 0.7);
}
.text-\[var\(--section-color\2c \#ff3e00\)\] {
  color: var(--section-color, #ff3e00);
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(184, 190, 201);
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/5 {
  color: hsla(0, 0%, 100%, 0.05);
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-5 {
  opacity: 0.05;
}
.mix-blend-screen {
  mix-blend-mode: screen;
}
.mix-blend-difference {
  mix-blend-mode: difference;
}
.shadow-\[0_0_30px_rgba\(139\2c 92\2c 246\2c 0\.3\)\] {
  --tw-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
  --tw-shadow-colored: 0 0 30px var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.blur {
  --tw-blur: blur(8px);
}
.blur,
.blur-\[100px\] {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-\[100px\] {
  --tw-blur: blur(100px);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast)
    var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate)
    var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-lg {
  --tw-backdrop-blur: blur(16px);
}
.backdrop-blur-lg,
.backdrop-blur-sm {
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
}
.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity) var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
}
.transition {
  transition-property:
    color,
    background-color,
    border-color,
    text-decoration-color,
    fill,
    stroke,
    opacity,
    box-shadow,
    transform,
    filter,
    -webkit-backdrop-filter;
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke,
    opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property:
    color,
    background-color,
    border-color,
    text-decoration-color,
    fill,
    stroke,
    opacity,
    box-shadow,
    transform,
    filter,
    backdrop-filter,
    -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.transition-colors {
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}
.duration-300 {
  transition-duration: 0.3s;
}
.\[grid-area\:1\/1\] {
  grid-area: 1/1;
}
.selection\:bg-orange-500 ::-moz-selection {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.selection\:bg-orange-500 ::selection {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.selection\:text-white ::-moz-selection {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:text-white ::selection {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:bg-orange-500::-moz-selection {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.selection\:bg-orange-500::selection {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.selection\:text-white::-moz-selection {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:text-white::selection {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:border-\[var\(--section-color\2c \#ff3e00\)\]:hover {
  border-color: var(--section-color, #ff3e00);
}
.hover\:bg-transparent:hover {
  background-color: transparent;
}
.hover\:bg-white\/10:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
}
.hover\:bg-white\/5:hover {
  background-color: hsla(0, 0%, 100%, 0.05);
}
.hover\:text-\[var\(--section-color\2c \#ff3e00\)\]:hover {
  color: var(--section-color, #ff3e00);
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.group[open] .group-open\:rotate-45 {
  --tw-rotate: 45deg;
}
.group:hover .group-hover\:-translate-y-1,
.group[open] .group-open\:rotate-45 {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:-translate-y-1 {
  --tw-translate-y: -0.25rem;
}
.group:hover .group-hover\:translate-x-1 {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y))
    rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
    scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 640px) {
  .sm\:bottom-6 {
    bottom: 1.5rem;
  }
  .sm\:right-6 {
    right: 1.5rem;
  }
  .sm\:mb-10 {
    margin-bottom: 2.5rem;
  }
  .sm\:mb-16 {
    margin-bottom: 4rem;
  }
  .sm\:mb-2 {
    margin-bottom: 0.5rem;
  }
  .sm\:mb-3 {
    margin-bottom: 0.75rem;
  }
  .sm\:mb-4 {
    margin-bottom: 1rem;
  }
  .sm\:mb-6 {
    margin-bottom: 1.5rem;
  }
  .sm\:mb-8 {
    margin-bottom: 2rem;
  }
  .sm\:ml-4 {
    margin-left: 1rem;
  }
  .sm\:mt-2 {
    margin-top: 0.5rem;
  }
  .sm\:block {
    display: block;
  }
  .sm\:h-10 {
    height: 2.5rem;
  }
  .sm\:h-8 {
    height: 2rem;
  }
  .sm\:w-10 {
    width: 2.5rem;
  }
  .sm\:w-8 {
    width: 2rem;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:gap-12 {
    gap: 3rem;
  }
  .sm\:gap-2 {
    gap: 0.5rem;
  }
  .sm\:gap-4 {
    gap: 1rem;
  }
  .sm\:gap-6 {
    gap: 1.5rem;
  }
  .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }
  .sm\:rounded-2xl {
    border-radius: 1rem;
  }
  .sm\:rounded-t-\[4rem\] {
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
  }
  .sm\:p-5 {
    padding: 1.25rem;
  }
  .sm\:p-6 {
    padding: 1.5rem;
  }
  .sm\:p-8 {
    padding: 2rem;
  }
  .sm\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .sm\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .sm\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .sm\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .sm\:pb-48 {
    padding-bottom: 12rem;
  }
  .sm\:pt-32 {
    padding-top: 8rem;
  }
  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .sm\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .sm\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .sm\:leading-snug {
    line-height: 1.375;
  }
}
@media (min-width: 768px) {
  .md\:-left-12 {
    left: -3rem;
  }
  .md\:-top-16 {
    top: -4rem;
  }
  .md\:left-1\/2 {
    left: 50%;
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:mb-12 {
    margin-bottom: 3rem;
  }
  .md\:mb-16 {
    margin-bottom: 4rem;
  }
  .md\:mb-20 {
    margin-bottom: 5rem;
  }
  .md\:mt-0 {
    margin-top: 0;
  }
  .md\:mt-10 {
    margin-top: 2.5rem;
  }
  .md\:block {
    display: block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:h-16 {
    height: 4rem;
  }
  .md\:h-32 {
    height: 8rem;
  }
  .md\:h-\[40vw\] {
    height: 40vw;
  }
  .md\:w-16 {
    width: 4rem;
  }
  .md\:w-32 {
    width: 8rem;
  }
  .md\:w-5\/12 {
    width: 41.666667%;
  }
  .md\:w-\[40vw\] {
    width: 40vw;
  }
  .md\:-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y))
      rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y))
      scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:items-end {
    align-items: flex-end;
  }
  .md\:gap-12 {
    gap: 3rem;
  }
  .md\:gap-16 {
    gap: 4rem;
  }
  .md\:gap-6 {
    gap: 1.5rem;
  }
  .md\:p-10 {
    padding: 2.5rem;
  }
  .md\:p-8 {
    padding: 2rem;
  }
  .md\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .md\:pl-0 {
    padding-left: 0;
  }
  .md\:pl-6 {
    padding-left: 1.5rem;
  }
  .md\:pr-6 {
    padding-right: 1.5rem;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-right {
    text-align: right;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .md\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:bottom-12 {
    bottom: 3rem;
  }
  .lg\:right-12 {
    right: 3rem;
  }
  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }
  .lg\:max-w-sm {
    max-width: 24rem;
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .lg\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .lg\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
  .lg\:text-\[7rem\] {
    font-size: 7rem;
  }
}

/* ── Sticky call button (mobile only) ── */
.sticky-call {
  display: none;
}
@media (pointer: coarse) {
  .sticky-call {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent, #00d4ff);
    color: #000;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
    transition:
      transform 0.2s,
      box-shadow 0.2s;
  }
  .sticky-call:active {
    transform: scale(0.92);
  }
}

/* ── Hero trust badge ── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.hero-trust-stars {
  color: #facc15;
  letter-spacing: 0.05em;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
