@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #0d0d0d;
  --card-bg: #18181b;
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --accent: #4ade80; 
  --accent-glow: rgba(74, 222, 128, 0.15);
  --border-color: rgba(255, 255, 255, 0.1);
  
  --font-heading: 'Jost', sans-serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover {
  color: var(--text-main);
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--text-main);
  color: var(--bg-color);
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  border: 1px solid var(--text-main);
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: var(--text-main);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--text-main);
  color: var(--bg-color);
}

/* --- Sections --- */
section {
  padding: 8rem 5% 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title span {
  display: block;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding-top: 12rem;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: 12px;
  filter: grayscale(20%) contrast(1.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1), transparent 70%);
  z-index: -1;
  border-radius: 20px;
}

/* --- Metrics Grid --- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.metric-card {
  background: var(--card-bg);
  padding: 3rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.metric-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- Media & Press --- */
.media-card {
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.media-card:hover {
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.1);
}

.media-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.media-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.media-image img {
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.media-excerpt {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.media-quote {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-main);
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 0.8rem;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}

.media-highlight {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.media-highlight strong {
  color: var(--text-main);
}

/* --- About & Philosophy --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.credential-box {
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.credential-box h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.credential-box ul {
  list-style: none;
}

.credential-box ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.philosophy-list {
  margin-top: 2rem;
}

.philosophy-item {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.philosophy-item:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateX(5px);
}

.philosophy-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

.philosophy-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-image img {
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

/* --- Showcase --- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.showcase-card {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

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

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

.showcase-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.showcase-card ul {
  margin-bottom: 2rem;
  flex-grow: 1;
  color: var(--text-muted);
}

.showcase-card ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.showcase-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--text-main);
}

.showcase-btn {
  align-self: flex-start;
}

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

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--text-main);
  transition: var(--transition);
}

.timeline-item:hover::before {
  background: var(--text-main);
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.timeline-date {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.05em;
}

.timeline-content {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.timeline-content ul {
  list-style: none;
  color: var(--text-muted);
}

.timeline-content li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.timeline-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--text-main);
}

/* --- Footer / Contact --- */
footer {
  background: var(--card-bg);
  border-top: 1px solid var(--border-color);
  padding: 6rem 5% 3rem;
  text-align: center;
  margin-top: 4rem;
}

footer h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

footer p {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-weight: 500;
}

.contact-links a:hover {
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 5px 15px rgba(255,255,255,0.05);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

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

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .media-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-links {
    display: none; /* simple mobile nav for now */
  }
}
