/* OneKarma.AI Landing Website - Main Stylesheet */

/* ============================================
   CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
  /* Base colors */
  --color-bg-primary: #0a0a0f;
  --color-bg-secondary: #1a1a2e;
  --color-bg-card: rgba(26, 26, 46, 0.6);
  
  /* Neon accents */
  --color-accent-cyan: #00ffff;
  --color-accent-blue: #0080ff;
  --color-accent-violet: #8b5cf6;
  --color-accent-orange: #ff6b35;
  
  /* Text colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #a0a0b0;
  
  /* Status colors */
  --color-status-live: #00ff88;
  --color-status-beta: #ffaa00;
  --color-status-coming: #0080ff;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', var(--font-primary);
}

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

html {
  scroll-behavior: smooth;
}

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

/* ============================================
   Top Header Navigation
   ============================================ */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  padding: var(--spacing-sm) 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.header-logo-image {
  width: 40px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.header-app-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-cyan);
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.header-nav {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

.header-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 6px;
}

.header-link:hover {
  color: var(--color-accent-cyan);
  background: rgba(0, 255, 255, 0.1);
}

/* Add padding to body to account for fixed header */
body {
  padding-top: 70px;
}

@media (max-width: 768px) {
  .header-content {
    justify-content: center;
  }
  
  .header-logo {
    flex-direction: column;
    gap: var(--spacing-xs);
    text-align: center;
  }
  
  .header-logo-image {
    width: 32px;
  }
  
  .header-app-name {
    font-size: 1rem;
  }
  
  .header-nav {
    width: 100%;
    justify-content: center;
    gap: var(--spacing-xs);
  }
  
  .header-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
  
  body {
    padding-top: 90px;
  }
}

@media (max-width: 480px) {
  .top-header {
    padding: 0.5rem 0;
  }
  
  .header-logo-image {
    width: 28px;
  }
  
  .header-app-name {
    font-size: 0.875rem;
  }
  
  .header-nav {
    gap: 0.25rem;
  }
  
  .header-link {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
  color: var(--color-text-secondary);
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ============================================
   Placeholder Styles (to be implemented)
   ============================================ */
section {
  min-height: 50vh;
  padding: var(--spacing-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* Focus styles for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--color-accent-cyan);
  outline-offset: 4px;
}

/* ============================================
   Responsive Typography
   ============================================ */
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  p {
    font-size: 1.125rem;
  }
}

/* ============================================
   Accessibility - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}


/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--spacing-md);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

@keyframes gridPulse {
  0%, 100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.15;
    transform: scale(1.02);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: var(--spacing-lg);
  background: rgba(26, 26, 46, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.1);
}

.hero-logo {
  margin-bottom: var(--spacing-md);
  display: flex;
  justify-content: center;
}

.logo-image {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4));
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-blue), var(--color-accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
  animation: titleGlow 3s ease-in-out infinite;
}

.hero-app-name {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
  font-weight: 300;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.hero-description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-description strong {
  color: var(--color-accent-cyan);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-blue));
  color: var(--color-bg-primary);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

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

.btn-secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-accent-cyan);
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 255, 255, 0.3);
}

/* Hero Animations */
@keyframes titleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.6));
  }
}

/* Responsive Hero */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-app-name {
    font-size: 1.125rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .logo-image {
    width: 150px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
  
  .hero-app-name {
    font-size: 1.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .logo-image {
    width: 180px;
  }
}


/* ============================================
   Platform Vision Section
   ============================================ */
.platform-vision-section {
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: var(--spacing-xl) 0;
}

.vision-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.vision-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 16px;
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.vision-card h3 {
  color: var(--color-accent-cyan);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

.vision-card p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
  border-color: rgba(0, 255, 255, 0.3);
}

/* Responsive Vision Cards */
@media (min-width: 768px) {
  .vision-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* ============================================
   Products Section
   ============================================ */
.products-section {
  background: var(--color-bg-secondary);
  padding: var(--spacing-xl) 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.product-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card[role="link"] {
  cursor: pointer;
}

.product-card[role="link"]:hover {
  border-color: rgba(0, 255, 255, 0.5);
}

.product-link-indicator {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  font-size: 1.5rem;
  color: var(--color-accent-cyan);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card[role="link"]:hover .product-link-indicator {
  opacity: 1;
  transform: translateX(5px);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-violet));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.product-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.product-name {
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

.product-description {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.product-status {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card[data-status="live"] .product-status {
  background: rgba(0, 255, 136, 0.2);
  color: var(--color-status-live);
  border: 1px solid var(--color-status-live);
}

.product-card[data-status="beta"] .product-status {
  background: rgba(255, 170, 0, 0.2);
  color: var(--color-status-beta);
  border: 1px solid var(--color-status-beta);
}

.product-card[data-status="coming-soon"] .product-status {
  background: rgba(0, 128, 255, 0.2);
  color: var(--color-status-coming);
  border: 1px solid var(--color-status-coming);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 255, 255, 0.3),
    0 0 20px rgba(139, 92, 246, 0.2);
  border-color: rgba(0, 255, 255, 0.4);
}

/* Responsive Products Grid */
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* ============================================
   Why OneKarma Section
   ============================================ */
.why-section {
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
  padding: var(--spacing-xl) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.feature-block {
  text-align: center;
  padding: var(--spacing-md);
  transition: transform 0.3s ease;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-cyan);
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-block h3 {
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.feature-block p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.feature-block:hover {
  transform: translateY(-5px);
}

.feature-block:hover .feature-icon {
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
}

/* Responsive Features Grid */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (min-width: 1280px) {
  .features-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* ============================================
   Future-Ready Section
   ============================================ */
.future-section {
  background: var(--color-bg-primary);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.future-statement {
  font-size: 2rem;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.4;
  background: linear-gradient(135deg, var(--color-text-primary), var(--color-accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.animated-divider {
  width: 200px;
  height: 3px;
  margin: var(--spacing-lg) auto;
  background: linear-gradient(90deg, 
    transparent, 
    var(--color-accent-cyan), 
    var(--color-accent-violet), 
    transparent
  );
  background-size: 200% 100%;
  animation: dividerSlide 3s ease-in-out infinite;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

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

/* Responsive Future Section */
@media (min-width: 768px) {
  .future-statement {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .future-statement {
    font-size: 3rem;
  }
}


/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
}

.footer-logo-image {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-cyan);
}

.footer-tagline {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-xs);
}

.footer-company {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-xs);
}

.footer-company-link {
  color: var(--color-accent-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-company-link:hover {
  color: var(--color-accent-blue);
  text-decoration: underline;
}

.footer-contact {
  margin-bottom: var(--spacing-xs);
}

.footer-email {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-email:hover {
  color: var(--color-accent-cyan);
  text-decoration: underline;
}

.footer-copyright {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
}

.footer-links a {
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-links a:hover {
  color: var(--color-accent-cyan);
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
  transform: translateY(-2px);
}

.footer-links svg {
  width: 24px;
  height: 24px;
}


/* ============================================
   Fade-In Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays for multiple elements */
.vision-card.fade-in:nth-child(1) {
  transition-delay: 0.1s;
}

.vision-card.fade-in:nth-child(2) {
  transition-delay: 0.2s;
}

.vision-card.fade-in:nth-child(3) {
  transition-delay: 0.3s;
}

.product-card.fade-in:nth-child(1) {
  transition-delay: 0.1s;
}

.product-card.fade-in:nth-child(2) {
  transition-delay: 0.2s;
}

.product-card.fade-in:nth-child(3) {
  transition-delay: 0.3s;
}

.product-card.fade-in:nth-child(4) {
  transition-delay: 0.4s;
}

.product-card.fade-in:nth-child(5) {
  transition-delay: 0.5s;
}

.feature-block.fade-in:nth-child(1) {
  transition-delay: 0.1s;
}

.feature-block.fade-in:nth-child(2) {
  transition-delay: 0.2s;
}

.feature-block.fade-in:nth-child(3) {
  transition-delay: 0.3s;
}

.feature-block.fade-in:nth-child(4) {
  transition-delay: 0.4s;
}

.feature-block.fade-in:nth-child(5) {
  transition-delay: 0.5s;
}


/* Footer Legal Links */
.footer-required-links {
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md) 0;
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-section-title {
  color: var(--color-accent-cyan);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.footer-legal-link {
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(0, 255, 255, 0.05);
}

.footer-legal-link:hover {
  color: var(--color-accent-cyan);
  background: rgba(0, 255, 255, 0.1);
  border-color: var(--color-accent-cyan);
}

.footer-legal-link svg {
  width: 16px;
  height: 16px;
}

.footer-contact-section {
  margin: var(--spacing-lg) 0;
  padding: var(--spacing-md);
  background: rgba(0, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-contact-text {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.footer-contact,
.footer-website {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
}

.footer-contact svg,
.footer-website svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent-cyan);
}

.footer-website-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-website-link:hover {
  color: var(--color-accent-cyan);
  text-decoration: underline;
}

.footer-byline {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-style: italic;
  margin-top: var(--spacing-xs);
}

.footer-separator {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-legal-links {
    flex-direction: row;
    justify-content: center;
  }
}


/* ============================================
   App Purpose Section
   ============================================ */
.app-purpose-section {
  background: var(--color-bg-secondary);
  padding: var(--spacing-xl) 0;
}

.purpose-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(26, 26, 46, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.1);
  border-radius: 16px;
  padding: var(--spacing-lg);
}

.purpose-content p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
}

.purpose-content strong {
  color: var(--color-accent-cyan);
  font-weight: 600;
}

.purpose-content h3 {
  color: var(--color-text-primary);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
}

.purpose-content ul {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-lg);
}

.purpose-content li {
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
}

.purpose-content li strong {
  color: var(--color-accent-cyan);
}

.data-commitment {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(0, 255, 255, 0.05);
  border-left: 3px solid var(--color-accent-cyan);
  border-radius: 8px;
  font-size: 1rem;
}

.data-commitment a {
  color: var(--color-accent-cyan);
  text-decoration: underline;
  font-weight: 600;
}

.data-commitment a:hover {
  color: var(--color-accent-blue);
}
