/* =========================================================
   Portfolio — Jassiel Fidèle RAKOTOARINELINA
   Expert IA & Automatisation
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0b1224;
  --bg2: #121c34;
  --cyan: #22ddff;
  --violet: #8b5cf6;
  --violet-light: #b08cff;
  --white: #eef6ff;
  --gray: #8ba2bd;
  --gray-light: #bcd2e8;
  --border: rgba(34, 221, 255, 0.18);
  --glow-cyan: rgba(34, 221, 255, 0.3);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, #0a1226 0%, #080e1f 45%, #070b18 100%);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ========= FOND AURORA ANIMÉ (global, optimisé GPU) ========= */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.aurora span {
  position: absolute; display: block; border-radius: 50%;
  filter: blur(90px); opacity: 0.3; will-change: transform;
}
.aurora .a1 { width: 46vw; height: 46vw; top: -8%; left: -6%;
  background: radial-gradient(circle, rgba(34,221,255,0.30), transparent 70%);
  animation: auroraDrift1 22s ease-in-out infinite; }
.aurora .a2 { width: 40vw; height: 40vw; top: 30%; right: -10%;
  background: radial-gradient(circle, rgba(139,92,246,0.28), transparent 70%);
  animation: auroraDrift2 26s ease-in-out infinite; }
.aurora .a3 { width: 38vw; height: 38vw; bottom: -12%; left: 25%;
  background: radial-gradient(circle, rgba(56,189,248,0.20), transparent 70%);
  animation: auroraDrift3 30s ease-in-out infinite; }
@keyframes auroraDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(8vw,6vh) scale(1.15); } }
@keyframes auroraDrift2 { 0%,100% { transform: translate(0,0) scale(1.1); } 50% { transform: translate(-7vw,8vh) scale(1); } }
@keyframes auroraDrift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(5vw,-7vh) scale(1.2); } }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ========= NAV ========= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(11, 18, 36, 0.55);
  backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--violet-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--gray-light); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.02em; transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--cyan); transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; border: 1px solid var(--cyan); color: var(--cyan);
  font-size: 0.875rem; font-weight: 600; border-radius: 6px;
  transition: all 0.3s; font-family: var(--font-display);
}
.nav-cta:hover { background: var(--cyan); color: var(--bg); box-shadow: 0 0 24px var(--glow-cyan); }

/* ========= BOUTONS COMMUNS ========= */
.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--cyan), var(--violet-light));
  color: var(--bg); font-weight: 700; font-family: var(--font-display);
  font-size: 0.95rem; border-radius: 8px;
  transition: all 0.3s; box-shadow: 0 4px 24px rgba(0,212,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,212,255,0.4); }
.btn-outline {
  padding: 14px 32px; border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-weight: 500; font-size: 0.95rem; border-radius: 8px;
  background: rgba(255,255,255,0.03); transition: all 0.3s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.btn-icon { display: inline-flex; align-items: center; gap: 8px; }

/* ========= HERO ========= */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
#neural-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; display: block; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 75% 65% at 50% 45%, transparent 0%, rgba(11,18,36,0.25) 75%, rgba(11,18,36,0.6) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 0 40px; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 0.75rem; font-weight: 500; color: var(--cyan);
  letter-spacing: 0.08em; text-transform: uppercase; background: rgba(0,212,255,0.05);
  margin-bottom: 32px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-badge .dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 6px #22c55e; animation: pulseDot 2s infinite; }
.hero-name {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -2px; color: var(--white);
  margin-bottom: 6px; opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
}
.hero-surname {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 400; letter-spacing: 0.2em; color: var(--gray); text-transform: uppercase;
  margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.45s forwards;
}
.hero-typed-wrap { min-height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.55s forwards; }
.hero-typed-label { color: var(--gray); font-size: 1.15rem; }
#typed { color: var(--cyan); font-weight: 600; font-family: var(--font-display); font-size: 1.2rem; }
.cursor { color: var(--cyan); animation: blink 0.8s infinite; }
.hero-desc { color: var(--gray-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto 44px; line-height: 1.75; opacity: 0; animation: fadeUp 0.8s 0.65s forwards; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 72px; opacity: 0; animation: fadeUp 0.8s 0.75s forwards; }
.hero-stats { display: flex; gap: 60px; justify-content: center; padding-top: 40px; border-top: 1px solid var(--border); opacity: 0; animation: fadeUp 0.8s 0.9s forwards; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--violet-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.8rem; color: var(--gray); margin-top: 4px; letter-spacing: 0.05em; }

/* ========= CUBE 3D ANIMÉ (hero) ========= */
.scene-3d {
  width: 150px; height: 150px; margin: 0 auto 30px;
  perspective: 700px; opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
  transition: transform 0.35s ease-out; will-change: transform;
}
.cube {
  position: relative; width: 150px; height: 150px;
  transform-style: preserve-3d;
  animation: cubeSpin 16s linear infinite;
  transition: transform 0.2s ease-out;
}
.cube__face {
  position: absolute; width: 150px; height: 150px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 1px solid rgba(34,221,255,0.4); border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,221,255,0.14), rgba(139,92,246,0.14));
  backdrop-filter: blur(4px);
  box-shadow: 0 0 30px rgba(34,221,255,0.15) inset, 0 0 22px rgba(34,221,255,0.12);
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--white); letter-spacing: 0.02em; padding: 10px;
}
.cube__face span { display: block; }
.cube__face small { display: block; font-size: 0.62rem; font-weight: 400; color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.cube__face--front  { transform: rotateY(0deg)   translateZ(75px); }
.cube__face--back   { transform: rotateY(180deg) translateZ(75px); }
.cube__face--right  { transform: rotateY(90deg)  translateZ(75px); }
.cube__face--left   { transform: rotateY(-90deg) translateZ(75px); }
.cube__face--top    { transform: rotateX(90deg)  translateZ(75px); }
.cube__face--bottom { transform: rotateX(-90deg) translateZ(75px); }
@keyframes cubeSpin {
  0%   { transform: rotateX(-20deg) rotateY(0deg); }
  100% { transform: rotateX(-20deg) rotateY(360deg); }
}

/* ========= SECTIONS COMMUNES ========= */
section { padding: 100px 60px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -1px; color: var(--white); line-height: 1.15; }
.section-title .accent { background: linear-gradient(135deg, var(--cyan), var(--violet-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-sub { color: var(--gray-light); font-size: 1rem; max-width: 540px; margin: 16px auto 0; line-height: 1.7; }

/* ========= À PROPOS / QUI SUIS-JE ========= */
#about { background: rgba(18, 28, 52, 0.55); backdrop-filter: blur(10px); }
.about-wrap {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 64px; align-items: center;
}
.about-media { position: relative; }
.about-img-frame {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(0,212,255,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(124,58,237,0.15) inset;
}
.about-img-frame img {
  width: 100%; height: auto; object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.about-media:hover .about-img-frame img { transform: scale(1.05); }
.about-img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(5,8,17,0.55) 100%);
  pointer-events: none;
}
.about-badge-float {
  position: absolute; bottom: -22px; right: -18px;
  background: rgba(8,13,26,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(0,212,255,0.3); border-radius: 14px;
  padding: 14px 20px; text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5); animation: floatY 4s ease-in-out infinite;
}
.about-badge-num {
  display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--violet-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.about-badge-txt { font-size: 0.72rem; color: var(--gray-light); letter-spacing: 0.05em; }
.about-text .section-title { margin-bottom: 22px; }
.about-lead { color: var(--white); font-size: 1.12rem; margin-bottom: 18px; line-height: 1.7; }
.about-lead strong { color: var(--cyan); font-weight: 600; }
.about-p { color: var(--gray-light); font-size: 0.98rem; margin-bottom: 24px; line-height: 1.8; }
.about-p strong { color: var(--white); font-weight: 600; }
.about-points { list-style: none; margin-bottom: 32px; display: grid; gap: 12px; }
.about-points li { display: flex; align-items: center; gap: 12px; color: var(--gray-light); font-size: 0.95rem; }
.ap-check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,212,255,0.12); border: 1px solid rgba(0,212,255,0.3);
  color: var(--cyan); font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.about-cta { display: inline-block; }

/* ========= SERVICES ========= */
#services { background: transparent; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.service-card { position: relative; padding: 36px 32px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,0.045); backdrop-filter: blur(8px); transition: all 0.4s; overflow: hidden; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(124,58,237,0.06)); opacity: 0; transition: opacity 0.4s; border-radius: 16px; }
.service-card:hover { border-color: rgba(0,212,255,0.4); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.1) inset; }
.service-card:hover::before { opacity: 1; }
.service-icon { position: relative; z-index: 1; width: 52px; height: 52px; background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(124,58,237,0.15)); border: 1px solid rgba(0,212,255,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-icon svg { width: 24px; height: 24px; color: var(--cyan); }
.service-title { position: relative; z-index: 1; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.service-desc { position: relative; z-index: 1; color: var(--gray-light); font-size: 0.9rem; line-height: 1.7; }

/* ========= PROJETS ========= */
#projets { background: transparent; }
.projets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; }
.projet-card { position: relative; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: rgba(18, 28, 52, 0.6); backdrop-filter: blur(10px); transform-style: preserve-3d; transition: all 0.5s cubic-bezier(0.23,1,0.32,1); }
.projet-card:hover { transform: translateY(-10px) rotateX(2deg); border-color: rgba(0,212,255,0.4); box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(0,212,255,0.08), 0 1px 0 rgba(0,212,255,0.3) inset; }
.projet-visual { position: relative; height: 260px; overflow: hidden; }
.projet-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.projet-visual-content { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
.projet-icon-wrap { width: 80px; height: 80px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; background: rgba(5,8,17,0.7); backdrop-filter: blur(10px); transition: transform 0.4s; }
.projet-card:hover .projet-icon-wrap { transform: scale(1.1); }
.projet-icon-wrap svg { width: 36px; height: 36px; }
.projet-label { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: -0.5px; text-shadow: 0 2px 20px rgba(0,0,0,0.8); }
.projet-sublabel { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; }
.scan-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 3; background: linear-gradient(90deg, transparent, var(--cyan), transparent); opacity: 0; transition: opacity 0.3s; }
.projet-card:hover .scan-line { opacity: 1; animation: scanDown 2s linear infinite; }
.projet-info { padding: 28px 32px; }
.projet-info-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.projet-info-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); }
.projet-status { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; color: #22c55e; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.projet-status .dot { width: 5px; height: 5px; background: #22c55e; border-radius: 50%; animation: pulseDot 2s infinite; }
.projet-desc { color: var(--gray-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.projet-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { padding: 4px 12px; font-size: 0.72rem; font-weight: 500; border-radius: 100px; letter-spacing: 0.05em; }
.tag-cyan { background: rgba(0,212,255,0.1); color: var(--cyan); border: 1px solid rgba(0,212,255,0.2); }
.tag-violet { background: rgba(124,58,237,0.1); color: var(--violet-light); border: 1px solid rgba(124,58,237,0.2); }
.projet-features { margin: 16px 0 20px; }
.projet-feature { display: flex; align-items: center; gap: 10px; color: var(--gray-light); font-size: 0.85rem; margin-bottom: 8px; }
.feature-check { width: 16px; height: 16px; flex-shrink: 0; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.feature-check svg { width: 8px; height: 8px; stroke: var(--cyan); }

/* ========= STACK ========= */
#stack { background: rgba(18, 28, 52, 0.55); backdrop-filter: blur(10px); }
.stack-categories { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.stack-cat-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.stack-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.stack-badge { display: flex; align-items: center; gap: 10px; padding: 10px 20px; border: 1px solid var(--border); border-radius: 8px; background: rgba(255,255,255,0.02); font-size: 0.88rem; font-weight: 500; color: var(--gray-light); transition: all 0.3s; }
.stack-badge:hover { border-color: rgba(0,212,255,0.3); color: var(--white); background: rgba(0,212,255,0.05); transform: translateY(-2px); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ========= CONTACT ========= */
#contact { background: transparent; position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, rgba(0,212,255,0.08) 40%, transparent 70%); pointer-events: none; }
.contact-box { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; }
.contact-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -1.5px; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.contact-sub { color: var(--gray-light); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.7; }
.contact-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-email-wrap { margin-top: 24px; }
.contact-email-link { font-size: 0.9rem; color: var(--gray); letter-spacing: 0.02em; transition: color 0.2s; }
.contact-email-link:hover { color: var(--cyan); }

/* ========= FOOTER ========= */
footer { padding: 32px 60px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; background: rgba(11, 18, 36, 0.5); backdrop-filter: blur(10px); }
.footer-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; background: linear-gradient(135deg, var(--cyan), var(--violet-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-copy { font-size: 0.8rem; color: var(--gray); }
.footer-right a { color: var(--gray); font-size: 0.85rem; transition: color 0.2s; }
.footer-right a:hover { color: var(--cyan); }

/* ========= SCROLL REVEAL ========= */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========= ANIMATIONS ========= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes pulseDot { 0%, 100% { opacity: 1; box-shadow: 0 0 6px #22c55e; } 50% { opacity: 0.5; box-shadow: 0 0 2px #22c55e; } }
@keyframes scanDown { from { top: 0; } to { top: 100%; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ========= RESPONSIVE ========= */
@media (max-width: 980px) {
  .about-wrap { grid-template-columns: 1fr; gap: 56px; max-width: 560px; }
  .about-media { order: -1; }
  .reveal-left, .reveal-right { transform: translateY(32px); }
}
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }
  .hero-stats { gap: 32px; }
  .projets-grid { grid-template-columns: 1fr; }
  .projet-card:hover { transform: translateY(-6px); }
  footer { padding: 24px; }
}
@media (max-width: 520px) {
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.9rem; }
  .about-badge-float { right: 8px; bottom: -18px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
