@font-face {
  font-family: 'UNCAGE';
  src: url('../fonts/UNCAGE-SemiBold.woff2') format('woff2'),
       url('../fonts/UNCAGE-SemiBold.woff') format('woff'),
       url('../fonts/UNCAGE-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --gold: #C5A044;
  --gold-light: #D7AE21;
  --gold-mid: #85560C;
  --gold-dark: #D0A71B;
  --dark: #0a0a0f;
  --white: #ffffff;
  --gray: #b0b0b0;
  --gray-light: #d0d0d0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ======================== NAVBAR (same as audience) ======================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px; background: #000; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 14px; font-weight: 400; letter-spacing: 0.5px; transition: color 0.3s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta-wrap { display: flex; flex-direction: column; align-items: center; }
.nav-cta { display: inline-block; background: var(--white); color: #000; padding: 12px 24px; border-radius: 50px; border: none; font-family: 'UNCAGE', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-decoration: none; white-space: nowrap; }
.nav-cta:hover { background: #e0e0e0; }
.nav-cta-sub { font-size: 10px; font-weight: 300; color: #999; text-align: center; margin-top: 6px; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; background: none; border: none; padding: 4px; }
.burger span { width: 26px; height: 2px; background: var(--white); transition: all 0.3s; display: block; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ======================== BUTTONS ======================== */
.btn-waitlist {
  display: inline-flex; align-items: center; justify-content: center;
  width: 360px; max-width: 100%; height: 52px;
  font-family: 'UNCAGE', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--white);
  background: linear-gradient(180deg, rgba(215,174,33,0.75) 0%, rgba(133,86,12,0.75) 40%, rgba(208,167,27,0.75) 100%);
  border: none; border-radius: 40px; cursor: pointer; text-decoration: none;
  transition: all 0.3s; text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.btn-waitlist:hover {
  transform: translateY(-2px); box-shadow: 0 6px 30px rgba(197,160,68,0.5);
  background: linear-gradient(180deg, rgba(215,174,33,0.9) 0%, rgba(133,86,12,0.9) 40%, rgba(208,167,27,0.9) 100%);
}

.btn-olf {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 32px; width: 360px; max-width: 100%; height: 52px;
  font-family: 'UNCAGE', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white);
  background: linear-gradient(180deg, rgba(215,174,33,0.75) 0%, rgba(133,86,12,0.75) 40%, rgba(208,167,27,0.75) 100%);
  border: none; border-radius: 40px;
  cursor: pointer; text-decoration: none; transition: all 0.3s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.btn-olf:hover {
  transform: translateY(-2px); box-shadow: 0 6px 30px rgba(197,160,68,0.5);
  background: linear-gradient(180deg, rgba(215,174,33,0.9) 0%, rgba(133,86,12,0.9) 40%, rgba(208,167,27,0.9) 100%);
}

/* ======================== HERO ======================== */
.about-hero {
  position: relative; width: 100%; min-height: 80vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.about-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.about-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(10,10,15,0.7) 60%, var(--dark) 100%);
}
.about-hero-content {
  position: relative; z-index: 1; text-align: center;
  padding: 140px 20px 80px; max-width: 780px;
}
.about-hero-title {
  font-family: 'UNCAGE', sans-serif; font-size: clamp(32px, 5vw, 56px);
  font-weight: 600; text-transform: uppercase; color: var(--white);
  margin-bottom: 28px; line-height: 120%;
}
.about-hero-text {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem); font-weight: 300;
  line-height: 1.8; color: var(--gray-light); margin-bottom: 40px;
}

/* ======================== FOUNDER ======================== */
.section-founder {
  padding: 100px 40px; background: var(--dark);
  background: linear-gradient(180deg, var(--dark) 0%, #060618 50%, var(--dark) 100%);
}
.founder-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.founder-photo img {
  width: 100%; max-width: 420px; display: block;
  object-fit: cover;
}
.founder-info { padding-top: 20px; }
.founder-title {
  font-family: 'UNCAGE', sans-serif; font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600; text-transform: uppercase; color: var(--white);
  margin-bottom: 28px; letter-spacing: 1px;
}
.founder-info p {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem); font-weight: 300;
  line-height: 1.8; color: var(--gray-light); margin-bottom: 20px;
}
.founder-link {
  display: inline-block; margin-top: 10px;
  font-family: 'UNCAGE', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color 0.3s;
}
.founder-link:hover { color: var(--gold-light); }

/* ======================== ADVISORY CIRCLE ======================== */
.section-advisory {
  padding: 80px 40px 100px; background: var(--dark);
}
.advisory-header {
  text-align: center; margin-bottom: 50px;
}
.advisory-title {
  font-family: 'UNCAGE', sans-serif; font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600; text-transform: uppercase; color: var(--white);
  letter-spacing: 1px; margin-bottom: 16px;
}
.advisory-arrow {
  color: var(--white); opacity: 0.6;
}

/* Avatars row */
.advisory-avatars {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 60px; flex-wrap: wrap;
}
.advisory-avatars img {
  width: 60px; height: 60px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(197,160,68,0.4);
  transition: transform 0.3s, border-color 0.3s;
}
.advisory-avatars img:hover {
  transform: scale(1.1); border-color: var(--gold);
}

/* Avatar tooltip on hover */
.advisory-avatar-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.advisory-avatar-wrap img {
  width: 60px; height: 60px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(197,160,68,0.4);
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.advisory-avatar-wrap:hover img {
  transform: scale(1.1); border-color: var(--gold);
}
.advisory-avatar-name {
  position: absolute;
  top: -48px; left: 50%; transform: translateX(-50%);
  font-family: 'UNCAGE', sans-serif; font-size: 13px; font-weight: 600;
  text-transform: uppercase; color: var(--white);
  white-space: nowrap; text-align: center; line-height: 1.3;
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.advisory-avatar-wrap:hover .advisory-avatar-name {
  opacity: 1;
}

.advisory-avatar-wrap.active img {
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(197,160,68,0.4);
}

.advisory-avatar-wrap.active .advisory-avatar-name {
  opacity: 1;
}

/* Advisor card */
.advisor-card {
  max-width: 1000px; margin: 0 auto 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.advisor-card-photo img {
  width: 320px; height: 320px; border-radius: 50%;
  object-fit: cover; display: block; margin: 0 auto;
  border: 3px solid rgba(197,160,68,0.3);
}
.advisor-name {
  font-family: 'UNCAGE', sans-serif; font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600; text-transform: uppercase; color: var(--white);
  margin-bottom: 8px; display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.advisor-role {
  font-family: 'UNCAGE', sans-serif; font-size: clamp(16px, 2vw, 30px);
  font-weight: 600; text-transform: uppercase; color: var(--white);
  letter-spacing: 1px; margin-bottom: 20px; margin-top: 16px;
}
.advisor-card-info p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px; font-weight: 400;
  line-height: 1.75; color: var(--gray-light);
}

/* ======================== VISION ======================== */
.section-vision {
  padding: 100px 40px; background: var(--dark);
}
.vision-inner {
  max-width: 900px; margin: 0 auto;
}
.vision-title {
  font-family: 'UNCAGE', sans-serif; font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600; text-transform: uppercase; color: var(--white);
  margin-bottom: 28px;
}
.vision-text-wide {
  font-size: clamp(0.88rem, 1.8vw, 1rem); font-weight: 300;
  line-height: 1.8; color: var(--gray-light); margin-bottom: 30px;
  max-width: 700px;
}
.vision-text-narrow {
  max-width: 450px; margin-bottom: 40px; padding-left: 40px;
}
.vision-text-narrow p {
  font-size: clamp(0.85rem, 1.6vw, 0.95rem); font-weight: 300;
  line-height: 1.8; color: var(--gray-light);
}

/* ======================== CTA / TV ======================== */
.section-cta {
  position: relative; width: 100%; min-height: 720px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 60px 20px;
}
.section-cta-bg { position: absolute; inset: 0; z-index: 0; }
.section-cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.section-cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(10,10,15,0.5); }

.cta-card {
  position: relative; z-index: 1; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px); border-radius: 40px; padding: 34px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  width: 100%; max-width: 488px; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5); margin-left: auto; margin-right: 10%;
}
.cta-logo-img { width: 260px; max-width: 100%; height: auto; display: block; }
.cta-logo-sub {
  font-size: 10px; letter-spacing: 2px; color: var(--gold);
  text-transform: uppercase;
}
.cta-card p {
  font-size: clamp(0.9rem, 1.5vw, 1rem); font-weight: 500;
  line-height: 1.5; color: #000; margin: 0;
}
.cta-card .btn-waitlist { width: 100%; }

/* ======================== FOOTER ======================== */
.footer {
  padding: 30px 40px; display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06); background: var(--dark);
}
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-press { font-size: 12px; color: var(--gray); }
.footer-copy { font-size: 12px; color: var(--gray); }
.footer-top {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  color: var(--gray); text-decoration: none; font-size: 18px; transition: all 0.3s;
}
.footer-top:hover { border-color: var(--gold); color: var(--gold); }

/* ======================== MOBILE MENU ======================== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: 'UNCAGE', sans-serif; font-size: 20px; color: var(--white); text-decoration: none; letter-spacing: 3px; text-transform: uppercase; transition: color 0.3s; }
.mobile-menu a:hover, .mobile-menu a.mobile-active { color: var(--gold); }

/* ======================== ANIMATIONS ======================== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .navbar { padding: 14px 24px; }
  .cta-card { margin-right: auto; margin-left: auto; }
}

@media (max-width: 768px) {
  .burger { display: flex; margin-left: 16px; }
  .nav-links { display: none; }
  .nav-cta-wrap {
    display: flex; flex-direction: column; align-items: flex-end; margin-left: auto;
  }
  .nav-cta {
    background: transparent !important; color: var(--white) !important;
    padding: 0; font-family: 'Manrope', sans-serif; font-size: 13px;
    font-weight: 500; text-transform: none; letter-spacing: 0;
  }
  .nav-cta-sub { font-size: 10px; color: var(--gray); margin-top: 2px; text-transform: lowercase; }

  /* Hero */
  .about-hero { min-height: auto; }
  .about-hero-content { padding: 120px 20px 60px; }
  .about-hero-title { font-size: 32px; }

  /* Founder */
  .section-founder { padding: 60px 20px; }
  .founder-inner { grid-template-columns: 1fr; gap: 30px; }
  .founder-photo img { max-width: 100%; }

  /* Advisory */
  .section-advisory { padding: 60px 20px; }
  .advisor-card { grid-template-columns: 1fr; gap: 30px; }
  .advisor-card--reverse { direction: ltr; }
  .advisor-card-photo img { width: 200px; height: 200px; }

  /* Vision */
  .section-vision { padding: 60px 20px; }
  .vision-text-narrow { padding-left: 0; }

  /* CTA */
  .section-cta { min-height: auto; padding: 40px 16px; }
  .cta-card { padding: 40px 24px; border-radius: 24px; max-width: 100%; margin: 0 auto; }

  /* Buttons */
  .btn-waitlist { width: 100%; max-width: 100%; height: 48px; font-size: 11px; letter-spacing: 2px; }

  /* Footer */
  .footer { padding: 24px 20px; }
}