:root {
  --bg: #0f0f17;
  --bg-elevated: #16162a;
  --bg-card: #1c1c35;
  --fg: #e8e4dd;
  --fg-muted: #9a9690;
  --accent: #e8a838;
  --accent-glow: rgba(232, 168, 56, 0.15);
  --cream: #f5f0e8;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-w: 1100px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
em { font-family: var(--font-display); font-style: italic; color: var(--accent); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-pulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes orb-pulse {
  0% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  margin-bottom: var(--space-md);
  color: var(--cream);
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== METRICS ===== */
.metrics {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(232, 168, 56, 0.1);
  border-bottom: 1px solid rgba(232, 168, 56, 0.1);
}

.metrics-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.metric-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.metric-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: var(--space-2xl) var(--space-md);
}

.philosophy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.philosophy h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--cream);
  margin-bottom: var(--space-lg);
}

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

.philosophy-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(232, 168, 56, 0.08);
  border-radius: 12px;
  padding: var(--space-md);
  transition: border-color 0.3s;
}

.philosophy-card:hover {
  border-color: rgba(232, 168, 56, 0.25);
}

.card-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.philosophy-card h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.philosophy-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-elevated);
}

.products-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.products h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--cream);
  margin-bottom: var(--space-lg);
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(232, 168, 56, 0.08);
  transition: background 0.3s;
}

.product-row:first-child {
  border-top: 1px solid rgba(232, 168, 56, 0.08);
}

.product-row:hover {
  background: rgba(232, 168, 56, 0.03);
}

.product-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(232, 168, 56, 0.3);
  min-width: 50px;
}

.product-info { flex: 1; }

.product-info h3 {
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.product-info p {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.product-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid rgba(232, 168, 56, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ===== INTELLIGENCE ===== */
.intelligence {
  padding: var(--space-2xl) var(--space-md);
}

.intelligence-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.intelligence h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--cream);
  margin-bottom: var(--space-lg);
}

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

.intel-item {
  padding: var(--space-md);
  border-left: 2px solid var(--accent);
}

.intel-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.intel-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== FOUNDER ===== */
.founder {
  padding: var(--space-2xl) var(--space-md);
  background: var(--bg-elevated);
}

.founder-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.founder-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-md);
  border-left: 3px solid var(--accent);
}

.founder-attr {
  padding-left: var(--space-md);
}

.founder-name {
  display: block;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.founder-title {
  display: block;
  color: var(--fg-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

.founder-timeline {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(232, 168, 56, 0.1);
  overflow-x: auto;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(232, 168, 56, 0.4);
}

.timeline-item.active .timeline-year {
  color: var(--accent);
}

.timeline-event {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

.timeline-item.active .timeline-event {
  color: var(--cream);
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: var(--space-md);
}

.closing-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: var(--space-md);
  border-top: 1px solid rgba(232, 168, 56, 0.08);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--fg-muted);
}

.footer-sep {
  font-size: 0.75rem;
  color: rgba(154, 150, 144, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr; }
  .intel-grid { grid-template-columns: 1fr; }
  .product-row { flex-wrap: wrap; }
  .product-tag { margin-top: var(--space-xs); }
  .founder-timeline { flex-direction: column; gap: var(--space-sm); }
  .hero { min-height: 75vh; }
  .hero-orb { width: 300px; height: 300px; }
}

@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: var(--space-xs); }
}