:root {
  --bg: #0a0e1a;
  --bg-alt: #0f1628;
  --fg: #f0ede6;
  --fg-muted: rgba(240,237,230,0.55);
  --accent: #e8a838;
  --accent-dim: #c4912f;
  --accent-glow: rgba(232,168,56,0.12);
  --border: rgba(232,168,56,0.12);
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── TOPBAR ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.tagline {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 120px 64px 80px;
  gap: 64px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-pattern {
  width: 100%; height: 100%;
  position: absolute;
  inset: 0;
}

.hero-glow {
  position: absolute;
  top: 20%; left: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,168,56,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.khanda-visual {
  width: 280px;
  height: 360px;
  animation: khandaFloat 6s ease-in-out infinite;
}

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

/* ── SECTIONS COMMON ── */
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 0.95rem;
  max-width: 500px;
  margin-top: 16px;
}

/* ── NICHE ── */
.niche {
  background: var(--bg-alt);
  padding: 100px 64px;
}

.niche-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.niche-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.stat {
  flex: 1;
  padding: 36px 32px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

.niche-insight {
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--fg-muted);
}

.niche-insight strong {
  color: var(--fg);
  font-weight: 500;
}

/* ── PIPELINE ── */
.pipeline {
  padding: 100px 64px;
}

.pipeline-header {
  margin-bottom: 64px;
}

.pipeline-flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.pipe-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-alt);
  min-width: 110px;
}

.pipe-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.pipe-icon svg { width: 100%; height: 100%; }

.pipe-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.pipe-tool {
  font-size: 0.68rem;
  color: var(--fg-muted);
}

.pipe-arrow {
  color: var(--fg-muted);
  width: 40px;
  flex-shrink: 0;
}

.pipe-arrow svg { width: 100%; height: auto; }

.pipeline-tag {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ── VERTICALS ── */
.verticals {
  background: var(--bg-alt);
  padding: 100px 64px;
}

.verticals-header {
  margin-bottom: 64px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vertical {
  padding: 40px 36px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
}

.vertical--accent {
  border-color: rgba(232,168,56,0.3);
  background: linear-gradient(135deg, rgba(232,168,56,0.05) 0%, var(--bg) 60%);
}

.vertical-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 24px;
}

.vertical-icon svg { width: 100%; height: 100%; }

.vertical-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.vertical-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.vertical-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── PRINCIPLES ── */
.principles {
  padding: 100px 64px;
}

.principles-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
}

.principles-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.principles-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.principles-body--small {
  font-size: 0.8rem;
  font-style: italic;
}

.principles-list {
  list-style: none;
  margin-bottom: 28px;
}

.principles-list li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.principles-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.principles-visual {
  flex-shrink: 0;
}

.principles-khanda {
  width: 220px;
  height: 220px;
  animation: khandaSpin 20s linear infinite;
}

@keyframes khandaSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── CLOSING ── */
.closing {
  padding: 100px 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

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

.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 48px;
}

.closing-brand {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.closing-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ── FOOTER ── */
.footer {
  padding: 40px 64px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.footer-desc {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.footer-meta {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-left: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 120px 32px 64px; }
  .hero-visual { display: none; }
  .niche, .pipeline, .verticals, .principles, .closing { padding: 64px 32px; }
  .topbar { padding: 16px 24px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .niche-stats { flex-direction: column; }
  .stat-divider { width: 80px; height: 1px; }
  .principles-inner { grid-template-columns: 1fr; }
  .principles-visual { display: none; }
  .pipe-arrow { display: none; }
  .footer { padding: 32px; }
  .footer-meta { margin-left: 0; width: 100%; }
}
