/* ==========================================
   DESIGN SYSTEM — VISION PRO LIGHT
   Lucas Leroux Portfolio
========================================== */
:root {
  --white: #ffffff;
  --bg: #f5f5f7;
  --bg-glass: rgba(255, 255, 255, 0.75);
  --bg-glass-2: rgba(255, 255, 255, 0.92);
  --border: rgba(0, 0, 0, 0.07);
  --border-glass: rgba(255, 255, 255, 0.7);

  --text-1: #1d1d1f;
  --text-2: #6e6e73;
  --text-3: #98989d;

  --accent: #7B5CF6;
  --accent-2: #5B8AF5;
  --accent-3: #E879F9;
  --green: #10B981;
  --blue: #0A84FF;
  --red: #FF3B30;
  --orange: #FF9F0A;

  --gradient: linear-gradient(135deg, #7B5CF6 0%, #5B8AF5 50%, #E879F9 100%);
  --gradient-soft: linear-gradient(135deg, rgba(123, 92, 246, 0.10) 0%, rgba(91, 138, 245, 0.10) 50%, rgba(232, 121, 249, 0.07) 100%);

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-accent: 0 8px 32px rgba(123, 92, 246, 0.30);

  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --container: 1100px;
  --section-y: clamp(80px, 10vw, 140px);

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 48px;
  --r-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================
   LOADER
========================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--text-1);
  letter-spacing: -0.05em;
  animation: loader-pulse 1.5s ease-in-out infinite;
}

.loader-logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes loader-pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.loader-bar {
  width: 120px;
  height: 3px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: var(--r-full);
  animation: loader-fill 1.4s var(--ease-out) forwards;
}

@keyframes loader-fill {
  0% {
    width: 0%;
  }

  60% {
    width: 80%;
  }

  100% {
    width: 100%;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-1);
  background: var(--bg);
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='20'%3E%3Cpath d='M2 2 L2 17 L5 13 L8 20 L11 18.5 L8 12 L13 12 Z' fill='%23111' stroke='%23fff' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E") 2 2, auto;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  border: none;
  background: none;
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent), var(--accent-2));
  border-radius: var(--r-full);
}

/* ==========================================
   PROGRESS BAR
========================================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 var(--r-full) var(--r-full) 0;
}

/* ==========================================
   CUSTOM CURSOR
========================================== */
.cursor-dot,
.cursor-ring {
  display: none;
}

@media (hover: none) {

  body,
  button,
  a {
    cursor: auto;
  }
}

/* ==========================================
   LAYOUT
========================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

section:not(.hero) {
  padding: var(--section-y) 0;
}

.section-white {
  background: var(--white);
}

/* ==========================================
   TYPOGRAPHY UTILITIES
========================================== */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-1);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section-header .section-desc {
  margin: 0 auto;
}

.body-text {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.body-text strong {
  color: var(--text-1);
  font-weight: 600;
}

/* ==========================================
   BUTTONS
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out), background 0.2s;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(123, 92, 246, 0.40);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-1);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--white);
  color: var(--text-1);
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(var(--white), var(--white)),
    var(--gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(123, 92, 246, 0.18);
}

.btn-outline i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ==========================================
   CHIPS
========================================== */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-2);
}

.chip-sm {
  padding: 4px 10px;
  font-size: 12px;
}

.chip-accent {
  background: var(--gradient-soft);
  color: var(--accent);
  border: 1px solid rgba(123, 92, 246, 0.2);
}

/* ==========================================
   SCROLL REVEAL
========================================== */
[data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
}

[data-reveal="fade-up"] {
  transform: translateY(32px);
}

[data-reveal="fade-right"] {
  transform: translateX(-32px);
}

[data-reveal="fade-left"] {
  transform: translateX(32px);
}

[data-reveal="fade-scale"] {
  transform: scale(0.93);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

[data-delay="0.05"] {
  transition-delay: 0.05s;
}

[data-delay="0.1"] {
  transition-delay: 0.1s;
}

[data-delay="0.15"] {
  transition-delay: 0.15s;
}

[data-delay="0.2"] {
  transition-delay: 0.2s;
}

[data-delay="0.25"] {
  transition-delay: 0.25s;
}

[data-delay="0.3"] {
  transition-delay: 0.3s;
}

[data-delay="0.35"] {
  transition-delay: 0.35s;
}

[data-delay="0.4"] {
  transition-delay: 0.4s;
}

/* ==========================================
   AURORA
========================================== */
/* Hero particles canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(123, 92, 246, 0.28) 0%, transparent 70%);
  top: -200px;
  left: -150px;
  animation: aurora-drift 12s ease-in-out infinite;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 138, 245, 0.22) 0%, transparent 70%);
  top: -50px;
  right: -200px;
  animation: aurora-drift 15s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.20) 0%, transparent 70%);
  bottom: -100px;
  left: 30%;
  animation: aurora-drift 10s ease-in-out infinite;
  animation-delay: -6s;
}

.orb-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(91, 138, 245, 0.15) 0%, transparent 70%);
  bottom: 50px;
  right: 10%;
  animation: aurora-drift 18s ease-in-out infinite reverse;
  animation-delay: -9s;
}

@keyframes aurora-drift {
  0% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }

  25% {
    transform: translate(30px, -20px) scale(1.08);
    border-radius: 42% 58% 60% 40% / 48% 52% 48% 52%;
  }

  50% {
    transform: translate(-20px, 25px) scale(0.94);
    border-radius: 55% 45% 38% 62% / 56% 44% 56% 44%;
  }

  75% {
    transform: translate(25px, 15px) scale(1.04);
    border-radius: 44% 56% 52% 48% / 40% 60% 42% 58%;
  }

  100% {
    transform: translate(0, 0) scale(1);
    border-radius: 50%;
  }
}

/* ==========================================
   HEADER / NAV
========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px clamp(20px, 5vw, 48px);
  transition: padding 0.4s var(--ease-smooth);
}

.header.scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-glass);
  border-radius: var(--r-full);
  height: 52px;
  padding: 0 8px 0 20px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: box-shadow 0.4s;
}

.header.scrolled .nav {
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  margin-right: 8px;
}

.nav-logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
}

.nav-indicator {
  position: absolute;
  height: 34px;
  border-radius: var(--r-full);
  background: rgba(0, 0, 0, 0.06);
  transition: left 0.35s var(--ease-spring), width 0.35s var(--ease-spring), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.nav-indicator.visible {
  opacity: 1;
}

.nav-link {
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-1);
  background: rgba(0, 0, 0, 0.05);
}

.nav-cta {
  padding: 9px 18px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  background: var(--text-1);
  color: #fff;
  transition: transform 0.3s var(--ease-spring), background 0.2s, box-shadow 0.3s;
  flex-shrink: 0;
  margin-left: 8px;
}

.nav-cta:hover {
  background: #000;
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 8px;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s var(--ease-spring), opacity 0.2s;
}

.nav-hamburger.open span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(245, 245, 247, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 700;
  color: var(--text-1);
  padding: 8px 32px;
  border-radius: var(--r-md);
  opacity: 0;
  transform: translateY(16px);
  transition: color 0.2s, background 0.2s, transform 0.3s var(--ease-spring), opacity 0.3s;
}

.mobile-link.visible {
  opacity: 1;
  transform: none;
}

.mobile-link:hover {
  color: var(--accent);
  background: rgba(123, 92, 246, 0.06);
}

/* ==========================================
   HERO
========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 100px;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* Reveal on load */
.hero-badge,
.hero-title,
.hero-role,
.hero-desc,
.hero-actions,
.hero-stats {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(10px);
  animation: hero-enter 0.9s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--r-full);
  background: var(--bg-glass-2);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 152px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.045em;
  color: var(--text-1);
  margin-bottom: 18px;
}

.hero-word {
  display: block;
}

.hero-word-gradient {
  background: linear-gradient(135deg, #7B5CF6 0%, #5B8AF5 25%, #E879F9 50%, #7B5CF6 75%, #5B8AF5 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Character-by-character animation */
.hero-word .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotateX(-40deg);
  filter: blur(6px);
  animation: char-reveal 0.7s var(--ease-out) forwards;
}

@keyframes char-reveal {
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.hero-role {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.2vw, 34px);
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-role em {
  font-style: normal;
  color: var(--text-1);
  font-weight: 600;
}

.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-br {
  display: none;
}

@media (min-width: 640px) {
  .hero-br {
    display: block;
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  padding: 20px 0;
  background: var(--bg-glass-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 48px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 400;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-in-scroll 1s var(--ease-out) 2.4s forwards;
}

@keyframes fade-in-scroll {
  to {
    opacity: 1;
  }
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid var(--text-3);
  border-radius: var(--r-full);
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--text-3);
  border-radius: var(--r-full);
  animation: wheel-anim 2s ease-in-out 2.6s infinite;
}

@keyframes wheel-anim {

  0%,
  100% {
    transform: none;
    opacity: 1;
  }

  60% {
    transform: translateY(5px);
    opacity: 0.3;
  }
}

/* ==========================================
   ABOUT
========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

.about-image-side {
  display: flex;
  justify-content: center;
}

.about-img-wrapper {
  position: relative;
  width: clamp(220px, 32vw, 360px);
  border-radius: var(--r-xl);
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--r-xl) + 4px);
  background: var(--gradient);
  z-index: -1;
}

.about-img-glow {
  position: absolute;
  inset: -24px;
  border-radius: var(--r-2xl);
  background: var(--gradient-soft);
  filter: blur(40px);
  z-index: -2;
}

.about-img {
  width: 100%;
  border-radius: var(--r-xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.about-stats-row {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 20px 24px;
  flex: 1;
  border-right: 1px solid var(--border);
}

.mini-stat:last-child {
  border-right: none;
}

.mini-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
}

.mini-stat-label {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
}

.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================
   SKILLS
========================================== */
.skills {
  background: var(--bg);
}

.skills-categories {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}

.skill-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.skill-category-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: var(--gradient-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
  border: 1px solid rgba(123, 92, 246, 0.12);
}

.skill-category-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
  flex: 1;
}

.skill-category-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
}

.skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out), border-color 0.2s;
}

.skill-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 92, 246, 0.2);
}

.skill-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.3s var(--ease-spring);
}

.skill-card:hover .skill-icon {
  transform: scale(1.15) rotate(-4deg);
}

.skill-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

/* ==========================================
   TILT CARD + GLOW
========================================== */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.tilt-card .card-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 92, 246, 0.14) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
  mix-blend-mode: normal;
}

.tilt-card:hover .card-glow {
  opacity: 1;
}

.tilt-card>*:not(.card-glow) {
  position: relative;
  z-index: 1;
}

/* ==========================================
   TIMELINE
========================================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2), rgba(232, 121, 249, 0.2), transparent);
  border-radius: var(--r-full);
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}

.timeline-item:hover .timeline-dot {
  background: var(--white);
  border-color: rgba(123, 92, 246, 0.3);
  transform: scale(1.1);
}

.timeline-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s var(--ease-out), border-color 0.2s, transform 0.3s var(--ease-spring);
}

.timeline-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(123, 92, 246, 0.15);
}

.timeline-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.timeline-date {
  font-size: 13px;
  color: var(--text-3);
}

.timeline-badge {
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
}

.timeline-badge-purple {
  background: rgba(123, 92, 246, 0.10);
  color: var(--accent);
}

.timeline-badge-blue {
  background: rgba(10, 132, 255, 0.10);
  color: var(--blue);
}

.timeline-badge-green {
  background: rgba(16, 185, 129, 0.10);
  color: var(--green);
}

.timeline-badge-orange {
  background: rgba(255, 159, 10, 0.10);
  color: var(--orange);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
}

.timeline-company {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ==========================================
   PROJECTS
========================================== */
.projects {
  background: var(--bg);
}

.projects-filter {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: clamp(32px, 4vw, 48px);
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-xs);
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-spring);
}

.filter-btn.active {
  background: var(--text-1);
  color: #fff;
}

.filter-btn:hover:not(.active) {
  color: var(--text-1);
  background: rgba(0, 0, 0, 0.05);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.4s var(--ease-out),
    border-color 0.2s,
    transform 0.4s var(--ease-spring),
    opacity 0.4s ease,
    scale 0.4s ease;
}

.project-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(123, 92, 246, 0.15);
}

.project-card.hidden {
  opacity: 0;
  scale: 0.94;
  pointer-events: none;
}

.project-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}

.project-featured-visual {
  position: relative;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  overflow: hidden;
}

.project-featured-glow {
  position: absolute;
  inset: -40px;
  background: var(--gradient);
  opacity: 0.12;
  filter: blur(60px);
  animation: aurora-drift 8s ease-in-out infinite;
}

.project-featured-icon {
  position: relative;
  z-index: 1;
  font-size: 72px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 8px 24px rgba(123, 92, 246, 0.3));
  animation: float-icon 5s ease-in-out infinite;
}

@keyframes float-icon {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.project-body {
  padding: 28px 32px;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.project-category {
  font-size: 12px;
  color: var(--text-3);
}

.project-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
  line-height: 1.2;
}

.project-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 16px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.project-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  background: var(--text-1);
  color: #fff;
  transition: transform 0.3s var(--ease-spring), background 0.2s, box-shadow 0.3s;
}

.project-link-btn:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.project-link-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
}

.project-link-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-1);
  box-shadow: none;
}

/* ==========================================
   CONTACT
========================================== */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb-contact-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 92, 246, 0.16) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  filter: blur(80px);
  position: absolute;
  border-radius: 50%;
  animation: aurora-drift 14s ease-in-out infinite;
}

.orb-contact-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.12) 0%, transparent 70%);
  bottom: -150px;
  left: -50px;
  filter: blur(80px);
  position: absolute;
  border-radius: 50%;
  animation: aurora-drift 18s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.contact-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-title {
  margin-bottom: 16px;
}

.contact-inner .section-desc {
  margin: 0 auto;
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
  max-width: 1080px;
  margin: 40px auto 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-glass-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out), border-color 0.2s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 92, 246, 0.2);
}

.contact-card-location {
  cursor: default;
}

.contact-card-location:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.12) rotate(-4deg);
}

.contact-card-icon-green {
  background: rgba(16, 185, 129, 0.10);
  color: var(--green);
}

.contact-card-icon-blue {
  background: rgba(10, 132, 255, 0.10);
  color: var(--blue);
}

.contact-card-icon-red {
  background: rgba(255, 59, 48, 0.10);
  color: var(--red);
}

.contact-card-info {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.contact-card-label {
  display: block;
  font-size: 10px;
  color: var(--text-3);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-card-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card-arrow {
  font-size: 12px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}

.contact-card:hover .contact-card-arrow {
  transform: translate(2px, -2px);
  color: var(--accent);
}

/* ==========================================
   FOOTER
========================================== */
.footer {
  background: var(--text-1);
  padding: 40px 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}

.footer-logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  transition: background 0.2s, color 0.2s, transform 0.3s var(--ease-spring);
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: scale(1.12);
}

/* ==========================================
   HERO SCROLL PARALLAX
========================================== */
.hero-container {
  transition: transform 0.1s linear, opacity 0.1s linear, filter 0.1s linear;
}

/* ==========================================
   SKILL CARD SHINE
========================================== */
.skill-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(255, 255, 255, 0.7) 45%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 55%);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.3s;
  pointer-events: none;
}

.skill-card {
  position: relative;
  overflow: hidden;
}

.skill-card:hover::after {
  opacity: 1;
  animation: card-shine 0.6s var(--ease-out) forwards;
}

@keyframes card-shine {
  to {
    transform: translateX(100%);
  }
}

/* ==========================================
   CHIP HOVER
========================================== */
.chip {
  transition: transform 0.25s var(--ease-spring), background 0.2s, color 0.2s;
}

.chip:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(123, 92, 246, 0.10);
  color: var(--accent);
}

/* ==========================================
   MAGNETIC
========================================== */
.magnetic {
  transition: transform 0.45s var(--ease-spring);
  display: inline-flex;
}

/* ==========================================
   RÉFLEXIONS
========================================== */
.reflections {
  position: relative;
  overflow: hidden;
}

.reflections-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.orb-r-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(123, 92, 246, 0.12) 0%, transparent 70%);
  top: -120px;
  left: -120px;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: aurora-drift 16s ease-in-out infinite;
}

.orb-r-2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(232, 121, 249, 0.10) 0%, transparent 70%);
  bottom: -120px;
  right: -120px;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: aurora-drift 20s ease-in-out infinite reverse;
  animation-delay: -4s;
}

.reflections .container {
  position: relative;
  z-index: 1;
}

.reflections-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 9vw, 96px);
}

.reflection {
  position: relative;
  padding-top: 8px;
}

.reflection-number {
  position: absolute;
  top: -28px;
  right: -8px;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, rgba(123, 92, 246, 0.10) 0%, rgba(123, 92, 246, 0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.reflection-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.reflection-chapter {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reflection-period {
  font-size: 13px;
  color: var(--text-3);
  position: relative;
  padding-left: 18px;
}

.reflection-period::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--text-3);
  transform: translateY(-50%);
}

.reflection-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 28px;
  max-width: 620px;
}

.reflection-body {
  position: relative;
  z-index: 1;
}

.reflection-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 18px;
  max-width: 660px;
}

.reflection-body p:last-child {
  margin-bottom: 0;
}

.reflection-body p em {
  font-style: italic;
  color: var(--text-1);
  font-weight: 500;
}

.reflection-body p strong {
  font-weight: 600;
  color: var(--text-1);
  background: linear-gradient(180deg, transparent 65%, rgba(123, 92, 246, 0.16) 65%);
  padding: 0 2px;
}

.reflection-quote {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  padding: 28px 32px 28px 40px;
  background: var(--gradient-soft);
  border-radius: var(--r-md);
  border-left: 3px solid var(--accent);
  max-width: 660px;
  box-shadow: 0 2px 0 rgba(123, 92, 246, 0.05);
}

.reflection-quote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  pointer-events: none;
}

.reflection-quote p {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

/* ==========================================
   BACK TO TOP
========================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-glass-2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition:
    opacity 0.35s var(--ease-out),
    transform 0.45s var(--ease-spring),
    background 0.2s,
    color 0.2s,
    box-shadow 0.3s;
  z-index: 950;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.back-to-top:hover {
  background: var(--text-1);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
  }
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-side {
    order: -1;
  }

  .about-img-wrapper {
    width: clamp(200px, 50vw, 300px);
  }

  .project-featured {
    grid-template-columns: 1fr;
  }

  .project-featured-visual {
    min-height: 180px;
  }
}

@media (max-width: 900px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {

  .hero-stats {
    padding: 16px 0;
  }

  .hero-stat {
    padding: 0 24px;
  }

  .hero-stat-number {
    font-size: 28px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .timeline-dot {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

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

  .project-featured {
    grid-column: 1;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .reflection-number {
    top: -16px;
    right: -4px;
    font-size: 96px;
  }

  .reflection-title {
    font-size: 24px;
  }

  .reflection-body p {
    font-size: 16px;
    line-height: 1.75;
  }

  .reflection-quote {
    padding: 22px 24px 22px 30px;
    margin-top: 28px;
  }

  .reflection-quote p {
    font-size: 17px;
  }

  .skill-category-header {
    gap: 10px;
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    width: 100%;
  }

  .hero-stat-divider {
    width: 48px;
    height: 1px;
  }

  .hero-stat {
    padding: 0;
  }

  .about-stats-row {
    flex-direction: column;
  }

  .mini-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px;
  }

  .mini-stat:last-child {
    border-bottom: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }
}