/* ============================================
   SARTHAK VALORANT COACHING
   Stunning Animations · Bold Typography · Clean
   ============================================ */

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

html {
  font-size: 14.4px;
  scroll-behavior: smooth;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0b0f;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: #FF4C00;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #FF4C00;
}

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

/* ============================================
   PARTICLE CANVAS
   ============================================ */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ============================================
   FULL-PAGE DRAWING OVERLAY
   ============================================ */
#draw-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

#draw-overlay.drawing {
  pointer-events: none;
}

body.draw-enabled {
  cursor: crosshair;
}

body.draw-enabled a,
body.draw-enabled button,
body.draw-enabled input,
body.draw-enabled textarea,
body.draw-enabled select,
body.draw-enabled label,
body.draw-enabled summary {
  cursor: pointer;
}

.draw-toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  z-index: 10002;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.draw-toast.is-visible {
  animation: draw-toast-drop 2.1s ease-out forwards;
}

@keyframes draw-toast-drop {
  0% {
    opacity: 0;
    transform: translate(-50%, -16px) scale(0.98);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, 10px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@media (max-width: 600px) {
  .draw-toast {
    top: 0.75rem;
    font-size: 0.72rem;
    padding: 0.5rem 0.85rem;
  }
}

.draw-controls {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.draw-controls:hover {
  opacity: 1;
}

.draw-controls-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.draw-hint {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.85;
  white-space: nowrap;
  text-transform: uppercase;
}

.draw-colors {
  display: flex;
  gap: 0.4rem;
}

.draw-color-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.draw-color-btn:hover {
  transform: scale(1.15);
}

.draw-color-btn.active {
  border-color: #fff;
  box-shadow: 0 0 8px currentColor;
}

.draw-clear-btn,
.draw-toggle-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.draw-clear-btn:hover,
.draw-toggle-btn:hover {
  background: #FF4C00;
  border-color: #FF4C00;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-follower {
  position: fixed;
  width: 10px;
  height: 10px;
  border: 2px solid #FF4C00;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s, transform 0.1s;
  opacity: 0;
  box-shadow: 0 0 12px rgba(255, 76, 0, 0.35);
  will-change: left, top;
}

.cursor-follower.active {
  width: 16px;
  height: 16px;
  opacity: 0.9 !important;
  background: rgba(255, 76, 0, 0.25);
  transform: translate(-50%, -50%);
}

@media (pointer: coarse) {
  .cursor-follower {
    display: none;
  }
}

/* ============================================
   SCROLL COUNTER
   ============================================ */
.scroll-counter {
  position: fixed;
  top: 2rem;
  left: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  z-index: 1000;
  color: #fff;
  display: flex;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  pointer-events: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  position: fixed;
  top: 0;
  right: 0;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  z-index: 1000;
}

.nav-left {
  margin-right: auto;
}

.nav-brand {
  font-family: 'Unbounded', 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5f5f5;
  padding: 0.7rem 1.4rem;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  display: inline-block;
  box-shadow: none;
  text-shadow: none;
}

.nav-right {
  display: flex;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
}

.nav-link {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FF4C00;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #FF4C00;
}

.nav-cta {
  background: linear-gradient(135deg, #FF4C00, #ff6b1a);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  color: #fff !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 76, 0, 0.4);
}

.nav-cta::after {
  display: none;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.main-container {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  /* Leave room so the marquee is visible on initial load */
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.25rem 4rem 3.25rem;
  position: relative;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(255, 76, 0, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 229, 255, 0.08), transparent 40%),
    linear-gradient(135deg, #000000 0%, #0d0d15 50%, #000000 100%);
  color: #fff;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(2.2rem, 8.5vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

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

.hero-title .highlight {
  color: #FF4C00;
  text-shadow: 0 0 60px rgba(255, 76, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(0.85rem, 1.3vw, 1.1rem);
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 2.2rem;
  opacity: 0.8;
  line-height: 1.8;
}

.hero-subtitle p {
  margin-bottom: 0.5rem;
}

.scroll-prompt {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.5;
  animation: float 2s ease-in-out infinite;
  text-align: center;
}

.scroll-arrow-down {
  width: 20px;
  height: 20px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin: 1rem auto 0;
  opacity: 0.5;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   INTERACTIVE 3D ELEMENT
   ============================================ */
.interactive-3d {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  z-index: 5;
}

.hero-image-figure {
  margin: 0;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  max-width: min(420px, 34vw);
}

.hero-image-caption {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  text-align: center;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.drag-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.drag-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255, 76, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: #FF4C00;
  animation: pulse 2s ease-in-out infinite;
  text-align: center;
  padding: 1rem;
}

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

.draggable-image {
  width: clamp(280px, 30vw, 400px);
  height: clamp(280px, 30vw, 400px);
  object-fit: cover;
  border-radius: 12px;
  cursor: grab;
  filter: grayscale(0.2) contrast(1.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transition: filter 0.3s;
}

.draggable-image:hover {
  filter: grayscale(0) contrast(1.1);
}

.draggable-image:active {
  cursor: grabbing;
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
  padding: 1.5rem 0;
  background: #FF4C00;
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
}

.marquee-item:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: clamp(3.25rem, 8vh, 6.5rem) clamp(2rem, 5vw, 4rem);
  background: linear-gradient(180deg, #0a0b0f 0%, #0f1015 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.about-kicker {
  color: #FF4C00;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.about-copy {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.9;
  max-width: 50ch;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.about-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 76, 0, 0.3);
  transform: translateX(8px);
}

.about-card h3 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 3rem;
}

.section-number {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.section-title-large {
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: clamp(3.25rem, 8vh, 6.5rem) clamp(2rem, 5vw, 4rem);
  background: 
    radial-gradient(ellipse at 80% 20%, rgba(0, 229, 255, 0.1), transparent 50%),
    linear-gradient(135deg, #0f1020 0%, #0a0b15 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.4rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  width: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 76, 0, 0.4);
  box-shadow: 0 30px 80px rgba(255, 76, 0, 0.15);
}

.testimonial-quote {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.9;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #FF4C00;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-info strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.rank-change {
  color: #00e5ff;
  font-size: 0.9rem;
  font-weight: 600;
}

.verified-badge {
  color: #00e5ff;
  font-size: 1.5rem;
}

.testimonial-proof {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
}

.testimonial-proof summary {
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #00e5ff;
  list-style: none;
  text-transform: uppercase;
}

.testimonial-proof summary::-webkit-details-marker {
  display: none;
}

.testimonial-proof img {
  margin-top: 1rem;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ============================================
   ACT PROGRESS SECTION
   ============================================ */
.act-section {
  padding: clamp(2rem, 5vh, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 229, 255, 0.08), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(179, 107, 255, 0.08), transparent 55%),
    linear-gradient(135deg, #0f1020 0%, #0a0b15 100%);
  color: #fff;
}

.act-section .section-header {
  margin-bottom: 1.25rem;
}

.act-section .section-number {
  font-size: 0.6rem;
  margin-bottom: 0.4rem;
}

.act-section .section-title-large {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1;
}

.act-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.act-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.act-kicker {
  color: #00e5ff;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  margin-bottom: 0.6rem;
}

.act-title {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.05;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}

.act-arrow {
  color: #FF4C00;
}

.act-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.act-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.act-badge {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.42rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.act-media {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.5rem;
  overflow: hidden;
}

.act-media img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.act-controls {
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.act-btn {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-transform: uppercase;
}

.act-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 76, 0, 0.6);
  background: rgba(255, 76, 0, 0.12);
}

.act-dots {
  display: flex;
  gap: 0.35rem;
  margin-left: auto;
}

.act-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.act-dot:hover {
  transform: scale(1.15);
}

.act-dot.active {
  background: #00e5ff;
  border-color: #00e5ff;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.45);
}

.act-stats {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.act-stat {
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 0.2rem;
}

.act-stat .count {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FF4C00;
}

.act-stat .label {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.8;
}

.act-note {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   EXPERIENCE SECTION - SCROLLABLE GALLERY
   ============================================ */
.experience-section {
  padding: 0;
  background: #fff;
  color: #000;
  overflow: visible;
  position: relative;
}

.exp-pin {
  height: 300vh;
  position: relative;
}

.exp-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.exp-header-container {
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  padding-bottom: 1.5rem;
  background: #fff;
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.exp-grid {
  display: flex;
  gap: 2rem;
  padding: 2rem clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
  flex: 1;
  color: #000;
  background: #fff;
  z-index: 10;
  position: relative;
  align-items: flex-start;
}

.exp-grid::-webkit-scrollbar {
  height: 6px;
}

.exp-grid::-webkit-scrollbar-track {
  background: transparent;
}

.exp-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

.exp-item {
  padding: 2rem 2.5rem;
  border-top: 2px solid #000;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: clamp(350px, 45vw, 500px);
  background: #fff;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
  z-index: 11;
}

.exp-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.exp-badge {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  background: #000;
  color: #fff;
  white-space: nowrap;
}

.exp-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
  color: #000;
}

.exp-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FF4C00;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.exp-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  color: #000;
  margin: 0;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
  padding: clamp(3.25rem, 8vh, 6.5rem) clamp(2rem, 5vw, 4rem);
  background: #000;
  color: #fff;
  --equity-blue: #7fe7ff;
}

.packages-access {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(127, 231, 255, 0.7);
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(127, 231, 255, 0.2), rgba(255, 255, 255, 0.06));
  position: relative;
  overflow: hidden;
}

.packages-access::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 25% 30%, rgba(127, 231, 255, 0.45), transparent 60%);
  opacity: 0.6;
  animation: access-glow 6s ease-in-out infinite;
  pointer-events: none;
}

.packages-access-pill {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(127, 231, 255, 0.8);
  color: var(--equity-blue);
  margin-bottom: 0.6rem;
}

.packages-access p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 1;
}

.packages-access a {
  color: var(--equity-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(127, 231, 255, 0.6);
}

.packages-access a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.package-card {
  padding: 2.1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  --price-accent: #FF4C00;
  --price-strike: var(--equity-blue);
  --price-note-text: var(--equity-blue);
  --price-note-border: rgba(127, 231, 255, 0.7);
  --price-note-bg: rgba(127, 231, 255, 0.12);
}

.package-card:hover {
  border-color: #FF4C00;
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 76, 0, 0.2);
}

.package-card.featured {
  background: linear-gradient(135deg, #FF4C00, #ff6b1a);
  border-color: transparent;
  --price-accent: #fff;
  --price-strike: var(--equity-blue);
  --price-note-text: #fff;
  --price-note-border: rgba(255, 255, 255, 0.8);
  --price-note-bg: rgba(255, 255, 255, 0.24);
}

.package-tag {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 4px;
}

.package-header {
  margin-bottom: 2rem;
}

.package-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.package-price {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  position: relative;
}

.price-arrows {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--equity-blue);
}

.price-note {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  color: var(--price-note-text);
  border: 1px solid var(--price-note-border);
  background: var(--price-note-bg);
  position: relative;
  overflow: hidden;
}

.price-note::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  animation: price-note-scan 3.2s ease-in-out infinite;
}

.price-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--price-accent);
  position: relative;
  display: inline-block;
  padding: 0 0.1em;
}

.price-value::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  height: 2px;
  bottom: 0.1em;
  background: linear-gradient(90deg, transparent, var(--price-strike) 20%, var(--price-strike) 80%, transparent);
  background-size: 200% 100%;
  opacity: 0.95;
  animation: price-strike-scan 3s linear infinite;
  pointer-events: none;
}

.package-list {
  list-style: none;
  margin-bottom: 2rem;
}

.package-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.package-list li::before {
  content: "→ ";
  color: #FF4C00;
  margin-right: 0.5rem;
}

.package-card.featured .package-list li::before {
  color: #fff;
}

.package-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  background: transparent;
}

.package-btn:hover {
  background: #fff;
  color: #000;
}

.package-btn.primary {
  background: #fff;
  color: #FF4C00;
  border-color: #fff;
}

.package-btn.primary:hover {
  background: transparent;
  color: #fff;
}

@keyframes price-strike-scan {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes price-note-scan {
  0% {
    transform: translateX(-120%);
  }
  60% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes access-glow {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0%);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-6%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .packages-access::before,
  .price-note::after,
  .price-value::after {
    animation: none;
  }
}

/* ============================================
   ACHIEVEMENTS SECTION
   ============================================ */
.achievements-section {
  padding: clamp(3.25rem, 8vh, 6.5rem) clamp(2rem, 5vw, 4rem);
  background: #FF4C00;
  color: #fff;
  overflow: visible;
}

.news-proof {
  max-width: 1400px;
  margin: 2rem auto 0;
  display: block;
  padding: 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.news-proof:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.news-proof-topline {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  opacity: 0.9;
}

.news-proof-title {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

.news-proof-quote {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 80ch;
  padding: 0.9rem 1rem 0.9rem 1.25rem;
  border-left: 3px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.18);
  border-radius: 14px;
  position: relative;
  font-style: italic;
}

.news-proof-quote::before {
  content: "“";
  position: absolute;
  top: -0.35rem;
  left: 0.6rem;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
  pointer-events: none;
}

.news-proof-quote p + p {
  margin-top: 0.75rem;
}

.news-proof-link {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #00e5ff;
}

.purpose-proof {
  max-width: 1400px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.purpose-proof:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.42);
}

.purpose-proof-topline {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  opacity: 0.9;
}

.purpose-proof-title {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
}

.purpose-proof-sub {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.purpose-proof-link {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #00e5ff;
}

.purpose-proof-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
}

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

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 3rem auto 0;
}

.achievement-card {
  display: block;
  transition: all 0.4s ease;
  color: #fff;
}

.achievement-card:hover {
  transform: translateY(-8px);
  color: #fff;
}

.achievement-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.achievement-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.95);
  transition: all 0.4s ease;
}

.achievement-card:hover .achievement-image img {
  transform: scale(1.05);
  filter: brightness(1);
}

.achievement-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.achievement-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============================================
   CREDENTIALS SECTION
   ============================================ */
.credentials-section {
  padding: clamp(3.25rem, 8vh, 6.5rem) clamp(2rem, 5vw, 4rem);
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(255, 76, 0, 0.08), transparent 50%),
    linear-gradient(135deg, #0a0b12 0%, #0f1018 100%);
  color: #fff;
}

.cred-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto 2.5rem;
}

.cred-feature {
  grid-column: span 6;
  display: grid;
  gap: 0.55rem;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cred-feature::before {
  content: '';
  position: absolute;
  inset: -40% -40% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 76, 0, 0.18), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}

.cred-feature:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 30px 80px rgba(0, 229, 255, 0.08);
}

.cred-feature.primary {
  background: linear-gradient(135deg, rgba(255, 76, 0, 0.16), rgba(255, 255, 255, 0.03));
}

.cred-feature.secondary {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.14), rgba(255, 255, 255, 0.03));
}

.cred-topline {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  opacity: 0.75;
}

.cred-big {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.cred-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cred-sub {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 0.95rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 3rem auto 0;
}

.presentation-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  max-width: 1400px;
  margin: 2rem auto 0;
}

.presentation-proof {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.presentation-proof:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.32);
  box-shadow: 0 25px 60px rgba(0, 229, 255, 0.08);
  color: #fff;
}

.presentation-proof-media {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.presentation-proof.presentation-proof--capitol .presentation-proof-media,
.presentation-proof.presentation-proof--coach .presentation-proof-media {
  height: 240px;
}

.presentation-proof-media img {
  width: 100%;
  height: auto;
  display: block;
}

.presentation-proof.presentation-proof--capitol .presentation-proof-media img,
.presentation-proof.presentation-proof--coach .presentation-proof-media img {
  height: 100%;
  object-fit: contain;
}

.presentation-proof-text {
  padding: 1.25rem 1.35rem 1.35rem;
}

.presentation-proof-topline {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  opacity: 0.75;
}

.presentation-proof-title {
  margin-top: 0.45rem;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.presentation-proof-sub {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-size: 0.95rem;
}

.presentation-proof-link {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #00e5ff;
}

.credential-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.credential-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF4C00, #00e5ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.credential-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 25px 60px rgba(0, 229, 255, 0.1);
}

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

.credential-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #00e5ff;
}

.credential-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: clamp(3.25rem, 8vh, 6.5rem) clamp(2rem, 5vw, 4rem);
  background: #000;
  color: #fff;
}

.contact-content {
  max-width: 700px;
  margin: 3rem auto 0;
}

.contact-methods {
  margin-bottom: 4rem;
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #FF4C00;
  border-color: #FF4C00;
  padding-left: 1rem;
}

.contact-link .arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.contact-link:hover .arrow {
  transform: translateX(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #FF4C00;
  background: rgba(255, 76, 0, 0.05);
}

.contact-form button {
  padding: 1.25rem 2.5rem;
  background: #FF4C00;
  border: 2px solid #FF4C00;
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.contact-form button:hover {
  background: transparent;
  color: #FF4C00;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
  padding: 3rem 4rem;
  background: #000;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-cards {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .scroll-counter {
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
  }

  .main-nav {
    padding: 1rem;
  }

  .nav-right {
    gap: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .hero-section,
  .act-section,
  .experience-section,
  .packages-section,
  .achievements-section,
  .credentials-section,
  .contact-section {
    padding: 4rem 1.5rem;
  }

  .interactive-3d {
    display: none;
  }

  .exp-grid,
  .packages-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .cred-feature-grid {
    grid-template-columns: 1fr;
  }

  .cred-feature {
    grid-column: auto;
  }

  .purpose-proof {
    grid-template-columns: 1fr;
  }

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

  .contact-link {
    font-size: 1.1rem;
  }

  .section-title-large {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .act-wrap {
    grid-template-columns: 1fr;
  }

  .act-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .package-card {
    padding: 1.5rem;
  }
}
