@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600&family=League+Spartan:wght@300;400;600&family=DM+Mono:wght@300;400;500&display=swap');

:root {
  --bg-main: #1a1a1b;
  --text-main: #ffffff;
  --accent-purple: #8f00ff;
  --accent-yellow: #e9f056;
  --grad-1: #5c0988;
  --grad-2: #b414d4;
  --muted: rgba(255, 255, 255, 0.65);
  --paper: #222223;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  cursor: none;
}

h1, h2, .hero-title, .section-title, .pf-name, .plan-price { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 0.02em; }
h3, h4, h5, .hero-sub, .services-intro p, .testimonial-text { font-family: 'League Spartan', sans-serif; }

/* Custom cursor */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--accent-yellow); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease, opacity 0.15s;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--accent-yellow);
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid var(--accent-purple); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: transform 0.35s ease, width 0.3s, height 0.3s, border-color 0.3s;
  transform: translate(-50%, -50%); opacity: 0.8;
  box-shadow: 0 0 15px rgba(143, 0, 255, 0.5);
}
body:hover .cursor { opacity: 1; }

button:hover ~ .cursor-ring, a:hover ~ .cursor-ring {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 20px rgba(233, 240, 86, 0.6);
}

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 3rem;
  background: rgba(26, 26, 27, 0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo-container {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--text-main);
}
.logo-img { height: 32px; width: auto; }
.logo-container span {
  font-family: 'Anton', sans-serif; font-size: 1.5rem; letter-spacing: 0.05em;
  color: var(--text-main); text-transform: uppercase;
}
.logo-container span i { color: var(--accent-purple); font-style: normal; }

nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav a.nav-link {
  font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-main);
  text-decoration: none; opacity: 0.7; transition: opacity 0.2s, color 0.2s;
  position: relative;
}
nav a.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent-purple);
  transition: width 0.3s ease; box-shadow: 0 0 8px var(--accent-purple);
}
nav a.nav-link:hover { opacity: 1; color: var(--accent-yellow); }
nav a.nav-link:hover::after { width: 100%; background: var(--accent-yellow); box-shadow: 0 0 8px var(--accent-yellow); }

.nav-cta {
  font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.6rem 1.4rem;
  border: 1px solid var(--accent-purple); color: var(--accent-purple);
  text-decoration: none; transition: all 0.25s; opacity: 1 !important;
  box-shadow: 0 0 10px rgba(143, 0, 255, 0.2) inset;
}
.nav-cta:hover { 
  background: var(--accent-purple); color: var(--text-main) !important; 
  box-shadow: 0 0 15px var(--accent-purple);
}

/* Hero */
#hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  background: radial-gradient(circle at top right, rgba(92, 9, 136, 0.2), transparent 50%),
              radial-gradient(circle at bottom left, rgba(143, 0, 255, 0.15), transparent 50%);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4rem 6rem 3rem; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-yellow); margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
  text-shadow: 0 0 10px rgba(233, 240, 86, 0.5);
}
.hero-title {
  font-size: clamp(3.5rem, 6vw, 6.5rem); font-weight: 400; line-height: 1;
  margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.9s 0.4s ease forwards;
}
.hero-title em { 
  font-style: normal; color: transparent; 
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-purple));
  -webkit-background-clip: text; background-clip: text;
}
.hero-sub {
  font-size: 1.25rem; font-weight: 300; color: var(--muted);
  line-height: 1.6; max-width: 450px; margin-bottom: 3.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.6s ease forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.8s ease forwards;
}
.btn-primary {
  display: inline-block; padding: 1rem 2.5rem;
  background: var(--text-main); color: var(--bg-main);
  font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s; position: relative; overflow: hidden;
  font-weight: 600;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--accent-purple), var(--grad-2)); transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.btn-primary:hover { color: var(--text-main); box-shadow: 0 0 20px var(--accent-purple); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-link {
  font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  display: flex; align-items: center; gap: 0.6rem; transition: color 0.2s;
}
.btn-link::after { content: '→'; transition: transform 0.2s; color: var(--accent-yellow); }
.btn-link:hover { color: var(--text-main); }
.btn-link:hover::after { transform: translateX(6px); }

/* Hero right */
.hero-right {
  position: relative; overflow: hidden; opacity: 0; animation: fadeIn 1.2s 0.3s ease forwards;
}
.hero-visual {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.browser-mock {
  width: 75%; max-width: 500px; border-radius: 8px;
  background: rgba(34, 34, 35, 0.8); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(143, 0, 255, 0.2);
  overflow: hidden; transform: perspective(800px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease; animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: perspective(800px) rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: perspective(800px) rotateY(-8deg) rotateX(4deg) translateY(-15px); }
}
.browser-bar {
  background: rgba(0,0,0,0.3); padding: 0.8rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; gap: 0.5rem;
}
.browser-dot { width: 12px; height: 12px; border-radius: 50%; }
.browser-url {
  flex: 1; background: rgba(255,255,255,0.05); border-radius: 4px; padding: 0.3rem 0.8rem;
  font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--muted); margin-left: 0.8rem;
}
.browser-content { padding: 1.5rem; }
.mock-hero { 
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2)); 
  height: 100px; border-radius: 6px; margin-bottom: 1.2rem; 
  display:flex; align-items:center; justify-content:center;
}
.mock-hero-text { color: white; font-size: 1rem; letter-spacing:0.1em; font-family: 'Anton', sans-serif; }
.mock-row { display:flex; gap:0.8rem; margin-bottom:0.8rem; }
.mock-card { flex:1; background:rgba(255,255,255,0.05); border-radius:4px; height:60px; }
.mock-line { background:rgba(255,255,255,0.1); border-radius:2px; height:8px; margin-bottom:0.6rem; }
.mock-line.short { width:60%; }
.mock-line.accent { background: var(--accent-purple); box-shadow: 0 0 8px var(--accent-purple); }

.corner-deco {
  position: absolute; bottom: 2rem; right: 2rem;
  font-family: 'DM Mono', monospace; font-size: 0.62rem; color: var(--accent-yellow);
  letter-spacing: 0.1em; writing-mode: vertical-rl; opacity: 0.6; text-shadow: 0 0 5px var(--accent-yellow);
}

/* Sections */
section { position: relative; }
.section-label {
  font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent-purple); margin-bottom: 1.2rem;
  text-shadow: 0 0 10px rgba(143, 0, 255, 0.4);
}
.section-title {
  font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 400; line-height: 1.1; margin-bottom: 1.5rem;
}
.section-title em { font-style: normal; color: var(--accent-yellow); text-shadow: 0 0 10px rgba(233, 240, 86, 0.3); }

/* Stats bar */
#stats {
  background: linear-gradient(90deg, #111, var(--paper));
  padding: 3rem; display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 3.5rem; font-family: 'Anton', sans-serif;
  color: var(--accent-yellow); display: block; line-height: 1; margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(233, 240, 86, 0.4);
}
.stat-label {
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted);
}

/* Services */
#services { padding: 8rem 3rem; max-width: 1200px; margin: 0 auto; }
.services-intro { max-width: 600px; margin-bottom: 5rem; }
.services-intro p.desc { font-size: 1.1rem; line-height: 1.7; color: var(--muted); }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.service-card {
  padding: 3.5rem; background: var(--paper); border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent-purple), var(--accent-yellow));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(143, 0, 255, 0.1); 
}
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: 'Anton', sans-serif; font-size: 2rem;
  color: rgba(255,255,255,0.1); position: absolute; top: 1.5rem; right: 2rem;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: var(--accent-purple); text-shadow: 0 0 15px rgba(143,0,255,0.5); }
.service-icon {
  width: 48px; height: 48px; margin-bottom: 2rem;
  filter: drop-shadow(0 0 8px rgba(233,240,86,0.6)); stroke: var(--accent-yellow);
}
.service-card h3 { font-size: 1.6rem; margin-bottom: 1.2rem; line-height: 1.2; }
.service-card p { font-size: 1.05rem; color: var(--muted); line-height: 1.7; }

/* Process */
#process {
  background: var(--paper); padding: 8rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.05); position: relative;
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-header { max-width: 600px; margin-bottom: 5rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 2.5rem; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(143,0,255,0.5), transparent);
}
.step { text-align: center; padding: 0 1rem; }
.step-dot {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--bg-main); border: 2px solid var(--accent-purple);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2.5rem; font-family: 'Anton', sans-serif; font-size: 1.2rem;
  color: var(--text-main); position: relative; z-index: 1; transition: all 0.3s;
  box-shadow: 0 0 15px rgba(143,0,255,0.2) inset, 0 0 15px rgba(143,0,255,0.2);
}
.step:hover .step-dot { 
  background: var(--accent-purple); color: white; 
  box-shadow: 0 0 25px var(--accent-purple); border-color: var(--accent-yellow);
}
.step h4 { font-size: 1.3rem; margin-bottom: 1rem; }
.step p { font-size: 1rem; color: var(--muted); line-height: 1.6; }

/* Pricing */
#pricing { padding: 8rem 3rem; border-top: 1px solid rgba(255,255,255,0.05); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 5rem; }
.pricing-sub { color: var(--muted); font-size: 1.2rem; font-family: 'League Spartan', sans-serif; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.pricing-card {
  background: var(--paper); padding: 3rem 2.5rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s, border-color 0.3s;
}
.pricing-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.15); }
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(143,0,255,0.1), var(--paper));
  border: 1px solid var(--accent-purple); box-shadow: 0 0 30px rgba(143,0,255,0.15);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Recommandé'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: 'DM Mono', monospace; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; background: var(--accent-purple);
  color: white; padding: 0.4rem 1rem; border-radius: 20px; box-shadow: 0 0 10px var(--accent-purple);
}
.plan-name {
  font-family: 'DM Mono', monospace; font-size: 0.8rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-yellow); margin-bottom: 1.5rem; text-align: center;
}
.plan-price { font-size: 3.5rem; text-align: center; margin-bottom: 0.5rem; }
.plan-price sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.5rem; margin-right: 0.2rem; color: var(--accent-purple); }
.plan-cycle {
  font-family: 'DM Mono', monospace; font-size: 0.7rem; text-align: center;
  color: var(--muted); letter-spacing: 0.1em; margin-bottom: 2.5rem;
}
.plan-features { list-style: none; margin-bottom: 3rem; }
.plan-features li {
  font-size: 1rem; color: var(--text-main); padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 0.8rem;
}
.plan-features li::before { content: '✓'; color: var(--accent-yellow); font-weight: bold; }
.plan-features li.off { color: rgba(255,255,255,0.3); }
.plan-features li.off::before { content: '×'; color: rgba(255,255,255,0.2); }
.btn-plan {
  display: block; text-align: center; padding: 1rem; border-radius: 4px;
  background: rgba(255,255,255,0.05); color: var(--text-main); font-family: 'DM Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s; font-weight: 600;
}
.btn-plan:hover { background: rgba(255,255,255,0.1); }
.pricing-card.featured .btn-plan { background: var(--accent-purple); color: white; }
.pricing-card.featured .btn-plan:hover { background: var(--grad-2); box-shadow: 0 0 15px var(--accent-purple); }

/* Footer */
footer {
  background: #111; padding: 5rem 3rem 2rem; border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
  max-width: 1200px; margin: 0 auto; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem;
}
.footer-logo img { height: 36px; }
.footer-logo span { font-family: 'Anton', sans-serif; font-size: 1.8rem; text-transform: uppercase; }
.footer-logo span i { color: var(--accent-purple); font-style: normal; }
.footer-tagline { font-size: 1rem; line-height: 1.6; color: var(--muted); max-width: 300px; }
.footer-col h5 {
  font-family: 'DM Mono', monospace; font-size: 0.8rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-main); margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a {
  color: var(--muted); text-decoration: none; font-size: 0.95rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-yellow); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Mono', monospace; font-size: 0.7rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Mobile */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 2rem 5rem; }
  #stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; padding: 2rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  nav ul { display: none; }
  nav { padding: 1.2rem 1.5rem; }
  .hero-title { font-size: 3rem; }
}
