@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --font-stack: 'Outfit', sans-serif;
  --font-luxury: 'Playfair Display', serif;
  --font-tech: 'Montserrat', sans-serif;
}

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

    body, html {
      width: 100%;
      background-color: #050505;
      font-family: var(--font-stack);
      color: var(--text-main);
      /* Removed overflow: hidden to allow scrolling */
    }

    /* High-Quality Video Background */
    .bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: 1;
      transform: translate(-50%, -50%);
      object-fit: cover;
      opacity: 0.9;
    }

    /* Blinking Coming Soon Text */
    .coming-soon {
      font-size: clamp(2rem, 5vw, 4.5rem);
      font-weight: 600;
      letter-spacing: 0.6em;
      text-transform: uppercase;
      color: #E07020;
      margin-top: 2rem;
      animation: blink 2s ease-in-out infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.2; }
    }

    .bg-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* Rich dark radial overlay to make text pop while keeping the center flare bright */
      background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(5,5,5,0.85) 100%);
      z-index: 2;
    }

    /* Content Layer */
    .content-layer {
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 10;
      padding: 3rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    /* Absolute Positioning for the small text blocks */
    .text-block {
      position: absolute;
      font-family: var(--font-tech);
      font-size: 0.9rem; /* Enlarged from 0.65rem */
      font-weight: 400;
      letter-spacing: 0.25em;
      line-height: 1.8;
      text-transform: uppercase;
      color: var(--text-muted);
      opacity: 0; /* for animation */
    }

    .text-block span {
      display: block;
    }

    /* Top Elements */
    .tb-top-left {
      top: 8rem;
      left: 4rem;
    }
    .tb-top-right {
      top: 8rem;
      right: 4rem;
      text-align: right;
    }
    .tb-top-right::after {
      content: "";
      display: inline-block;
      width: 30px;
      height: 1px;
      background-color: var(--text-muted);
      vertical-align: middle;
      margin-left: 10px;
    }

    /* Mid Elements */
    .tb-mid-left {
      top: 30%;
      left: 4rem;
    }
    .tb-mid-center {
      margin-bottom: 2rem;
      text-align: center;
    }
    .tb-mid-right {
      position: absolute;
      top: 30%;
      right: 4rem;
    }

    /* Bottom Elements */
    .tb-btm-left {
      top: 60%;
      left: 4rem;
    }
    .tb-btm-right {
      position: absolute;
      top: 60%;
      right: 4rem;
    }

    /* Main Center Title Stack */
    .main-title-container {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: -5vh;
      opacity: 0;
    }

    .main-title {
      font-size: clamp(6rem, 15vw, 12rem);
      font-family: var(--font-luxury);
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1;
      color: var(--text-main);
    }

    .tb-c-mark {
      position: absolute;
      top: 10%;
      right: -10%;
    }

    .tb-year {
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
    }

    /* Bottom Elements */
    .founder-section {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
      max-width: 600px;
      opacity: 0;
    }

    .founder-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .founder-name {
      font-size: 1.1rem;
      font-weight: 300;
      margin-bottom: 0.2rem;
      letter-spacing: 0.05em;
    }

    .founder-title {
      font-size: 0.65rem;
      font-weight: 300;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .founder-quote {
      font-size: 0.85rem;
      font-weight: 300;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.8);
      max-width: 550px;
    }


    /* Responsive adjustments */
    @media (max-width: 900px) {
      .tb-mid-left, .tb-mid-right, .tb-top-left, .tb-top-right {
        display: none;
      }
      .main-title {
        font-size: 25vw;
      }
      .founder-section {
        padding: 0 2rem;
        bottom: 2rem;
      }

      .tb-year {
        bottom: -30px;
      }
      header { padding: 1.5rem; }
      .header-nav { display: none; }
    }

    /* Header / Navbar */
    header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 2.5rem 4rem;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      z-index: 100;
      opacity: 0; /* for animation */
    }

    .header-logo {
      justify-self: start;
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: #fff;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .header-logo svg {
      width: 44px;
      height: 34px;
    }

    .logo-text-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-left: 2px;
    }
    .logo-main {
      font-size: 1.5rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: 0.02em;
    }
    .logo-sub {
      font-size: 0.45rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 2px;
    }

    .header-nav {
      justify-self: center;
      display: flex;
      gap: 3rem;
      align-items: center;
    }

    .header-nav a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      transition: color 0.3s ease;
    }

    .header-nav a:hover {
      color: #fff;
    }

    .header-right {
      justify-self: end;
    }

    .header-contact {
      padding: 12px 28px;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 30px;
      color: #fff;
      text-decoration: none;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      transition: all 0.3s ease;
    }

    .header-contact:hover {
      background: #fff;
      color: #000;
    }

    /* --- NEW ANDURIL SCROLLING SECTIONS --- */
    
    .hero-section {
      width: 100%;
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .mission-section {
      width: 100%;
      padding: 10rem 4rem;
      background-color: #050505;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .mission-text {
      font-size: clamp(3rem, 6vw, 6rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      color: #F1F0EA;
      max-width: 1200px;
    }

    .split-section {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      background-color: #F1F0EA; /* Anduril Sand */
      color: #010101;
    }
    
    .split-section.dark {
      background-color: #050505;
      color: #F1F0EA;
    }

    .split-content {
      padding: 6rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .split-sub {
      font-family: var(--font-tech);
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      font-weight: 600;
      color: #E07020;
    }

    .split-headline {
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 2rem;
      letter-spacing: -0.02em;
    }
    
    .split-text {
      font-size: 1.25rem;
      line-height: 1.6;
      font-weight: 400;
      opacity: 0.8;
      max-width: 600px;
    }

    .split-image-container {
      width: 100%;
      height: 100%;
      min-height: 60vh;
      overflow: hidden;
      position: relative;
    }

    .split-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }

    @media (max-width: 900px) {
      .split-section {
        grid-template-columns: 1fr;
      }
      .split-image-container {
        min-height: 50vh;
      }
    }
