/* =========================================
   Marcus LeVere - VP Development Website
   Styled after ANNA reference architecture
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Work+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  /* Core navy palette */
  --color-navy: #0a1633;
  --color-navy-dark: #030c1d;
  --color-navy-mid: #10274f;
  --color-navy-light: #1b3f79;
  --color-navy-glass: rgba(10, 22, 51, 0.86);

  /* Accent spectrum (warm coral) */
  --color-gold: #f26c4f;
  --color-gold-light: #ff9776;
  --color-gold-dark: #cb4a2c;
  --color-gold-pale: #ffe4db;
  --color-gold-glow: rgba(242, 108, 79, 0.24);
  --color-gold-subtle: rgba(242, 108, 79, 0.09);

  /* Secondary accent */
  --color-amber: #3db5bf;
  --color-amber-light: #6fd2d9;

  /* Surface / BG */
  --color-bg: #f7f2ea;
  --color-bg-warm: #efe7da;
  --color-surface: #ffffff;
  --color-surface-dark: #07132e;

  /* Text */
  --color-text: #0a1633;
  --color-text-secondary: #30466f;
  --color-text-muted: #7386ad;
  --color-text-light: #edf1fb;

  /* Borders */
  --color-border: rgba(10, 22, 51, 0.08);
  --color-border-gold: rgba(242, 108, 79, 0.34);
  --color-border-hover: rgba(242, 108, 79, 0.52);

  /* Typography */
  --font-heading: 'Sora', -apple-system, sans-serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;

  /* Layout */
  --max-width: 1240px;
  --header-height: 76px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition: 0.4s var(--ease-out);
  --transition-slow: 0.7s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* --- Highlight Text --- */
.highlight {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-delay-4 {
  transition-delay: 0.48s;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-spring);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Particle Canvas --- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ================================
   SCROLL PROGRESS BAR
   ================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg,
      var(--color-gold-dark) 0%,
      var(--color-gold) 40%,
      var(--color-gold-light) 80%,
      #fff8e1 100%);
  z-index: 2000;
  transition: width 0.05s linear;
  border-radius: 0 2px 2px 0;
  /* Glowing tip */
  box-shadow:
    0 0 8px rgba(242, 108, 79, 0.7),
    0 0 20px rgba(242, 108, 79, 0.3);
}

/* ================================
   HEADER
   ================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 62, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(242, 108, 79, 0.18);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8, 15, 36, 0.96);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(242, 108, 79, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
  gap: 8px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  padding-right: 8px;
}

.header-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 4px;
}

.header-nav a {
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.header-nav a:hover {
  color: #fff;
  background: rgba(242, 108, 79, 0.12);
}

.header-cta {
  flex-shrink: 0;
}

/* --- Buttons --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-navy);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  transition: left 0.6s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta-gold {
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 60%, var(--color-gold-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--color-gold-glow);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-cta-gold:hover {
  box-shadow: 0 8px 36px rgba(242, 108, 79, 0.4);
}

.btn-cta-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  box-shadow: none;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

.btn-cta-outline--light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-cta-outline--light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-cta-lg {
  padding: 14px 36px;
  font-size: 1rem;
}

/* --- Burger --- */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: rgba(242, 108, 79, 0.12);
  border: 1px solid rgba(242, 108, 79, 0.25);
  border-radius: var(--radius-sm);
  padding: 9px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: calc(var(--header-height) + 60px) clamp(20px, 4vw, 60px) 100px;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: visible;
}

/* Full-width hero background */
.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy) 40%, var(--color-navy-mid) 100%);
  z-index: -2;
}

/* Animated mesh gradients */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(242, 108, 79, 0.1) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

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

/* Dark overlay behind everything on hero page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy) 40%, var(--color-navy-mid) 100%);
  z-index: -3;
}

.hero-bg-overlay {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(3, 12, 29, 0.49) 0%,
      rgba(3, 12, 29, 0.44) 10%,
      rgba(3, 12, 29, 0.19) 24%,
      rgba(3, 12, 29, 0.06) 36%,
      rgba(3, 12, 29, 0.06) 64%,
      rgba(3, 12, 29, 0.19) 76%,
      rgba(3, 12, 29, 0.44) 90%,
      rgba(3, 12, 29, 0.49) 100%),
    linear-gradient(180deg, rgba(3, 12, 29, 0.7) 0%, rgba(10, 22, 51, 0.76) 42%, rgba(16, 39, 79, 0.82) 100%),
    url("assets/skill-1-imdb-collage.jpg") center center / cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  filter: saturate(0.82) contrast(0.96);
}

.hero-bg-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 42%, rgba(61, 181, 191, 0.18) 0%, transparent 42%),
    radial-gradient(circle at 80% 48%, rgba(242, 108, 79, 0.2) 0%, transparent 44%);
}

.hero-bg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 90px);
  opacity: 0.28;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* --- Hero Badge --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 10px;
  background: rgba(242, 108, 79, 0.1);
  border: 1px solid rgba(242, 108, 79, 0.35);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-gold-pale);
  margin-bottom: 28px;
  animation: badge-float 4s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes badge-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes dot-pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* --- Hero Preheading --- */
.hero-preheading {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* --- Hero H1 --- */
.hero h1 {
  color: #ffffff;
  margin-bottom: 22px;
  max-width: 560px;
}

/* --- Hero Subtitle --- */
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* --- Hero Buttons --- */
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* --- Hero Stats --- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(242, 108, 79, 0.15);
}

.hero-stat {
  text-align: center;
  padding: 0 28px;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(242, 108, 79, 0.2);
}

/* --- Hero Visual: Animated Card Stack --- */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-visual-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(242, 108, 79, 0.13) 0%, transparent 70%);
  filter: blur(40px);
  animation: glow-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.hero-card-stack {
  position: relative;
  width: 360px;
  height: 420px;
}

.hring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 108, 79, 0.12);
  pointer-events: none;
}

.hring--outer {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-spin 18s linear infinite;
}

.hring--inner {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(242, 108, 79, 0.08);
  animation: ring-spin 12s linear infinite reverse;
}

@keyframes ring-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hcard--main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 108, 79, 0.3);
  border-radius: var(--radius-xl);
  padding: 28px 28px 24px;
  width: 240px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(242, 108, 79, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  z-index: 2;
  animation: card-float 6s ease-in-out infinite;
}

@keyframes card-float {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.hcard-avatar {
  width: 68px;
  height: 68px;
}

.hcard-avatar svg {
  width: 100%;
  height: 100%;
}

.hcard-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.hcard-role {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.hcard-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #86efac;
}

.hchip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 27, 62, 0.92);
  border: 1px solid rgba(242, 108, 79, 0.22);
  border-radius: var(--radius-md);
  padding: 9px 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  z-index: 3;
}

.hchip-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(242, 108, 79, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  flex-shrink: 0;
}

.hchip-val {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-gold-light);
}

.hchip-lbl {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.hchip--1 {
  top: 2%;
  left: -16%;
  animation: chip-float-1 7s ease-in-out infinite;
}

.hchip--2 {
  top: 2%;
  right: -14%;
  animation: chip-float-2 8s ease-in-out infinite 0.5s;
}

.hchip--3 {
  bottom: 22%;
  left: -18%;
  animation: chip-float-3 6.5s ease-in-out infinite 1s;
}

.hchip--4 {
  bottom: 4%;
  right: -12%;
  animation: chip-float-1 7.5s ease-in-out infinite 1.5s;
}

@keyframes chip-float-1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes chip-float-2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes chip-float-3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}


/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.2;
  }
}

/* ================================
   SECTIONS (Light)
   ================================ */
.section {
  position: relative;
  padding: 120px clamp(20px, 4vw, 60px);
  z-index: 1;
  background: var(--color-bg);
}

.section--dark {
  background: var(--color-navy);
  color: #fff;
}

.section--dark .section-title p,
.section--dark .section-title h4 {
  color: rgba(255, 255, 255, 0.6);
}

.section--dark .section-divider {
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
}

/* Section Title */
.section-title {
  margin-bottom: 72px;
  text-align: center;
}

.section-title.reveal {
  margin-bottom: 72px;
}

.section-title h2 {
  margin-bottom: 16px;
  color: var(--color-text);
}

.section--dark .section-title h2 {
  color: #fff;
}

#skills,
#achievements {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --section-parallax-y: 0px;
}

#skills::before,
#achievements::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translate(-50%, var(--section-parallax-y));
  background:
    linear-gradient(90deg,
      rgba(3, 12, 29, 0.49) 0%,
      rgba(3, 12, 29, 0.44) 10%,
      rgba(3, 12, 29, 0.19) 24%,
      rgba(3, 12, 29, 0.06) 36%,
      rgba(3, 12, 29, 0.06) 64%,
      rgba(3, 12, 29, 0.19) 76%,
      rgba(3, 12, 29, 0.44) 90%,
      rgba(3, 12, 29, 0.49) 100%),
    linear-gradient(180deg, rgba(3, 12, 29, 0.7) 0%, rgba(10, 22, 51, 0.76) 42%, rgba(16, 39, 79, 0.82) 100%),
    url("assets/skill-1-imdb-collage.jpg") center center / cover no-repeat;
  opacity: 0.1;
  filter: saturate(0.82) contrast(0.96);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

#skills::after,
#achievements::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 42%, rgba(61, 181, 191, 0.18) 0%, transparent 42%),
    radial-gradient(circle at 80% 48%, rgba(242, 108, 79, 0.2) 0%, transparent 44%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 90px);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

#skills>.container,
#achievements>.container {
  position: relative;
  z-index: 1;
}

.section-title p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.7;
  margin: 0 auto;
}

.section-title .section-divider {
  margin: 0 auto 24px;
}

.section-title--center,
.section-title.section-title--center {
  text-align: center;
}

.section-title--center h2 {
  margin: 0 auto 16px;
}

.section-title--center p {
  margin: 0 auto;
}

/* Section Divider */
.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
  border-radius: 2px;
  margin-bottom: 24px;
}

.section-divider--center {
  margin-left: auto;
  margin-right: auto;
}

.section-divider--light {
  background: linear-gradient(90deg, var(--color-gold-light), #fff);
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-text h2 {
  margin-bottom: 20px;
  color: var(--color-text);
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-body {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* About Pills */
.about-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition);
  cursor: default;
  box-shadow: 0 2px 8px rgba(13, 27, 62, 0.04);
}

.about-pill:hover {
  border-color: var(--color-border-gold);
  background: linear-gradient(135deg, #fff 0%, rgba(242, 108, 79, 0.04) 100%);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(242, 108, 79, 0.12);
}

.pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(242, 108, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: all var(--transition);
}

.about-pill:hover .pill-icon {
  background: rgba(242, 108, 79, 0.2);
  color: var(--color-gold-light);
}

/* ================================
   SKILLS GRID
   ================================ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.skill-card {
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 108, 79, 0.15);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0;
  align-items: stretch;
  min-height: 40px;
  max-height: 198px;
  height: 100%;
}

.skill-card::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242, 108, 79, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: 0;
}

.skill-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(242, 108, 79, 0.4);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.35);
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(242, 108, 79, 0.1);
  border: 1px solid rgba(242, 108, 79, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--color-gold-light);
  transition: all var(--transition);
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.skill-visual-row {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: block;
  margin-bottom: 0;
  min-height: 100%;
  position: static;
}

.skill-preview {
  width: 100%;
  height: 100%;
  min-height: 10px;
  max-height: 198px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  object-fit: cover;
  object-position: center center;
  border: 0;
  box-shadow: none;
}

.skill-card:hover .skill-icon-wrap {
  background: rgba(242, 108, 79, 0.16);
  transform: scale(1.1);
}

.skill-card:hover .skill-preview {
  filter: brightness(1.03) saturate(1.03);
}

.skill-card h3 {
  grid-column: 1;
  align-self: start;
  color: #ffffff;
  margin: 0 0 10px 0;
  padding: 22px 28px 0 82px;
  font-size: 1rem;
  line-height: 1.4;
}

.skill-card p {
  grid-column: 1;
  align-self: start;
  margin: 0;
  padding: 0 28px 22px 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.75;
}


/* ================================
   TRAVEL BANNER
   ================================ */
.travel-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(13, 27, 62, 0.12);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.travel-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(242, 108, 79, 0.1) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.travel-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(13, 27, 62, 0.2), 0 0 0 1px rgba(242, 108, 79, 0.25);
}

.travel-banner-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: rgba(242, 108, 79, 0.12);
  border: 1px solid rgba(242, 108, 79, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  flex-shrink: 0;
  transition: all var(--transition);
}

.travel-banner:hover .travel-banner-icon {
  background: rgba(242, 108, 79, 0.2);
  transform: scale(1.08);
}

.travel-banner-content {
  flex: 1;
}

.travel-banner-content h3 {
  color: #fff;
  margin-bottom: 8px;
}

.travel-banner-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.days-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  padding-top: 30px;
}

.days-cards::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 9px;
  height: 2px;
  background: linear-gradient(90deg, rgba(242, 108, 79, 0.28), rgba(242, 108, 79, 0.62), rgba(242, 108, 79, 0.28));
  box-shadow: 0 0 14px rgba(242, 108, 79, 0.25);
}

.day-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(242, 108, 79, 0.2);
  border-radius: 16px;
  padding: 18px 16px 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.day-card::before {
  content: '';
  position: absolute;
  top: -26px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--color-gold-light);
  border: 2px solid rgba(10, 22, 51, 0.8);
  box-shadow: 0 0 0 5px rgba(242, 108, 79, 0.16);
}

.day-card--start::after {
  content: '';
  position: absolute;
  top: -31px;
  left: 50%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(111, 210, 217, 0.66);
  box-shadow: 0 0 18px rgba(111, 210, 217, 0.35);
  animation: day1-radar-pulse 2.2s ease-out infinite;
}

@keyframes day1-radar-pulse {
  0% {
    transform: translateX(-50%) scale(0.7);
    opacity: 0.95;
  }
  70% {
    transform: translateX(-50%) scale(1.75);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) scale(1.75);
    opacity: 0;
  }
}

.day-card-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(242, 108, 79, 0.28);
  background: linear-gradient(135deg, rgba(242, 108, 79, 0.16) 0%, rgba(242, 108, 79, 0.06) 100%);
  color: var(--color-gold-light);
  margin-bottom: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.day-card h4 {
  color: var(--color-gold-light);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.day-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* ================================
   OUR JOURNEY TIMELINE
   ================================ */
.section--timeline {
  padding-bottom: clamp(72px, 9vw, 120px);
  position: relative;
}

.section--timeline::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  right: -180px;
  top: -160px;
  background: radial-gradient(circle, rgba(242, 108, 79, 0.16) 0%, rgba(242, 108, 79, 0.02) 58%, transparent 74%);
  pointer-events: none;
}

.section--timeline::after {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  left: -180px;
  bottom: -170px;
  background: radial-gradient(circle, rgba(111, 210, 217, 0.18) 0%, rgba(111, 210, 217, 0.02) 62%, transparent 76%);
  pointer-events: none;
}

.journey-wrap {
  margin-top: clamp(22px, 2.2vw, 34px);
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding: 0 clamp(8px, 1vw, 14px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.journey-wrap::-webkit-scrollbar {
  display: none;
}

.journey-wrap.is-dragging {
  cursor: grabbing;
}

.journey-track {
  position: relative;
  display: flex;
  gap: 0;
  width: max-content;
  padding: 24px 0 14px;
}

.journey-track::before {
  content: none;
}

.journey-item {
  flex: 0 0 clamp(240px, 28vw, 330px);
  padding: 0 clamp(16px, 1.8vw, 22px);
  border-left: 1px solid rgba(242, 108, 79, 0.14);
  position: relative;
}

.journey-item:first-child {
  border-left: 0;
}

.journey-year {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.journey-bar {
  display: none;
}

.journey-desc {
  min-height: 158px;
  padding: 16px 16px 14px;
  border-radius: 14px;
  border: 1px solid rgba(242, 108, 79, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.journey-desc h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #ffffff;
}

.journey-desc p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.72;
}

.journey-item:hover .journey-desc {
  transform: translateY(-3px);
  border-color: rgba(242, 108, 79, 0.44);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(242, 108, 79, 0.16);
}

.journey-item--current .journey-year {
  color: var(--color-gold-light);
}

.journey-item--current .journey-bar::before {
  box-shadow: 0 0 0 8px rgba(242, 108, 79, 0.26), 0 0 24px rgba(242, 108, 79, 0.62);
}

.journey-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 clamp(8px, 1vw, 14px);
}

.journey-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(242, 108, 79, 0.24);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.journey-btn svg {
  width: 18px;
  height: 18px;
}

.journey-btn:hover {
  border-color: rgba(242, 108, 79, 0.48);
  color: #fff;
  background: rgba(242, 108, 79, 0.16);
}

.journey-progress {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.journey-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 14%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light), #4ea8af);
  transition: width 0.35s var(--ease-out);
}

/* ================================
   ACHIEVEMENTS GRID
   ================================ */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.achievement-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 108, 79, 0.15);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.achievement-card::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242, 108, 79, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: 0;
}

.achievement-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(242, 108, 79, 0.4);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.35);
}

.achievement-card:hover::before {
  opacity: 1;
}

.achievement-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.achievement-card h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.4;
}

.achievement-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.75;
}

.achievement-card strong {
  color: var(--color-gold-pale);
  font-weight: 600;
}

/* Achievement SVG icon (replaces emoji) */
.achievement-svg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(242, 108, 79, 0.1);
  border: 1px solid rgba(242, 108, 79, 0.2);
  color: var(--color-gold-light);
  margin: 0 auto 16px;
  transition: all var(--transition);
}

.achievement-svg-icon--lg {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.achievement-card:hover .achievement-svg-icon {
  background: rgba(242, 108, 79, 0.16);
  transform: scale(1.1);
}

/* ================================
   CREDITS / LEADERSHIP CARDS
   ================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-card {
  text-align: center;
  padding: 52px 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(242, 108, 79, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

/* Top gold line on hover */
.why-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light), var(--color-gold-dark));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.why-card:hover {
  border-color: rgba(242, 108, 79, 0.15);
  box-shadow: 0 32px 80px rgba(13, 27, 62, 0.08);
  transform: translateY(-6px);
}

.why-card:hover::after {
  opacity: 1;
}

.why-card:hover::before {
  opacity: 1;
  animation: gradient-slide 2s linear infinite;
}

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

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

/* Why SVG Icons (replaces emojis) */
.why-svg-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(242, 108, 79, 0.1) 0%, rgba(242, 108, 79, 0.05) 100%);
  border: 1px solid rgba(242, 108, 79, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.why-card:hover .why-svg-icon {
  background: linear-gradient(135deg, rgba(242, 108, 79, 0.18) 0%, rgba(242, 108, 79, 0.08) 100%);
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 28px rgba(242, 108, 79, 0.18);
}

.why-card h3 {
  margin-bottom: 14px;
  color: var(--color-text);
}

.why-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.founder-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 14px;
}

.founder-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 108, 79, 0.34);
  background: linear-gradient(135deg, rgba(242, 108, 79, 0.12) 0%, rgba(242, 108, 79, 0.04) 100%);
  color: var(--color-gold-dark);
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.01em;
  line-height: 1;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.founder-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  transform: translateX(-135%);
  transition: transform 0.7s ease;
}

.founder-link:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 108, 79, 0.52);
  color: var(--color-gold);
  box-shadow: 0 8px 24px rgba(242, 108, 79, 0.2);
}

.founder-link:hover::before {
  transform: translateX(135%);
}

/* ================================
   FOUNDER PROJECT CAROUSEL
   ================================ */
.founder-carousel {
  max-width: 1540px;
  margin: 0 auto;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 36px 0 44px;
}

.founder-carousel-track {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  padding: 10px 0 18px;
  transform: translateX(20px);
}

.founder-slide {
  width: 525px;
  max-width: min(36vw, 525px);
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(242, 108, 79, 0.22);
  background: rgba(4, 11, 27, 0.75);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.45s var(--ease-out), opacity 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  isolation: isolate;
}

.founder-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 24, 0);
  pointer-events: none;
  transition: background 0.45s var(--ease-out);
  z-index: 1;
}

.founder-slide.is-center {
  transform: scale(1.03);
  border-color: rgba(242, 108, 79, 0.48);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.48), 0 0 24px rgba(242, 108, 79, 0.18);
  z-index: 2;
}

.founder-slide.is-side-left,
.founder-slide.is-side-right {
  opacity: 1;
  z-index: 1;
}

.founder-slide.is-side-left,
.founder-slide.is-side-right {
  transform: scale(0.92);
}

.founder-slide.is-side-left::after,
.founder-slide.is-side-right::after {
  background: rgba(3, 10, 24, 0.22);
}

.founder-slide.is-back-left,
.founder-slide.is-back-right {
  opacity: 1;
  pointer-events: auto;
  z-index: 0;
}

.founder-slide.is-back-left::after,
.founder-slide.is-back-right::after {
  background: rgba(3, 10, 24, 0.42);
}

.founder-slide.is-back-left {
  transform: translateX(-6%) scale(0.76);
  margin-right: -92px;
}

.founder-slide.is-back-right {
  transform: translateX(6%) scale(0.76);
  margin-left: -92px;
}

.founder-slide.is-far-right,
.founder-slide.is-far-left {
  opacity: 1;
  pointer-events: auto;
  z-index: -1;
}

.founder-slide.is-far-left {
  transform: translateX(-13%) scale(0.64);
  margin-right: -200px;
}

.founder-slide.is-far-right {
  transform: translateX(13%) scale(0.64);
  margin-left: -200px;
}

.founder-slide.is-far-left::after,
.founder-slide.is-far-right::after {
  background: rgba(3, 10, 24, 0.54);
}

.founder-slide-media {
  width: 100%;
  aspect-ratio: 16 / 18;
  background: #000;
}

.founder-slide--double-media .founder-slide-media {
  aspect-ratio: 9 / 16;
}

.founder-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-slide-body {
  padding: 16px 16px 18px;
  text-align: center;
}

.founder-slide-body h3 {
  color: #fff;
  margin-bottom: 6px;
}

.founder-slide-body p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.founder-carousel-controls {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: -20px;
  position: relative;
  z-index: 10;
}

.founder-carousel-btn {
  border: 1px solid rgba(242, 108, 79, 0.35);
  background: rgba(4, 11, 27, 0.9);
  color: #fff;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  pointer-events: auto;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.founder-carousel-btn:hover {
  border-color: rgba(242, 108, 79, 0.6);
  background: rgba(242, 108, 79, 0.16);
  transform: scale(1.06);
}

.founder-carousel-btn--prev {
  margin-left: 0;
}

.founder-carousel-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
}

.founder-carousel-indicator {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.35s ease, width 0.35s ease;
}

.founder-carousel-indicator.is-active {
  width: 40px;
  background: linear-gradient(90deg, #f26c4f, #ff9776);
}

.founder-carousel-btn--next {
  margin-right: 0;
}

/* ================================
   CONTACT / CTA SECTION
   ================================ */
.section--cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy-dark);
  overflow: hidden;
  padding: 120px clamp(20px, 4vw, 60px);
}

.section--cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(242, 108, 79, 0.12) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}

.section--cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(242,108,79,0.08)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 740px;
}

.contact-content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.contact-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 44px;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
  background: var(--color-navy-dark);
  border-top: 1px solid rgba(242, 108, 79, 0.12);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 64px 0 48px;
  gap: 40px;
  border-bottom: 1px solid rgba(242, 108, 79, 0.1);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #fff 0%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

.footer-tagline {
  color: rgba(242, 108, 79, 0.5);
  font-size: 0.82rem;
  font-style: italic;
}

/* ================================
   MOBILE NAV
   ================================ */
@media (max-width: 768px) {
  .site-header {
    position: fixed !important;
    top: 0;
    transform: translateY(0) !important;
  }

  .header-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(8, 15, 36, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 24px 24px 32px;
    gap: 4px;
    justify-content: flex-start;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.4s ease;
    border-bottom: 1px solid rgba(242, 108, 79, 0.2);
  }

  .header-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-nav a {
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .burger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-subtitle {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 0;
  }

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

  .hero-image-frame {
    order: -1;
  }

  .hero-portrait {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

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

  .section-title--center,
  .section-title {
    text-align: center;
  }

  .section-title p {
    margin: 0 auto;
  }

  .section-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .travel-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 28px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .skill-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    max-height: none;
    height: auto;
    align-content: start;
    row-gap: 12px;
  }

  .skill-visual-row {
    grid-column: 1;
    grid-row: 3;
    min-height: 180px;
    margin-top: 12px;
  }

  .skill-preview {
    max-height: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .skill-card h3 {
    grid-row: 1;
    padding: 22px 22px 0 82px;
    min-height: 56px;
  }

  .skill-card p {
    grid-row: 2;
    padding: 0 22px 0 22px;
  }

  .days-cards {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-left: 30px;
  }

  .days-cards::before {
    left: 11px;
    right: auto;
    top: 8px;
    bottom: 8px;
    width: 2px;
    height: auto;
  }

  .day-card::before {
    left: -20px;
    top: 18px;
    transform: none;
  }

  .day-card--start::after {
    left: -25px;
    top: 13px;
    transform: none;
  }

  .founder-carousel-track {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
  }

  .founder-carousel-controls,
  .founder-carousel-btn {
    display: none !important;
  }

  .founder-slide,
  .founder-slide.is-center,
  .founder-slide.is-side-left,
  .founder-slide.is-side-right,
  .founder-slide.is-back-left,
  .founder-slide.is-back-right,
  .founder-slide.is-far-right,
  .founder-slide.is-far-left {
    display: flex;
    width: min(100%, 420px);
    max-width: min(calc(100vw - 32px), 420px);
    transform: none;
    opacity: 1;
    pointer-events: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .founder-slide::after,
  .founder-slide.is-side-left::after,
  .founder-slide.is-side-right::after,
  .founder-slide.is-back-left::after,
  .founder-slide.is-back-right::after,
  .founder-slide.is-far-right::after,
  .founder-slide.is-far-left::after {
    background: rgba(3, 10, 24, 0);
  }

  .journey-item {
    flex-basis: clamp(220px, 72vw, 300px);
    padding: 0 12px;
  }

  .journey-year {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    margin-bottom: 16px;
  }

  .journey-track::before {
    top: 82px;
  }

  .journey-bar {
    margin-bottom: 14px;
  }

  .journey-desc {
    min-height: 144px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    width: 100px;
  }

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

  .skill-visual-row {
    grid-column: 1;
    grid-row: 3;
    min-height: 140px;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .skill-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .skill-card h3,
  .skill-card p {
    grid-column: 1;
  }

  .skill-preview {
    width: 100%;
    height: 100%;
  }

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

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

  .journey-controls {
    gap: 10px;
  }

  .journey-btn {
    width: 36px;
    height: 36px;
  }

  .journey-desc h3 {
    font-size: 0.95rem;
  }

  .journey-desc p {
    font-size: 0.86rem;
    line-height: 1.62;
  }
}

/* ================================
   CURSOR GLOW (cards)
   ================================ */
.skill-card,
.achievement-card,
.why-card {
  --glow-x: 50%;
  --glow-y: 50%;
}

/* ================================
   HERO VISUAL - ANIMATED CARD STACK
   ================================ */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.hero-visual-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(242, 108, 79, 0.13) 0%, transparent 70%);
  filter: blur(40px);
  animation: glow-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.hero-card-stack {
  position: relative;
  width: 360px;
  height: 420px;
}

/* Orbiting rings */
.hring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 108, 79, 0.12);
  pointer-events: none;
}

.hring--outer {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-spin 18s linear infinite;
}

.hring--inner {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(242, 108, 79, 0.08);
  animation: ring-spin 12s linear infinite reverse;
}

@keyframes ring-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Central identity card */
.hcard--main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 108, 79, 0.3);
  border-radius: var(--radius-xl);
  padding: 24px 28px 20px;
  width: 250px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(242, 108, 79, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  z-index: 2;
  animation: card-float 6s ease-in-out infinite;
}

@keyframes card-float {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

/* Photo avatar - circular crop */
.hcard-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid rgba(242, 108, 79, 0.6);
  box-shadow: 0 0 0 5px rgba(242, 108, 79, 0.12), 0 8px 28px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
}

.hcard-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.hcard--main:hover .hcard-photo {
  transform: scale(1.06);
}

.hcard-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hcard-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.hcard-role {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.hcard-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #86efac;
}

/* Floating stat chips */
.hchip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 27, 62, 0.92);
  border: 1px solid rgba(242, 108, 79, 0.22);
  border-radius: var(--radius-md);
  padding: 9px 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  z-index: 3;
}

.hchip-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(242, 108, 79, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  flex-shrink: 0;
}

.hchip-val {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-gold-light);
}

.hchip-lbl {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.hchip--5,
.hchip--6 {
  max-width: 172px;
  white-space: normal;
}

.hchip--1 {
  top: 2%;
  left: -18%;
  animation: chip-float-1 7s ease-in-out infinite;
}

.hchip--2 {
  top: 2%;
  right: -16%;
  animation: chip-float-2 8s ease-in-out infinite 0.5s;
}

.hchip--3 {
  bottom: calc(20% - 11px);
  left: -25%;
  animation: chip-float-3 6.5s ease-in-out infinite 1s;
}

.hchip--4 {
  bottom: 2%;
  right: -14%;
  animation: chip-float-1 7.5s ease-in-out infinite 1.5s;
}

.hchip--5 {
  top: 35%;
  right: -22%;
  animation: chip-float-2 7.2s ease-in-out infinite 0.8s;
}

.hchip--6 {
  top: 35%;
  left: -34%;
  animation: chip-float-1 7.2s ease-in-out infinite 0.9s;
}

@keyframes chip-float-1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes chip-float-2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes chip-float-3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scroll-bounce 2.5s ease-in-out infinite;
}

.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.2;
  }
}


/* Final mobile overflow guard (kept at EOF so it wins cascade) */
@media (max-width: 768px) {
  .hero,
  .hero-visual {
    overflow-x: clip;
  }

  .hero-content {
    min-width: 0;
  }

  .hero-bg-overlay {
    left: 0;
    width: 100%;
    transform: none;
  }

  .hero-badge {
    display: flex;
    max-width: 100%;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 8px;
  }

  .hero-card-stack {
    width: min(100%, 360px);
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
    justify-items: stretch;
    padding: 20px 0 10px;
  }

  .hcard--main {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    grid-column: 1 / -1;
    order: -1;
    width: min(100%, 250px);
    margin: 10px auto;
    animation: none;
  }

  .hchip {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex !important;
    width: 100%;
    min-height: 86px;
    padding: 12px;
    white-space: normal;
    animation: mobile-chip-float 5.5s ease-in-out infinite;
  }

  .hchip--1,
  .hchip--2,
  .hchip--3,
  .hchip--4,
  .hchip--5,
  .hchip--6 {
    max-width: none;
  }

  .hchip-icon {
    width: 34px;
    height: 34px;
  }

  .hchip-val {
    font-size: 0.9rem;
  }

  .hchip-lbl {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .hchip--1,
  .hchip--4 {
    animation-delay: 0s;
  }

  .hchip--2,
  .hchip--5 {
    animation-delay: 0.8s;
  }

  .hchip--3,
  .hchip--6 {
    animation-delay: 1.4s;
  }

  .hring--outer {
    width: min(100vw - 24px, 420px);
    height: min(100vw - 24px, 420px);
  }

  .hring--inner {
    width: min(72vw, 280px);
    height: min(72vw, 280px);
  }
}

@media (max-width: 480px) {
  .hero-card-stack {
    grid-template-columns: 1fr;
    width: min(100%, 320px);
  }

  .hcard--main {
    order: -1;
    width: 100%;
    padding: 24px 22px 20px;
  }

  .hchip {
    min-height: 0;
  }
}

@keyframes mobile-chip-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* =========================================
   DOCTRINE SECTION
   ========================================= */

.doctrine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.doctrine-pillar {
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 108, 79, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.doctrine-pillar::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(242, 108, 79, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: 0;
}

.doctrine-pillar:hover {
  border-color: rgba(242, 108, 79, 0.38);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.doctrine-pillar:hover::before {
  opacity: 1;
}

.doctrine-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(242, 108, 79, 0.25) 0%, rgba(242, 108, 79, 0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.doctrine-pillar h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.35;
}

.doctrine-pillar p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 700px) {
  .doctrine-grid {
    grid-template-columns: 1fr;
  }

  .doctrine-pillar {
    padding: 32px 24px;
  }
}

/* =========================================
   PROJECT ROLE TAGS
   ========================================= */

.project-role-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid;
}

.project-role-tag--proof {
  background: rgba(242, 108, 79, 0.15);
  border-color: rgba(242, 108, 79, 0.4);
  color: var(--color-gold-light);
}

.project-role-tag--network {
  background: rgba(61, 181, 191, 0.12);
  border-color: rgba(61, 181, 191, 0.4);
  color: var(--color-amber-light);
}

.project-role-tag--future {
  background: rgba(111, 210, 217, 0.1);
  border-color: rgba(111, 210, 217, 0.35);
  color: #9de8ed;
}

.project-role-tag--entry {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75);
}

.project-role-tag--mission {
  background: rgba(242, 108, 79, 0.1);
  border-color: rgba(242, 108, 79, 0.5);
  color: #ffb39e;
}

.project-role-tag--content {
  background: rgba(61, 181, 191, 0.08);
  border-color: rgba(61, 181, 191, 0.3);
  color: var(--color-amber-light);
}

/* =========================================
   WORK WITH ME / COLLAB SECTION
   ========================================= */

.collab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.collab-card {
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.collab-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.collab-card:hover {
  border-color: rgba(242, 108, 79, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.collab-card:hover::after {
  opacity: 1;
}

.collab-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  align-self: flex-start;
  border: 1px solid;
}

.collab-tag--hire {
  background: rgba(242, 108, 79, 0.18);
  border-color: rgba(242, 108, 79, 0.45);
  color: var(--color-gold-light);
}

.collab-tag--use {
  background: rgba(61, 181, 191, 0.12);
  border-color: rgba(61, 181, 191, 0.4);
  color: var(--color-amber-light);
}

.collab-tag--collaborate {
  background: rgba(111, 210, 217, 0.1);
  border-color: rgba(111, 210, 217, 0.35);
  color: #9de8ed;
}

.collab-tag--join {
  background: rgba(242, 108, 79, 0.1);
  border-color: rgba(242, 108, 79, 0.45);
  color: #ffb39e;
}

.collab-card h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.collab-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
}

.collab-cta-outline {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  font-size: 0.9rem;
  padding: 10px 20px;
}

.collab-cta-outline:hover {
  border-color: var(--color-gold) !important;
  color: var(--color-gold-light) !important;
  background: rgba(242, 108, 79, 0.08) !important;
}

@media (max-width: 700px) {
  .collab-grid {
    grid-template-columns: 1fr;
  }

  .collab-card {
    padding: 32px 24px;
  }
}
