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

:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --bg: #080c10;
  --bg2: #0e1218;
  --bg3: #141a22;
  --border: rgba(201, 168, 76, 0.15);
  --text: #e8eaf0;
  --text-muted: #7a8499;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: rgba(8, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.hero-locations {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #080c10;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ── SECTIONS ── */
.section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

/* ── ABOUT ── */
.about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-text strong { color: var(--gold-light); font-weight: 600; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── VENTURES ── */
.ventures { background: var(--bg2); }
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.venture-card {
  display: flex;
  flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s;
}
.venture-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.4);
}
.venture-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.venture-active .venture-badge { color: #4ade80; }
.venture-partner .venture-badge { color: #60a5fa; }
.venture-exit .venture-badge { color: var(--gold); }
.venture-portfolio .venture-badge { color: #a78bfa; }

.venture-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.venture-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 9px;
  margin-bottom: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 6px;
}
.venture-visit {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.venture-card:hover .venture-visit { color: var(--gold); }
.venture-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.venture-focus {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}
.venture-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.venture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.venture-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* ── EXPERTISE ── */
.expertise { background: var(--bg); }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.expertise-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 1.1rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
}
.expertise-item:hover {
  border-color: rgba(201, 168, 76, 0.45);
  border-left-color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── EDUCATION ── */
.education { background: var(--bg); }
.education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.edu-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.edu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.edu-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}
.edu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.edu-list strong { color: var(--text); font-weight: 600; }
.edu-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.edu-tags { gap: 0.5rem; }

/* ── SETUP PAGE ── */
.setup-hero {
  padding: 9rem 2rem 3rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.setup-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.setup-intro {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}
.setup-intro strong { color: var(--gold-light); font-weight: 600; }
.setup { background: var(--bg); }
.tabs {
  display: flex;
  gap: 0.5rem;
  max-width: 760px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.setup-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.workshop-list { display: flex; flex-direction: column; gap: 1.75rem; }
.workshop-item .btn { display: inline-block; }
.workshop-desc {
  margin: 0.75rem 0 0 !important;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
}
.workshop-shot {
  display: block;
  margin-top: 1rem;
  max-width: 560px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg3);
  transition: border-color 0.2s, transform 0.2s;
}
.workshop-shot:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}
.workshop-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 960 / 560;
  object-fit: cover;
  object-position: top center;
}
.setup-step {
  display: flex;
  gap: 1.5rem;
  max-width: 760px;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.setup-step:last-of-type { border-bottom: none; }
.setup-step-num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.setup-step-body { flex: 1; min-width: 0; }
.setup-step-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.setup-step-body p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.setup-step-body p:last-child { margin-bottom: 0; }
.setup-step-body strong { color: var(--gold-light); font-weight: 600; }
.setup-os {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem !important;
}
.code-block {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gold-light);
  overflow-x: auto;
  white-space: pre;
}
code {
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.1em 0.4em;
  color: var(--gold-light);
}
.setup-note {
  max-width: 760px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.setup-note strong { color: var(--gold-light); }
.setup-note .code-block { margin-bottom: 0; margin-top: 1rem; }
.setup-credit {
  max-width: 760px;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.setup-credit a { color: var(--gold); text-decoration: none; }
.setup-credit a:hover { text-decoration: underline; }

/* ── CONTACT ── */
.contact { background: var(--bg2); }
.contact-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.contact-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.contact-links a:hover { color: var(--gold); }
.contact-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.contact-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ventures-grid { grid-template-columns: repeat(2, 1fr); }
  .education-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .ventures-grid { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .contact-links { gap: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}
