/* ============================================================
   AMBASSADOR3 — ELECTRIC EDGE DESIGN SYSTEM
   Color: Electric Blue + Vivid Purple + Hot Coral
   Fonts: Bebas Neue (display) + Space Grotesk (body)
   Vibe: Cyberpunk / Sports / Magazine Editorial
   ============================================================ */

:root {
  /* Dark backgrounds */
  --bg:        #07090F;
  --bg-surf:   #0C1018;
  --bg-card:   #101520;
  --bg-hover:  #161E2D;

  /* Neon accent colors */
  --electric:  #00C8FF;
  --purple:    #9B5CF6;
  --coral:     #FF4560;
  --mint:      #00E5A0;
  --amber:     #FFB700;

  /* Text */
  --txt:       #EEF2FF;
  --txt-muted: #8899BB;
  --txt-dim:   #3D5070;

  /* Gradients */
  --grad-main:  linear-gradient(135deg, #00C8FF 0%, #9B5CF6 100%);
  --grad-fire:  linear-gradient(135deg, #FF4560 0%, #9B5CF6 100%);
  --grad-mint:  linear-gradient(135deg, #00E5A0 0%, #00C8FF 100%);

  /* Glows */
  --glow-e:  0 0 24px rgba(0,200,255,0.45), 0 0 60px rgba(0,200,255,0.12);
  --glow-p:  0 0 24px rgba(155,92,246,0.45), 0 0 60px rgba(155,92,246,0.12);
  --glow-c:  0 0 24px rgba(255,69,96,0.4);

  /* Fonts */
  --f-display: 'Bebas Neue', sans-serif;
  --f-body:    'Space Grotesk', sans-serif;
  --f-mono:    'Space Mono', monospace;

  /* Layout */
  --max-w:    1200px;
  --sec-pad:  7rem 0;
}

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

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--f-body);
  overflow-x: hidden;
  line-height: 1.65;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--electric);
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--txt);
  margin-bottom: 2.5rem;
}

.neon-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-c { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-neon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--grad-main);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-neon:hover { transform: translateY(-3px); box-shadow: var(--glow-e); }

.btn-wire {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--txt);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(0,200,255,0.35);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: all 0.25s;
}
.btn-wire:hover { border-color: var(--electric); color: var(--electric); background: rgba(0,200,255,0.06); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Animated dot grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0,200,255,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

/* CRT scanlines overlay */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0.06) 4px
  );
  z-index: 1;
  pointer-events: none;
}

/* Left content */
.hero-left {
  position: relative;
  z-index: 10;
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4% 6rem 5%;
  background: linear-gradient(110deg, rgba(7,9,15,0.97) 55%, rgba(7,9,15,0.72) 100%);
}

/* Right image panel */
.hero-right {
  position: relative;
  z-index: 5;
  width: 48%;
  overflow: hidden;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

/* Gradient bleed from left */
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7,9,15,0.85) 0%, transparent 45%),
    linear-gradient(to top, rgba(7,9,15,0.7) 0%, transparent 35%);
  z-index: 2;
}

/* Neon corner brackets */
.img-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 10;
}
.c-tl { top: 1rem;  left: 1rem;  border-top: 2px solid var(--electric); border-left: 2px solid var(--electric); }
.c-tr { top: 1rem;  right: 1rem; border-top: 2px solid var(--electric); border-right: 2px solid var(--electric); }
.c-bl { bottom: 1rem; left: 1rem;  border-bottom: 2px solid var(--electric); border-left: 2px solid var(--electric); }
.c-br { bottom: 1rem; right: 1rem; border-bottom: 2px solid var(--electric); border-right: 2px solid var(--electric); }

/* Horizontal scan beam */
.img-scan-beam {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 40%,
    rgba(0,200,255,0.07) 50%,
    transparent 60%
  );
  z-index: 3;
  animation: beamMove 5s ease-in-out infinite;
}
@keyframes beamMove {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* Pulsing rings (decorative) */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,200,255,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.hero-ring.r1 { width: 350px; height: 350px; animation-delay: 0s; }
.hero-ring.r2 { width: 550px; height: 550px; animation-delay: 1.2s; }
@keyframes ringPulse {
  0%, 100% { opacity: 0.06; }
  50%       { opacity: 0.18; }
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--electric);
  text-transform: uppercase;
  border: 1px solid rgba(0,200,255,0.3);
  padding: 0.4rem 1rem;
  width: fit-content;
  margin-bottom: 1.5rem;
}
.badge-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 6px var(--electric);
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* Name */
.hero-name {
  font-family: var(--f-display);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.name-top {
  display: block;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  color: var(--txt);
  letter-spacing: 0.02em;
}
.name-bottom {
  display: block;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  letter-spacing: 0.02em;
}

/* Roles */
.hero-roles {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.role-chip {
  font-family: var(--f-mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  color: var(--txt-muted);
  text-transform: uppercase;
}
.role-x { color: var(--coral); font-size: 0.85rem; }

/* Description */
.hero-desc {
  font-size: 0.97rem;
  color: var(--txt-muted);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* Stats row */
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.hstat { display: flex; flex-direction: column; }
.hstat-num {
  font-family: var(--f-display);
  font-size: 2.1rem;
  line-height: 1;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hstat-lbl {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--txt-dim);
  margin-top: 0.15rem;
}
.hstat-sep { width: 1px; height: 42px; background: rgba(255,255,255,0.1); }

/* Buttons */
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 20;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--txt-dim);
}
.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--electric), transparent);
  animation: growBar 1.8s ease-in-out infinite;
}
@keyframes growBar { 0%, 100% { opacity: 0.5; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.3); } }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--bg-surf);
  border-top: 1px solid rgba(0,200,255,0.15);
  border-bottom: 1px solid rgba(0,200,255,0.15);
  padding: 0.9rem 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  white-space: nowrap;
  animation: tickerRun 22s linear infinite;
}
@keyframes tickerRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tk-item {
  font-family: var(--f-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  color: var(--txt);
}
.tk-dot { color: var(--electric); font-size: 0.55rem; opacity: 0.8; }

/* ============================================================
   PROFILE SECTION
   ============================================================ */
.profile-section {
  padding: var(--sec-pad);
  position: relative;
  overflow: hidden;
}
.profile-section::before {
  content: '';
  position: absolute;
  left: -150px; top: 50%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,92,246,0.1) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

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

.profile-img-wrap {
  position: relative;
}
.profile-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  background: var(--bg-card);
  min-height: 300px;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(0,200,255,0.03) 0px,
    rgba(0,200,255,0.03) 1px,
    transparent 1px,
    transparent 50%
  );
  background-size: 18px 18px;
}
.profile-img-glow {
  position: absolute;
  inset: -2px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  background: var(--grad-main);
  z-index: -1;
  opacity: 0.45;
}
.profile-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--electric);
  text-transform: uppercase;
  background: rgba(7,9,15,0.88);
  border: 1px solid rgba(0,200,255,0.35);
  padding: 0.35rem 0.875rem;
}

.profile-text-col { display: flex; flex-direction: column; gap: 1.5rem; }
.profile-text-col .section-title { font-size: clamp(2rem, 4vw, 3.75rem); margin-bottom: 0; line-height: 1; }

.relation-tagline {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--electric);
  background: rgba(0,200,255,0.06);
  border-left: 3px solid var(--electric);
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
  letter-spacing: 0.01em;
}

.profile-bio { display: flex; flex-direction: column; gap: 1rem; }
.profile-bio p { color: var(--txt-muted); font-size: 0.96rem; line-height: 1.78; }

.profile-quote {
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-left: 2px solid var(--electric);
  background: rgba(0,200,255,0.04);
}
.q-icon { width: 18px; height: 18px; color: var(--electric); opacity: 0.5; margin-bottom: 0.5rem; }
.profile-quote blockquote {
  font-family: var(--f-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--txt);
  line-height: 1.35;
}

.profile-socials { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.14);
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--txt);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: all 0.25s;
}
.social-chip i { width: 15px; height: 15px; }
.tiktok-icon { flex-shrink: 0; }
.profile-socials { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.social-chip.instagram:hover { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,0.08); }
.social-chip.facebook:hover  { border-color: #1877F2; color: #1877F2; background: rgba(24,119,242,0.08); }
.social-chip.tiktok:hover    { border-color: #69C9D0; color: #69C9D0; background: rgba(105,201,208,0.08); }
.social-chip.youtube:hover   { border-color: #FF0000; color: #FF0000; background: rgba(255,0,0,0.08); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: 4rem 0;
  background: var(--bg-surf);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.stat-card:last-child { border-right: none; }
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.stat-card:hover { background: rgba(0,200,255,0.04); }
.stat-card:hover::after { transform: scaleX(1); }
.stat-icon-wrap { width: 30px; height: 30px; color: var(--electric); opacity: 0.65; margin-bottom: 1rem; }
.stat-num {
  font-family: var(--f-display);
  font-size: 3.5rem;
  line-height: 1;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.2rem;
}
.stat-lbl { font-size: 0.85rem; color: var(--txt-muted); font-weight: 500; }
.stat-sub {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--txt-dim);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights-section { padding: var(--sec-pad); overflow: hidden; }

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.swipe-hint {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--txt-dim);
  text-transform: uppercase;
}
.swipe-hint i { width: 13px; height: 13px; }

.h-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,200,255,0.25) transparent;
  -webkit-overflow-scrolling: touch;
}
.h-scroll::-webkit-scrollbar { height: 3px; }
.h-scroll::-webkit-scrollbar-track { background: transparent; }
.h-scroll::-webkit-scrollbar-thumb { background: rgba(0,200,255,0.25); border-radius: 3px; }

.h-card {
  flex: 0 0 270px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: all 0.3s;
}
.h-card:hover {
  border-color: rgba(0,200,255,0.28);
  background: var(--bg-hover);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,200,255,0.08);
}
.hc-year {
  font-family: var(--f-display);
  font-size: 3.5rem;
  line-height: 1;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.45;
  margin-bottom: 0.75rem;
}
.hc-icon { width: 26px; height: 26px; color: var(--electric); margin-bottom: 0.875rem; }
.hc-title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--txt);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hc-desc { font-size: 0.84rem; color: var(--txt-muted); line-height: 1.65; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: var(--sec-pad);
  background: var(--bg-surf);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.video-section .section-title { margin-top: 0.5rem; }

.vid-wrap {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.vid-neon-frame {
  position: absolute;
  inset: -2px;
  background: var(--grad-main);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  animation: framePulse 3s ease-in-out infinite;
}
@keyframes framePulse { 0%, 100% { opacity: 0.25; } 50% { opacity: 0.55; } }

.vc {
  position: absolute;
  width: 20px; height: 20px;
  z-index: 2;
  pointer-events: none;
}
.vc-tl { top: 0.5rem;  left: 0.5rem;  border-top: 2px solid var(--electric); border-left: 2px solid var(--electric); }
.vc-tr { top: 0.5rem;  right: 0.5rem; border-top: 2px solid var(--electric); border-right: 2px solid var(--electric); }
.vc-bl { bottom: 0.5rem; left: 0.5rem;  border-bottom: 2px solid var(--electric); border-left: 2px solid var(--electric); }
.vc-br { bottom: 0.5rem; right: 0.5rem; border-bottom: 2px solid var(--electric); border-right: 2px solid var(--electric); }

.main-vid {
  position: relative;
  z-index: 3;
  width: 100%;
  display: block;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
  min-height: 240px;
}
.vid-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(7,9,15,0.85);
  border: 1px solid rgba(255,69,96,0.45);
  font-family: var(--f-mono);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  color: var(--coral);
  padding: 0.3rem 0.75rem;
  text-transform: uppercase;
}
.vb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: blink 1s ease-in-out infinite;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { padding: var(--sec-pad); }
.gallery-section .section-title { margin-bottom: 2rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--bg-card);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(0,200,255,0.03) 0px, rgba(0,200,255,0.03) 1px,
    transparent 1px, transparent 50%
  );
  background-size: 20px 20px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s, filter 0.5s;
  filter: saturate(0.9);
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.15); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,9,15,0.92) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-caption {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--electric);
  text-transform: uppercase;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(0,200,255,0);
  transition: border-color 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { border-color: rgba(0,200,255,0.35); }

/* ============================================================
   VIDEO GRID
   ============================================================ */
.vg-section { padding: var(--sec-pad); background: var(--bg-surf); border-top: 1px solid rgba(255,255,255,0.04); }
.vg-section .section-title { margin-bottom: 2rem; }

.vg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.vg-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.vg-card:hover { border-color: rgba(0,200,255,0.3); transform: translateY(-4px); }

.vg-thumb-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vg-thumb {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: opacity 0.3s, transform 0.4s;
  filter: saturate(0.9);
}
.vg-card:hover .vg-thumb { transform: scale(1.04); filter: saturate(1.1); }

.vg-overlay {
  position: absolute; inset: 0;
  background: rgba(7,9,15,0.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.vg-overlay--visible { opacity: 1; }
.vg-card:hover .vg-overlay { opacity: 1; }

.vg-play-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(0,200,255,0.15);
  border: 2px solid var(--electric);
  color: var(--electric);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  box-shadow: var(--glow-e);
}
.vg-play-btn:hover { background: rgba(0,200,255,0.3); transform: scale(1.1); }
.vg-play-btn i { width: 20px; height: 20px; }

.vg-views {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  display: flex; align-items: center; gap: 0.35rem;
  font-family: var(--f-mono); font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--txt); background: rgba(7,9,15,0.75);
  padding: 0.25rem 0.6rem;
}
.vg-views i { width: 11px; height: 11px; }

.vg-info { padding: 1rem 1.25rem; }
.vg-title {
  font-family: var(--f-display);
  font-size: 1.1rem; letter-spacing: 0.05em;
  color: var(--txt); text-transform: uppercase;
}

.vg-video {
  display: none;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: #000;
  z-index: 2;
}

@media (max-width: 767px) {
  .vg-grid { grid-template-columns: 1fr; }
  .vg-thumb-wrap { height: 260px; }
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section {
  padding: var(--sec-pad);
  background: var(--bg-surf);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.timeline-section .section-title { margin-bottom: 3.5rem; }

.timeline-wrap {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--electric), var(--purple), transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}
.tl-item:nth-child(odd)  { padding-right: calc(50% + 2.5rem); text-align: right; justify-content: flex-end; }
.tl-item:nth-child(even) { padding-left:  calc(50% + 2.5rem); text-align: left;  justify-content: flex-start; }

.tl-dot {
  position: absolute;
  left: 50%;
  top: 1.1rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--electric);
  transform: translateX(-50%);
  border: 2px solid var(--bg-surf);
  box-shadow: var(--glow-e);
  z-index: 2;
}

.tl-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
  max-width: 320px;
}
.tl-card:hover {
  border-color: rgba(0,200,255,0.28);
  background: var(--bg-hover);
}
.tl-year {
  font-family: var(--f-display);
  font-size: 2rem;
  line-height: 1;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.35rem;
}
.tl-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--txt);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.tl-desc { font-size: 0.84rem; color: var(--txt-muted); line-height: 1.65; }

/* ============================================================
   AWARDS
   ============================================================ */
.awards-section { padding: var(--sec-pad); }
.awards-section .section-title { margin-bottom: 2rem; }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.award-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
}
.award-card:hover {
  border-color: rgba(0,200,255,0.22);
  background: var(--bg-hover);
  transform: translateY(-2px);
}
.award-ico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.18);
  display: flex; align-items: center; justify-content: center;
}
.award-ico i { width: 18px; height: 18px; color: var(--electric); }
.award-body { flex: 1; }
.award-yr {
  font-family: var(--f-mono);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  color: var(--electric);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.award-name {
  font-family: var(--f-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--txt);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.award-org { font-size: 0.8rem; color: var(--txt-muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--sec-pad);
  position: relative;
  overflow: hidden;
  background: var(--bg-surf);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 450px;
  background: radial-gradient(ellipse, rgba(0,200,255,0.1) 0%, rgba(155,92,246,0.07) 45%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--txt);
  margin-bottom: 1.5rem;
}
.cta-desc {
  font-size: 1rem;
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 3rem 0;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--f-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-sub {
  font-family: var(--f-mono);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  color: var(--txt-dim);
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.footer-link {
  font-family: var(--f-mono);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  color: var(--txt-muted);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-link:hover { color: var(--electric); }
.footer-copy {
  font-family: var(--f-mono);
  font-size: 0.63rem;
  color: var(--txt-dim);
}

/* ============================================================
   FLOATING NEXT BUTTON
   ============================================================ */
@keyframes fn-wave {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.6); opacity: 0; }
}
@keyframes fn-float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(-50%) translateX(-4px); }
}

.floating-next {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 56px;
  height: 108px;
  border-radius: 28px;
  background: var(--grad-main);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: fn-float 3s ease-in-out infinite;
  box-shadow: var(--glow-e);
}
.fn-ring {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 2px solid rgba(0,200,255,0.65);
  animation: fn-wave 2.4s ease-out infinite;
}
.fn-r1 { animation-delay: 0s; }
.fn-r2 { animation-delay: 0.8s; }
.fn-r3 { animation-delay: 1.6s; }
.fn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  z-index: 1;
}
.fn-icon { width: 18px; height: 18px; color: #fff; }
.fn-txt {
  font-family: var(--f-display);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  line-height: 1.1;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.aos {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.aos.visible { opacity: 1; transform: translateY(0); }
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .profile-img { aspect-ratio: 4/3; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-card:nth-child(3), .stat-card:nth-child(4) { border-bottom: none; }
}

@media (max-width: 767px) {
  :root { --sec-pad: 4rem 0; }

  .hero { flex-direction: column; min-height: auto; }
  .hero-left { width: 100%; order: 2; padding: 3rem 1.25rem 2.5rem; background: var(--bg); }
  .hero-right { width: 100%; height: auto; aspect-ratio: 3/4; order: 1; max-height: 92vw; }
  .hero-img-frame { height: 100%; }
  .hero-img { object-fit: cover; object-position: center top; height: 100%; width: 100%; }
  .hero-img-frame::before {
    background:
      linear-gradient(to bottom, transparent 55%, rgba(7,9,15,0.95) 100%),
      linear-gradient(to right, rgba(7,9,15,0.3) 0%, transparent 60%);
  }

  .name-top, .name-bottom { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-desc { max-width: 100%; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-neon, .hero-btns .btn-wire { width: 100%; justify-content: center; }
  .hero-scroll-cue { display: none; }

  .section-header-row { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }

  .timeline-wrap::before { left: 1.25rem; }
  .tl-item { padding-right: 0 !important; padding-left: 3.5rem !important; text-align: left !important; justify-content: flex-start !important; }
  .tl-dot { left: 1.25rem; }
  .tl-card { max-width: 100%; }

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

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

  .floating-next { width: 46px; height: 88px; border-radius: 23px; right: 0.5rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn-neon, .cta-btns .btn-wire { justify-content: center; }
  .hero-right { aspect-ratio: 4/5; max-height: 100vw; }
}
