/* ========================================
   INTEGRATED INTELLIGENCE - Design System
   ======================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --color-primary: #0a1628;
  --color-primary-light: #111d2e;
  --color-primary-lighter: #1a2a3f;
  --color-accent: #0891b2;
  --color-accent-light: #22d3ee;
  --color-accent-glow: rgba(8, 145, 178, 0.3);
  /* NEW: Orange as secondary accent */
  --color-orange: #e88743;
  --color-orange-light: #f09a5a;
  --color-orange-glow: rgba(232, 135, 67, 0.2);
  --color-text: #f8fafc;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  --color-border: rgba(148, 163, 184, 0.1);
  --color-card: rgba(17, 29, 46, 0.6);
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Layout */
  --max-width: 1200px;
  --nav-height: 200px;
  
  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--color-accent-glow);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-primary);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { color: var(--color-text-secondary); }

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--color-accent-light); }

em, i { font-style: italic; }

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow { max-width: 800px; }

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-secondary); }
.text-small { font-size: 0.875rem; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; font-weight: 600; }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.flex { display: flex; }
.flex-center { justify-content: center; align-items: center; }

.grid { display: grid; gap: var(--space-xl); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 968px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding-top: 10px;
}

.nav-logo {
  height: 170px;
  width: auto;
}

.human-better-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.hb-line {
  width: 40px;
  height: 1px;
  background: var(--color-orange);
}

.hb-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-orange);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 100px;
  }
  .human-better-brand {
    gap: 10px;
    margin-top: 4px;
  }
  .hb-line {
    width: 24px;
  }
  .hb-text {
    font-size: 1rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* Platform Dropdown - Premium */
.platform-dropdown {
  position: relative;
}

.platform-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: var(--space-sm) 0;
}

.platform-dropdown-toggle:hover,
.platform-dropdown.open .platform-dropdown-toggle {
  color: var(--color-accent);
}

.platform-dropdown-toggle .arrow {
  font-size: 0.5rem;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.platform-dropdown.open .arrow {
  transform: rotate(180deg);
}

.platform-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  right: -60px;
  width: 420px;
  background: linear-gradient(165deg, rgba(15, 30, 50, 0.98) 0%, rgba(10, 22, 40, 0.99) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(8, 145, 178, 0.3);
  border-radius: 16px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(8, 145, 178, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 1001;
  overflow: hidden;
}

.platform-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 80px;
  width: 16px;
  height: 16px;
  background: rgba(15, 30, 50, 0.98);
  border-left: 1px solid rgba(8, 145, 178, 0.3);
  border-top: 1px solid rgba(8, 145, 178, 0.3);
  transform: rotate(45deg);
}

.platform-dropdown.open .platform-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.platform-dropdown-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.platform-dropdown-header h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin: 0;
}

.platform-options {
  padding: 12px;
}

.platform-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  margin-bottom: 8px;
}

.platform-option:last-child {
  margin-bottom: 0;
}

.platform-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.15) 0%, rgba(8, 145, 178, 0) 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-option:hover {
  border-color: rgba(8, 145, 178, 0.4);
  transform: translateX(4px);
}

.platform-option:hover::before {
  opacity: 1;
}

.platform-option.featured {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.12) 0%, rgba(8, 145, 178, 0.03) 100%);
  border-color: rgba(8, 145, 178, 0.25);
}

.platform-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.2) 0%, rgba(8, 145, 178, 0.05) 100%);
  border: 1px solid rgba(8, 145, 178, 0.3);
  transition: all 0.3s ease;
}

.platform-option:hover .platform-option-icon {
  transform: scale(1.05);
  border-color: rgba(8, 145, 178, 0.5);
  box-shadow: 0 0 20px rgba(8, 145, 178, 0.3);
}

.platform-option-icon.shield {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.05) 100%);
  border-color: rgba(34, 197, 94, 0.3);
}

.platform-option:hover .platform-option-icon.shield {
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.platform-option-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.platform-option-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.platform-option-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.platform-option:hover .platform-option-name {
  color: var(--color-accent);
}

.platform-option-badge {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #0e7490 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(8, 145, 178, 0.4);
}

.platform-option-badge.new {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

.platform-option-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.platform-option:hover .platform-option-desc {
  color: var(--color-text-secondary);
}

.platform-option-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--color-accent);
  font-size: 1.2rem;
  align-self: center;
}

.platform-option:hover .platform-option-arrow {
  opacity: 1;
  transform: translateX(0);
}

.platform-dropdown-footer {
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.platform-dropdown-footer a {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.platform-dropdown-footer a:hover {
  color: var(--color-accent);
}

.platform-dropdown-footer a .footer-arrow {
  transition: transform 0.3s ease;
}

.platform-dropdown-footer a:hover .footer-arrow {
  transform: translateX(4px);
}

@media (max-width: 968px) {
  .platform-dropdown-menu {
    right: -20px;
    width: 340px;
  }
  
  .platform-dropdown-menu::before {
    right: 40px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #0e7490 100%);
  color: white;
  box-shadow: 0 4px 20px var(--color-accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px var(--color-accent-glow);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-primary-lighter);
  border-color: var(--color-accent);
  color: var(--color-text);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  padding: 0.875rem 1rem;
}

.btn-ghost:hover { color: var(--color-accent-light); }

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(8, 145, 178, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(8, 145, 178, 0.1) 0%, transparent 40%),
    linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-lg);
}

.hero-title {
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-description {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

/* Sections */
.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: var(--color-primary-light);
}

/* Cards */
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 145, 178, 0.3);
  box-shadow: var(--shadow-lg);
}

.card-accent {
  border-left: 3px solid var(--color-accent);
}

/* Service Cards */
.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.service-desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

.metric {
  text-align: center;
  padding: var(--space-xl);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.metric-label {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.metric-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Quote Block */
.quote-block {
  position: relative;
  padding: var(--space-2xl);
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-orange);
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-orange);
  opacity: 0.3;
  line-height: 1;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.quote-source {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

/* Daily Quote Widget */
.daily-quote {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-lighter) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 700px;
  margin: 0 auto;
}

.daily-quote-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.daily-quote-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.daily-quote-chapter {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Book Section */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 868px) {
  .book-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.book-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.book-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, var(--color-orange-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.book-image {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.book-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.book-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
}

.book-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.book-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.book-description {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.book-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 868px) {
  .book-cta { justify-content: center; }
}

/* Testimonials */
.testimonial {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, #0e7490 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  color: var(--color-text);
  font-size: 0.95rem;
}

.testimonial-info span {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* Credentials */
.credentials {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.credential {
  background: var(--color-primary-lighter);
  border: 1px solid rgba(232, 135, 67, 0.3);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-orange);
}

/* Footer */
.footer {
  background: var(--color-primary);
  border-top: 1px solid var(--color-border);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  height: 40px;
  margin-bottom: var(--space-md);
}

.footer-desc {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: var(--space-sm); }

.footer-links a {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--color-accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  color: var(--color-text-secondary);
  font-weight: 600;
}

/* Forms */
.form-group { margin-bottom: var(--space-lg); }

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-primary-lighter);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Chapter Cards */
.chapter-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: var(--transition);
}

.chapter-card:hover {
  border-color: var(--color-accent);
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
}

/* ========================================
   NEW: Human Better Tagline Styles
   ======================================== */
.human-better-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.tagline-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-orange));
}

.tagline-line.right {
  background: linear-gradient(90deg, var(--color-orange), transparent);
}

.tagline-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-orange);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .human-better-tagline {
    gap: var(--space-md);
  }
  .tagline-line { width: 24px; }
  .tagline-text { font-size: 0.75rem; }
}

/* NEW: Enforcer Quote Banner */
.enforcer-banner {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, rgba(232, 135, 67, 0.08) 0%, rgba(232, 135, 67, 0.02) 100%);
  border-top: 1px solid rgba(232, 135, 67, 0.15);
  border-bottom: 1px solid rgba(232, 135, 67, 0.15);
  text-align: center;
}

.enforcer-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto var(--space-sm);
}

.enforcer-source {
  font-size: 0.9rem;
  color: var(--color-orange);
}

/* NEW: Human First CTA Section */
.cta-human-first {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.cta-human-first .orange-dot {
  color: var(--color-orange);
}

/* Orange accent on specific elements */
.text-orange { color: var(--color-orange); }

.metric-value-orange {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

/* Subtle orange glow on hover for cards */
.card:hover {
  border-color: rgba(232, 135, 67, 0.3);
  box-shadow: 0 0 30px rgba(232, 135, 67, 0.1);
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
