* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #171717;
  --border: #262626;

  --gold: #d4af37;
  --gold-soft: #e7c76b;
  --gold-fade: rgba(212, 175, 55, 0.08);

  --text: #f5f5f5;
  --muted: #a1a1aa;
  --muted-soft: #71717a;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.3;
  z-index: -1;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);

  isolation: isolate;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.logo {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 42px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background-image: url('./globe.png');
  background-repeat: no-repeat;
  background-position: 70% center;
  background-size: 72%;

  opacity: 0.95;

  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;

  top: 140px;
  left: 50%;
  transform: translateX(-50%);

  width: 800px;
  height: 800px;

  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.03) 0%,
    rgba(212, 175, 55, 0.01) 25%,
    rgba(212, 175, 55, 0.003) 42%,
    transparent 65%
  );

  filter: blur(170px);

  opacity: 0.22;

  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.6rem, 7vw, 6rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  font-weight: 600;
  margin-bottom: 30px;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  padding: 18px 34px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 18px 30px;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.02);
}

/* SECTION BASE */
section {
  padding: 120px 0;
}

.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  font-weight: 600;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

/* PHILOSOPHY */
.philosophy {
  border-top: 1px solid var(--border);
  padding: 110px 0;
  position: relative;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.philosophy-left {
  position: relative;
}

.philosophy .section-title {
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 0.95;
  margin-bottom: 20px;
}

.philosophy-intro {
  max-width: 500px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 30px;
}

.philosophy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 30px;

  border: 1px solid rgba(212,175,55,0.35);

  border-radius: 14px;

  text-decoration: none;

  color: var(--gold);

  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 600;

  transition: 0.35s ease;
}

.philosophy-btn:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.philosophy-card {
  border: 1px solid rgba(255,255,255,0.06);

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.025),
      rgba(255,255,255,0.01)
    );

  border-radius: 30px;

  overflow: hidden;

  backdrop-filter: blur(10px);
}

.philosophy-copy {
  padding: 42px;
}

.philosophy-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.divider {
  width: 100%;
  height: 1px;

  background: rgba(255,255,255,0.08);

  margin: 26px 0;
}

.philosophy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.philosophy-stat {
  display: flex;
  gap: 20px;

  padding: 30px 42px;
}

.philosophy-stat:first-child {
  border-right: 1px solid rgba(255,255,255,0.06);
}

.legacy-line {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-weight: 500;
}

.stat-icon {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  border: 1px solid rgba(212,175,55,0.18);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gold);

  font-size: 1.2rem;

  flex-shrink: 0;
}

.philosophy-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
}

.philosophy-stat span {
  display: block;

  color: var(--text);

  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;

  margin-bottom: 10px;
}

.philosophy-stat p {
  color: var(--muted-soft);
  line-height: 1.7;
  font-size: 0.88rem;
}

.philosophy-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.bottom-item {
  padding: 26px 30px;
}

.bottom-item + .bottom-item {
  border-left: 1px solid rgba(255,255,255,0.06);
}

.bottom-item h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.bottom-item p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.88rem;
}

/* VENTURES */
.ventures {
  border-top: 1px solid var(--border);
}

.ventures-header {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

.ventures-header p {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.8;
}

.venture-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;

  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 36px;
  align-items: center;

  text-decoration: none;

  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.venture-card + .venture-card {
  margin-top: 22px;
}

.venture-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.35);
  background: linear-gradient(180deg, rgba(212,175,55,0.08), rgba(255,255,255,0.02));
}

.venture-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(255,255,255,0.12);
}

.venture-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  color: var(--text);
}

.venture-info p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 650px;
}

.venture-status {
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.coming {
  color: var(--muted-soft);
  border-color: rgba(255,255,255,0.08);
}

/* CONTACT */
.contact {
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.contact-left p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

.contact-boxes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-box {
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  transition: 0.3s ease;
}

.contact-box:hover {
  border-color: rgba(212,175,55,0.35);
  background: rgba(255,255,255,0.025);
}

.contact-box span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}

.contact-box a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.15rem;
  transition: 0.3s ease;
}

.contact-box a:hover {
  color: var(--gold-soft);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner p {
  color: var(--muted-soft);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  transition: 0.3s ease;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--text);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .hero::before {
    display: none;
  }

  .hero::after {
    width: 550px;
    height: 550px;
    top: 180px;
    opacity: 0.15;
  }

  .nav-inner {
    padding: 18px 0;
  }

  .nav-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: 3.8rem;
    line-height: 0.92;
  }

  .philosophy-grid,
  .contact-grid,
  .ventures-header {
    grid-template-columns: 1fr;
    display: grid;
    gap: 40px;
  }

  .philosophy-stats {
    grid-template-columns: 1fr;
  }

  .philosophy-stat:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .philosophy-bottom {
    grid-template-columns: 1fr;
  }

  .bottom-item + .bottom-item {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .venture-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .venture-status {
    width: fit-content;
  }

  section {
    padding: 90px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0;
    margin: 0;
  }

  .footer-inner p {
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.7;
  }

  .footer-links a {
    font-size: 0.75rem;
  }
}

/* SMALL MOBILE */
@media (max-width: 600px) {

  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-inner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 120px;
  }

  .hero::after {
    width: 420px;
    height: 420px;
    opacity: 0.12;
  }

  .hero-title {
    font-size: 3rem;
    line-height: 0.95;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .venture-card {
    padding: 30px;
    border-radius: 22px;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .philosophy-copy {
    padding: 28px;
  }

  .philosophy-stat {
    padding: 28px;
    flex-direction: column;
  }

  .bottom-item {
    padding: 24px 28px;
  }

  .philosophy-stat h3 {
    font-size: 2.2rem;
  }
}