h1.text-display{
font-size:48px;
}

h2.text-display{
color:var(--neon-lime);
font-size:32px;
line-height:1;
}
.hero-image{
width:100%!important;
}


/* Responsive Fluid Layout Breakpoint */
@media (min-width: 868px) {
 .interactive-legend{
    width:370px !important;
    background-color:#1e1e1e!important;
}
.hotspot-description{
    background-color:#1e1e1e!important;
}
}

/* Shared Design Tokens */
:root {
  --brand-black: #000000;
  --brand-white: #FFFFFF;
  --neon-lime: #A8F931; 
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Section Container Layout */
.product-video-section {
  background-color: var(--brand-black);
  padding: 20px 40px 0;
  font-family: var(--font-sans);
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Main Wrapper holding header and video card */
.video-section-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 100px; /* Forces the lime line exactly 100px below the video card */
}

/* Bottom Horizontal Lime Line (#A8F931, 1px, 100px below video) */
.video-section-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--neon-lime);
}

/* Header Text Wrapper */
.video-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  position: relative;
  padding-top: 40px;     /* Forces the white line exactly 40px above text elements */
  margin-bottom: 48px;   /* Clean spacing between header text block and the video */
}
.video-header p{
    color: var(--brand-white);
    font-size: 18px;
    line-height: 1.5;
}

/* Top Horizontal White Line (#fff, 1px, 40px above text) */
.video-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--brand-white);
}

.video-eyebrow {
  color: var(--neon-lime);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.video-main-heading {
  color: var(--brand-white);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

/* Video Card Frame */
.video-display-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; 
  border-radius: 24px;   
  overflow: hidden;
  background-color: #1c1c1e; 
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Center Play Trigger Overlay */
.center-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--neon-lime);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
  z-index: 3;
}

.center-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #b5ff1a;
}

.play-arrow {
  width: 36px;
  height: 36px;
  color: var(--brand-white);
  margin-left: 6px; 
}

/* Responsive Adaptive Adjustments */
@media (max-width: 768px) {

  .profile-heading .sub-heading:first-child::after{
    width:100% !important;
  }
  .product-video-section {
    padding: 60px 24px 0 24px !important;
  }
  
  .video-section-container {
    padding-bottom: 60px; /* Slightly tighter spacing on mobile viewports */
  }

  .video-header {
    padding-top: 30px;
    margin-bottom: 32px;
  }
  
  .video-main-heading {
    font-size: 34px;
  }

  .center-play-btn {
    width: 64px;
    height: 64px;
  }
  
  .play-arrow {
    width: 28px;
    height: 28px;
    margin-left: 4px;
  }
}

.product-device-section h4 a{
  color:#fff;
  font-size:20px;font-family: 'ZebraMono', monospace;
  
}
.product-device-section h4 a:hover{
 color:#A8F931;
 text-decoration:underline;
    
}

.manager-profile-section {
  background-color: var(--brand-black);
  padding: 80px 40px;
  font-family: var(--font-sans);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.profile-container {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 56px;
  align-items: flex-start;
}

/* 2. Style the first "Regional Channel Manager" only */
.profile-heading .sub-heading:first-child {
  display: block;              /* puts it on its own line, above the name */
  text-transform: uppercase;
  padding-bottom: 20px;         /* space for the line */
  position: relative;
  margin-bottom: 100px;          /* space between the line and the name */
}

/* 3. Add the underline, in the same color as the text */
.profile-heading .sub-heading:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120%;      /* adjust to taste */
  height: 2px;
  background-color: currentColor;
}

/* Media Card Styling */
.profile-media-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.8; /* Replicates the exact image frame ratio */
  border-radius: 20px;
  overflow: hidden;
  background-color: #1a1a1a; /* Placeholder while image loads */
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating Play Button Over the Chest Area */
.video-play-btn {
  position: absolute;
  bottom: 50px;
  right: 50px;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background-color: var(--neon-lime);
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-play-btn:hover {
  transform: translateX(-50%) scale(1.08);
  background-color: #b3ff1a;
}

.play-icon {
  width: 28px;
  height: 28px;
  color: var(--brand-white);
  margin-left: 4px; /* Slight offset to perfectly balance triangle geometry */
}

/* Typography Styling */
.profile-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile-heading {
  color: var(--brand-white);
 font-size:108px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 36px 0;
}

.profile-heading .sub-heading {
  display: inline-block;
  margin-top: 4px;
  font-family: 'ZebraMono', monospace;color:var(--neon-lime);
  font-size:32px; font-weight: 400;
}



/* Pill CTA Button Styling */
.cta-pill-button {
  display: inline;
  align-items: center;
  gap: 6px;
  background-color: var(--neon-lime);
  color: var(--brand-black);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  transition: opacity 0.2s ease;
}

.cta-pill-button:hover {
  opacity: 0.9;
}

.cta-pill-button .arrow {
  font-family: monospace; /* Guarantees standard width/height scaling for the arrow indicator */
  font-size: 14px;
}

/* Responsive Fluid Layout Breakpoint */
@media (max-width: 868px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }

  .profile-media-card {
    max-width: 380px;
  }

  .profile-content {
    align-items: center;
    text-align: center;
  }

  .profile-heading {
    font-size: 38px;
  }
}


