/* Tony Wolf Ecosystem - Sophisticated Design System */

:root {
  /* Brand Colors from the ecosystem image */
  --wolf-blue: #00a8ff;
  --wolf-green: #00ff88;
  --wolf-purple: #9b59b6;
  --wolf-orange: #ff8c42;
  --wolf-dark: #0a0e27;
  --wolf-gray: #1a1f3a;
  --wolf-light: #0f1428;
  --wolf-accent: #00d4ff;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', sans-serif;
  
  /* Spacing - Refined */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

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

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #e0e0e0;
  background: var(--wolf-dark);
  overflow-x: hidden;
  position: relative;
}

/* Circuit Board Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, rgba(0, 168, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(0, 168, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(0, 168, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(155, 89, 182, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
  background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%, 100% 100%;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--wolf-blue), var(--wolf-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #e0e0e0;
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

a {
  color: var(--wolf-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wolf-dark) 0%, var(--wolf-gray) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-lg) 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 168, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--spacing-md);
  animation: fadeInScale 1s ease-out;
}

.hero-title {
  color: white;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.4s both;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.6s both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
  padding: 0.875rem 1.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wolf-blue), var(--wolf-purple));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

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

.section-title {
  margin-bottom: var(--spacing-sm);
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* Journey Section */
.journey {
  background: rgba(26, 31, 58, 0.5);
  backdrop-filter: blur(10px);
}

.journey-content {
  max-width: 900px;
  margin: 0 auto;
}

.journey-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
}

.journey-highlight {
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.1), rgba(155, 89, 182, 0.1));
  padding: var(--spacing-md);
  border-radius: 0.75rem;
  border-left: 3px solid var(--wolf-blue);
  margin: var(--spacing-md) 0;
  backdrop-filter: blur(10px);
}

/* Ecosystem Visualization */
.ecosystem {
  background: linear-gradient(135deg, var(--wolf-dark) 0%, var(--wolf-gray) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.ecosystem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 168, 255, 0.08) 0%, transparent 50%);
}

.ecosystem-visual {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto var(--spacing-lg);
}

.ecosystem-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Ventures Grid */
.ventures {
  background: rgba(15, 20, 40, 0.5);
  backdrop-filter: blur(10px);
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.venture-card {
  background: rgba(26, 31, 58, 0.6);
  border-radius: 0.75rem;
  padding: var(--spacing-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

.venture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--venture-color);
  background: rgba(26, 31, 58, 0.8);
}

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

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

.venture-icon {
  width: 50px;
  height: 50px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--venture-color), var(--venture-color-light));
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.venture-title {
  font-size: 1.375rem;
  color: #ffffff;
  margin: 0;
}

.venture-tagline {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  font-weight: 300;
}

.venture-description {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
  font-size: 0.9375rem;
}

.venture-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--venture-color);
  font-weight: 600;
  transition: all var(--transition-fast);
  font-size: 0.9375rem;
}

.venture-link:hover {
  gap: 0.75rem;
  color: var(--venture-color-light);
}

/* Venture Color Variations */
.venture-card[data-venture="waimi"] {
  --venture-color: var(--wolf-purple);
  --venture-color-light: #b19cd9;
}

.venture-card[data-venture="apr"] {
  --venture-color: var(--wolf-blue);
  --venture-color-light: #33b8ff;
}

.venture-card[data-venture="coach"] {
  --venture-color: var(--wolf-orange);
  --venture-color-light: #ffa366;
}

.venture-card[data-venture="ezlawn"] {
  --venture-color: var(--wolf-green);
  --venture-color-light: #33ffa3;
}

.venture-card[data-venture="content"] {
  --venture-color: var(--wolf-accent);
  --venture-color-light: #33ddff;
}

.venture-card[data-venture="music"] {
  --venture-color: #ec4899;
  --venture-color-light: #f472b6;
}

/* Stats Section */
.stats {
  background: rgba(26, 31, 58, 0.5);
  backdrop-filter: blur(10px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.stat-card {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(0, 168, 255, 0.05);
  border-radius: 0.75rem;
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 168, 255, 0.1);
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 168, 255, 0.2);
  background: rgba(0, 168, 255, 0.1);
  border-color: rgba(0, 168, 255, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--wolf-blue), var(--wolf-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--wolf-blue) 0%, var(--wolf-purple) 100%);
  color: white;
  text-align: center;
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  background: var(--wolf-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  color: white;
  margin-bottom: var(--spacing-sm);
  font-size: 1.125rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
  font-size: 0.9375rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
  }
  
  .hero {
    min-height: auto;
    padding: var(--spacing-lg) 0;
  }
  
  .hero-logo {
    width: 140px;
    height: 140px;
  }
  
  .ventures-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .hero {
    min-height: auto;
    page-break-after: always;
  }
  
  .venture-card {
    page-break-inside: avoid;
  }
  
  .btn {
    display: none;
  }
}
</file_path>