/*
 * Video Resume Page Styles
 * Namespace: .video-resume
 * Palette from _sass/_variables.scss:
 *   $color-accent:   #cd9023
 *   $black:          #101012
 *   $gray:           #5a5a5a
 *   $gray-light:     #adabac
 *   $gray-lighter:   #d4d3d3
 *   $yellow-light:   #f4e1c0
 * Site-specific:
 *   dark navy:       #11273c / #0a1724
 *   cream:           #f5f2e9
 *   warm beige:      #f2e9d8
 */

/* ─── Reset & base for video-resume wrapper ─── */
.video-resume {
  font-family: 'Lato', sans-serif;
  color: #5a5a5a;
  overflow-x: hidden;
}

.video-resume *,
.video-resume *::before,
.video-resume *::after {
  box-sizing: border-box;
}

/* ─── Fade-in animation (driven by JS + IntersectionObserver) ─── */
.video-resume .vr-animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.video-resume .vr-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.video-resume .vr-animate--delay-1 { transition-delay: 0.1s; }
.video-resume .vr-animate--delay-2 { transition-delay: 0.2s; }
.video-resume .vr-animate--delay-3 { transition-delay: 0.35s; }
.video-resume .vr-animate--delay-4 { transition-delay: 0.5s; }
.video-resume .vr-animate--delay-5 { transition-delay: 0.65s; }

/* ════════════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════════════ */
.video-resume .vr-hero {
  position: relative;
  min-height: 100vh;
  background-color: #0a1724;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
}

.video-resume .vr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(205, 144, 35, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(17, 39, 60, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.video-resume .vr-hero__content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: left;
}

.video-resume .vr-hero__eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cd9023;
  margin: 0 0 32px;
  opacity: 0.9;
}

.video-resume .vr-hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.2;
  color: #f5f2e9;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}

.video-resume .vr-hero__accent {
  color: #cd9023;
  display: block;
}

.video-resume .vr-hero__sub {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #adabac;
  margin: 0 0 56px;
  max-width: 600px;
}

.video-resume .vr-hero__scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(205, 144, 35, 0.4);
  border-radius: 50%;
  color: #cd9023;
  font-size: 1.25rem;
  text-decoration: none;
  transition: border-color 0.3s, background-color 0.3s;
  animation: vr-bounce 2s infinite;
}

.video-resume .vr-hero__scroll:hover {
  background-color: rgba(205, 144, 35, 0.1);
  border-color: #cd9023;
  color: #cd9023;
}

@keyframes vr-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ════════════════════════════════════════
   SECTION 2 — WHAT I DO
════════════════════════════════════════ */
.video-resume .vr-what {
  background-color: #f5f2e9;
  padding: 100px 24px;
}

.video-resume .vr-what__inner {
  max-width: 900px;
  margin: 0 auto;
}

.video-resume .vr-section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cd9023;
  margin: 0 0 48px;
}

.video-resume .vr-what__blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.video-resume .vr-what__block {
  border-top: 1px solid #d4d3d3;
  padding: 40px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.video-resume .vr-what__block:last-child {
  border-bottom: 1px solid #d4d3d3;
}

.video-resume .vr-what__num {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #cd9023;
  padding-top: 10px;
  min-width: 28px;
  flex-shrink: 0;
}

.video-resume .vr-what__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: #101012;
  margin: 0;
}

.video-resume .vr-what__text strong {
  font-weight: 700;
  color: #0a1724;
}

/* ════════════════════════════════════════
   SECTION 3 — PROOF OF WORK
════════════════════════════════════════ */
.video-resume .vr-proof {
  background-color: #11273c;
  padding: 100px 24px;
  color: #f5f2e9;
}

.video-resume .vr-proof__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.video-resume .vr-proof .vr-section-label {
  color: #cd9023;
}

.video-resume .vr-proof__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: #f5f2e9;
  margin: 0 0 64px;
  max-width: 700px;
  line-height: 1.3;
}

/* Impact numbers row */
.video-resume .vr-proof__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  margin-bottom: 64px;
  background-color: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}

.video-resume .vr-stat {
  background-color: rgba(255,255,255,0.04);
  padding: 40px 28px;
  transition: background-color 0.3s;
}

.video-resume .vr-stat:hover {
  background-color: rgba(205, 144, 35, 0.08);
}

.video-resume .vr-stat__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #cd9023;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.video-resume .vr-stat__label {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: #adabac;
  line-height: 1.4;
}

/* Impact cards */
.video-resume .vr-proof__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.video-resume .vr-proof-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s, background-color 0.3s;
}

.video-resume .vr-proof-card:hover {
  border-color: rgba(205, 144, 35, 0.3);
  background-color: rgba(205, 144, 35, 0.04);
}

.video-resume .vr-proof-card__tag {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cd9023;
  margin-bottom: 16px;
  display: block;
}

.video-resume .vr-proof-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #f5f2e9;
  margin: 0 0 12px;
  line-height: 1.4;
}

.video-resume .vr-proof-card__body {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #adabac;
  line-height: 1.65;
  margin: 0;
}

/* Highlight blocks */
.video-resume .vr-proof__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.video-resume .vr-highlight {
  border-left: 3px solid #cd9023;
  padding: 20px 24px;
  background-color: rgba(255,255,255,0.03);
  border-radius: 0 8px 8px 0;
}

.video-resume .vr-highlight__label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #adabac;
  margin-bottom: 8px;
  display: block;
}

.video-resume .vr-highlight__text {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #f5f2e9;
  line-height: 1.55;
  margin: 0;
}

/* ════════════════════════════════════════
   SECTION 4 — AI & SYSTEMS
════════════════════════════════════════ */
.video-resume .vr-ai {
  background-color: #f2e9d8;
  padding: 100px 24px;
}

.video-resume .vr-ai__inner {
  max-width: 900px;
  margin: 0 auto;
}

.video-resume .vr-ai__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #101012;
  margin: 0 0 24px;
  line-height: 1.3;
}

.video-resume .vr-ai__intro {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: #5a5a5a;
  line-height: 1.75;
  margin: 0 0 56px;
  max-width: 680px;
}

.video-resume .vr-ai__diagram {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  margin-bottom: 56px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.video-resume .vr-ai__diagram .mermaid {
  display: flex;
  justify-content: center;
  overflow-x: auto;
}

.video-resume .vr-ai__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.video-resume .vr-ai-pillar {
  background-color: #0a1724;
  color: #f5f2e9;
  border-radius: 10px;
  padding: 28px 24px;
}

.video-resume .vr-ai-pillar__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #cd9023;
  margin: 0 0 10px;
  line-height: 1.3;
}

.video-resume .vr-ai-pillar__body {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: #adabac;
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════
   SECTION 5 — THROUGHLINE
════════════════════════════════════════ */
.video-resume .vr-throughline {
  background-color: #0a1724;
  padding: 100px 24px;
}

.video-resume .vr-throughline__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.video-resume .vr-throughline .vr-section-label {
  color: #cd9023;
  text-align: center;
}

.video-resume .vr-throughline__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: #f5f2e9;
  margin: 0 0 40px;
}

.video-resume .vr-throughline__text em {
  font-style: normal;
  color: #cd9023;
}

.video-resume .vr-throughline__author {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #adabac;
  margin: 0;
}

/* ════════════════════════════════════════
   SECTION 6 — CALL TO ACTION
════════════════════════════════════════ */
.video-resume .vr-cta {
  background-color: #f5f2e9;
  padding: 100px 24px;
}

.video-resume .vr-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.video-resume .vr-cta__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: #101012;
  margin: 0 0 20px;
  line-height: 1.3;
}

.video-resume .vr-cta__sub {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0 0 48px;
}

.video-resume .vr-cta__paths {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.video-resume .vr-cta__btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

.video-resume .vr-cta__btn--primary {
  background-color: #cd9023;
  color: #fff;
  border: 2px solid #cd9023;
}

.video-resume .vr-cta__btn--primary:hover {
  background-color: #b37a1a;
  border-color: #b37a1a;
  color: #fff;
  transform: translateY(-2px);
}

.video-resume .vr-cta__btn--secondary {
  background-color: transparent;
  color: #0a1724;
  border: 2px solid #0a1724;
}

.video-resume .vr-cta__btn--secondary:hover {
  background-color: #0a1724;
  color: #f5f2e9;
  transform: translateY(-2px);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .video-resume .vr-hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .video-resume .vr-what {
    padding: 72px 20px;
  }

  .video-resume .vr-what__block {
    flex-direction: column;
    gap: 8px;
    padding: 28px 0;
  }

  .video-resume .vr-proof {
    padding: 72px 20px;
  }

  .video-resume .vr-proof__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-resume .vr-ai {
    padding: 72px 20px;
  }

  .video-resume .vr-ai__diagram {
    padding: 24px 16px;
  }

  .video-resume .vr-throughline {
    padding: 72px 20px;
  }

  .video-resume .vr-cta {
    padding: 72px 20px;
  }

  .video-resume .vr-cta__paths {
    flex-direction: column;
    align-items: center;
  }

  .video-resume .vr-cta__btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .video-resume .vr-proof__stats {
    grid-template-columns: 1fr;
  }

  .video-resume .vr-proof__cards {
    grid-template-columns: 1fr;
  }
}
