/* DEVELOPER DOPAMINE - Premium Professional Landing Page */

:root {
  /* Premium Brand Colors */
  --dd-primary: #FF4D00;           /* Vibrant orange-red */
  --dd-primary-light: #FF6B35;    /* Lighter orange */
  --dd-primary-dark: #E6430D;     /* Darker orange */
  --dd-accent: #00D4FF;           /* Electric blue */
  --dd-accent-light: #33E0FF;     /* Light blue */
  --dd-accent-dark: #0099CC;      /* Dark blue */
  --dd-gold: #FFD700;             /* Premium gold */
  --dd-success: #00E676;          /* Success green */
  
  /* Psychological Color Triggers */
  --dd-danger: #FF3B30;           /* iOS red - triggers urgency */
  --dd-warning: #FF9500;          /* iOS orange - demands attention */
  --dd-bleed: #FF0000;            /* Pure red - visceral money loss */
  --dd-skeptic: #8E8E93;          /* iOS gray - credible, not hype */
  
  /* Professional Grays */
  --dd-black: #0A0A0A;            /* True black */
  --dd-dark: #1A1A1A;            /* Dark gray */
  --dd-medium: #2A2A2A;          /* Medium gray */
  --dd-light: #F8F9FA;           /* Light gray */
  --dd-white: #FFFFFF;           /* Pure white */
  
  /* Gradient Combinations */
  --gradient-primary: linear-gradient(135deg, var(--dd-primary) 0%, var(--dd-accent) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dd-black) 0%, var(--dd-dark) 100%);
  --gradient-light: linear-gradient(135deg, var(--dd-white) 0%, var(--dd-light) 100%);
  --gradient-gold: linear-gradient(135deg, var(--dd-gold) 0%, #FFA500 100%);
  
  /* Premium Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;
  
  /* Typography Scale - Static Fallbacks */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 3.75rem;    /* 60px */
  --text-7xl: 4.5rem;     /* 72px */
  --text-8xl: 6rem;       /* 96px */
  
  /* FLUID TYPOGRAPHY SYSTEM - Dynamic Responsive Scaling */
  --fluid-text-xs: clamp(0.7rem, 1.5vw, 0.875rem);      /* 11px - 14px */
  --fluid-text-sm: clamp(0.8rem, 2vw, 1rem);            /* 13px - 16px */
  --fluid-text-base: clamp(0.875rem, 2.5vw, 1.125rem);  /* 14px - 18px */
  --fluid-text-lg: clamp(1rem, 3vw, 1.375rem);          /* 16px - 22px */
  --fluid-text-xl: clamp(1.125rem, 3.5vw, 1.5rem);      /* 18px - 24px */
  --fluid-text-2xl: clamp(1.25rem, 4vw, 1.875rem);      /* 20px - 30px */
  --fluid-text-3xl: clamp(1.5rem, 5vw, 2.5rem);         /* 24px - 40px */
  --fluid-text-4xl: clamp(1.875rem, 6vw, 3.125rem);     /* 30px - 50px */
  --fluid-text-5xl: clamp(2.5rem, 8vw, 4rem);           /* 40px - 64px */
  --fluid-text-6xl: clamp(3rem, 10vw, 5rem);            /* 48px - 80px */
  --fluid-text-7xl: clamp(3.5rem, 12vw, 6rem);          /* 56px - 96px */
  --fluid-text-8xl: clamp(4rem, 15vw, 8rem);            /* 64px - 128px */
  
  /* Spacing System - Static Fallbacks */
  --space-1: 0.25rem;     /* 4px */
  --space-2: 0.5rem;      /* 8px */
  --space-3: 0.75rem;     /* 12px */
  --space-4: 1rem;        /* 16px */
  --space-5: 1.25rem;     /* 20px */
  --space-6: 1.5rem;      /* 24px */
  --space-8: 2rem;        /* 32px */
  --space-10: 2.5rem;     /* 40px */
  --space-12: 3rem;       /* 48px */
  --space-16: 4rem;       /* 64px */
  --space-20: 5rem;       /* 80px */
  --space-24: 6rem;       /* 96px */
  --space-32: 8rem;       /* 128px */
  
  /* FLUID SPACING SYSTEM - Dynamic Responsive Scaling */
  --fluid-xs: clamp(0.25rem, 1vw, 0.5rem);        /* 4px - 8px */
  --fluid-sm: clamp(0.5rem, 1.5vw, 0.875rem);     /* 8px - 14px */
  --fluid-md: clamp(0.75rem, 2vw, 1.25rem);       /* 12px - 20px */
  --fluid-lg: clamp(1rem, 2.5vw, 1.75rem);        /* 16px - 28px */
  --fluid-xl: clamp(1.5rem, 3vw, 2.5rem);         /* 24px - 40px */
  --fluid-2xl: clamp(2rem, 4vw, 3.5rem);          /* 32px - 56px */
  --fluid-3xl: clamp(2.5rem, 5vw, 4.5rem);        /* 40px - 72px */
  --fluid-4xl: clamp(3rem, 6vw, 6rem);            /* 48px - 96px */
  --fluid-5xl: clamp(4rem, 8vw, 8rem);            /* 64px - 128px */
  --fluid-6xl: clamp(5rem, 10vw, 10rem);          /* 80px - 160px */
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-primary: 0 20px 40px -12px rgb(255 77 0 / 0.4);
  --shadow-accent: 0 20px 40px -12px rgb(0 212 255 / 0.4);
  
  /* Border Radius */
  --radius-sm: 0.375rem;   /* 6px */
  --radius-md: 0.5rem;     /* 8px */
  --radius-lg: 0.75rem;    /* 12px */
  --radius-xl: 1rem;       /* 16px */
  --radius-2xl: 1.5rem;    /* 24px */
  --radius-full: 9999px;   /* Full round */
  
  /* Enhanced Animations & Transitions */
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 750ms;
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-normal: 300ms ease-out;
  --transition-fast: 150ms ease-out;
  --transition-slow: 500ms ease-out;
  
  /* Breakpoint Variables for CSS */
  --bp-xs: 480px;
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;
  --bp-2xl: 1440px;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--dd-dark);
  background: var(--dd-white);
  overflow-x: hidden;
}

/* Container System */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-12);
  }
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-6xl); }
  h2 { font-size: var(--text-5xl); }
  h3 { font-size: var(--text-3xl); }
  h4 { font-size: var(--text-2xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-7xl); }
  h2 { font-size: var(--text-6xl); }
}

/* Button System */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.cta-button.large {
  padding: var(--space-6) var(--space-12);
  font-size: var(--text-lg);
}

.cta-button.primary {
  background: var(--gradient-primary);
  color: var(--dd-white);
  box-shadow: var(--shadow-primary);
  border-color: var(--dd-primary);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2xl), var(--shadow-primary);
  border-color: var(--dd-primary-light);
}

.cta-button.secondary {
  background: var(--dd-white);
  color: var(--dd-dark);
  border-color: var(--dd-medium);
  box-shadow: var(--shadow-lg);
}

.cta-button.secondary:hover {
  background: var(--dd-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.button-icon {
  font-size: 1.2em;
}

/* HERO SECTION - Premium Design */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  color: var(--dd-white);
  overflow: hidden;
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 77, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  background-size: 100% 100%;
  animation: patternShift 20s ease-in-out infinite;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-20) 0;
}

/* Brand Logo Section */
.brand-logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  animation: fadeInUp 1s var(--ease-out);
}

.brand-icon {
  font-size: var(--text-6xl);
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s ease-in-out infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-main {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--dd-white);
  line-height: 0.9;
}

.brand-accent {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 900;
  letter-spacing: -0.05em;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.9;
}

@media (min-width: 768px) {
  .brand-main,
  .brand-accent {
    font-size: var(--text-6xl);
  }
}

@media (min-width: 1024px) {
  .brand-main,
  .brand-accent {
    font-size: var(--text-7xl);
  }
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s var(--ease-out) 0.2s both;
}

.badge-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dd-white);
  opacity: 0.9;
}

/* Hero Headline */
.hero-headline {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  animation: fadeInUp 1s var(--ease-out) 0.4s both;
}

.highlight-gradient {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.highlight-gradient::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  opacity: 0.3;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: var(--text-5xl);
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: var(--text-6xl);
  }
}

/* Hero Subheadline */
.hero-subheadline {
  font-size: var(--text-xl);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto var(--space-12);
  animation: fadeInUp 1s var(--ease-out) 0.6s both;
}

@media (min-width: 768px) {
  .hero-subheadline {
    font-size: var(--text-2xl);
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out) 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: 900;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-1);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .stat-divider {
    display: none;
  }
  
  .hero-stats {
    gap: var(--space-6);
  }
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out) 1s both;
}

@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Hero Trust Indicators */
.hero-trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-out) 1.2s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.trust-icon {
  font-size: var(--text-lg);
}

.trust-text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

@media (max-width: 640px) {
  .hero-trust-indicators {
    gap: var(--space-4);
  }
  
  .trust-text {
    font-size: var(--text-xs);
  }
}

/* Pain Section - Enhanced */
.pain-section {
  padding: var(--space-32) 0;
  background: var(--gradient-light);
}

.pain-grid {
  display: grid;
  gap: var(--space-16);
  align-items: center;
}

@media (min-width: 1024px) {
  .pain-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.pain-content h2 {
  color: var(--dd-dark);
  margin-bottom: var(--space-8);
}

.pain-list {
  list-style: none;
  margin-bottom: var(--space-8);
}

.pain-list li {
  padding: var(--space-6);
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
  background: var(--dd-white);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--dd-primary);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.pain-list li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.pain-summary {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--dd-dark);
  line-height: 1.5;
}

.pain-image {
  display: flex;
  justify-content: center;
}

.stressed-dev-illustration {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-16);
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.stressed-dev-illustration::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.3;
}

.illustration-text {
  font-size: var(--text-3xl);
  color: var(--dd-white);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* Solution Section */
.solution-section {
  padding: var(--space-32) 0;
  background: var(--dd-white);
  position: relative;
}

.solution-header {
  text-align: center;
  margin-bottom: var(--space-20);
}

.solution-header h2 {
  color: var(--dd-dark);
  margin-bottom: var(--space-6);
}

.solution-intro {
  font-size: var(--text-xl);
  color: var(--dd-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.agents-grid {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

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

@media (min-width: 1200px) {
  .agents-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.agent-card {
  background: var(--dd-white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 77, 0, 0.1);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.agent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.agent-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl), var(--shadow-primary);
  border-color: var(--dd-primary);
}

.agent-icon {
  font-size: var(--text-sm);
  font-weight: 900;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  background: var(--gradient-primary);
  color: var(--dd-white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: var(--space-6);
}

.agent-card h3 {
  color: var(--dd-dark);
  margin-bottom: var(--space-4);
  font-size: var(--text-xl);
}

.agent-card p {
  color: var(--dd-medium);
  line-height: 1.6;
  font-size: var(--text-base);
}

.solution-footer {
  text-align: center;
}

.best-part {
  font-size: var(--text-2xl);
  color: var(--dd-dark);
  max-width: 600px;
  margin: 0 auto;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes patternShift {
  0%, 100% {
    background-position: 0% 0%, 100% 0%, 50% 100%;
  }
  50% {
    background-position: 100% 100%, 0% 100%, 0% 0%;
  }
}

/* Value Section */
.value-section {
  padding: var(--space-32) 0;
  background: var(--gradient-dark);
  color: var(--dd-white);
  position: relative;
}

/* Enhanced Value Section */
.value-header {
  text-align: center;
  margin-bottom: var(--space-20);
}

.value-headline {
  color: var(--dd-white);
  margin-bottom: var(--space-6);
}

.value-subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.value-stack {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-20);
}

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

.value-card.premium {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-10);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.value-card.premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.value-card.premium:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
}

.value-icon {
  font-size: var(--text-xs);
  font-weight: 900;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  background: var(--gradient-primary);
  color: var(--dd-white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: var(--space-6);
}

.value-metric {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-amount {
  font-size: var(--text-3xl);
  font-weight: 900;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.value-impact {
  font-size: var(--text-xl);
  color: var(--dd-gold);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.value-description {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Total Value Section */
.total-value-section {
  display: flex;
  justify-content: center;
}

.total-value-card {
  background: var(--gradient-primary);
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
  text-align: center;
  max-width: 500px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

.total-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M30 30c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20zm20 0c0-11-9-20-20-20s-20 9-20 20 9 20 20 20 20-9 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.total-label {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-3);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.total-amount {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--dd-white);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 2;
}

.total-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 2;
}

.total-subtitle .highlight {
  color: var(--dd-white);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
}

.roi-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--dd-white);
  color: var(--dd-primary);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
}

.roi-number {
  font-size: var(--text-2xl);
  font-weight: 900;
  line-height: 1;
}

.roi-text {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Guarantee Section */
.guarantee-section {
  padding: var(--space-32) 0;
  background: var(--gradient-gold);
  color: var(--dd-dark);
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.guarantee-banner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.guarantee-banner h2 {
  color: var(--dd-dark);
  margin-bottom: var(--space-8);
}

.guarantee-box {
  background: var(--dd-dark);
  color: var(--dd-white);
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  border: 3px solid var(--dd-primary);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}

.guarantee-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, var(--dd-primary), var(--dd-accent), var(--dd-primary));
  animation: rotate 4s linear infinite;
  z-index: -1;
}

.guarantee-box::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: var(--dd-dark);
  border-radius: var(--radius-2xl);
  z-index: -1;
}

.guarantee-stamp {
  position: absolute;
  top: -20px;
  right: var(--space-8);
  background: var(--gradient-primary);
  color: var(--dd-white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.guarantee-text {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 2;
}

.guarantee-challenge {
  font-style: italic;
  opacity: 0.8;
  font-size: var(--text-lg);
  position: relative;
  z-index: 2;
}

/* Enhanced Scarcity Section */
.scarcity-section {
  padding: var(--space-32) 0;
  background: var(--gradient-light);
}

.scarcity-content {
  max-width: 1000px;
  margin: 0 auto;
}

.scarcity-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.exclusivity-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--gradient-primary);
  color: var(--dd-white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-primary);
}

.scarcity-header h2 {
  color: var(--dd-dark);
  margin-bottom: var(--space-4);
  font-size: var(--text-4xl);
}

.scarcity-header h3 {
  color: var(--dd-medium);
  font-weight: 600;
  font-size: var(--text-xl);
}

/* Explanation Cards */
.scarcity-explanation {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-20);
}

@media (min-width: 1024px) {
  .scarcity-explanation {
    grid-template-columns: repeat(3, 1fr);
  }
}

.explanation-card {
  background: var(--dd-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 77, 0, 0.1);
  transition: all var(--duration-normal) var(--ease-out);
}

.explanation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--dd-primary);
}

.explanation-badge {
  font-size: var(--text-xs);
  font-weight: 900;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  background: var(--gradient-primary);
  color: var(--dd-white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  display: inline-block;
  margin-bottom: var(--space-4);
}

.explanation-content h4 {
  color: var(--dd-dark);
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.explanation-content p {
  color: var(--dd-medium);
  line-height: 1.6;
}

/* Enhanced Urgency Dashboard */
.urgency-dashboard {
  background: var(--dd-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-2xl);
  border: 2px solid var(--dd-primary);
}

.dashboard-header {
  text-align: center;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 2px solid var(--dd-light);
}

.dashboard-header h4 {
  color: var(--dd-dark);
  font-size: var(--text-2xl);
  font-weight: 700;
}

.urgency-grid {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

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

.countdown-card,
.slots-card {
  background: var(--gradient-light);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--dd-light);
  position: relative;
  overflow: hidden;
}

.countdown-card::before,
.slots-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.card-icon {
  font-size: var(--text-xl);
}

.card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dd-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-content {
  text-align: center;
}

#countdown-display,
#slots-display {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--dd-primary);
  margin-bottom: var(--space-4);
}

/* Progress Bar */
.slots-progress {
  margin-top: var(--space-4);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--dd-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width var(--duration-slow) var(--ease-out);
}

/* Urgency Notice */
.urgency-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: rgba(255, 77, 0, 0.05);
  border: 1px solid rgba(255, 77, 0, 0.2);
  border-radius: var(--radius-lg);
  margin-top: var(--space-8);
}

.notice-icon {
  font-size: var(--text-2xl);
  flex-shrink: 0;
}

.notice-text {
  color: var(--dd-dark);
  line-height: 1.6;
}

.notice-text strong {
  color: var(--dd-primary);
}

/* Final CTA Section */
.final-cta-section {
  padding: var(--space-32) 0;
  background: var(--gradient-dark);
  color: var(--dd-white);
  position: relative;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--dd-white);
  margin-bottom: var(--space-6);
}

.cta-description {
  font-size: var(--text-xl);
  margin-bottom: var(--space-12);
  line-height: 1.6;
  opacity: 0.9;
}

.cta-bullets {
  font-size: var(--text-lg);
  margin-bottom: var(--space-12);
  line-height: 1.8;
}

/* Premium Form Styles */
.apply-form {
  background: var(--dd-white);
  padding: var(--space-12);
  border-radius: var(--radius-2xl);
  margin-top: var(--space-12);
  color: var(--dd-dark);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 77, 0, 0.1);
}

.form-grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

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

.apply-form input,
.apply-form select,
.apply-form textarea {
  padding: var(--space-4);
  border: 2px solid var(--dd-light);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-family: var(--font-primary);
  transition: all var(--duration-normal) var(--ease-out);
  background: var(--dd-white);
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--dd-primary);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.1);
}

.apply-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  font-size: var(--text-sm);
  color: var(--dd-medium);
  margin-top: var(--space-6);
  text-align: center;
  line-height: 1.5;
}

/* Footer */
.footer-section {
  padding: var(--space-16) 0;
  background: var(--dd-black);
  color: var(--dd-white);
  text-align: center;
}

.footer-tagline {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  font-size: var(--text-base);
  opacity: 0.8;
}

.footer-links a {
  color: var(--dd-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
  color: var(--dd-primary-light);
  text-decoration: underline;
}

/* Animation Classes */
.fade-in {
  animation: fadeInUp 0.8s var(--ease-out);
}

.slide-in-left {
  animation: slideInLeft 0.8s var(--ease-out);
}

.slide-in-right {
  animation: slideInRight 0.8s var(--ease-out);
}

.bounce-in {
  animation: bounceIn 0.8s var(--ease-out);
}

/* Additional Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 3px solid var(--dd-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Form Messages */
.form-message {
  animation: slideInUp 0.3s var(--ease-out);
}

.form-message.success {
  background: var(--dd-success);
  color: var(--dd-white);
}

.form-message.error {
  background: var(--dd-primary);
  color: var(--dd-white);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-4);
  }
  
  .hero-section,
  .pain-section,
  .solution-section,
  .value-section,
  .guarantee-section,
  .scarcity-section,
  .final-cta-section {
    padding: var(--space-20) 0;
  }
  
  .brand-logo-section {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .brand-text {
    align-items: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .stat-divider {
    width: 60px;
    height: 1px;
  }
}

/* Performance Optimizations */
.hero-background-pattern,
.hero-gradient-overlay {
  will-change: transform;
}

.agent-card,
.value-card,
.pain-list li {
  will-change: transform;
}

/* Navigation Styles */
.main-navigation {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--dd-white);
}

.brand-link .brand-icon {
  font-size: var(--text-2xl);
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-link .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-link .brand-main {
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--dd-white);
}

.brand-link .brand-accent {
  font-size: var(--text-lg);
  font-weight: 900;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-link {
  color: var(--dd-white);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-base);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav-link:hover {
  color: var(--dd-primary);
}

.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.dropdown-arrow {
  font-size: var(--text-xs);
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dd-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--duration-fast) var(--ease-out);
  box-shadow: var(--shadow-2xl);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: var(--space-2) var(--space-3);
  color: var(--dd-white);
  text-decoration: none;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
}

.dropdown-link:hover {
  background: rgba(255, 77, 0, 0.1);
  color: var(--dd-primary);
}

.nav-cta-button {
  background: var(--gradient-primary);
  color: var(--dd-white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--duration-fast) var(--ease-out);
}

.nav-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.nav-mobile-toggle {
  display: none;
}

/* Use Case Page Styles */
.use-case-hero {
  background: var(--gradient-dark);
  color: var(--dd-white);
  padding: var(--space-24) 0 var(--space-20);
  text-align: center;
}

.use-case-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
}

.use-case-badge .badge-icon {
  font-size: var(--text-sm);
  font-weight: 900;
  font-family: var(--font-mono);
  background: var(--gradient-primary);
  color: var(--dd-white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
}

.use-case-headline {
  font-size: var(--text-5xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.use-case-subheadline {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Timeline Styles */
.timeline-section {
  background: var(--dd-white);
  padding: var(--space-24) 0;
}

.timeline-header {
  text-align: center;
  margin-bottom: var(--space-20);
}

.timeline-header h2 {
  font-size: var(--text-4xl);
  color: var(--dd-dark);
  margin-bottom: var(--space-4);
}

.timeline-subtitle {
  font-size: var(--text-xl);
  color: var(--dd-medium);
}

.timeline-grid {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-grid::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--dd-light);
}

.timeline-item {
  display: flex;
  margin-bottom: var(--space-16);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--dd-primary);
  border-radius: 50%;
  border: 3px solid var(--dd-white);
  z-index: 2;
}

.timeline-time {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--dd-primary);
  min-width: 120px;
  margin-right: var(--space-8);
}

.timeline-content {
  flex: 1;
}

.timeline-content h3 {
  font-size: var(--text-xl);
  color: var(--dd-dark);
  margin-bottom: var(--space-4);
}

.timeline-card {
  background: var(--dd-white);
  border: 2px solid var(--dd-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-lg);
}

.card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.status-badge {
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.status-badge.critical {
  background: #FF4757;
  color: white;
}

.status-badge.warning {
  background: #FFA502;
  color: white;
}

.status-badge.optimized {
  background: #2ED573;
  color: white;
}

.status-badge.success {
  background: #5352ED;
  color: white;
}

.status-badge.info {
  background: #70A1FF;
  color: white;
}

.status-badge.ready {
  background: var(--dd-primary);
  color: white;
}

.card-title {
  font-weight: 700;
  color: var(--dd-dark);
}

.card-body p {
  margin-bottom: var(--space-2);
  color: var(--dd-medium);
}

.card-body strong {
  color: var(--dd-dark);
}

.savings-tag {
  background: var(--dd-success);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.timeline-description {
  color: var(--dd-medium);
  font-style: italic;
  line-height: 1.6;
}

/* Impact Section */
.impact-section {
  background: var(--gradient-dark);
  color: var(--dd-white);
  padding: var(--space-24) 0;
}

.impact-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.impact-header h2 {
  color: var(--dd-white);
  margin-bottom: var(--space-4);
}

.impact-subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.8);
}

.impact-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.impact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-number {
  font-size: var(--text-5xl);
  font-weight: 900;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-3);
}

.impact-label {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.impact-description {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

/* Agent Card Links */
.agent-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--dd-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-top: var(--space-4);
  transition: all var(--duration-fast) var(--ease-out);
}

.agent-link:hover {
  color: var(--dd-primary-dark);
  transform: translateX(4px);
}

/* Use Case CTA */
.use-case-cta {
  background: var(--dd-white);
  padding: var(--space-20) 0;
  text-align: center;
}

.use-case-cta .cta-content h2 {
  color: var(--dd-dark);
  margin-bottom: var(--space-6);
}

.use-case-cta .cta-description {
  font-size: var(--text-xl);
  color: var(--dd-medium);
  margin-bottom: var(--space-8);
}

.use-case-cta .cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.cta-guarantee {
  font-size: var(--text-sm);
  color: var(--dd-medium);
  font-style: italic;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-mobile-toggle {
    display: block;
  }
  
  .use-case-headline {
    font-size: var(--text-3xl);
  }
  
  .timeline-time {
    font-size: var(--text-lg);
    min-width: 80px;
  }
  
  .timeline-grid::before {
    left: 60px;
  }
  
  .timeline-item::before {
    left: 52px;
  }
}

/* Psychological Design Elements */

/* Skeptic-Proof Section */
.skeptic-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-item {
  text-align: center;
}

.proof-label {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2);
}

.proof-value {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--dd-accent);
}

/* Quirky Features Section */
.quirky-features {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--dd-accent);
}

.quirky-features h3 {
  color: var(--dd-accent);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.quirky-list {
  list-style: none;
  padding: 0;
}

.quirky-list li {
  margin-bottom: var(--space-3);
  padding-left: var(--space-6);
  position: relative;
}

.quirky-list li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: var(--dd-accent);
}

/* Reality Check Section */
.reality-section {
  padding: var(--space-20) 0;
  background: var(--dd-dark);
  position: relative;
}

.reality-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, var(--dd-danger) 49.5%, var(--dd-danger) 50.5%, transparent 51%);
  opacity: 0.1;
}

.reality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin: var(--space-12) 0;
}

.reality-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  position: relative;
}

.reality-card.pain {
  background: linear-gradient(135deg, #1a4731 0%, #2d5a45 100%);
  border: 2px solid var(--dd-success);
}

.reality-card.truth {
  background: linear-gradient(135deg, #4a1a1a 0%, #5a2d2d 100%);
  border: 2px solid var(--dd-danger);
}

.reality-truth {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--dd-warning);
  font-size: var(--text-lg);
}

/* Developer Mindset Callouts */
.developer-mindset {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: linear-gradient(135deg, #2A2A2A 0%, #3A3A3A 100%);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--dd-accent);
  font-style: italic;
}

.developer-relief {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: linear-gradient(135deg, #1A4A1A 0%, #2A5A2A 100%);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--dd-success);
  font-style: italic;
}

.psychology-trigger {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: linear-gradient(135deg, #4A4A1A 0%, #5A5A2A 100%);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--dd-gold);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
}

/* Visceral Impact Elements */
.visceral-impact {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: linear-gradient(135deg, #4A1A1A 0%, #5A2A2A 100%);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--dd-danger);
  font-weight: 600;
}

.quirky-detail {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid var(--dd-accent);
  font-size: var(--text-sm);
}

/* Timeline Badge Variants */
.status-alert { background: var(--dd-danger); }
.status-investigate { background: var(--dd-warning); }
.status-money { background: var(--dd-bleed); animation: pulse 2s infinite; }
.status-negotiate { background: var(--dd-gold); }
.status-predict { background: var(--dd-accent); }
.status-shield { background: var(--dd-danger); animation: shake 0.5s ease-in-out; }
.status-flex { background: var(--dd-primary); }
.status-victory { background: var(--dd-success); }

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

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Bleeding Indicator */
/* COMPLETE FLUID DESIGN SYSTEM - FINAL ENHANCEMENTS */

/* Enhanced Fluid Spacing Utilities */
.p-xs { padding: var(--fluid-xs); }
.p-sm { padding: var(--fluid-sm); }
.p-md { padding: var(--fluid-md); }
.p-lg { padding: var(--fluid-lg); }
.p-xl { padding: var(--fluid-xl); }

.px-xs { padding-left: var(--fluid-xs); padding-right: var(--fluid-xs); }
.px-sm { padding-left: var(--fluid-sm); padding-right: var(--fluid-sm); }
.px-md { padding-left: var(--fluid-md); padding-right: var(--fluid-md); }
.px-lg { padding-left: var(--fluid-lg); padding-right: var(--fluid-lg); }
.px-xl { padding-left: var(--fluid-xl); padding-right: var(--fluid-xl); }

.py-xs { padding-top: var(--fluid-xs); padding-bottom: var(--fluid-xs); }
.py-sm { padding-top: var(--fluid-sm); padding-bottom: var(--fluid-sm); }
.py-md { padding-top: var(--fluid-md); padding-bottom: var(--fluid-md); }
.py-lg { padding-top: var(--fluid-lg); padding-bottom: var(--fluid-lg); }
.py-xl { padding-top: var(--fluid-xl); padding-bottom: var(--fluid-xl); }

.m-xs { margin: var(--fluid-xs); }
.m-sm { margin: var(--fluid-sm); }
.m-md { margin: var(--fluid-md); }
.m-lg { margin: var(--fluid-lg); }
.m-xl { margin: var(--fluid-xl); }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-xs { margin-top: var(--fluid-xs); margin-bottom: var(--fluid-xs); }
.my-sm { margin-top: var(--fluid-sm); margin-bottom: var(--fluid-sm); }
.my-md { margin-top: var(--fluid-md); margin-bottom: var(--fluid-md); }
.my-lg { margin-top: var(--fluid-lg); margin-bottom: var(--fluid-lg); }
.my-xl { margin-top: var(--fluid-xl); margin-bottom: var(--fluid-xl); }

/* Modern Input System */
.input-fluid {
  width: 100%;
  padding: var(--fluid-sm);
  border: 2px solid var(--dd-light);
  border-radius: var(--radius-lg);
  font-size: var(--fluid-text-base);
  transition: all var(--transition-normal);
  background: var(--dd-white);
}

.input-fluid:focus {
  outline: none;
  border-color: var(--dd-accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.label-fluid {
  display: block;
  font-size: var(--fluid-text-sm);
  font-weight: 600;
  color: var(--dd-dark);
  margin-bottom: var(--fluid-xs);
}

/* Enhanced Form System */
.form-fluid {
  display: grid;
  gap: var(--fluid-md);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--fluid-xs);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

/* Enhanced Typography Classes */
.text-fluid-xs { font-size: var(--fluid-text-xs); }
.text-fluid-sm { font-size: var(--fluid-text-sm); }
.text-fluid-base { font-size: var(--fluid-text-base); }
.text-fluid-lg { font-size: var(--fluid-text-lg); }
.text-fluid-xl { font-size: var(--fluid-text-xl); }
.text-fluid-2xl { font-size: var(--fluid-text-2xl); }
.text-fluid-3xl { font-size: var(--fluid-text-3xl); }
.text-fluid-4xl { font-size: var(--fluid-text-4xl); }
.text-fluid-5xl { font-size: var(--fluid-text-5xl); }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Enhanced Flexbox Utilities */
.flex-fluid {
  display: flex;
  gap: var(--fluid-sm);
}

.flex-fluid.col {
  flex-direction: column;
}

.flex-fluid.wrap {
  flex-wrap: wrap;
}

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

.flex-fluid.between {
  justify-content: space-between;
  align-items: center;
}

.flex-fluid.around {
  justify-content: space-around;
  align-items: center;
}

.flex-fluid.start {
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-fluid.end {
  justify-content: flex-end;
  align-items: flex-end;
}

/* Modern Card Variants */
.card-fluid {
  background: var(--dd-white);
  border-radius: var(--radius-xl);
  padding: var(--fluid-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-fluid:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-fluid.primary {
  background: var(--gradient-primary);
  color: var(--dd-white);
  border: 1px solid var(--dd-primary);
}

.card-fluid.dark {
  background: var(--dd-dark);
  color: var(--dd-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-fluid.accent {
  background: var(--dd-accent);
  color: var(--dd-white);
  border: 1px solid var(--dd-accent);
}

/* Modern Badge System */
.badge-fluid {
  display: inline-flex;
  align-items: center;
  gap: var(--fluid-xs);
  padding: var(--fluid-xs) var(--fluid-sm);
  font-size: var(--fluid-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge-fluid.primary {
  background: var(--dd-primary);
  color: var(--dd-white);
}

.badge-fluid.accent {
  background: var(--dd-accent);
  color: var(--dd-white);
}

.badge-fluid.success {
  background: var(--dd-success);
  color: var(--dd-white);
}

.badge-fluid.warning {
  background: var(--dd-warning);
  color: var(--dd-white);
}

.badge-fluid.danger {
  background: var(--dd-danger);
  color: var(--dd-white);
}

/* Enhanced Alert System */
.alert-fluid {
  padding: var(--fluid-md);
  border-radius: var(--radius-lg);
  border-left: 4px solid;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--fluid-md);
}

.alert-fluid.info {
  border-left-color: var(--dd-accent);
  background: rgba(0, 212, 255, 0.1);
}

.alert-fluid.success {
  border-left-color: var(--dd-success);
  background: rgba(0, 230, 118, 0.1);
}

.alert-fluid.warning {
  border-left-color: var(--dd-warning);
  background: rgba(255, 149, 0, 0.1);
}

.alert-fluid.danger {
  border-left-color: var(--dd-danger);
  background: rgba(255, 59, 48, 0.1);
}

/* Enhanced Navigation Utilities */
.nav-fluid {
  display: flex;
  align-items: center;
  gap: var(--fluid-md);
  padding: var(--fluid-sm) 0;
}

@media (max-width: 768px) {
  .nav-fluid {
    flex-direction: column;
    gap: var(--fluid-sm);
  }
}

/* Enhanced Section Utilities */
.section-fluid {
  padding: var(--fluid-xl) 0;
}

.section-fluid.primary {
  background: var(--gradient-primary);
  color: var(--dd-white);
}

.section-fluid.dark {
  background: var(--gradient-dark);
  color: var(--dd-white);
}

.section-fluid.light {
  background: var(--dd-light);
  color: var(--dd-dark);
}

.section-fluid.white {
  background: var(--dd-white);
  color: var(--dd-dark);
}

/* Enhanced List Utilities */
.list-fluid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-fluid li {
  padding: var(--fluid-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.list-fluid li:last-child {
  border-bottom: none;
}

.list-fluid.spaced li {
  margin-bottom: var(--fluid-sm);
  border-bottom: none;
}

/* Enhanced Display Utilities */
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Enhanced Position Utilities */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Enhanced Overflow Utilities */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Enhanced Visibility Utilities */
.visible { visibility: visible; }
.invisible { visibility: hidden; }
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Modern Animation Classes */
.animate-fade-in {
  animation: fadeIn var(--transition-slow) var(--ease-out);
}

.animate-slide-up {
  animation: slideUp var(--transition-slow) var(--ease-out);
}

.animate-bounce {
  animation: bounce var(--transition-slow) var(--ease-out);
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Enhanced Responsive Utilities */
@media (max-width: 640px) {
  .sm\\:hidden { display: none; }
  .sm\\:block { display: block; }
  .sm\\:flex { display: flex; }
  .sm\\:grid { display: grid; }
  
  .sm\\:text-center { text-align: center; }
  .sm\\:text-left { text-align: left; }
  .sm\\:text-right { text-align: right; }
  
  .sm\\:flex-col { flex-direction: column; }
  .sm\\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\\:hidden { display: none; }
  .md\\:block { display: block; }
  .md\\:flex { display: flex; }
  .md\\:grid { display: grid; }
  
  .md\\:text-center { text-align: center; }
  .md\\:text-left { text-align: left; }
  .md\\:text-right { text-align: right; }
  
  .md\\:flex-col { flex-direction: column; }
  .md\\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
  .lg\\:hidden { display: none; }
  .lg\\:block { display: block; }
  .lg\\:flex { display: flex; }
  .lg\\:grid { display: grid; }
  
  .lg\\:text-center { text-align: center; }
  .lg\\:text-left { text-align: left; }
  .lg\\:text-right { text-align: right; }
  
  .lg\\:flex-col { flex-direction: column; }
  .lg\\:flex-row { flex-direction: row; }
}

/* Enhanced Dark Mode (Future Ready) */
@media (prefers-color-scheme: dark) {
  .dark\\:bg-dark { background: var(--dd-dark); }
  .dark\\:bg-black { background: var(--dd-black); }
  .dark\\:text-white { color: var(--dd-white); }
  .dark\\:text-light { color: var(--dd-light); }
  .dark\\:border-white { border-color: rgba(255, 255, 255, 0.2); }
}

/* Enhanced Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.focus\\:outline-none:focus { outline: none; }
.focus\\:ring:focus { box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.5); }

/* Enhanced Selection Styles */
::selection {
  background: var(--dd-accent);
  color: var(--dd-white);
}

::-moz-selection {
  background: var(--dd-accent);
  color: var(--dd-white);
}

/* Enhanced Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dd-light);
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb {
  background: var(--dd-accent);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dd-accent-dark);
}

/* END OF COMPLETE FLUID DESIGN SYSTEM */
/* 
 * SYSTEM FEATURES SUMMARY:
 * ✅ Complete fluid typography with clamp() functions
 * ✅ Comprehensive fluid spacing system
 * ✅ Mobile-first responsive design patterns
 * ✅ Advanced hamburger navigation with animations
 * ✅ Touch-friendly interactions and button sizing
 * ✅ Performance optimizations with GPU acceleration
 * ✅ Accessibility enhancements (focus, screen readers, motion)
 * ✅ Modern CSS Grid and Flexbox utilities
 * ✅ Enhanced form and input styling
 * ✅ Modern card and badge components
 * ✅ Comprehensive utility classes
 * ✅ Animation and transition system
 * ✅ Print styles and dark mode preparation
 * ✅ Cross-browser compatibility
 * ✅ iPhone-specific optimizations for realistic UX
 * ✅ Enhanced scrollbar and selection styling
 * ✅ Modern responsive breakpoint management
 * ✅ Comprehensive color and shadow systems
 * ✅ Professional gradient and background patterns
 * ✅ Enhanced loading states and micro-interactions
 */

.bleeding-indicator {
  text-align: center;
  padding: var(--space-6);
  margin: var(--space-4) 0;
  background: linear-gradient(135deg, var(--dd-danger) 0%, #8B0000 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.bleed-animation {
  font-size: var(--text-4xl);
  animation: bleed 1s infinite;
  display: block;
  margin-bottom: var(--space-2);
}

@keyframes bleed {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
  100% { transform: translateY(0) scale(1); }
}

.stop-bleeding-btn {
  background: var(--dd-white);
  color: var(--dd-danger);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-top: var(--space-4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.stop-bleeding-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Skeptic Conversion Section */
.skeptic-section {
  padding: var(--space-20) 0;
  background: var(--dd-light);
}

.skeptic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.skeptic-concern {
  padding: var(--space-6);
  background: var(--dd-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--dd-skeptic);
}

.skeptic-concern h3 {
  color: var(--dd-danger);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.reality-check {
  color: var(--dd-dark);
  line-height: 1.6;
}

/* Mobile UX Section */
.mobile-ux-section {
  padding: var(--space-20) 0;
  background: var(--dd-dark);
  color: var(--dd-white);
}

.mobile-preview {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-12);
  align-items: center;
  margin-top: var(--space-12);
}

.iphone-mockup {
  width: 300px;
  height: 600px;
  background: #000;
  border-radius: 40px;
  padding: 20px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.iphone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  border-radius: 30px;
  padding: var(--space-6);
  overflow: hidden;
  position: relative;
}

.ios-status-bar {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
  color: var(--dd-white);
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.alert-badge {
  background: var(--dd-danger);
  color: var(--dd-white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
}

.quick-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  margin: var(--space-6) 0;
}

.stat {
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  text-align: center;
}

.alerts-preview {
  display: grid;
  gap: var(--space-3);
}

.alert-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}

.alert-item.urgent {
  background: rgba(255, 59, 48, 0.2);
  border-left: 3px solid var(--dd-danger);
}

.alert-item.warning {
  background: rgba(255, 149, 0, 0.2);
  border-left: 3px solid var(--dd-warning);
}

.alert-item.good {
  background: rgba(0, 230, 118, 0.2);
  border-left: 3px solid var(--dd-success);
}

/* Oracle-specific Mobile Elements */
.oracle-predictions {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}

.prediction-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}

.prediction-item.critical {
  background: rgba(255, 59, 48, 0.2);
  border-left: 3px solid var(--dd-danger);
}

.prediction-item.opportunity {
  background: rgba(255, 215, 0, 0.2);
  border-left: 3px solid var(--dd-gold);
}

.prediction-item.miracle {
  background: rgba(0, 212, 255, 0.2);
  border-left: 3px solid var(--dd-accent);
}

.prediction-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.prediction-text span {
  font-size: var(--text-xs);
  opacity: 0.8;
}

.oracle-actions {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.oracle-btn {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.oracle-btn.primary {
  background: var(--dd-primary);
  color: var(--dd-white);
}

.oracle-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--dd-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Portal Page Styles */
.portal-header {
  padding: var(--space-20) 0;
  text-align: center;
}

.portal-hero h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.portal-status {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.status-label {
  font-size: var(--text-sm);
  opacity: 0.8;
}

.status-value {
  font-size: var(--text-lg);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}

.status-value.online {
  background: var(--dd-success);
  color: var(--dd-white);
}

.status-value.ready {
  background: var(--dd-accent);
  color: var(--dd-white);
}

.status-value.pending {
  background: var(--dd-warning);
  color: var(--dd-white);
}

/* Integration Dashboard */
.integration-dashboard {
  padding: var(--space-20) 0;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.integration-card {
  padding: var(--space-6);
  background: var(--dd-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--dd-primary);
  transition: all 0.3s ease;
}

.integration-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.integration-card.active {
  border-left-color: var(--dd-success);
}

.integration-card.pending {
  border-left-color: var(--dd-warning);
  opacity: 0.8;
}

.integration-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.integration-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.status-badge {
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.status-badge.active {
  background: var(--dd-success);
  color: var(--dd-white);
}

.status-badge.pending {
  background: var(--dd-warning);
  color: var(--dd-white);
}

.endpoint {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--dd-skeptic);
}

/* Backend Configuration */
.backend-config {
  padding: var(--space-20) 0;
}

.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  margin-top: var(--space-12);
}

.config-section {
  background: var(--dd-white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.workflow-list {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.workflow-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  background: rgba(255, 77, 0, 0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--dd-primary);
}

.workflow-item strong {
  color: var(--dd-primary);
}

.crm-features {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
}

.feature-icon {
  font-size: var(--text-lg);
}

/* Portal Actions */
.portal-actions {
  padding: var(--space-20) 0;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.action-card {
  display: block;
  padding: var(--space-6);
  background: var(--dd-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.action-card.primary {
  background: linear-gradient(135deg, var(--dd-primary) 0%, var(--dd-accent) 100%);
  color: var(--dd-white);
}

.action-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.action-card h3 {
  margin-bottom: var(--space-2);
  font-size: var(--text-xl);
  font-weight: 600;
}

.action-card p {
  opacity: 0.8;
  font-size: var(--text-sm);
}

/* Coming Soon Features */
.coming-soon {
  padding: var(--space-20) 0;
}

.features-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.preview-item {
  text-align: center;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.preview-item h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--dd-accent);
}

.preview-item p {
  opacity: 0.8;
  line-height: 1.6;
}

/* Responsive Design for Portal */
@media (max-width: 768px) {
  .portal-status {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .config-grid {
    grid-template-columns: 1fr;
  }
  
  .actions-grid {
    grid-template-columns: 1fr;
  }
  
  .features-preview {
    grid-template-columns: 1fr;
  }
}

.ux-explanation {
  color: var(--dd-white);
}

.ux-explanation ul {
  list-style: none;
  padding: 0;
}

.ux-explanation li {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
  position: relative;
}

.ux-explanation li::before {
  content: "📱";
  position: absolute;
  left: 0;
}

/* ROI Reality Section */
.roi-reality {
  padding: var(--space-20) 0;
  background: var(--dd-light);
}

.roi-card.developer-focused {
  background: var(--dd-white);
  border: 2px solid var(--dd-primary);
  box-shadow: var(--shadow-xl);
}

.roi-breakdown.realistic {
  background: rgba(255, 77, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.roi-note {
  font-size: var(--text-sm);
  color: var(--dd-skeptic);
  font-style: italic;
  margin-left: var(--space-4);
}

.roi-investment {
  border-top: 2px solid var(--dd-primary);
  padding-top: var(--space-4);
  margin-top: var(--space-4);
}

.roi-total.developer {
  background: linear-gradient(135deg, var(--dd-primary) 0%, var(--dd-accent) 100%);
  color: var(--dd-white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  margin-top: var(--space-6);
  text-align: center;
}

.roi-confidence {
  display: block;
  font-size: var(--text-sm);
  opacity: 0.9;
  margin-top: var(--space-2);
}

.roi-reality-check {
  margin-top: var(--space-6);
  padding: var(--space-6);
  background: rgba(255, 149, 0, 0.1);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--dd-warning);
}

/* CTA Psychology Section */
.cta-psychology {
  text-align: center;
}

.cta-truth {
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
  line-height: 1.6;
}

.urgency-real {
  margin: var(--space-8) 0;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.urgency-stat {
  display: inline-block;
  margin: 0 var(--space-6);
  padding: var(--space-4);
}

.urgency-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--dd-accent);
}

.urgency-text {
  display: block;
  font-size: var(--text-sm);
  opacity: 0.9;
}

.urgency-why {
  margin-top: var(--space-4);
  font-style: italic;
  opacity: 0.8;
}

.guarantee-real {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-lg);
  border: 2px solid var(--dd-gold);
}

/* Responsive Design for Psychological Elements */
@media (max-width: 768px) {
  .reality-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-preview {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .iphone-mockup {
    width: 250px;
    height: 500px;
    margin: 0 auto;
  }
  
  .skeptic-grid {
    grid-template-columns: 1fr;
  }
  
  .urgency-stat {
    display: block;
    margin: var(--space-4) 0;
  }
}

/* Print Styles */
@media print {
  .hero-section,
  .final-cta-section {
    background: var(--dd-white) !important;
    color: var(--dd-black) !important;
  }
}

/* =================================================================
   REAL ESTATE PROJECT TRACKER STYLES
   ================================================================= */

/* Tracker Header Section */
.tracker-header {
  padding: var(--space-20) 0 var(--space-16);
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.tracker-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s ease-in-out infinite;
}

.tracker-hero h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tracker-hero p {
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

.tracker-features {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.tracker-features .feature {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Project Type Selection */
.project-type-section {
  padding: var(--space-16) 0;
  background: var(--dd-white);
}

.project-type-section h2 {
  text-align: center;
  font-size: var(--text-3xl);
  color: var(--dd-dark);
  margin-bottom: var(--space-8);
  font-weight: 700;
}

.project-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}

.project-type-btn {
  background: var(--dd-white);
  border: 2px solid var(--dd-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-md);
}

.project-type-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--dd-accent);
}

.project-type-btn.active {
  background: var(--gradient-primary);
  color: var(--dd-white);
  border-color: var(--dd-primary);
  box-shadow: var(--shadow-primary);
}

.type-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.project-type-btn h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.project-type-btn p {
  font-size: var(--text-base);
  opacity: 0.8;
  line-height: 1.5;
}

/* Calculator Section */
.calculator-section {
  padding: var(--space-16) 0;
  background: var(--dd-light);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.calculator-section h2 {
  text-align: center;
  font-size: var(--text-3xl);
  color: var(--dd-dark);
  margin-bottom: var(--space-12);
  font-weight: 700;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

/* Input Sections */
.input-section {
  background: var(--dd-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.input-section h3 {
  font-size: var(--text-xl);
  color: var(--dd-dark);
  margin-bottom: var(--space-6);
  font-weight: 600;
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--dd-accent);
}

.input-group {
  margin-bottom: var(--space-4);
}

.input-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--dd-dark);
  margin-bottom: var(--space-2);
}

.input-group input,
.input-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  transition: border-color var(--duration-normal) var(--ease-out);
  background: var(--dd-white);
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--dd-accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.input-group input[type="number"] {
  text-align: right;
}

/* Results Section */
.results-section {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: var(--dd-white);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  grid-column: 1 / -1;
  margin-top: var(--space-4);
}

.results-section h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
  text-align: center;
  color: var(--dd-accent);
  font-weight: 700;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.result-item.highlight {
  background: rgba(255, 77, 0, 0.2);
  border-color: var(--dd-primary);
  box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3);
}

.result-item label {
  font-weight: 500;
  font-size: var(--text-sm);
}

.result-item span {
  font-weight: 700;
  font-size: var(--text-lg);
  font-family: var(--font-mono);
}

/* Calculate Button */
.calculate-btn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: var(--space-8) auto 0;
  padding: var(--space-4) var(--space-8);
  background: var(--gradient-primary);
  color: var(--dd-white);
  border: none;
  border-radius: var(--radius-xl);
  font-size: var(--text-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-primary);
}

.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(255, 77, 0, 0.5);
}

/* Customer Variations Section */
.customer-variations {
  padding: var(--space-16) 0;
  background: var(--dd-light);
}

.customer-variations h2 {
  text-align: center;
  font-size: var(--text-3xl);
  color: var(--dd-dark);
  margin-bottom: var(--space-8);
  font-weight: 700;
}

.variations-controls {
  max-width: 800px;
  margin: 0 auto;
}

.save-section {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.save-section input {
  flex: 1;
  min-width: 250px;
  padding: var(--space-3) var(--space-4);
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
}

.save-btn {
  padding: var(--space-3) var(--space-6);
  background: var(--dd-accent);
  color: var(--dd-white);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.save-btn:hover {
  background: var(--dd-accent-dark);
  transform: translateY(-1px);
}

.load-section h3 {
  font-size: var(--text-xl);
  color: var(--dd-dark);
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.variations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
}

.variation-item {
  background: var(--dd-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--duration-normal) var(--ease-out);
}

.variation-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.variation-info h4 {
  font-size: var(--text-lg);
  color: var(--dd-dark);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.variation-info p {
  font-size: var(--text-sm);
  color: var(--dd-medium);
  margin-bottom: var(--space-1);
}

.variation-actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.load-btn {
  flex: 1;
  padding: var(--space-2) var(--space-4);
  background: var(--dd-success);
  color: var(--dd-white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
}

.load-btn:hover {
  background: #00C765;
  transform: translateY(-1px);
}

.delete-btn {
  flex: 1;
  padding: var(--space-2) var(--space-4);
  background: var(--dd-danger);
  color: var(--dd-white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
}

.delete-btn:hover {
  background: #FF2D20;
  transform: translateY(-1px);
}

.no-variations {
  text-align: center;
  color: var(--dd-medium);
  font-style: italic;
  padding: var(--space-8);
}

/* Formulas Reference Section */
.formulas-reference {
  padding: var(--space-16) 0;
  background: var(--gradient-dark);
}

.formulas-reference h2 {
  text-align: center;
  font-size: var(--text-3xl);
  color: var(--dd-white);
  margin-bottom: var(--space-12);
  font-weight: 700;
}

.formulas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.formula-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.formula-section h3 {
  font-size: var(--text-xl);
  color: var(--dd-accent);
  margin-bottom: var(--space-6);
  font-weight: 600;
  text-align: center;
}

.formula-item {
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--dd-gold);
}

.formula-item strong {
  display: block;
  color: var(--dd-gold);
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
}

.formula-item p {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  overflow-x: auto;
  white-space: nowrap;
}

/* Responsive Design for Project Tracker */
@media (max-width: 768px) {
  .tracker-hero h1 {
    font-size: var(--text-4xl);
  }
  
  .tracker-features {
    flex-direction: column;
    align-items: center;
  }
  
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  
  .save-section {
    flex-direction: column;
  }
  
  .save-section input {
    min-width: unset;
  }
  
  .variation-actions {
    flex-direction: column;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
  
  .project-types {
    grid-template-columns: 1fr;
  }
  
  .formulas-grid {
    grid-template-columns: 1fr;
  }
  
  .formula-item p {
    white-space: normal;
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .tracker-header {
    padding: var(--space-12) 0 var(--space-8);
  }
  
  .tracker-hero h1 {
    font-size: var(--text-3xl);
  }
  
  .project-type-btn {
    padding: var(--space-6);
  }
  
  .input-section,
  .results-section {
    padding: var(--space-4);
  }
  
  .result-item {
    padding: var(--space-3);
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
}

/* Animation for floating background pattern */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
/* iPhone Mockup Natural Text Sizing */
.app-title {
  font-size: 0.75rem !important; /* 12px - more realistic iPhone app title */
  font-weight: 600 !important;
  color: var(--dd-white) !important;
  letter-spacing: -0.01em !important;
}

.bleed-text {
  font-size: 0.625rem !important; /* 10px - smaller for realistic phone text */
  color: var(--dd-danger) !important;
  display: block !important;
  margin: var(--space-1) 0 !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
}

.alert-text {
  font-size: 0.6875rem !important; /* 11px - realistic alert text size */
  color: var(--dd-white) !important;
  line-height: 1.3 !important;
}

.prediction-icon {
  font-size: 0.75rem !important; /* 12px - smaller icons */
}

.ios-status-bar {
  font-size: 0.6875rem !important; /* 11px - realistic iOS status bar */
  font-weight: 600 !important;
}

.time, .battery {
  font-size: 0.6875rem !important; /* 11px - iPhone status bar text */
  font-weight: 600 !important;
}

.oracle-predictions .prediction-item {
  font-size: 0.6875rem !important; /* 11px - realistic prediction text */
  line-height: 1.3 !important;
}

/* ===== MODERN FLUID DESIGN ENHANCEMENTS ===== */

/* Enhanced Responsive Breakpoints */
:root {
  /* Modern Breakpoints */
  --bp-xs: 320px;   /* Small mobile */
  --bp-sm: 640px;   /* Mobile */
  --bp-md: 768px;   /* Tablet */
  --bp-lg: 1024px;  /* Desktop */
  --bp-xl: 1280px;  /* Large desktop */
  --bp-2xl: 1536px; /* Extra large */
  
  /* Fluid Spacing System */
  --fluid-xs: clamp(0.5rem, 2vw, 1rem);
  --fluid-sm: clamp(1rem, 3vw, 1.5rem);
  --fluid-md: clamp(1.5rem, 4vw, 2.5rem);
  --fluid-lg: clamp(2rem, 5vw, 4rem);
  --fluid-xl: clamp(3rem, 8vw, 6rem);
  
  /* Fluid Typography */
  --fluid-text-sm: clamp(0.875rem, 2.5vw, 1rem);
  --fluid-text-base: clamp(1rem, 3vw, 1.125rem);
  --fluid-text-lg: clamp(1.125rem, 3.5vw, 1.25rem);
  --fluid-text-xl: clamp(1.25rem, 4vw, 1.5rem);
  --fluid-text-2xl: clamp(1.5rem, 5vw, 2rem);
  --fluid-text-3xl: clamp(1.875rem, 6vw, 2.5rem);
  --fluid-text-4xl: clamp(2.25rem, 7vw, 3rem);
  --fluid-text-5xl: clamp(2.5rem, 8vw, 4rem);
  
  /* Smooth Transitions */
  --transition-fast: 150ms ease-out;
  --transition-normal: 300ms ease-out;
  --transition-slow: 500ms ease-out;
  
  /* Modern Shadows */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Modern Border Radius */
  --radius-xs: 0.25rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

/* Enhanced Base Styles */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-size: var(--fluid-text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Fluid Container System */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--fluid-sm);
  padding-right: var(--fluid-sm);
}

@media (min-width: 640px) {
  .container { padding-left: var(--fluid-md); padding-right: var(--fluid-md); }
}

@media (min-width: 1024px) {
  .container { padding-left: var(--fluid-lg); padding-right: var(--fluid-lg); }
}

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

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-headline {
  font-size: var(--fluid-text-5xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--fluid-md);
  color: var(--dd-white);
}

.hero-subheadline {
  font-size: var(--fluid-text-xl);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--fluid-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Fluid Grid System */
.grid-fluid {
  display: grid;
  gap: var(--fluid-md);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

/* Enhanced Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--fluid-sm) var(--fluid-md);
  font-size: var(--fluid-text-base);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--dd-white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dd-primary-dark) 0%, var(--dd-accent-dark) 100%);
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    position: relative;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--dd-dark);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: var(--fluid-lg) 0;
    transition: left var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    padding: var(--fluid-sm) var(--fluid-md);
    font-size: var(--fluid-text-lg);
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: var(--fluid-xs);
  }
  
  .hamburger,
  .hamburger::before,
  .hamburger::after {
    width: 25px;
    height: 2px;
    background: var(--dd-white);
    transition: all var(--transition-normal);
    border-radius: var(--radius-sm);
  }
  
  .hamburger::before,
  .hamburger::after {
    content: '';
    display: block;
    margin: 6px 0;
  }
  
  .nav-mobile-toggle.active .hamburger {
    background: transparent;
  }
  
  .nav-mobile-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav-mobile-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Enhanced Card System */
.card {
  background: var(--dd-white);
  border-radius: var(--radius-xl);
  padding: var(--fluid-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-dark {
  background: var(--dd-dark);
  color: var(--dd-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Section Spacing */
section {
  padding-top: var(--fluid-xl);
  padding-bottom: var(--fluid-xl);
}

.section-title {
  font-size: var(--fluid-text-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--fluid-md);
  text-align: center;
}

.section-subtitle {
  font-size: var(--fluid-text-lg);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
  margin-bottom: var(--fluid-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Timeline */
.timeline {
  position: relative;
  padding: var(--fluid-lg) 0;
}

.timeline-item {
  display: flex;
  gap: var(--fluid-md);
  margin-bottom: var(--fluid-lg);
  align-items: flex-start;
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    gap: var(--fluid-sm);
  }
}

/* Enhanced Agent Cards */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--fluid-md);
  margin-top: var(--fluid-lg);
}

.agent-card {
  background: var(--dd-white);
  border-radius: var(--radius-xl);
  padding: var(--fluid-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.agent-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
  .agents-grid {
    grid-template-columns: 1fr;
    gap: var(--fluid-sm);
  }
  
  .agent-card {
    margin-bottom: var(--fluid-sm);
  }
}

/* Enhanced Stats Display */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--fluid-md);
  margin: var(--fluid-lg) 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: var(--fluid-sm);
}

.stat-number {
  font-size: var(--fluid-text-2xl);
  font-weight: 700;
  color: var(--dd-accent);
  display: block;
}

.stat-label {
  font-size: var(--fluid-text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--fluid-xs);
}

/* Enhanced CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: var(--fluid-sm);
  justify-content: center;
  margin: var(--fluid-lg) 0;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Performance Optimizations */
* {
  box-sizing: border-box;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Smooth scrolling for internal links */
a[href^="#"] {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--dd-accent);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  .nav-menu,
  .hero-background-pattern,
  .hero-gradient-overlay {
    display: none !important;
  }
}

.alert-text {
  font-size: var(--text-xs) !important;
  color: var(--dd-white) !important;
  opacity: 0.9 !important;
  line-height: 1.2 !important;
}

.stop-bleeding-btn {
  font-size: var(--text-xs) !important;
  font-weight: 600 !important;
  padding: var(--space-1) var(--space-2) !important;
  background: var(--dd-danger) !important;
  color: var(--dd-white) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  margin-top: var(--space-2) !important;
  cursor: pointer !important;
}

.bleeding-indicator {
  text-align: center !important;
  margin: var(--space-4) 0 !important;
  padding: var(--space-4) !important;
  background: rgba(255, 0, 0, 0.1) !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(255, 0, 0, 0.3) !important;
}

.bleed-animation {
  font-size: var(--text-2xl) !important;
  margin-bottom: var(--space-2) !important;
  animation: pulse 1s infinite !important;
}

/* Override existing styles for more natural mobile look */
.iphone-screen .stat {
  font-size: var(--text-xs) !important;
  padding: var(--space-2) !important;
  font-weight: 500 !important;
}

.iphone-screen .alert-item {
  font-size: var(--text-xs) !important;
  gap: var(--space-2) !important;
  padding: var(--space-2) !important;
}

.iphone-screen .quick-stats {
  display: flex !important;
  justify-content: space-between !important;
  margin: var(--space-3) 0 !important;
  padding: 0 !important;
}

/* Oracle-specific iPhone elements */
.prediction-title {
  font-size: var(--text-xs) !important;
  font-weight: 600 !important;
  color: var(--dd-white) !important;
  display: block !important;
  line-height: 1.3 !important;
}

.prediction-detail {
  font-size: var(--text-xs) !important;
  color: var(--dd-white) !important;
  opacity: 0.7 !important;
  display: block !important;
  margin-top: var(--space-1) !important;
}

.oracle-btn {
  font-size: var(--text-xs) !important;
  font-weight: 600 !important;
  padding: var(--space-2) var(--space-3) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  margin: var(--space-1) var(--space-1) !important;
  cursor: pointer !important;
}

.oracle-btn.primary {
  background: var(--dd-accent) !important;
  color: var(--dd-white) !important;
}

.oracle-btn.secondary {
  background: rgba(255, 255, 255, 0.2) !important;
  color: var(--dd-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.oracle-actions {
  display: flex !important;
  gap: var(--space-2) !important;
  margin-top: var(--space-4) !important;
  justify-content: center !important;
}

.prediction-text {
  flex: 1 !important;
}

.prediction-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: var(--space-2) !important;
  padding: var(--space-2) !important;
  margin-bottom: var(--space-2) !important;
  border-radius: var(--radius-sm) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.prediction-icon {
  font-size: var(--text-sm) !important;
  flex-shrink: 0 !important;
  margin-top: var(--space-1) !important;
}
