/* ==========================================================================
   ROCKY: THE ROCKEFELLER CHRISTMAS TREE - SCOPE OF WORK (SOW) DESIGN SYSTEM
   Agency: Neo Gen Technologies | Account Manager: ayaz@neogentechnologies.com
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #070b12;
  --bg-secondary: #0d1524;
  --bg-card: rgba(15, 25, 45, 0.75);
  --bg-card-hover: rgba(23, 37, 66, 0.85);
  --bg-glass: rgba(13, 22, 38, 0.65);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(56, 189, 248, 0.3);
  --border-gold: rgba(245, 158, 11, 0.4);
  
  /* Brand Accents */
  --neogen-blue: #0088ff;
  --neogen-glow: rgba(0, 136, 255, 0.35);
  --spruce-green: #10b981;
  --spruce-glow: rgba(16, 185, 129, 0.28);
  --rocky-gold: #f59e0b;
  --rocky-amber: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.35);
  --ice-blue: #38bdf8;
  --crimson-holiday: #ef4444;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Cinzel', serif;

  /* Text Colors */
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
  --text-gold: #fde68a;

  /* Elevations & Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow-gold: 0 0 25px rgba(245, 158, 11, 0.25);
  --shadow-glow-blue: 0 0 25px rgba(0, 136, 255, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light / Print Mode Variable Overrides handled in @media print */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(0, 136, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #070b12 0%, #0a1120 50%, #060911 100%);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 15px;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Atmospheric Christmas Tree Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 50% 25%, rgba(7, 11, 18, 0.5) 0%, rgba(7, 11, 18, 0.88) 65%, #070b12 100%),
    url('../assets/rockefeller_tree_bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

/* Ambient Canvas / Snow particle overlay */
#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Typography styles */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.serif-font {
  font-family: var(--font-serif);
}

.gradient-text-gold {
  background: linear-gradient(135deg, #fff 0%, #fde68a 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #ffffff 0%, #7dd3fc 45%, #0088ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-spruce {
  background: linear-gradient(135deg, #a7f3d0 0%, #34d399 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Top Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neogen-blue), var(--spruce-green), var(--rocky-gold));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* ==========================================================================
   ENHANCED SITE HEADER & DUAL-BRAND NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(7, 11, 18, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  padding: 8px 0;
  border-bottom-color: rgba(56, 189, 248, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

/* Brand Dual-Showcase */
.brand-combo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-neogen-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition);
}

.brand-neogen-wrap:hover {
  transform: scale(1.02);
}

.brand-neogen-logo {
  height: 38px;
  width: 38px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 14px var(--neogen-glow);
  border: 1px solid rgba(0, 136, 255, 0.35);
  transition: var(--transition);
}

.brand-neogen-logo:hover {
  transform: scale(1.05);
}

.brand-company-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.company-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
}

.company-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--neogen-blue);
}

.brand-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.brand-rocky-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition);
}

.brand-rocky-wrap:hover {
  transform: scale(1.02);
}

.brand-rocky-img {
  height: 32px;
  width: auto;
  border-radius: 4px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.brand-ip-details {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-ip-title {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--rocky-amber);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-ip-sub {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Nav Menu */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 136, 255, 0.25), rgba(16, 185, 129, 0.25));
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.nav-link-builder {
  color: var(--rocky-amber);
  font-weight: 700;
}

.nav-link-builder:hover {
  background: rgba(245, 158, 11, 0.15);
  color: #fff;
}

/* Header Action Group & Account Manager Pill */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-am-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: #fff;
  font-size: 11px;
  transition: var(--transition);
}

.header-am-pill:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--spruce-green);
  box-shadow: 0 0 12px var(--spruce-glow);
  transform: translateY(-1px);
}

.am-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.header-cta-btn {
  padding: 6px 14px;
  font-size: 12px;
}

/* Mobile Toggle Hamburger Button */
.mobile-toggle-btn {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle-btn .bar {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Navigation Drawer */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1005;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #090e18;
  border-left: 1px solid var(--border-gold);
  z-index: 1010;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

.drawer-close-btn:hover {
  color: #fff;
}

.drawer-links {
  list-style: none;
  padding: 16px 20px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.drawer-link:hover, .drawer-link.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.drawer-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0088ff 100%);
  color: #fff;
  box-shadow: 0 4px 14px var(--neogen-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 255, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: #0b101b;
  font-weight: 700;
  box-shadow: var(--shadow-glow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 6px 12px;
  font-size: 12px;
}

/* Badge tags */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--rocky-amber);
  border: 1px solid var(--border-gold);
}

.badge-blue {
  background: rgba(0, 136, 255, 0.15);
  color: #38bdf8;
  border: 1px solid var(--border-highlight);
}

.badge-spruce {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.badge-crimson {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

/* HERO SECTION */
.hero-section {
  padding: 60px 0 50px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  background: 
    linear-gradient(180deg, rgba(7, 11, 18, 0.72) 0%, rgba(10, 17, 32, 0.85) 60%, rgba(7, 11, 18, 0.95) 100%),
    url('../assets/rockefeller_tree_bg.jpg') center top / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-description {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 600px;
  line-height: 1.65;
}

.hero-account-manager-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.am-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neogen-blue), var(--spruce-green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 0 12px var(--neogen-glow);
}

.am-details h4 {
  font-size: 14px;
  color: #fff;
}

.am-details p {
  font-size: 12px;
  color: var(--text-muted);
}

.am-email-link {
  color: var(--ice-blue);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.am-email-link:hover {
  text-decoration: underline;
  color: #fff;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Visual Showcase */
.hero-visual-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md), var(--shadow-glow-gold);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neogen-blue), var(--spruce-green), var(--rocky-amber));
}

.extracted-title-logo-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-book-preview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  margin-top: 10px;
}

.mini-preview-frame {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #000;
  aspect-ratio: 4/3;
}

.mini-preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.mini-preview-frame:hover img {
  transform: scale(1.05);
}

.mini-preview-tag {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-gold);
}

/* SECTION STYLES */
.section {
  padding: 70px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px auto;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice-blue);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
  position: relative;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-sm);
}

/* EXECUTIVE SUMMARY GRID */
.exec-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.exec-text-block h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #fff;
}

.exec-text-block p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 14px;
}

.exec-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.highlight-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: left;
}

.highlight-stat-num {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--rocky-amber);
  margin-bottom: 4px;
}

.highlight-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* IP & CHARACTER BIBLE SHOWCASE */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.character-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-top: 3px solid var(--spruce-green);
}

.char-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.char-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.char-archetype {
  font-size: 11px;
  color: var(--text-gold);
  background: rgba(245, 158, 11, 0.12);
  padding: 3px 8px;
  border-radius: 12px;
}

.char-desc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
  flex-grow: 1;
}

.char-quote {
  font-style: italic;
  font-size: 12px;
  color: var(--text-muted);
  border-left: 2px solid var(--border-gold);
  padding-left: 10px;
  margin-top: 8px;
}

/* BEAT BOARD ACCORDION / GRID */
.beats-tabs-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
  overflow-x: auto;
}

.beat-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.beat-tab-btn.active, .beat-tab-btn:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(0, 136, 255, 0.2));
  color: #fff;
  border-color: var(--border-highlight);
}

.beats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.beat-item-card {
  padding: 16px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  position: relative;
}

.beat-number-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--ice-blue);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.beat-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.beat-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 8px;
}

.beat-visual {
  font-size: 11px;
  color: var(--text-gold);
  background: rgba(245, 158, 11, 0.08);
  padding: 6px 10px;
  border-radius: 4px;
}

/* DUAL TRACK STRATEGY SECTION */
#dual-track {
  position: relative;
  background: 
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(7, 11, 18, 0.88) 0%, rgba(10, 17, 32, 0.92) 100%),
    url('../assets/rockefeller_tree_bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

.dual-track-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 30px;
}

.track-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}

.track-card.featured-track {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow-gold);
  background: linear-gradient(180deg, rgba(23, 37, 66, 0.85) 0%, rgba(15, 25, 45, 0.85) 100%);
}

.track-badge-top {
  align-self: flex-start;
  margin-bottom: 16px;
}

.track-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.track-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* TRACK SPECS TABLE & ROWS (Distinct Structured Rows with Aligned Columns) */
.track-specs-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 26px;
  background: rgba(6, 11, 20, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
}

.spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 9px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  transition: background 0.2s ease;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:hover {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
}

.spec-label {
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.spec-label .icon {
  color: var(--spruce-green);
  font-weight: 800;
  font-size: 13px;
}

.spec-value {
  color: #cbd5e1;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 640px) {
  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.track-specs-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.track-specs-list li {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.track-specs-list li span.icon {
  color: var(--spruce-green);
  font-weight: 800;
}

/* 2D VIDEO CREATION PIPELINE (5 PHASES) */
.pipeline-phase-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}

.phase-card {
  background: rgba(15, 25, 45, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  position: relative;
  transition: var(--transition);
}

.phase-card:hover {
  border-color: var(--border-highlight);
  background: rgba(23, 37, 66, 0.8);
}

.phase-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--neogen-blue);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.phase-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.phase-timing {
  font-size: 11px;
  color: var(--text-gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.phase-items {
  font-size: 11px;
  color: var(--text-muted);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.phase-items li::before {
  content: "• ";
  color: var(--spruce-green);
}

/* VOICE OVER MATRIX & BREAKDOWN (DETAILED AS REQUESTED) */
.vo-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(13, 22, 38, 0.7);
  margin-bottom: 30px;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.custom-table th {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.custom-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  vertical-align: middle;
}

.custom-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.vo-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.vo-addon-card {
  background: rgba(15, 25, 45, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
}

.vo-addon-card.popular {
  border-color: var(--border-highlight);
  background: linear-gradient(180deg, rgba(0, 136, 255, 0.08) 0%, rgba(15, 25, 45, 0.7) 100%);
}

.vo-addon-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.vo-addon-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--rocky-amber);
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.vo-addon-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* PRICING PACKAGES & MODULES */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--rocky-amber);
  box-shadow: var(--shadow-glow-gold);
  background: linear-gradient(180deg, rgba(23, 37, 66, 0.9) 0%, rgba(15, 25, 45, 0.95) 100%);
  transform: translateY(-6px);
  padding: 44px 24px 32px 24px;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #d97706, #f59e0b);
  color: #070b12;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  z-index: 10;
}

.pricing-plan-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.pricing-plan-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  min-height: 36px;
}

.pricing-price-box {
  margin-bottom: 24px;
}

.pricing-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  vertical-align: top;
  margin-right: 2px;
}

.pricing-amount {
  font-size: 44px;
  font-weight: 800;
  font-family: var(--font-display);
  color: #fff;
  line-height: 1;
}

.pricing-period {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 6px;
}

.pricing-deliverables-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.pricing-deliverables-list li {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-deliverables-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--spruce-green);
  margin-top: 2px;
}

/* MONTHLY RETAINERS TABLE */
.retainer-plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.retainer-card {
  padding: 24px;
  background: rgba(15, 25, 45, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.retainer-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.retainer-cost {
  font-size: 26px;
  font-weight: 800;
  color: var(--ice-blue);
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.retainer-features {
  font-size: 12px;
  color: var(--text-light);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  margin-bottom: 18px;
}

.retainer-features li::before {
  content: "✓ ";
  color: var(--spruce-green);
  font-weight: 700;
}

/* YOUTUBE MANAGEMENT & PUBLISHING STRATEGY */
.yt-strategy-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.yt-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.yt-feature-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.yt-feature-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.yt-feature-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* INTERACTIVE SOW CONFIGURATOR & CALCULATOR (HIGH IMPACT FEATURE) */
.configurator-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md), var(--shadow-glow-gold);
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 36px;
}

.config-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
}

.config-options-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.config-radio-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.config-radio-label:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.config-radio-label.selected {
  background: rgba(16, 185, 129, 0.12);
  border-color: var(--spruce-green);
}

.config-radio-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.config-radio-left input[type="radio"],
.config-radio-left input[type="checkbox"] {
  accent-color: var(--spruce-green);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.config-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.config-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.config-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--rocky-amber);
  font-family: var(--font-display);
}

/* Config Summary Box */
.config-summary-box {
  background: rgba(7, 11, 18, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.summary-headline {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.summary-bill-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.summary-bill-items li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-light);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.summary-bill-items li .item-name {
  max-width: 65%;
}

.summary-bill-items li .item-val {
  font-weight: 700;
  color: #fff;
}

.summary-totals-block {
  border-top: 2px solid var(--border-subtle);
  padding-top: 16px;
  margin-bottom: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-light);
}

.grand-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.grand-total-amount {
  color: var(--rocky-amber);
  font-family: var(--font-display);
}

.cashflow-breakdown-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* REVISIONS & QUALITY GATES */
.gates-timeline-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.gate-card {
  background: rgba(15, 25, 45, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  position: relative;
}

.gate-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--spruce-green);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gate-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.gate-rule {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* CLIENT SIGN-OFF & APPROVAL PORTAL */
.sign-off-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md), var(--shadow-glow-blue);
}

.sign-off-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  background: rgba(7, 11, 18, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--neogen-blue);
  box-shadow: 0 0 10px var(--neogen-glow);
}

/* Digital Signature Canvas */
.signature-pad-container {
  border: 1px dashed var(--border-highlight);
  border-radius: var(--radius-sm);
  background: rgba(7, 11, 18, 0.9);
  padding: 10px;
  position: relative;
  margin-bottom: 10px;
}

#signature-canvas {
  width: 100%;
  height: 140px;
  background: #080d16;
  border-radius: 4px;
  cursor: crosshair;
  display: block;
}

.sig-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* FOOTER */
.site-footer {
  background: #04070c;
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 24px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-col p {
  line-height: 1.6;
  font-size: 12px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 11px;
}

/* TOAST NOTIFICATION */
.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0f1d36;
  border: 1px solid var(--border-highlight);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  font-size: 13px;
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* MODAL PREVIEW */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: #0d1524;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .brand-ip-sub {
    display: none;
  }
  .nav-link {
    padding: 5px 9px;
    font-size: 11.5px;
  }
}

@media (max-width: 1024px) {
  .nav-container {
    display: none; /* Collapsed into mobile drawer */
  }
  .mobile-toggle-btn {
    display: flex;
  }
  .btn-text-pdf {
    display: none;
  }
  .hero-grid, .exec-grid, .dual-track-container, .yt-strategy-grid, .configurator-wrapper, .sign-off-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pricing-grid, .retainer-plans-row, .vo-addons-grid {
    grid-template-columns: 1fr;
  }
  .pipeline-phase-row, .gates-timeline-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }
  .section-title {
    font-size: 24px;
  }
  .pipeline-phase-row, .gates-timeline-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .brand-company-title {
    display: none;
  }
  .brand-ip-details {
    display: none;
  }
  .brand-divider {
    height: 24px;
    margin: 0 2px;
  }
  .header-actions {
    gap: 6px;
  }
  .header-am-pill {
    padding: 5px 8px;
  }
  .header-am-pill .am-text strong {
    display: none;
  }
  .header-cta-btn {
    display: none; /* Primary action preserved inside mobile drawer & hero */
  }
}

/* PRINT STYLESHEET (CLEAN FORMAL PROPOSAL PDF) */
@media print {
  body {
    background: #ffffff !important;
    color: #111827 !important;
    font-size: 11pt;
  }
  #snow-canvas, .site-header, .header-actions, .btn, .config-radio-left input, .signature-pad-container, .toast-msg, .modal-overlay, .scroll-progress-bar {
    display: none !important;
  }
  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  .glass-card, .hero-visual-card, .track-card, .pricing-card, .configurator-wrapper, .sign-off-card {
    background: #ffffff !important;
    border: 1px solid #d1d5db !important;
    color: #111827 !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  h1, h2, h3, h4 {
    color: #111827 !important;
  }
  .gradient-text-gold, .gradient-text-blue, .gradient-text-spruce {
    -webkit-text-fill-color: #111827 !important;
    color: #111827 !important;
  }
  .text-light, .text-muted {
    color: #4b5563 !important;
  }
  .custom-table th {
    background: #f3f4f6 !important;
    color: #111827 !important;
  }
  .custom-table td {
    color: #1f2937 !important;
    border-color: #e5e7eb !important;
  }
  .section {
    padding: 24px 0 !important;
    border-bottom: 1px solid #e5e7eb !important;
  }
}
