/* ============================================================
   MEDPRENEURS — Global Stylesheet
   Principal Clinical AI Specialist & Medical Data Architect
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg-light:      #FAF9F6;
  --bg-dark:       #0B132B;
  --bg-dark-2:     #0F1A38;
  --bg-dark-3:     #162040;
  --text-primary:  #1E293B;
  --text-muted:    #64748B;
  --text-light:    #F8FAFC;
  --text-light-2:  #CBD5E1;
  --accent-gold:   #D4AF37;
  --accent-gold-2: #E8C84A;
  --accent-cyan:   #00E5FF;
  --accent-cyan-2: #33EEFF;
  --page-bg:       #FAF9F6;
  --card-bg:       #F1F5F9;
  --card-bg-dark:  #162040;
  --heading-color: #0B132B;
  --border-light:  #E2E8F0;
  --border-dark:   rgba(212, 175, 55, 0.2);
  --shadow-soft:   0 4px 24px rgba(11, 19, 43, 0.08);
  --shadow-card:   0 8px 40px rgba(11, 19, 43, 0.12);
  --shadow-gold:   0 8px 40px rgba(212, 175, 55, 0.15);
  --shadow-cyan:   0 8px 40px rgba(0, 229, 255, 0.15);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-heading:  'Syne', sans-serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --nav-height:    72px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--page-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.label-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
  backdrop-filter: blur(20px);
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-dark);
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.nav-brand-sub {
  font-size: 10px;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light-2);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 1px;
}

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-2));
  color: var(--bg-dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm);
  font-size: 11px !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-cyan);
  background: linear-gradient(135deg, var(--accent-cyan-2), var(--accent-cyan)) !important;
  color: var(--bg-dark) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1rem;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
}

.nav-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-menu .nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrapper {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 2rem;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-eyebrow-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-light-2);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-2));
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(0, 229, 255, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(248, 250, 252, 0.08);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-light-2);
  letter-spacing: 0.05em;
  font-weight: 300;
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-section {
  background: var(--bg-dark-2);
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border-dark);
}

.search-container {
  max-width: 800px;
  margin: 0 auto;
}

.search-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 18px;
  color: var(--text-muted);
  font-size: 18px;
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: rgba(248, 250, 252, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 18px 16px 52px;
  font-size: 1rem;
  color: var(--text-light);
  outline: none;
  transition: all var(--transition);
  font-family: var(--font-body);
  font-weight: 300;
}

.search-input::placeholder {
  color: rgba(248, 250, 252, 0.3);
}

.search-input:focus {
  border-color: var(--accent-cyan);
  background: rgba(248, 250, 252, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  z-index: 100;
  display: none;
}

.search-results.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(0, 229, 255, 0.08);
}

.search-result-tag {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

.search-result-title {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
  padding: 5rem 2rem;
}

.section-dark {
  background: var(--bg-dark);
}

.section-darker {
  background: var(--bg-dark-2);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-dark .section-title,
.section-darker .section-title {
  color: var(--text-light);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.section-dark .section-desc,
.section-darker .section-desc {
  color: var(--text-light-2);
}

/* ============================================================
   CARDS — UNIVERSAL
   ============================================================ */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(212, 175, 55, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-dark {
  background: var(--card-bg-dark);
  border-color: rgba(212, 175, 55, 0.15);
}

.card-dark .card-title {
  color: var(--text-light);
}

.card-dark .card-desc {
  color: var(--text-light-2);
}

.card-dark:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 8px 40px rgba(0, 229, 255, 0.1);
}

.card-dark:hover::before {
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 22px;
}

.card-icon-gold {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
}

.card-icon-cyan {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
}

.card-tag {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 10px;
}

.card-link-arrow {
  font-size: 14px;
  transition: transform var(--transition);
}

.card:hover .card-link-arrow {
  transform: translateX(3px);
}

/* Page Navigation Cards */
.nav-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.nav-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.03) 0%, rgba(212, 175, 55, 0.03) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: var(--shadow-cyan);
}

.nav-card:hover::after {
  opacity: 1;
}

.nav-card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.nav-card:hover .nav-card-num {
  color: rgba(212, 175, 55, 0.3);
}

.nav-card-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.nav-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.nav-card-desc {
  font-size: 0.875rem;
  color: var(--text-light-2);
  line-height: 1.65;
  flex: 1;
}

.nav-card-arrow {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  transition: gap var(--transition);
}

.nav-card:hover .nav-card-arrow {
  gap: 12px;
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  background: var(--bg-dark);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-hero-accent {
  position: absolute;
  top: -50%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-2);
  margin-bottom: 2rem;
}

.page-hero-breadcrumb a {
  color: var(--accent-gold);
  transition: opacity var(--transition);
}

.page-hero-breadcrumb a:hover {
  opacity: 0.7;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.06);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.page-hero-title strong {
  font-weight: 600;
  color: var(--accent-gold);
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-light-2);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.grid-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ============================================================
   FEATURE HIGHLIGHT BAND
   ============================================================ */
.highlight-band {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-3) 100%);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 4rem 2rem;
}

.highlight-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.highlight-text-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.highlight-text-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.highlight-text-title strong {
  font-weight: 600;
}

.highlight-text-body {
  font-size: 0.95rem;
  color: var(--text-light-2);
  line-height: 1.8;
}

.highlight-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.highlight-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.highlight-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.highlight-stat-label {
  font-size: 12px;
  color: var(--text-light-2);
  font-weight: 300;
  line-height: 1.4;
}

/* ============================================================
   ENGAGEMENT — LIKE & SHARE
   ============================================================ */
.card-engagement {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.btn-like {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.btn-like:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: scale(1.04);
}

.btn-like.liked {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
  color: var(--accent-gold-2);
}

.btn-like.liked .like-heart {
  animation: heart-pop 0.3s ease;
}

@keyframes heart-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.like-heart { font-size: 14px; }
.like-count { font-size: 12px; }

/* For dark cards */
.card-dark .btn-like {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.2);
  color: var(--accent-gold);
}

.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 100px;
  padding: 7px 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-cyan);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-share:hover {
  background: rgba(0, 229, 255, 0.12);
  transform: scale(1.04);
}

/* ============================================================
   COMMENTS SECTION
   ============================================================ */
.comments-section {
  background: var(--bg-dark-2);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border-dark);
}

.comments-container {
  max-width: 800px;
  margin: 0 auto;
}

.comments-header {
  margin-bottom: 2.5rem;
}

.comments-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.comments-subtitle {
  font-size: 0.9rem;
  color: var(--text-light-2);
  font-weight: 300;
}

.comment-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
}

.comment-form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.comment-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 300;
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: border-color var(--transition);
  font-family: var(--font-body);
}

.comment-textarea::placeholder {
  color: rgba(248, 250, 252, 0.25);
}

.comment-textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}

.comment-form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.btn-comment-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-2));
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-comment-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.comment-item:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

.comment-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-cyan));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--bg-dark);
}

.comment-body-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.comment-author {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
}

.comment-role {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 100px;
  padding: 2px 8px;
}

.comment-time {
  font-size: 11px;
  color: var(--text-light-2);
  opacity: 0.5;
  margin-left: auto;
}

.comment-text {
  font-size: 0.9rem;
  color: var(--text-light-2);
  line-height: 1.7;
  font-weight: 300;
}

.comment-success {
  display: none;
  padding: 12px 16px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-name span {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-2));
  border-radius: 6px;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  font-family: var(--font-display);
  color: var(--bg-dark);
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-light-2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.footer-telegram-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  text-decoration: none;
  transition: all var(--transition);
}

.footer-telegram-cta:hover {
  background: rgba(0, 229, 255, 0.14);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
}

.footer-telegram-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-telegram-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--bg-dark);
}

.footer-telegram-text {
  display: flex;
  flex-direction: column;
}

.footer-telegram-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  line-height: 1.2;
}

.footer-telegram-handle {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 13px;
  color: var(--text-light-2);
  font-weight: 300;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--accent-gold);
}

/* Newsletter */
.newsletter-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13px;
  color: var(--text-light);
  outline: none;
  width: 100%;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.newsletter-input::placeholder {
  color: rgba(248, 250, 252, 0.25);
}

.newsletter-input:focus {
  border-color: var(--accent-gold);
}

.btn-newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-2));
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  width: 100%;
}

.btn-newsletter:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 12px;
  color: rgba(248, 250, 252, 0.3);
  font-weight: 300;
}

.footer-copy a {
  color: var(--accent-gold);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.footer-copy a:hover {
  opacity: 1;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.5);
}

.footer-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.5;
}

/* ============================================================
   TAGS / BADGES
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
}

.tag-gold {
  color: var(--accent-gold);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.08);
}

.tag-cyan {
  color: var(--accent-cyan);
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.06);
}

.tag-navy {
  color: var(--text-light-2);
  border-color: rgba(248, 250, 252, 0.15);
  background: rgba(248, 250, 252, 0.05);
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider-gold {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
  margin: 3rem 0;
}

/* ============================================================
   PROGRESS / PIPELINE BARS
   ============================================================ */
.progress-bar-wrap {
  margin-bottom: 1rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--text-light-2);
  font-family: var(--font-heading);
  font-weight: 600;
}

.progress-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-cyan));
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-gold), var(--accent-cyan));
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 2px solid var(--bg-dark-2);
  z-index: 1;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
}

.timeline-body {
  font-size: 0.875rem;
  color: var(--text-light-2);
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================================
   CODE BLOCK STYLE
   ============================================================ */
.code-block {
  background: rgba(11, 19, 43, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--accent-cyan);
  line-height: 1.8;
  overflow-x: auto;
  margin-bottom: 1rem;
}

.code-block .comment { color: rgba(212, 175, 55, 0.6); }
.code-block .keyword { color: var(--accent-gold); }
.code-block .string { color: rgba(0, 229, 255, 0.7); }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .highlight-band-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links,
  .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  .hero { padding: 4rem 1.25rem 3.5rem; min-height: 80vh; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats { gap: 2rem; }

  .grid-3, .grid-2, .grid-nav {
    grid-template-columns: 1fr;
  }

  .grid-4 { grid-template-columns: 1fr; }

  .section { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 3.5rem 1.25rem 3rem; }
  .page-hero-title { font-size: clamp(2rem, 6vw, 3rem); }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .comment-body-header { flex-wrap: wrap; }
  .comment-time { margin-left: 0; }

  .highlight-stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .highlight-stat-grid { grid-template-columns: 1fr; }
}
