/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #08080d;
  --surface:   #0f0f18;
  --surface-2: #14141f;
  --border:    rgba(255, 184, 0, 0.12);
  --border-2:  rgba(255, 184, 0, 0.06);
  --amber:     #FFB800;
  --amber-dim: rgba(255, 184, 0, 0.6);
  --amber-glow:rgba(255, 184, 0, 0.08);
  --text:      #eeeef5;
  --text-2:    #8888a8;
  --text-3:    #44445a;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

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

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

::selection { background: var(--amber); color: #000; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }

a { color: inherit; text-decoration: none; }

/* ===== LAYOUT ===== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 56px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(8, 8, 13, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  font-size: 18px;
  color: var(--amber);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255, 184, 0, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(255, 184, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.label-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 60px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 40px 0 0;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 120px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}

.portfolio .section-heading {
  margin-bottom: 48px;
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.venture-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.venture-card:hover {
  border-color: rgba(255, 184, 0, 0.3);
  transform: translateY(-2px);
}

.venture-card--primary {
  border-color: rgba(255, 184, 0, 0.25);
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.05) 0%, var(--surface-2) 60%);
}

.venture-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.venture-icon {
  width: 40px; height: 40px;
  background: var(--amber-glow);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venture-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.venture-status--active {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.venture-status--live {
  background: rgba(255, 184, 0, 0.1);
  color: var(--amber);
  border: 1px solid rgba(255, 184, 0, 0.2);
}

.venture-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.venture-tagline {
  font-size: 13px;
  font-weight: 400;
  color: var(--amber-dim);
  margin-bottom: 12px;
  font-style: italic;
}

.venture-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 20px;
}

.venture-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  transition: color 0.2s;
  display: inline-block;
}

.venture-link:hover { color: var(--amber); }

/* ===== FEATURES ===== */
.features {
  padding: 120px 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-item {
  padding: 48px;
  border: 1px solid var(--border-2);
  transition: background 0.3s;
}

.feature-item:hover { background: var(--amber-glow); }

.feature-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 120px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border-2);
}

.philosophy .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
  font-style: normal;
}

.philosophy-attr {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 32px;
}

.philosophy-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===== ORBIT VISUAL ===== */
.orbit-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 40px rgba(255, 184, 0, 0.4);
}

.orbit-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.05em;
}

.orbit-orbit {
  position: absolute;
  top: 50%; left: 50%;
  border: 1px dashed var(--border);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-orbit--1 { width: 180px; height: 180px; animation: orbitSpin 20s linear infinite; }
.orbit-orbit--2 { width: 280px; height: 280px; animation: orbitSpin 30s linear infinite reverse; }
.orbit-orbit--3 { width: 380px; height: 380px; animation: orbitSpin 40s linear infinite; }
.orbit-orbit--4 { width: 480px; height: 480px; animation: orbitSpin 50s linear infinite reverse; }
.orbit-orbit--5 { width: 580px; height: 580px; animation: orbitSpin 60s linear infinite; }

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-dot {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.orbit-dot span {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.orbit-dot--coconut { top: 0; left: calc(50% + 90px); }
.orbit-dot--supanova { top: calc(50% - 140px); left: calc(50% + 0px); }
.orbit-dot--1z2 { top: calc(50% + 0px); left: calc(50% - 190px); }
.orbit-dot--circles { top: calc(50% + 0px); left: calc(50% + 190px); }
.orbit-dot--punches { top: calc(50% + 140px); left: calc(50% + 0px); }

.orbit-dot::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--amber);
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 8px rgba(255, 184, 0, 0.5);
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 40px;
  text-align: center;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-body {
  font-size: 16px;
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer .logo-text { font-size: 18px; }

.footer-tagline {
  font-size: 14px;
  color: var(--text-2);
  font-style: italic;
}

.footer-meta {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }

  .hero { padding: 100px 24px 60px; }

  .hero-stats { gap: 16px; flex-wrap: wrap; }

  .venture-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }

  .philosophy .section-inner { grid-template-columns: 1fr; gap: 40px; }

  .philosophy .philosophy-visual { display: none; }

  .portfolio, .features, .philosophy, .cta-section { padding: 80px 24px; }
}
