@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/SpaceGrotesk-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
}

:root {
  --bg-black: #050507; 
  --hermes-orange: #FF5500; 
  --hermes-amber: #FFA200;
  
  --text-main: #FFFFFF;
  --text-muted: #E5E5EA;
  
  /* Precision Liquid Glass */
  --glass-bg: rgba(14, 14, 18, 0.45);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-highlight: inset 0 1px 1.5px rgba(255, 255, 255, 0.35), inset 0 -1px 2px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body, html {
  background-color: var(--bg-black);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none; 
}

h1, h2, .panel-header { font-family: 'Space Grotesk', sans-serif; }

/* --- Custom Cursor --- */
.custom-cursor {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px; background-color: #FFFFFF;
  border-radius: 50%; pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s;
}

.cursor-follower {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px; border: 1.5px solid rgba(255, 162, 0, 0.85);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); transition: transform 0.1s ease-out;
}

/* --- EXACT REFERENCE DUAL-CORNER LIGHT LEAKS (With 60px Bleed Buffer) --- */
.ambient-bg {
  position: fixed; 
  top: -60px;
  left: -60px;
  width: calc(100vw + 120px);
  height: calc(100vh + 120px);
  z-index: 0;
  background-color: var(--bg-black);
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

/* 1. TOP-RIGHT AMBER FLARE */
.orb-1 {
  width: 65vw; height: 65vw;
  min-width: 650px; min-height: 650px;
  top: -20vh; right: -15vw;
  background: radial-gradient(circle at 60% 40%, #FFA000 0%, #FF5500 45%, #A62400 70%, transparent 85%);
  filter: blur(85px); opacity: 0.92;
  animation: breathe-top-right 10s ease-in-out infinite alternate;
}

/* 2. BOTTOM-LEFT FIERY ORANGE BLOOM */
.orb-2 {
  display: block !important;
  width: 75vw; height: 75vw;
  min-width: 750px; min-height: 750px;
  bottom: -25vh; left: -18vw;
  background: radial-gradient(circle at 45% 55%, #FF5B00 0%, #E63500 45%, #7A0D00 70%, transparent 85%);
  filter: blur(95px); opacity: 0.95;
  animation: breathe-bottom-left 12s ease-in-out infinite alternate;
}

/* 3. CORE HIGHLIGHT PULSE */
.orb-3 {
  display: block !important;
  width: 40vw; height: 40vw;
  min-width: 400px; min-height: 400px;
  bottom: -10vh; left: -5vw;
  background: radial-gradient(circle, #FFB700 0%, rgba(255, 85, 0, 0.5) 50%, transparent 75%);
  filter: blur(70px); opacity: 0.8;
  animation: breathe-core 8s ease-in-out infinite alternate;
}

@keyframes breathe-top-right {
  0% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate(-30px, 25px) scale(1.1); opacity: 1; }
  100% { transform: translate(-50px, 10px) scale(0.95); opacity: 0.8; }
}

@keyframes breathe-bottom-left {
  0% { transform: translate(0, 0) scale(1); opacity: 0.88; }
  50% { transform: translate(35px, -30px) scale(1.12); opacity: 1; }
  100% { transform: translate(20px, -45px) scale(0.94); opacity: 0.85; }
}

@keyframes breathe-core {
  0% { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(1.2); opacity: 0.9; }
}

/* --- HIGH-CONTRAST FLOATING GLASS NAVBAR --- */
.glass-nav {
  position: fixed; 
  top: 24px; 
  left: 0;
  right: 0;
  margin: 0 auto;
  width: min(calc(92vw + 48px), calc(100vw - 32px));
  max-width: 1680px; 
  height: 60px;
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 0 32px;
  
  background: var(--glass-bg);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight), 0 20px 40px rgba(0,0,0,0.6);
  
  border-radius: 40px; 
  z-index: 1000;
  transition: all 0.4s ease;
}

.glass-nav:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: var(--glass-highlight), 0 20px 40px rgba(0,0,0,0.6), 0 0 25px rgba(255, 162, 0, 0.25);
}

.nav-brand { 
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem; 
  letter-spacing: 0.02em; 
}

/* Glowing Orange Dot beside title */
.brand-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background-color: var(--hermes-orange);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 85, 0, 0.9), 0 0 16px rgba(255, 85, 0, 0.45);
  flex-shrink: 0;
}

.nav-brand strong { font-weight: 600; color: #FFFFFF; }
.nav-brand .divider { margin: 0 8px; color: rgba(255, 255, 255, 0.4); }

.nav-brand .subtitle { 
  color: #FFFFFF; 
  opacity: 0.95; 
  font-weight: 400; 
}

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

.nav-links a { 
  color: #FFFFFF; 
  opacity: 0.92; 
  text-decoration: none; 
  font-size: 0.88rem; 
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease; 
}

.nav-links a:hover { 
  opacity: 1; 
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 22px rgba(255, 162, 0, 0.5);
  transform: translateY(-1px);
}

/* --- Loading Screen --- */
#loader {
  position: fixed; inset: 0; background: var(--bg-black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.8s ease, visibility 0.8s;
}
#loader.loaded { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 40px; height: 40px; border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--hermes-orange); border-radius: 50%;
  animation: spin 1s cubic-bezier(0.6, 0.1, 0.4, 0.9) infinite; margin-bottom: 20px;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
#loader-text { font-size: 0.75rem; letter-spacing: 0.2em; color: var(--hermes-orange); }

/* --- RESPONSIVE PINNED HERO CONTAINER --- */
.scroll-container { 
  position: relative;
  z-index: 2;
  height: 100vh;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.glass-viewport {
  position: relative;
  width: 92vw;
  height: 85vh;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 40px; 
  overflow: hidden; 
  
  background: var(--glass-bg);
  backdrop-filter: blur(35px) saturate(180%);
  -webkit-backdrop-filter: blur(35px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight), 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 85, 0, 0.18);
  
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  display: flex; align-items: center; justify-content: center;
}

.glass-viewport::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 35%, rgba(255,91,0,0.04) 100%);
  pointer-events: none; z-index: 1;
}

#product-canvas { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; 
  image-rendering: -webkit-optimize-contrast;
  opacity: 0.94;
  mix-blend-mode: lighten;
}

/* --- HUD Overlay Inside Glass --- */
.hud-layer {
  position: absolute; inset: 0; padding: 60px; pointer-events: none; 
  display: flex; align-items: flex-end; justify-content: flex-start; 
  z-index: 2; transition: opacity 0.3s ease, transform 0.3s ease; 
}

.hud-content { max-width: 400px; }

.panel-header {
  display: flex; align-items: center; gap: 10px; font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.15em; color: var(--hermes-amber); margin-bottom: 20px;
}

.recording-dot {
  width: 6px; height: 6px; background: var(--hermes-orange);
  border-radius: 50%; box-shadow: 0 0 10px var(--hermes-orange);
  animation: pulse 2s infinite;
}

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.gradient-text {
  font-size: 2.5rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1;
  background: linear-gradient(180deg, #ffffff 0%, #b8afaa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 16px;
}

.glass-panel p, .hud-content p { color: #E5E5EA; line-height: 1.6; font-size: 0.95rem; margin-bottom: 24px; }

.scroll-badge {
  font-size: 0.65rem; letter-spacing: 0.1em; font-weight: 600;
  padding: 8px 16px; border-radius: 9999px; 
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12); 
  color: #FFFFFF;
}

/* --- Lower Content Blocks --- */
.content-section { 
  position: relative; z-index: 2; min-height: 100vh; 
  display: flex; align-items: center; justify-content: center; padding: 0 5%; 
}

.glass-panel {
  pointer-events: auto; background: var(--glass-bg);
  backdrop-filter: blur(35px) saturate(180%);
  -webkit-backdrop-filter: blur(35px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight), 0 25px 50px rgba(0,0,0,0.6);
  border-radius: 32px; padding: 60px;
}

/* --- TWO-COLUMN CREATOR PROFILE CARD --- */
.creator-card {
  max-width: 1060px;
  width: 100%;
  padding: 56px 64px;
}

.creator-layout {
  display: flex;
  align-items: center;
  gap: 56px;
}

.creator-photo-column { flex-shrink: 0; }

.creator-photo-frame {
  position: relative;
  width: 260px;
  height: 330px;
  border-radius: 28px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 35px rgba(255, 85, 0, 0.2);
}

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

.photo-ambient-glow {
  position: absolute; inset: 0; border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.creator-content-column {
  flex: 1;
  text-align: left;
}

.creator-name {
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 12px;
  text-align: left;
}

.creator-name .alias {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.creator-credentials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.role-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFA200 !important;
  letter-spacing: 0.015em;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 16px rgba(255, 162, 0, 0.4);
}

.degree-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF !important;
  letter-spacing: 0.015em;
  opacity: 0.96;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.creator-bio p {
  font-size: 1rem !important;
  line-height: 1.65;
  color: #FFFFFF !important;
  opacity: 0.94;
  margin-bottom: 14px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.creator-action {
  margin-top: 24px;
}

.action-btn {
  display: inline-block; padding: 16px 36px; background: var(--hermes-orange); color: #fff;
  text-decoration: none; border-radius: 30px; font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 10px 24px rgba(255, 85, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 85, 0, 0.5);
}

/* --- MOBILE RESPONSIVENESS (SCALED UP BRAND TITLE, SEPARATOR LINE, ACTION PILLS & HUD LEFT ALIGN) --- */
@media (max-width: 860px) {
  /* Hide custom desktop cursor on mobile */
  .custom-cursor,
  .cursor-follower {
    display: none !important;
  }

  body, html {
    cursor: auto !important;
  }

  /* 2-Row Stacked Floating Navbar */
  .glass-nav {
    top: 12px !important;
    height: auto !important;
    min-height: auto !important;
    padding: 12px 18px !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    border-radius: 26px !important;
  }

  /* Row 1: Brand Title with Separator Line underneath */
  .nav-brand {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    font-size: 0.92rem !important;
    text-align: center;
    width: 100% !important;
    opacity: 1 !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .nav-brand strong {
    font-size: 0.95rem !important;
  }

  .nav-brand .subtitle {
    font-size: 0.9rem !important;
  }

  .nav-brand .divider {
    margin: 0 6px !important;
  }

  /* Row 2: Action Pills */
  .nav-links {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .nav-links a {
    font-size: 0.74rem !important;
    padding: 5px 12px !important;
    background: rgba(255, 255, 255, 0.09) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 9999px !important;
    opacity: 0.9 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  }

  /* Viewport & HUD Left-Alignment Adjustments */
  .glass-viewport {
    width: 95vw;
    height: 75vh;
    border-radius: 24px;
  }

  .hud-layer {
    padding: 24px !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .hud-content {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .panel-header {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .gradient-text {
    font-size: 1.75rem;
    text-align: left !important;
  }

  /* Profile Card Mobile Layout */
  .creator-card { padding: 40px 24px; }
  .creator-layout { flex-direction: column; text-align: center; gap: 28px; }
  .creator-content-column, .creator-name { text-align: center; }
  .panel-header { justify-content: center; }
  .creator-photo-frame { width: 190px; height: 240px; margin: 0 auto; }
}
