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

body {
  font-family: 'Inter', sans-serif;
  background: #000000;
  color: #ededed;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 80px;
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #ededed;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a24d;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.gold-btn {
  color: #c9a24d;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 80px;
}

.hero-content {
  max-width: 900px;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
}

.hero h1 span {
  color: #c9a24d;
}

.hero p {
  margin-top: 24px;
  font-size: 18px;
  color: #bdbdbd;
}

/* BUTTONS */
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.primary-btn {
  padding: 14px 32px;
  background: #c9a24d;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
}

.secondary-btn {
  padding: 14px 32px;
  border: 1px solid #c9a24d;
  color: #c9a24d;
  text-decoration: none;
  border-radius: 4px;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ===== PREMIUM HOVER & MOTION EFFECTS ===== */

.primary-btn,
.secondary-btn {
  transition: all 0.35s ease;
}

.primary-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(201, 162, 77, 0.35);
}

.secondary-btn:hover {
  background: rgba(201, 162, 77, 0.08);
  transform: translateY(-3px);
}

.nav-links a:hover {
  color: #e6c87a;
}

/* Section subtle zoom-in */
.hero-content {
  animation: softZoom 1.2s ease forwards;
}

@keyframes softZoom {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Gold glow text */
.hero h1 span {
  text-shadow: 0 0 25px rgba(201, 162, 77, 0.25);
}
/* LOGO */
.logo img {
  height: 34px;
  width: auto;
}

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

.logo img {
  height: 36px;
  width: auto;
}
/* ===== INTRO SCREEN ===== */
#intro {
  position: fixed;
  inset: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: introFadeOut 1s ease forwards;
  animation-delay: 3.5s;
}

.intro-content {
  text-align: center;
  animation: introZoom 3s ease forwards, float 4s ease-in-out infinite;
}

.intro-logo {
  width: 180px;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.intro-title {
  font-family: 'Playfair Display', serif;
  font-size: 92px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #ffffff;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.12s;
}

.intro-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  letter-spacing: 6px;
  margin-top: 12px;
  color: #c9a24d;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.4s;
}


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introZoom {
  0% { transform: scale(0.9); }
  60% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes introFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.enter-hint {
  margin-top: 50px;
  font-size: 14px;
  letter-spacing: 3px;
  color: #777;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2.2s;
}
body {
  animation: pageFade 0.6s ease forwards;
}

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .intro-logo {
    width: 120px;
  }

  .intro-title {
    font-size: 48px;
  }

  .intro-subtitle {
    font-size: 18px;
    letter-spacing: 4px;
  }

  .navbar {
    padding: 20px 30px;
  }

  .hero h1 {
    font-size: 36px;
  }
}
/* ===== CINEMATIC BACKGROUND LAYERS ===== */

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* Ensure content stays above noise */
body > * {
  position: relative;
  z-index: 2;
}
/* Ambient gold glow */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,77,0.18), transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 0;
}
#intro::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,162,77,0.25), transparent 65%);
  filter: blur(100px);
}
/* ===== CINEMATIC BACKGROUND LAYERS ===== */

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

/* Ensure content stays above noise */
body > * {
  position: relative;
  z-index: 2;
}
/* Ambient gold glow */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,77,0.18), transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 0;
}

#intro::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,162,77,0.25), transparent 65%);
  filter: blur(100px);
}

/* ===== VIDEO HERO BACKGROUND ===== */

.video-hero {
  position: relative;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;

  /* MAKE VIDEO VISIBLE */
  filter: brightness(0.55) contrast(1.15) saturate(1.05);
}
.bg-video {
  mix-blend-mode: screen;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.75)
    );
  z-index: 1;
}


.video-hero .hero-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .bg-video {
    filter: brightness(0.25);
  }
}
/* ===== VIDEO LOADING POLISH ===== */

.bg-video {
  opacity: 0;
  animation: videoFadeIn 1.2s ease forwards;
}

@keyframes videoFadeIn {
  to {
    opacity: 1;
  }
}
/* ===== NAVBAR LOGO + COMPANY NAME ===== */

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

.company-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.company-name strong {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.company-name em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 2px;
  color: #c9a24d;
}

/* ===== TEAM / FOUNDER SECTION ===== */

.team-section {
  padding: 120px 80px;
}

.team-tabs {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

.team-tab {
  background: transparent;
  border: 1px solid #333;
  color: #aaa;
  padding: 10px 26px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-tab.active,
.team-tab:hover {
  border-color: #c9a24d;
  color: #c9a24d;
}

.team-content {
  display: none;
}

.team-content.active {
  display: block;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 100px;
  max-width: none;
}

.founder-image img {
  width: 620px;
  max-width: none;
  height: auto;

  border-radius: 0;
  box-shadow: none;

  /* HARD background blending */
  filter: grayscale(100%) contrast(1.15) brightness(0.95);

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.6) 12%,
    rgba(0,0,0,1) 28%,
    rgba(0,0,0,1) 72%,
    rgba(0,0,0,0.6) 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.6) 12%,
    rgba(0,0,0,1) 28%,
    rgba(0,0,0,1) 72%,
    rgba(0,0,0,0.6) 88%,
    transparent 100%
  );

  opacity: 0;
  transform: translateX(-120px) scale(1.05);
  animation: founderReveal 2.2s ease forwards;
}

@keyframes founderReveal {
  to {
    opacity: 1;
    transform: translateX(0) scale(1.12);
  }
}


.founder-info h2 {
  font-size: 34px;
  margin-bottom: 6px;
}

.founder-info h4 {
  font-size: 16px;
  letter-spacing: 2px;
  color: #c9a24d;
  margin-bottom: 20px;
}

.founder-info .focus {
  color: #bdbdbd;
  margin-bottom: 20px;
}

.founder-info blockquote {
  font-style: italic;
  color: #9a9a9a;
  border-left: 3px solid #c9a24d;
  padding-left: 18px;
  line-height: 1.6;
}

.coming-soon {
  text-align: center;
  color: #666;
}
/* ===== ABOUT COMPANY SECTION ===== */

.about-company {
  position: relative;
  min-height: 100vh;
  padding: 140px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background video */
.about-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
  z-index: 0;
}

/* Overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.9)
  );
  z-index: 1;
}

/* Content */
.about-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.about-content p {
  font-size: 17px;
  color: #bdbdbd;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Highlights */
.about-highlights {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-highlights span {
  border: 1px solid rgba(201,162,77,0.4);
  color: #c9a24d;
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ===== COMPANY PHILOSOPHY ===== */

.company-philosophy {
  padding: 120px 80px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.9),
    rgba(0,0,0,1)
  );
}

.philosophy-content {
  max-width: 900px;
}

.company-philosophy h3 {
  font-size: 32px;
  margin-bottom: 24px;
}

.company-philosophy p {
  color: #bdbdbd;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.philosophy-points {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.philosophy-points span {
  border: 1px solid rgba(201,162,77,0.4);
  color: #c9a24d;
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ===== VISION & MISSION ===== */

.vision-mission {
  padding: 120px 80px;
  background: radial-gradient(
    circle at center,
    rgba(201,162,77,0.05),
    transparent 60%
  );
}

.vm-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.vm-box h3 {
  font-size: 32px;
  margin-bottom: 18px;
  color: #ffffff;
}

.vm-box p {
  color: #bdbdbd;
  font-size: 17px;
  line-height: 1.7;
}

/* ===== PLATFORMS PAGE ===== */

.platforms {
  padding: 140px 80px;
}

.platforms-header {
  max-width: 700px;
  margin-bottom: 80px;
}

.platforms-header h1 {
  font-size: 46px;
  margin-bottom: 16px;
}

.platforms-header p {
  color: #bdbdbd;
  font-size: 17px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1100px;
}

.platform-card {
  border: 1px solid rgba(201,162,77,0.25);
  padding: 40px;
  transition: all 0.4s ease;
}

.platform-card h3 {
  margin-bottom: 14px;
  color: #ffffff;
}

.platform-card p {
  color: #bdbdbd;
  line-height: 1.6;
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: #c9a24d;
}

/* ===== CONTACT PAGE ===== */

.contact-section {
  min-height: 100vh;
  padding: 140px 80px;
  display: flex;
  align-items: center;
}

.contact-content {
  max-width: 1100px;
}

.contact-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 17px;
  color: #bdbdbd;
  max-width: 600px;
  margin-bottom: 60px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border: 1px solid rgba(201,162,77,0.25);
  padding: 60px;
}

.contact-info h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 24px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  color: #bdbdbd;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #333;
  color: #fff;
  padding: 12px;
  margin-bottom: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c9a24d;
}

/* ===== INDUSTRIES SECTION ===== */

.industries {
  padding: 140px 80px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.95),
    rgba(0,0,0,1)
  );
}

.industries-header {
  max-width: 700px;
  margin-bottom: 80px;
}

.industries-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.industries-header p {
  color: #bdbdbd;
  font-size: 17px;
}

.industries-grid {
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.industry-card {
  border: 1px solid rgba(201,162,77,0.25);
  padding: 36px;
  transition: all 0.4s ease;
}

.industry-card h4 {
  margin-bottom: 12px;
  color: #ffffff;
}

.industry-card p {
  color: #bdbdbd;
  line-height: 1.6;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: #c9a24d;
}

/* ===== FINAL MOBILE POLISH ===== */
@media (max-width: 768px) {

  /* Global spacing */
  section {
    padding: 100px 24px !important;
  }

  /* Navbar */
  .navbar {
    padding: 16px 22px;
  }

  .company-name strong {
    font-size: 14px;
  }

  .company-name em {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  /* Headings */
  h1 {
    font-size: 36px !important;
  }

  h2 {
    font-size: 30px !important;
  }

  h3 {
    font-size: 24px !important;
  }

  /* Hero text */
  .hero-content p {
    font-size: 15px;
  }

  /* Buttons */
  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  /* Platforms & Industries grids */
  .platform-grid,
  .industries-grid,
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Platform cards */
  .platform-card,
  .industry-card {
    padding: 30px;
  }

  /* Contact page */
  .contact-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  /* Founder section */
  .founder-card {
    flex-direction: column;
    gap: 50px;
  }

  .founder-image img {
    width: 100%;
    max-width: 420px;
    transform: none;
  }

  .founder-info {
    text-align: center;
  }

  /* About company video */
  .about-bg-video {
    object-position: center;
  }
}
/* ===== LEADERSHIP SECTION ===== */

.leadership {
  padding: 120px 80px;
}

.leadership-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.leadership-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.leadership-header p {
  color: #bdbdbd;
  font-size: 17px;
}

.leadership-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 600px;
}

.leader h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.leader span {
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #c9a24d;
}

/* ===== FOUNDER NOTE ===== */

.founder-note {
  padding: 140px 80px;
  background: radial-gradient(
    circle at top left,
    rgba(201,162,77,0.05),
    transparent 60%
  );
}

.founder-note-content {
  max-width: 900px;
}

.founder-note h2 {
  font-size: 38px;
  margin-bottom: 40px;
}

.founder-note blockquote {
  font-size: 22px;
  line-height: 1.7;
  color: #e0e0e0;
  font-style: italic;
  border-left: 4px solid #c9a24d;
  padding-left: 28px;
  margin-bottom: 50px;
}

.founder-signature strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.founder-signature span {
  display: block;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #c9a24d;
  margin-bottom: 6px;
}

.founder-signature em {
  font-size: 13px;
  color: #9a9a9a;
}

/* ===== SELECTED WORK ===== */

.selected-work {
  padding: 140px 80px;
  background: radial-gradient(
    circle at top left,
    rgba(201,162,77,0.05),
    transparent 60%
  );
}

.selected-work-header {
  max-width: 700px;
  margin-bottom: 80px;
}

.selected-work-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.selected-work-header p {
  color: #bdbdbd;
  font-size: 17px;
}

.work-card {
  max-width: 900px;
  border: 1px solid rgba(201,162,77,0.25);
  padding: 60px;
}

.work-info h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.work-info span {
  display: block;
  color: #c9a24d;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.work-info p {
  color: #bdbdbd;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.work-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.work-info li {
  color: #bdbdbd;
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}

.work-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a24d;
}

.work-link {
  color: #c9a24d;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.5px;
}

.work-link:hover {
  text-decoration: underline;
}
