/* ============================================================
   SAMONTY SHOUMI — VIOLET LUXE EDITORIAL DESIGN SYSTEM
   Color: Deep Violet + Amethyst + Champagne Gold
   Fonts: Playfair Display (display) + Inter (body)
   Vibe: High-Fashion / Cinematic / Award-Winning Glamour
   ============================================================ */

:root {
  --bg:          #06040C;
  --bg-surf:     #0A0714;
  --bg-card:     #100A1C;
  --bg-hover:    #180F2A;

  --violet:      #8B5CF6;
  --violet-deep: #6D28D9;
  --violet-lite: #A78BFA;
  --amethyst:    #C084FC;
  --gold:        #F0C060;
  --gold-dim:    #B8922C;
  --white:       #F5F0FF;
  --white-dim:   #C5B8D8;
  --muted:       #6B5880;
  --dim:         #2A1F3D;

  --grad-violet: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  --grad-warm:   linear-gradient(135deg, #C084FC 0%, #8B5CF6 100%);
  --grad-gold:   linear-gradient(135deg, #F0C060 0%, #8B5CF6 100%);
  --grad-dark:   linear-gradient(180deg, #06040C 0%, #100A1C 100%);

  --glow-violet: 0 0 30px rgba(139,92,246,0.55), 0 0 80px rgba(139,92,246,0.18);
  --glow-gold:   0 0 20px rgba(240,192,96,0.4);
  --glow-ameth:  0 0 20px rgba(192,132,252,0.35);

  --f-display:   'Playfair Display', serif;
  --f-body:      'Inter', sans-serif;
  --f-mono:      'Space Mono', monospace;

  --max-w:       1200px;
  --sec-pad:     7rem 0;
  --radius:      12px;
  --radius-lg:   20px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable both-edges; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-tap-highlight-color: transparent;
}

a, button { touch-action: manipulation; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ============================================================
   UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--violet-lite);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

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

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-violet {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.8rem;
  background: var(--grad-violet);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--glow-violet);
}
.btn-violet:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 0 40px rgba(139,92,246,0.6); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.8rem;
  background: transparent;
  color: var(--white);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(139,92,246,0.45);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--violet);
  background: rgba(139,92,246,0.1);
  transform: translateY(-2px);
}

.btn-lg { padding: 0.95rem 2.2rem; font-size: 0.82rem; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO  — TWO-COLUMN PORTRAIT FRAME LAYOUT
   ============================================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 44fr 56fr;
  height: 100svh;
  max-height: 900px;
  min-height: 600px;
  overflow: hidden;
}

/* ── Ambient orbs ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
  z-index: 0;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: #6D28D9; opacity: 0.22;
  top: -140px; left: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: #C084FC; opacity: 0.14;
  bottom: 5%; left: 20%;
  animation-delay: 3s;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: #F0C060; opacity: 0.08;
  top: 60%; left: 38%;
  animation-delay: 5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-28px); }
}

/* ══════════════════════════════════════
   LEFT COLUMN — all content
   ══════════════════════════════════════ */
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vh, 5rem) 2rem clamp(2rem, 5vh, 4rem) max(5vw, 3rem);
  gap: 0;
}

/* ══════════════════════════════════════
   RIGHT COLUMN — portrait panel
   ══════════════════════════════════════ */
.hero-right {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Contained portrait frame — anchored to bottom-right */
.portrait-frame {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 97%;
  overflow: hidden;
}

/* Left-edge blend into dark background */
.portrait-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 220px; height: 100%;
  background: linear-gradient(90deg,
    var(--bg) 0%,
    rgba(6,4,12,0.72) 35%,
    rgba(6,4,12,0.28) 65%,
    transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Bottom fade — elegant emergence */
.portrait-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* kicker */
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.kicker-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--grad-violet);
  flex-shrink: 0;
}
.kicker-text {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--violet-lite);
}

/* name — fits comfortably in one viewport */
.hero-name {
  display: flex;
  flex-direction: column;
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  gap: 0.1rem;
}
.hero-name .first {
  font-size: clamp(2.4rem, 3.8vw, 4.4rem);
  color: var(--white);
  letter-spacing: 0.07em;
}
.hero-name .last {
  font-size: clamp(2.4rem, 3.8vw, 4.4rem);
  background: var(--grad-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.07em;
}

/* role tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.hero-tag {
  font-family: var(--f-mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.32rem 0.85rem;
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 100px;
  color: var(--white-dim);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.hero-tag.active,
.hero-tag:hover {
  border-color: var(--violet);
  color: var(--violet-lite);
  background: rgba(139,92,246,0.1);
}

/* bio */
.hero-bio {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.72;
  margin-bottom: 1.2rem;
  max-width: 400px;
}

/* stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  padding: 0.9rem 1.2rem;
  background: rgba(139,92,246,0.07);
  border: 1px solid rgba(139,92,246,0.14);
  border-radius: var(--radius);
  width: fit-content;
}
.hs-item {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  text-align: center;
}
.hs-num {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 800;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hs-lbl {
  font-family: var(--f-mono);
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hs-sep {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.35), transparent);
  flex-shrink: 0;
}

/* buttons */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* award badge below buttons */
.hero-award {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.55rem 0.9rem;
  background: rgba(240,192,96,0.07);
  border: 1px solid rgba(240,192,96,0.2);
  border-radius: var(--radius);
  width: fit-content;
}
.hero-award i {
  width: 15px; height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}
.hero-award span {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  filter: brightness(0.9) contrast(1.05) saturate(1.08);
}

/* corner accents on image */
.hero-img-overlay {
  display: none;
}

.hero-img-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--violet);
  border-style: solid;
  z-index: 4;
}
.hero-img-corner.tl { top: 16px;  left: 16px;  border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.hero-img-corner.tr { top: 16px;  right: 16px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.hero-img-corner.br { bottom: 80px; right: 16px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* floating badge */
.hero-badge {
  position: absolute;
  bottom: 52px;
  right: 40px;
  background: var(--grad-violet);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius);
  z-index: 5;
  box-shadow: var(--glow-violet);
  text-align: center;
}
.hb-year {
  display: block;
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.hb-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-top: 0.25rem;
}

/* vertical name stamp on image */
.hero-img-stamp {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--f-mono);
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(139,92,246,0.4);
  z-index: 4;
  pointer-events: none;
  user-select: none;
}

/* scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: max(5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 6;
}
.hs-bar {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--violet));
  animation: scrollPulse 2s ease-in-out infinite;
}
.hs-text {
  font-family: var(--f-mono);
  font-size: 0.52rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  background: rgba(139,92,246,0.08);
  border-top: 1px solid rgba(139,92,246,0.15);
  border-bottom: 1px solid rgba(139,92,246,0.15);
  padding: 0;
}
.marquee-row {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding: 0.8rem 0;
}
.marquee-fwd { animation: marqueeForward 30s linear infinite; }
.marquee-rev { animation: marqueeReverse 35s linear infinite; }

@keyframes marqueeForward  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeReverse  { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.mq-item {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 0 1.5rem;
}
.mq-item.mq-italic {
  font-style: italic;
  color: var(--violet-lite);
}
.mq-sep {
  color: var(--violet);
  font-size: 0.5rem;
}

/* ============================================================
   PARTNERSHIP SECTION
   ============================================================ */
.partnership-section {
  position: relative;
  padding: var(--sec-pad);
  overflow: hidden;
}
.pship-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(109,40,217,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pship-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.pship-line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
}
.pship-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--violet-lite);
}

.pship-headline {
  text-align: center;
  margin-bottom: 4rem;
}
.pship-h-sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--violet-lite);
  margin-bottom: 0.6rem;
}
.pship-h-main {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
}
.pship-h-main em {
  font-style: italic;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pship-h-desc {
  margin: 1.4rem auto 0;
  max-width: 560px;
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* Partnership cards */
.pship-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.pship-card {
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.pship-card:hover {
  border-color: rgba(139,92,246,0.5);
  background: var(--bg-hover);
  transform: translateY(-4px);
}
.pship-card--accent {
  border-color: rgba(139,92,246,0.4);
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(109,40,217,0.05));
}
.pship-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(139,92,246,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--violet-lite);
}
.pship-card-icon i { width: 20px; height: 20px; }
.pship-card h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.pship-card p { font-size: 0.88rem; color: var(--white-dim); line-height: 1.7; }

/* Pull quote */
.pship-quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139,92,246,0.2);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.pship-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: var(--f-display);
  font-size: 12rem;
  font-weight: 800;
  color: rgba(139,92,246,0.06);
  line-height: 1;
  pointer-events: none;
}
.pship-quote-bar {
  width: 60px;
  height: 3px;
  background: var(--grad-violet);
  border-radius: 99px;
}
.pship-quote-text {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  max-width: 700px;
}
.pship-quote-cite {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-lite);
}

/* Bottom stats strip */
.pship-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(109,40,217,0.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139,92,246,0.2);
}
.pship-strip-item { text-align: center; }
.psis-num {
  display: block;
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.psis-lbl {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.pship-strip-div {
  width: 1px;
  height: 50px;
  background: rgba(139,92,246,0.25);
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  position: relative;
  padding: var(--sec-pad);
  overflow: hidden;
}
.vs-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(109,40,217,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.vs-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.vs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

/* Info panel */
.vs-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--violet-lite);
  margin-bottom: 1.5rem;
}
.vs-eyebrow-line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--violet);
}

.vs-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.vs-desc {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.vs-detail-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.vs-detail-row  { display: flex; align-items: flex-start; gap: 1rem; }
.vs-di {
  width: 18px;
  height: 18px;
  color: var(--violet-lite);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.vs-dl-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.vs-dl-val { font-size: 0.9rem; color: var(--white); }

.vs-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.vs-views { display: flex; flex-direction: column; gap: 0.15rem; }
.vs-views-num {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.vs-views-lbl {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Video player */
.vs-player { position: relative; }
.vs-player-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(139,92,246,0.25), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.vs-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.25);
  z-index: 1;
  cursor: pointer;
}

/* Corner accents */
.vfc {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--violet);
  border-style: solid;
  z-index: 5;
}
.vfc-tl { top: -1px; left: -1px;  border-width: 2px 0 0 2px; border-radius: 8px 0 0 0; }
.vfc-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; border-radius: 0 8px 0 0; }
.vfc-bl { bottom: -1px; left: -1px;  border-width: 0 0 2px 2px; border-radius: 0 0 0 8px; }
.vfc-br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; border-radius: 0 0 8px 0; }

.vs-scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  animation: scanLine 4s ease-in-out infinite;
  z-index: 4;
  opacity: 0.5;
}
@keyframes scanLine {
  0%   { top: 0%; opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}

#mainVideo {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
}

/* Overlay */
.vs-overlay {
  position: absolute;
  inset: 0 0 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(6,4,12,0.55);
  z-index: 3;
  transition: opacity 0.3s;
}
.vs-overlay.hidden { opacity: 0; pointer-events: none; }

.vs-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(139,92,246,0.8);
  background: rgba(139,92,246,0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  color: #fff;
}
.vs-play-btn:hover { background: rgba(139,92,246,0.45); transform: scale(1.08); }
.vs-play-icon { width: 26px; height: 26px; margin-left: 3px; }

.vs-overlay-title {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Badges */
.vs-live-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6,4,12,0.7);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  z-index: 4;
}
.vs-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--violet-lite);
  animation: liveBlink 1.5s ease-in-out infinite;
}
@keyframes liveBlink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.vs-live-text { font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-dim); }

.vs-dur-badge {
  position: absolute;
  bottom: 58px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(6,4,12,0.7);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  z-index: 4;
  color: var(--white-dim);
}
.vs-dur-badge i { width: 12px; height: 12px; }
#vsDurText { font-family: var(--f-mono); font-size: 0.58rem; }

/* Progress bar */
.vs-progress-wrap {
  background: var(--bg-card);
  border-top: 1px solid rgba(139,92,246,0.2);
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: relative;
  z-index: 1;
}
.vs-progress-track {
  height: 3px;
  background: rgba(139,92,246,0.2);
  border-radius: 99px;
  margin-bottom: 0.6rem;
  cursor: pointer;
  overflow: hidden;
}
.vs-progress-fill {
  height: 100%;
  background: var(--grad-violet);
  border-radius: 99px;
  width: 0%;
  transition: width 0.15s linear;
}
.vs-progress-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.vs-ctrl-btn {
  background: none;
  border: none;
  color: var(--white-dim);
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.vs-ctrl-btn:hover { color: var(--violet-lite); }
.vs-ctrl-btn i { width: 16px; height: 16px; }
.vs-time-display { font-family: var(--f-mono); font-size: 0.6rem; color: var(--muted); }
.vs-ctrl-spacer { flex: 1; }

/* Filmstrip footer */
.vs-filmstrip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.15);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-top: -4px;
}
.vs-fs-left { display: flex; align-items: center; gap: 0.6rem; }
.vs-fs-tag { font-family: var(--f-mono); font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--violet-lite); }
.vs-fs-dot { color: var(--violet); font-size: 0.45rem; }
.vs-fs-name { font-family: var(--f-mono); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-dim); }
.vs-fs-year { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; background: var(--grad-violet); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ============================================================
   REEL SECTION — CINEMATIC PORTRAIT PHONE FRAME
   ============================================================ */
.reel-section {
  position: relative;
  padding: var(--sec-pad);
  overflow: hidden;
}

/* Ambient background */
.reel-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(109,40,217,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(192,132,252,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating particles */
.reel-bg-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.rp {
  position: absolute;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0.12;
  animation: rpFloat 6s ease-in-out infinite;
}
.rp1 { width: 6px;  height: 6px;  top: 15%; left: 8%;   animation-delay: 0s;   }
.rp2 { width: 4px;  height: 4px;  top: 60%; left: 15%;  animation-delay: 1.2s; }
.rp3 { width: 8px;  height: 8px;  top: 25%; right: 10%; animation-delay: 0.7s; }
.rp4 { width: 5px;  height: 5px;  top: 75%; right: 18%; animation-delay: 2s;   }
.rp5 { width: 10px; height: 10px; top: 45%; left: 5%;   animation-delay: 1.5s; opacity: 0.07; }
@keyframes rpFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.3); }
}

/* Header */
.reel-header { text-align: center; margin-bottom: 4rem; }
.reel-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.reel-eyebrow-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
}
.reel-subtitle {
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 3-column layout */
.reel-layout {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left stat column */
.reel-info-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.reel-stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}
.rsb-num {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.rsb-lbl {
  font-family: var(--f-mono);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.reel-vertical-tag {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.reel-vertical-tag span {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(139,92,246,0.4);
}

/* ── PHONE FRAME (centre column) ── */
.reel-phone-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

/* Outer glow rings */
.reel-glow-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.18);
  pointer-events: none;
}
.reel-gr1 {
  width: 340px; height: 500px;
  border-radius: 180px;
  border-color: rgba(139,92,246,0.12);
  animation: grPulse 4s ease-in-out infinite;
}
.reel-gr2 {
  width: 380px; height: 560px;
  border-radius: 200px;
  border-color: rgba(192,132,252,0.07);
  animation: grPulse 4s ease-in-out infinite 0.6s;
}
@keyframes grPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.025); }
}

/* The phone device */
.reel-phone {
  position: relative;
  width: 280px;
  background: #111018;
  border-radius: 44px;
  border: 2px solid rgba(139,92,246,0.45);
  box-shadow:
    0 0 0 4px rgba(6,4,12,0.9),
    0 0 0 5px rgba(139,92,246,0.2),
    0 30px 80px rgba(109,40,217,0.45),
    0 0 120px rgba(139,92,246,0.2),
    inset 0 0 30px rgba(139,92,246,0.04);
  overflow: hidden;
  z-index: 2;
}

/* Phone notch */
.reel-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #0a0710;
  border-radius: 0 0 16px 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.reel-notch-cam {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #1a1428;
  border: 2px solid rgba(139,92,246,0.3);
}
.reel-notch-speaker {
  width: 40px; height: 4px;
  border-radius: 99px;
  background: #1a1428;
}

/* Video screen fills the phone */
.reel-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #08060f;
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.reel-video:hover { transform: scale(1.03); }

/* Play/pause overlay */
.reel-screen-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,4,12,0.45);
  z-index: 4;
  transition: opacity 0.3s;
}
.reel-screen-overlay.playing { opacity: 0; pointer-events: none; }
.reel-screen-overlay.playing:hover { opacity: 1; pointer-events: auto; }

.reel-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: rgba(139,92,246,0.35);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.reel-play-btn:hover { background: rgba(139,92,246,0.65); transform: scale(1.1); }
.reel-play-btn svg { width: 20px; height: 20px; margin-left: 3px; }

/* Sound toggle button */
.reel-sound-btn {
  position: absolute;
  top: 2.8rem;
  right: 0.65rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  z-index: 6;
  padding: 0;
  transition: background 0.2s, transform 0.15s;
}
.reel-sound-btn:hover { background: rgba(139,92,246,0.6); transform: scale(1.1); }
.reel-sound-btn i { width: 14px; height: 14px; pointer-events: none; }

/* Top HUD */
.reel-hud-top {
  position: absolute;
  top: 44px; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 5;
}
.reel-hud-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  background: rgba(139,92,246,0.75);
  padding: 2px 7px;
  border-radius: 4px;
}
.reel-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: liveBlink 1.5s ease-in-out infinite;
}
.reel-hud-name {
  font-family: var(--f-mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  background: rgba(6,4,12,0.5);
  padding: 2px 7px;
  border-radius: 4px;
}

/* Bottom caption bar */
.reel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 44px;
  padding: 3rem 10px 14px;
  background: linear-gradient(0deg, rgba(6,4,12,0.92) 0%, transparent 100%);
  z-index: 5;
}
.reel-caption-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.reel-caption-user {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.reel-caption-badge {
  font-family: var(--f-mono);
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bg);
  background: var(--grad-violet);
  padding: 1px 5px;
  border-radius: 3px;
}
.reel-caption-text {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.45;
  margin-bottom: 5px;
}
.reel-caption-music {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.52rem;
  color: rgba(255,255,255,0.6);
}
.reel-caption-music i { flex-shrink: 0; }

/* Side action buttons */
.reel-actions {
  position: absolute;
  right: 8px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 6;
}
.reel-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
}
.reel-action-btn i { width: 22px; height: 22px; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }
.reel-action-btn span { font-size: 0.48rem; font-family: var(--f-mono); letter-spacing: 0.05em; }

/* Phone home bar */
.reel-home-bar {
  height: 28px;
  background: #0d0a18;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-home-bar::after {
  content: '';
  display: block;
  width: 90px;
  height: 4px;
  background: rgba(139,92,246,0.4);
  border-radius: 99px;
}

/* Corner accent tags on the phone wrap */
.reel-tag-tl,
.reel-tag-br {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 0.52rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 3;
}
.reel-tag-tl {
  top: 0; left: 0;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.35);
  color: var(--violet-lite);
}
.reel-tag-br {
  bottom: 0; right: 0;
  background: rgba(240,192,96,0.12);
  border: 1px solid rgba(240,192,96,0.3);
  color: var(--gold);
}

/* Right info panel */
.reel-info-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-lite);
  margin-bottom: 1.2rem;
}
.reel-info-eyebrow i { width: 14px; height: 14px; }
.reel-info-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.reel-info-title em {
  font-style: italic;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reel-desc {
  font-size: 0.92rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.reel-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.reel-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--white-dim);
}
.reel-facts i {
  width: 16px;
  height: 16px;
  color: var(--violet-lite);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ============================================================
   PROFILE SECTION
   ============================================================ */
.profile-section { padding: var(--sec-pad); }

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

.profile-img-wrap { position: relative; }
.profile-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.profile-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.92) contrast(1.05);
  transition: transform 0.5s ease;
}
.profile-img:hover { transform: scale(1.03); }
.profile-img-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.12), transparent);
  transform: skewX(-20deg);
  animation: shinePass 5s ease-in-out infinite;
}
@keyframes shinePass { 0%,100%{left:-50%;} 60%{left:150%;} }
.profile-img-tag {
  position: absolute;
  bottom: 20px;
  left: -10px;
  background: var(--grad-violet);
  padding: 0.45rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: var(--glow-violet);
}
.profile-img-accent {
  position: absolute;
  top: 20px;
  right: -16px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(139,92,246,0.3);
  border-radius: var(--radius);
  z-index: -1;
}

.profile-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--violet-lite);
  margin-bottom: 1.2rem;
}
.profile-headline {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.8rem;
}
.profile-headline em {
  font-style: italic;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.profile-quote {
  border-left: 3px solid var(--violet);
  padding: 0.75rem 1.2rem;
  margin-bottom: 1.8rem;
  background: rgba(139,92,246,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.profile-quote blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.6;
}
.profile-bio { margin-bottom: 2rem; }
.profile-bio p {
  font-size: 0.92rem;
  color: var(--white-dim);
  line-height: 1.78;
  margin-bottom: 0.9rem;
}
.profile-bio p:last-child { margin-bottom: 0; }
.profile-bio strong { color: var(--white); }
.profile-bio em { color: var(--violet-lite); }

.profile-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.pm-item { display: flex; flex-direction: column; gap: 0.2rem; }
.pm-label {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.pm-value {
  font-size: 0.88rem;
  color: var(--white);
}

.profile-socials { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(139,92,246,0.3);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.social-pill i { width: 14px; height: 14px; }
.social-pill:hover, .social-pill.facebook:hover { border-color: #1877F2; background: rgba(24,119,242,0.12); color: #fff; }
.social-pill.instagram:hover { border-color: #E1306C; background: rgba(225,48,108,0.12); color: #fff; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section { padding: 5rem 0; background: linear-gradient(180deg, transparent, rgba(139,92,246,0.06), transparent); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.stat-card:hover {
  border-color: rgba(139,92,246,0.45);
  background: var(--bg-hover);
  transform: translateY(-4px);
}
.sc-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.sc-label {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.sc-sub { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   MILESTONES
   ============================================================ */
.milestones-section { padding: var(--sec-pad); overflow: hidden; }
.ms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.ms-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ms-scroll-hint i { width: 16px; height: 16px; }

.ms-track-wrap {
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(139,92,246,0.4) transparent;
}
.ms-track-wrap::-webkit-scrollbar { height: 4px; }
.ms-track-wrap::-webkit-scrollbar-track { background: transparent; }
.ms-track-wrap::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.4); border-radius: 99px; }

.ms-track {
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
  padding-bottom: 0.5rem;
}
.ms-card {
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  width: 260px;
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.2s, background 0.2s;
}
.ms-card:hover {
  border-color: rgba(139,92,246,0.45);
  background: var(--bg-hover);
  transform: translateY(-4px);
}
.ms-year {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-lite);
  margin-bottom: 0.8rem;
}
.ms-icon {
  width: 36px;
  height: 36px;
  background: rgba(139,92,246,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-lite);
  margin-bottom: 1rem;
}
.ms-icon i { width: 16px; height: 16px; }
.ms-card-title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.ms-card-desc { font-size: 0.82rem; color: var(--white-dim); line-height: 1.65; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { padding: var(--sec-pad); }
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.gallery-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.gf-btn {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 100px;
  background: none;
  color: var(--white-dim);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.gf-btn:hover,
.gf-btn.active {
  border-color: var(--violet);
  background: rgba(139,92,246,0.12);
  color: var(--violet-lite);
}

.gallery-masonry {
  columns: 3;
  column-gap: 1.2rem;
}
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 600px) { .gallery-masonry { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(139,92,246,0.1);
  transition: transform 0.3s, border-color 0.3s;
}
.gallery-item:hover { transform: scale(1.02); border-color: rgba(139,92,246,0.4); }
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(6,4,12,0.9) 0%, transparent 100%);
  padding: 1.5rem 1rem 0.8rem;
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gi-cat-tag {
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-lite);
}
.gi-caption { font-size: 0.82rem; color: var(--white); font-weight: 500; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section { padding: var(--sec-pad); }
.timeline-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.5) 10%, rgba(139,92,246,0.5) 90%, transparent);
  transform: translateX(-50%);
}
@media (max-width: 640px) {
  .timeline-wrap::before { left: 18px; }
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}
.tl-item .tl-card    { grid-column: 1; grid-row: 1; }
.tl-item .tl-center  { grid-column: 2; grid-row: 1; }
.tl-item .tl-spacer  { grid-column: 3; grid-row: 1; }
.tl-item:nth-child(even) .tl-card   { grid-column: 3; }
.tl-item:nth-child(even) .tl-spacer { grid-column: 1; }

.tl-card {
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  transition: border-color 0.3s;
}
.tl-card:hover { border-color: rgba(139,92,246,0.4); }
.tl-title {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.tl-desc { font-size: 0.8rem; color: var(--white-dim); line-height: 1.65; }

.tl-center { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; padding-top: 0.8rem; }
.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad-violet);
  border: 3px solid var(--bg);
  box-shadow: var(--glow-violet);
  flex-shrink: 0;
}
.tl-year {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet-lite);
  white-space: nowrap;
}
.tl-spacer { /* empty spacer column */ }

/* ============================================================
   AWARDS
   ============================================================ */
.awards-section { padding: var(--sec-pad); background: linear-gradient(180deg, transparent, rgba(139,92,246,0.05), transparent); }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.award-card {
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.award-card:hover {
  border-color: rgba(139,92,246,0.5);
  background: var(--bg-hover);
  transform: translateY(-4px);
}
.award-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(240,192,96,0.06), transparent 70%);
  pointer-events: none;
}
.award-icon {
  width: 44px;
  height: 44px;
  background: rgba(240,192,96,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}
.award-icon i { width: 20px; height: 20px; }
.award-year {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.4rem;
}
.award-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.award-org { font-size: 0.8rem; color: var(--white-dim); line-height: 1.6; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cta-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.cta-section:hover .cta-bg-img { transform: scale(1); }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(6,4,12,0.55) 0%,
    rgba(6,4,12,0.35) 45%,
    rgba(6,4,12,0.75) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta-desc {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(139,92,246,0.12);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
}
.footer-sub {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-link {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet-lite);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--amethyst); }
.footer-copy {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   FLOATING NEXT BUTTON
   ============================================================ */
.fn-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.fn-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.4);
  animation: fnPulse 3s ease-in-out infinite;
}
.fn-r1 { width: 64px;  height: 64px;  animation-delay: 0s;   }
.fn-r2 { width: 80px;  height: 80px;  animation-delay: 0.4s; }
.fn-r3 { width: 96px;  height: 96px;  animation-delay: 0.8s; }
@keyframes fnPulse {
  0%,100%{opacity:0.5; transform:scale(1);}
  50%{opacity:0.15; transform:scale(1.1);}
}

.fn-inner {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-violet);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  box-shadow: var(--glow-violet);
  transition: transform 0.2s;
}
.fn-btn:hover .fn-inner { transform: scale(1.08); }
.fn-icon { width: 16px; height: 16px; color: #fff; }
.fn-txt {
  font-family: var(--f-mono);
  font-size: 0.42rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,4,12,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: min(90vw, 800px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139,92,246,0.25);
  box-shadow: var(--glow-violet);
}
.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.4);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lb-close:hover { background: rgba(139,92,246,0.45); transform: scale(1.1); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.35);
  color: var(--white);
  font-size: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(139,92,246,0.35); }

/* ============================================================
   RESPONSIVE — MOBILE-FIRST COMPLETE OVERHAUL
   ============================================================ */

/* ── Tablet (≤1024px) ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { max-height: unset; }
  .hero-portrait { object-position: center 10%; }
  .hero-left {
    padding: 3rem 2rem 3rem max(4vw, 2rem);
  }
  .hero-scroll { display: none; }
  .hero-img-stamp { display: none; }

  .vs-inner { grid-template-columns: 1fr; gap: 3rem; }
  .profile-grid { grid-template-columns: 1fr; gap: 3rem; }
  .profile-img-wrap { max-width: 400px; margin: 0 auto; }

  .reel-layout { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .reel-info-left { display: none; }
}

/* ── Large Mobile (≤768px) ────────────────────────────────── */
@media (max-width: 768px) {
  :root { --sec-pad: 5rem 0; }

  /* Tighten all display headings before they overflow */
  .section-title    { font-size: clamp(1.9rem, 8vw, 2.6rem); letter-spacing: 0.01em; }
  .pship-h-main     { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .vs-title         { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .cta-title        { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .profile-headline { font-size: clamp(1.8rem, 7.5vw, 2.4rem); }
  .reel-info-title  { font-size: clamp(1.5rem, 6vw, 2rem); }

  .pship-strip { gap: 1.5rem; }
  .pship-strip-div { display: none; }

  .reel-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .reel-phone { width: 240px; }
  .reel-phone-wrap { padding: 1rem 0; }
  .reel-info-right { max-width: 480px; margin: 0 auto; }
}

/* ── Mobile (≤480px) ──────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --sec-pad: 3.5rem 0; }

  /* ── Hero ── */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 56svh auto;
    height: auto;
    min-height: 100svh;
    max-height: unset;
  }
  .hero-left {
    order: 2;
    position: relative;
    max-width: none;
    padding: 1.5rem 1.25rem 3rem;
    align-items: center;
    text-align: center;
    margin: 0;
    justify-content: center;
    gap: 0.65rem;
  }
  .hero-right {
    order: 1;
    height: 56svh;
  }
  .portrait-frame {
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0; right: 0;
  }
  .portrait-frame::before {
    width: 100%; height: 120px;
    top: auto; bottom: 0; left: 0;
    background: linear-gradient(0deg, var(--bg) 0%, transparent 100%);
  }
  .portrait-frame::after { display: none; }
  .hero-portrait { object-position: center 8%; }
  .hero-badge { display: none; }
  .hero-img-corner { display: none; }
  .hero-kicker { font-size: 0.55rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
  .hero-name .first,
  .hero-name .last  { font-size: 2.75rem; }
  .hero-name        { margin-bottom: 0.9rem; }
  .hero-tags        { margin-bottom: 0.9rem; }
  .hero-bio         { font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.9rem; }
  .hero-stats       { width: 100%; gap: 0; padding: 0.7rem 1rem; margin-bottom: 0.9rem; justify-content: space-between; }
  .hs-item          { flex: 1; align-items: center; }
  .hs-num           { font-size: 1.35rem; }
  .hs-lbl           { font-size: 0.6rem; letter-spacing: 0.12em; }
  .hs-sep           { height: 30px; }
  .hero-btns        { flex-direction: column; gap: 0.65rem; width: 100%; margin-bottom: 0; }
  .hero-btns a      { width: 100%; justify-content: center; }
  .hero-award       { width: 100%; justify-content: center; margin-top: 0.85rem; }

  /* ── Section headings ── */
  .section-title    { font-size: clamp(1.65rem, 7.5vw, 2.1rem); letter-spacing: 0; }
  .pship-h-main     { font-size: clamp(1.65rem, 7.5vw, 2.1rem); }
  .vs-title         { font-size: clamp(1.65rem, 7.5vw, 2.1rem); }
  .cta-title        { font-size: clamp(2rem, 8.5vw, 2.8rem); }
  .profile-headline { font-size: clamp(1.5rem, 7vw, 1.9rem); }

  /* ── Partnership ── */
  .pship-cards  { grid-template-columns: 1fr; }
  .pship-card   { padding: 1.4rem; }
  .pship-quote  { padding: 1.4rem 1.25rem; }
  .pship-strip  { gap: 1rem; }

  /* ── Video ── */
  .vs-inner      { padding: 0 1rem; gap: 2rem; }
  .vs-meta-row   { gap: 1rem; flex-wrap: wrap; }
  .vs-controls   { padding: 0.5rem 0.75rem; gap: 0.4rem; }
  .vs-time-disp  { font-size: 0.6rem; }

  /* ── Reel ── */
  .reel-phone       { width: 210px; }
  .reel-info-title  { font-size: 1.4rem; }
  .reel-info-list li { font-size: 0.82rem; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-card  { padding: 1.3rem 1rem; }
  .sc-num     { font-size: 2.1rem; }
  .sc-label   { font-size: 0.7rem; }

  /* ── Milestones ── */
  .ms-card { width: 210px; padding: 1.1rem; }

  /* ── Gallery ── */
  .gallery-masonry  { columns: 2; column-gap: 0.6rem; }
  .gallery-item     { margin-bottom: 0.6rem; }
  .gallery-filter   { gap: 0.35rem; flex-wrap: wrap; }
  .gf-btn           { font-size: 0.58rem; padding: 0.3rem 0.7rem; }

  /* ── Timeline ── */
  .timeline-section { padding: 3.5rem 1.25rem; }
  .timeline-wrap    { gap: 0; }
  .timeline-wrap::before { left: 19px; width: 2px; transform: none; }
  .tl-item {
    grid-template-columns: 40px 1fr;
    gap: 0.75rem;
    padding: 0.5rem 0;
  }
  .tl-item .tl-spacer                 { display: none; }
  .tl-item .tl-center                 { grid-column: 1; grid-row: 1; padding-top: 0.25rem; align-items: center; flex-direction: column; gap: 0.3rem; }
  .tl-item .tl-card                   { grid-column: 2; grid-row: 1; }
  .tl-item:nth-child(even) .tl-card   { grid-column: 2; grid-row: 1; }
  .tl-item:nth-child(even) .tl-spacer { display: none; }
  .tl-card    { padding: 1rem 1.1rem; }
  .tl-title   { font-size: 0.9rem; }
  .tl-desc    { font-size: 0.78rem; }

  /* ── Awards ── */
  .awards-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .award-card  {
    padding: 1.25rem 1.4rem;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.2rem 0.9rem;
    align-items: start;
  }
  .award-card .award-icon  { grid-column: 1; grid-row: 1 / 4; align-self: start; width: 42px; height: 42px; border-radius: 10px; }
  .award-card .award-year  { grid-column: 2; grid-row: 1; }
  .award-card .award-title { grid-column: 2; grid-row: 2; }
  .award-card .award-org   { grid-column: 2; grid-row: 3; }
  .award-card::after { display: none; }

  /* ── CTA ── */
  .cta-section { padding: 6rem 1.25rem; }
  .cta-btns    { flex-direction: column; gap: 0.75rem; width: 100%; max-width: 340px; margin: 0 auto; }
  .cta-btns a  { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer-inner { flex-direction: column; text-align: center; gap: 0.4rem; }
  .fn-btn       { bottom: 1rem; right: 1rem; }
}
