/* ============================================
   VNESYS ABOUT — OLED Dark (#000000) & Amber Gold (#F59E0B) Theme
   Aligned with creators.css, earn.css & community.css
============================================ */

/* --------------------------------------------
   1. VARIABLES & RESET
-------------------------------------------- */
:root {
  --gold:          #F59E0B;
  --gold-hover:    #D97706;
  --gold-glow:     rgba(245, 158, 11, 0.25);
  --bg-dark:       #000000;
  --bg-surface:    #0E0E10;
  --bg-card:       #151518;
  --bg-card-alt:   #1A1A1E;
  --border:        #242429;
  --border-subtle: #1C1C20;
  --text-main:     #FFFFFF;
  --text-sub:      #A1A1AA;
  --text-muted:    #71717A;
  --nav-h:         68px;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background: var(--bg-dark);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------
   2. NAVBAR (Glassmorphism Dark)
-------------------------------------------- */
.top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 900;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2em;
  height: var(--nav-h);
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-logo img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.4em;
  list-style: none;
}

.navbar-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.92em;
  font-weight: 600;
  padding: 0.5em 1.1em;
  border-radius: 100px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.navbar-links a:hover {
  background: var(--bg-card);
  color: var(--gold);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  gap: 5px;
}

.navbar-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.navbar-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.open span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.8em 0 1.2em;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  z-index: 899;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 0 1.5em;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  display: block;
  padding: 0.85em 0.5em;
  color: var(--text-sub);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }
  .navbar-toggle {
    display: flex;
  }
}

/* --------------------------------------------
   3. HERO SECTION
-------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 120px 1.5em 80px;
  text-align: center;
  background: radial-gradient(circle at 50% 25%, #171412 0%, #08080A 65%, #000000 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-photo {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../img/about/hero.webp');
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.45) 0%, rgba(8, 8, 10, 0.65) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(245, 158, 11, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(245, 158, 11, 0.05) 0%, transparent 60%);
  animation: bgPulse 10s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.05); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 70px 70px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--d, 8s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(110vh); opacity: 0; }
  8%   { opacity: 0.45; }
  92%  { opacity: 0.15; }
  100% { transform: translateY(-10vh) translateX(var(--drift, 40px)); opacity: 0; }
}

.hero-eyebrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  padding: 0.45em 1.25em;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FBBF24;
  margin-bottom: 1.8em;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
  animation: fadeUp 0.8s ease 0.1s both;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: rdot 1.8s ease-in-out infinite;
}

@keyframes rdot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 9.5vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title .line:nth-child(1) .line-inner { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) .line-inner { animation-delay: 0.28s; }
.hero-title .line:nth-child(3) .line-inner { animation-delay: 0.41s; }

@keyframes lineUp {
  to { transform: translateY(0); }
}

.hero-title .r {
  color: var(--gold);
  text-shadow: 0 0 35px rgba(245, 158, 11, 0.35);
}

.hero-title .dim {
  color: rgba(255, 255, 255, 0.25);
}

.hero-sub {
  position: relative;
  z-index: 2;
  font-size: clamp(0.95rem, 2.8vw, 1.15em);
  color: var(--text-sub);
  line-height: 1.75;
  max-width: 560px;
  margin: 2em auto 0;
  animation: fadeUp 1s ease 0.65s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  animation: fadeUp 1s ease 1s both;
}

.hero-scroll span {
  font-size: 0.7em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------
   4. SECTIONS GLOBALES
-------------------------------------------- */
.section {
  position: relative;
  padding: 7em 0;
  overflow: hidden;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

/* --------------------------------------------
   5. MISSION SECTION
-------------------------------------------- */
.mission {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5em;
  align-items: center;
}

.mission-label {
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1em;
}

.mission-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.1em;
}

.mission-title em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 25px rgba(245, 158, 11, 0.3);
}

.mission-text {
  font-size: 1.02em;
  color: var(--text-sub);
  line-height: 1.8;
}

.mission-text + .mission-text {
  margin-top: 1.2em;
}

.mission-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.75);
}

.mission-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.mission-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 55%);
}

.mission-visual-badge {
  position: absolute;
  bottom: 1.5em;
  left: 1.5em;
  background: rgba(14, 14, 16, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1em 1.4em;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.mvb-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.2em;
}

.mvb-label {
  font-size: 0.75em;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------
   6. STATS STRIP (Dark Card with Gold Accents)
-------------------------------------------- */
.stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5em 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em;
  text-align: center;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 25px rgba(245, 158, 11, 0.35);
  margin-bottom: 0.3em;
}

.stat-label {
  font-size: 0.82em;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --------------------------------------------
   7. FEATURES GRID
-------------------------------------------- */
.features {
  background:
    linear-gradient(rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.82)),
    url('../../img/about/Everything.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--border-subtle);
}

.features-header {
  text-align: center;
  margin-bottom: 4em;
}

.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.features-header h2 em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 25px rgba(245, 158, 11, 0.35);
}

.features-header p {
  color: var(--text-sub);
  margin-top: 0.9em;
  font-size: 1.05em;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.2em 1.8em;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  background: var(--bg-card-alt);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.12);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  border-radius: 0 0 3px 0;
  transition: height 0.4s ease;
  box-shadow: 0 0 10px var(--gold);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  margin-bottom: 1.4em;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.2));
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15em;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #FFFFFF;
}

.feature-desc {
  font-size: 0.92em;
  color: var(--text-sub);
  line-height: 1.7;
}

/* --------------------------------------------
   8. VALUES (STICKY + LIST)
-------------------------------------------- */
.values {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5em;
  align-items: start;
}

.values-left {
  position: sticky;
  top: calc(var(--nav-h) + 3em);
}

.values-left h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.values-left h2 em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 25px rgba(245, 158, 11, 0.35);
}

.values-left p {
  color: var(--text-sub);
  margin-top: 1.2em;
  line-height: 1.75;
  font-size: 1.02em;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}

.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2em 2.2em;
  display: flex;
  gap: 1.8em;
  align-items: flex-start;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.value-item:hover {
  border-color: rgba(245, 158, 11, 0.4);
  background: var(--bg-card-alt);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.value-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  transition: color 0.3s;
}

.value-item:hover .value-num {
  color: var(--gold);
}

.value-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15em;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #FFFFFF;
}

.value-content p {
  font-size: 0.92em;
  color: var(--text-sub);
  line-height: 1.75;
}

/* --------------------------------------------
   9. CTA SECTION
-------------------------------------------- */
.cta-section {
  background:
    radial-gradient(circle at 50% 50%, rgba(23, 20, 18, 0.55) 0%, rgba(0, 0, 0, 0.85) 70%),
    url('../../img/about/Ready.webp');
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  padding: 8em 0;
}

.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.6em;
}

.cta-section h2 em {
  font-style: normal;
  color: var(--gold);
  text-shadow: 0 0 35px rgba(245, 158, 11, 0.4);
}

.cta-section p {
  color: var(--text-sub);
  font-size: 1.05em;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2.5em;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.9em 2.6em;
  background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
  color: #000000;
  border: none;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1em;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 25px rgba(245, 158, 11, 0.4);
  transition: transform 0.25s, box-shadow 0.25s, filter 0.2s;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 35px rgba(245, 158, 11, 0.6);
  filter: brightness(1.08);
}

/* --------------------------------------------
   10. FOOTER (uniformisé - identique à earn.html)
-------------------------------------------- */
footer {
  border-top: 1px solid #1C1C20;
  background: #050507;
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer .logo img {
  height: 32px;
  opacity: 0.6;
  filter: brightness(2);
}

footer p {
  font-size: 0.8rem;
  color: #71717A;
}

footer nav a {
  color: #71717A;
  text-decoration: none;
  font-size: 0.8rem;
  margin-left: 20px;
  transition: color 0.2s;
}

footer nav a:hover {
  color: #F59E0B;
}

footer > a {
  color: #71717A;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

footer > a:hover {
  color: #F59E0B;
}

/* --------------------------------------------
   11. REVEAL ANIMATIONS & RESPONSIVE
-------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }
.rd5 { transition-delay: 0.5s; }

@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 3em;
  }
  .mission-visual {
    aspect-ratio: 16/9;
    order: -1;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 3em;
  }
  .values-left {
    position: static;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  footer nav a {
    margin: 0 10px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}

:root {
  --gold:          #F59E0B;
  --gold-hover:    #D97706;
  --bg-card:       #151518;
  --border:        #242429;
  --border-subtle: #1C1C20;
  --text-sub:      #A1A1AA;
  --nav-h:         68px;
}

.top-navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 2em;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-logo img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.4em;
  list-style: none;
  margin: 0; padding: 0;
}

.navbar-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.92em;
  font-weight: 600;
  padding: 0.5em 1.1em;
  border-radius: 100px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.navbar-links a:hover {
  background: var(--bg-card);
  color: var(--gold);
}

.navbar-links a.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #D97706 100%);
  color: #000000 !important;
  font-weight: 700;
  padding: 0.5em 1.3em;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  margin-left: 0.4em;
}

.navbar-links a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.55);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px; height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  gap: 5px;
}

.navbar-toggle span {
  display: block;
  height: 2px; width: 20px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.navbar-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0;
  width: 100%;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.8em 0 1.2em;
  z-index: 999;
}

.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0 1.5em; margin: 0; }
.mobile-menu li { border-bottom: 1px solid var(--border-subtle); }
.mobile-menu li:last-child { border-bottom: none; }

.mobile-menu a {
  display: block;
  padding: 0.85em 0.5em;
  color: var(--text-sub);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .top-navbar { padding: 0 1.2em; }
  .navbar-links { display: none; }
  .navbar-toggle { display: flex; }
}

/* ===== Extracted from about.html inline <style> block ===== */
/* Secondary CTA button — page-specific addition */
.cta-actions { display: flex; gap: 1em; flex-wrap: wrap; justify-content: center; }
  .cta-btn-secondary {
    display: inline-flex; align-items: center; gap: 0.7em;
    padding: 0.9em 2.6em;
    background: var(--bg-card);
    color: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1em; font-weight: 800;
    letter-spacing: 0.05em; text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s, border-color 0.25s, background 0.2s, color 0.2s;
  }
  .cta-btn-secondary:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: var(--gold);
    color: var(--gold);
    background: var(--bg-card-alt);
  }
