        :root {
            --deep-red: #5C0A0A;
            --darker-red: #3D0606;
            --darkest-red: #2A0404;
            --gold: #C5A028;
            --light-gold: #D4AF37;
            --pale-gold: #E8D48B;
            --bg-dark: #0C0C0C;
            --bg-card: #161616;
            --bg-card-alt: #1C1C1C;
            --bg-section: #111111;
            --white: #F0EDE6;
            --off-white: #E0DCD4;
            --light-gray: #C8C4BC;
            --med-gray: #8A8680;
            --dark-gray: #3A3A3A;
            --link-blue: #7EB8E0;
            --border-gold: rgba(197, 160, 40, 0.25);
            --glow-gold: rgba(197, 160, 40, 0.08);
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

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

        html { scroll-behavior: smooth; }

        body {
            background: var(--bg-dark);
            color: var(--light-gray);
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 17px;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ============================================
           TOP BAR - Three Audience Buttons
           ============================================ */
        .top-bar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(12, 12, 12, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-gold);
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
            transition: var(--transition);
        }

        .top-bar.scrolled {
            background: rgba(12, 12, 12, 0.98);
            box-shadow: 0 2px 20px rgba(0,0,0,0.5);
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .top-bar-logo {
            height: 36px;
            width: auto;
        }

        .top-bar-wordmark {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 16px;
            color: var(--gold);
            letter-spacing: 3px;
        }

        .top-bar-center {
            display: flex;
            gap: 6px;
        }

        .audience-btn {
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--light-gray);
            background: transparent;
            border: 1px solid var(--dark-gray);
            padding: 8px 20px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }

        .audience-btn:hover, .audience-btn.active {
            color: var(--gold);
            border-color: var(--gold);
            background: var(--glow-gold);
        }

        .audience-btn.gov-btn {
            border-color: var(--gold);
            color: var(--gold);
        }

        .audience-btn.gov-btn:hover {
            background: var(--gold);
            color: var(--darkest-red);
        }

        /* ============================================
           HAMBURGER MENU
           ============================================ */
        .hamburger {
            width: 32px;
            height: 22px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            z-index: 1100;
            position: relative;
        }

        .hamburger span {
            display: block;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
            border-radius: 1px;
        }

        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .nav-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            z-index: 1050;
            background: rgba(12, 12, 12, 0.97);
            backdrop-filter: blur(20px);
            display: flex;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .nav-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .nav-overlay-left {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 40px;
        }

        .nav-hero-img {
            width: 100%;
            max-width: 500px;
            height: 70vh;
            object-fit: cover;
            border-radius: 4px;
            opacity: 0.85;
        }

        .nav-overlay-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 60px;
        }

        .nav-links {
            list-style: none;
        }

        .nav-links li {
            margin-bottom: 8px;
            transform: translateX(30px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .nav-overlay.open .nav-links li {
            transform: translateX(0);
            opacity: 1;
        }

        .nav-overlay.open .nav-links li:nth-child(1) { transition-delay: 0.1s; }
        .nav-overlay.open .nav-links li:nth-child(2) { transition-delay: 0.15s; }
        .nav-overlay.open .nav-links li:nth-child(3) { transition-delay: 0.2s; }
        .nav-overlay.open .nav-links li:nth-child(4) { transition-delay: 0.25s; }
        .nav-overlay.open .nav-links li:nth-child(5) { transition-delay: 0.3s; }
        .nav-overlay.open .nav-links li:nth-child(6) { transition-delay: 0.35s; }
        .nav-overlay.open .nav-links li:nth-child(7) { transition-delay: 0.4s; }

        .nav-links a {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 32px;
            color: var(--white);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            transition: var(--transition);
            display: inline-block;
        }

        .nav-links a:hover {
            color: var(--gold);
            transform: translateX(10px);
        }

        .nav-social {
            margin-top: 50px;
            display: flex;
            gap: 20px;
        }

        .nav-social a {
            font-family: 'Raleway', sans-serif;
            font-size: 12px;
            color: var(--med-gray);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--transition);
        }

        .nav-social a:hover { color: var(--gold); }

        .thok{
            background: linear-gradient(
  to bottom,
  #cf972d 22%,
  #f9f295 45%,
  #e0aa3e 50%,
  #b8860b 55%,
  #f9f295 78%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
        }

        .headshot{
            width: 300px;
            height: 535;
        }

        /* ============================================
           PAGE SECTIONS
           ============================================ */
        .page-section {
            display: none;
            min-height: 100vh;
            padding-top: 52px;
        }

        .page-section.active {
            display: block;
        }

        /* ============================================
           HOME PAGE
           ============================================ */
        .hero-section {
            min-height: calc(100vh - 52px);
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--darkest-red) 50%, var(--bg-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 50% 40%, rgba(197,160,40,0.04) 0%, transparent 70%);
        }

        .hero-content {
            text-align: center;
            padding: 40px;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(197,160,40,0.08);
            border: 1px solid var(--border-gold);
            display: inline-block;
            padding: 8px 24px;
            margin-bottom: 30px;
        }

        .hero-h1 {
            font-family: 'Cinzel', serif;
            font-weight: 900;
            font-size: clamp(36px, 6vw, 72px);
            color: var(--white);
            letter-spacing: 6px;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-h1 span {
            color: var(--gold);
        }

        .hero-sub {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(18px, 2.5vw, 24px);
            color: var(--light-gray);
            font-style: italic;
            margin-bottom: 40px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            font-family: 'Cinzel', serif;
            font-weight: 600;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            padding: 16px 36px;
            border: 1px solid var(--gold);
            transition: var(--transition);
            cursor: pointer;
            display: inline-block;
        }

        .cta-primary {
            background: var(--gold);
            color: var(--darkest-red);
        }

        .cta-primary:hover {
            background: var(--pale-gold);
            box-shadow: 0 0 30px rgba(197,160,40,0.3);
        }

        .cta-secondary {
            background: transparent;
            color: var(--gold);
        }

        .cta-secondary:hover {
            background: var(--glow-gold);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            animation: float 2s ease-in-out infinite;
        }

        .scroll-indicator span {
            font-family: 'Raleway', sans-serif;
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--med-gray);
        }

        .scroll-indicator .arrow {
            width: 20px;
            height: 20px;
            border-right: 1px solid var(--gold);
            border-bottom: 1px solid var(--gold);
            transform: rotate(45deg);
        }

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

        /* ============================================
           STATS BAR
           ============================================ */
        .stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid var(--border-gold);
            border-bottom: 1px solid var(--border-gold);
        }

        .stat-item {
            text-align: center;
            padding: 35px 20px;
            border-right: 1px solid var(--border-gold);
        }

        .stat-item:last-child { border-right: none; }

        .stat-number {
            font-family: 'Cinzel', serif;
            font-weight: 900;
            font-size: 36px;
            color: var(--gold);
        }

        .stat-label {
            font-family: 'Raleway', sans-serif;
            font-weight: 400;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--med-gray);
            margin-top: 5px;
        }

        /* ============================================
           CONTENT SECTIONS
           ============================================ */
        .section-block {
            padding: 80px 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-dark {
            background: var(--bg-section);
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 28px;
            color: var(--gold);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            color: var(--med-gray);
            font-style: italic;
            margin-bottom: 40px;
        }

        .gold-divider {
            width: 60px;
            height: 2px;
            background: var(--gold);
            margin-bottom: 30px;
        }

        .section-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            color: var(--light-gray);
            line-height: 1.8;
            max-width: 800px;
        }

        /* Verticals Grid */
        .verticals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .vertical-card {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            padding: 30px 24px;
            transition: var(--transition);
        }

        .vertical-card:hover {
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(197,160,40,0.08);
        }

        .vertical-card h3 {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 14px;
            color: var(--gold);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .vertical-card p {
            font-family: 'Raleway', sans-serif;
            font-size: 13px;
            color: var(--light-gray);
            line-height: 1.6;
        }

        /* ============================================
           WHO WE ARE PAGE
           ============================================ */
        .founder-section {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 50px;
            align-items: start;
            padding: 80px 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .founder-photo {
            width: 100%;
            border: 2px solid var(--border-gold);
        }

        .founder-info h2 {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 24px;
            color: var(--gold);
            letter-spacing: 2px;
        }

        .founder-info .founder-title {
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            color: var(--med-gray);
            margin-top: 4px;
            margin-bottom: 25px;
        }

        .founder-info p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 17px;
            color: var(--light-gray);
            line-height: 1.8;
            margin-bottom: 18px;
        }

        /* ============================================
           CAPABILITY STATEMENT PAGE
           ============================================ */
        .capstat-header {
            background: linear-gradient(135deg, var(--darker-red) 0%, var(--deep-red) 50%, #6B1010 100%);
            border-bottom: 3px solid var(--gold);
            padding: 40px;
            text-align: center;
        }

        .capstat-header h1 {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 32px;
            color: var(--gold);
            letter-spacing: 4px;
        }

        .capstat-header p {
            font-family: 'Raleway', sans-serif;
            font-size: 13px;
            color: var(--off-white);
            margin-top: 6px;
        }

        .capstat-download-bar {
            display: flex;
            justify-content: flex-end;
            padding: 16px 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .download-btn-small {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--deep-red), var(--darker-red));
            color: var(--gold);
            font-family: 'Cinzel', serif;
            font-weight: 600;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            padding: 12px 24px;
            border: 1px solid var(--gold);
            transition: var(--transition);
        }

        .download-btn-small:hover {
            background: var(--gold);
            color: var(--darkest-red);
        }

        .download-btn-small svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Capability 3-col */
        .capstat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 10px 40px 60px;
        }

        .cap-section { margin-bottom: 18px; }

        .cap-section-header {
            background: linear-gradient(135deg, var(--deep-red), var(--darker-red));
            border: 1px solid var(--border-gold);
            border-radius: 3px;
            padding: 9px 14px;
            margin-bottom: 12px;
        }

        .cap-section-header h3 {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 11px;
            color: var(--gold);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .cap-info-row {
            display: flex;
            padding: 3px 0;
        }

        .cap-info-label {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 11px;
            color: var(--gold);
            min-width: 60px;
            flex-shrink: 0;
        }

        .cap-info-value {
            font-family: 'Raleway', sans-serif;
            font-size: 12.5px;
            color: var(--white);
        }

        .cap-info-value a {
            color: var(--link-blue);
            text-decoration: none;
        }

        .cap-info-value a:hover { color: var(--pale-gold); }

        .cap-info-value.codes {
            font-size: 11.5px;
            color: var(--light-gray);
        }

        .cap-list {
            list-style: none;
            padding: 0;
        }

        .cap-list li {
            font-family: 'Raleway', sans-serif;
            font-size: 12.5px;
            color: var(--light-gray);
            padding: 3.5px 0 3.5px 14px;
            position: relative;
            line-height: 1.5;
        }

        .cap-list li::before {
            content: '\2022';
            color: var(--gold);
            position: absolute;
            left: 0;
            top: 3px;
        }

        .cap-qr {
            text-align: center;
            padding: 15px 0;
        }

        .cap-qr img {
            width: 120px;
            height: 120px;
        }

        /* ============================================
           CONTRACT VEHICLES PAGE
           ============================================ */
        .cv-header {
            background: linear-gradient(135deg, var(--darker-red) 0%, var(--deep-red) 50%, #6B1010 100%);
            border-bottom: 3px solid var(--gold);
            padding: 50px 40px;
            text-align: center;
        }

        .cv-header h1 {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 32px;
            color: var(--gold);
            letter-spacing: 4px;
        }

        .cv-header p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            color: var(--off-white);
            font-style: italic;
            margin-top: 8px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cv-content {
            max-width: 1100px;
            margin: 0 auto;
            padding: 50px 40px;
        }

        .cv-category {
            margin-bottom: 50px;
        }

        .cv-category-title {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 18px;
            color: var(--gold);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .cv-category-sub {
            font-family: 'Raleway', sans-serif;
            font-size: 13px;
            color: var(--med-gray);
            margin-bottom: 20px;
        }

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

        .cv-card {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            padding: 24px;
            transition: var(--transition);
            position: relative;
        }

        .cv-card:hover {
            border-color: var(--gold);
            box-shadow: 0 4px 20px rgba(197,160,40,0.06);
        }

        .cv-card .cv-status {
            position: absolute;
            top: 12px;
            right: 12px;
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            font-size: 9px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 2px;
        }

        .cv-status.active {
            background: rgba(40, 167, 69, 0.15);
            color: #5CB85C;
            border: 1px solid rgba(40, 167, 69, 0.3);
        }

        .cv-status.coming {
            background: rgba(197, 160, 40, 0.1);
            color: var(--gold);
            border: 1px solid var(--border-gold);
        }

        .cv-card h4 {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 13px;
            color: var(--white);
            letter-spacing: 1px;
            margin-bottom: 8px;
            padding-right: 70px;
        }

        .cv-card p {
            font-family: 'Raleway', sans-serif;
            font-size: 13px;
            color: var(--light-gray);
            line-height: 1.6;
        }

        .cv-card .cv-detail {
            font-size: 11px;
            color: var(--med-gray);
            margin-top: 8px;
        }

        .cv-card .cv-detail strong {
            color: var(--gold);
        }

        /* CTA banner */
        .cv-cta {
            background: linear-gradient(135deg, var(--deep-red), var(--darker-red));
            border: 1px solid var(--border-gold);
            padding: 40px;
            text-align: center;
            margin-top: 30px;
        }

        .cv-cta h3 {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 20px;
            color: var(--gold);
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .cv-cta p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 17px;
            color: var(--light-gray);
            margin-bottom: 20px;
        }

        /* ============================================
           CONTACT PAGE
           ============================================ */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 80px 40px;
        }

        .contact-info h2 {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: 28px;
            color: var(--gold);
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .contact-item {
            margin-bottom: 20px;
        }

        .contact-item .label {
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 4px;
        }

        .contact-item .value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            color: var(--white);
        }

        .contact-item .value a {
            color: var(--link-blue);
            text-decoration: none;
        }

        .contact-item .value a:hover { color: var(--pale-gold); }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            background: var(--bg-card);
            border: 1px solid var(--dark-gray);
            color: var(--white);
            font-family: 'Raleway', sans-serif;
            font-size: 14px;
            padding: 14px 16px;
            margin-bottom: 14px;
            transition: var(--transition);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--gold);
        }

        .contact-form textarea { min-height: 140px; resize: vertical; }

        .contact-form button {
            width: 100%;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .site-footer {
            background: var(--darkest-red);
            border-top: 2px solid var(--gold);
            padding: 40px;
        }

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

        .footer-left h3 {
            font-family: 'Cinzel', serif;
            font-size: 14px;
            color: var(--gold);
            letter-spacing: 1px;
        }

        .footer-left p {
            font-family: 'Raleway', sans-serif;
            font-size: 12px;
            color: var(--light-gray);
            margin-top: 4px;
        }

        .footer-left .footer-contact a {
            color: var(--link-blue);
            text-decoration: none;
            font-size: 12px;
        }

        .footer-right {
            text-align: right;
        }

        .footer-certs {
            font-family: 'Cinzel', serif;
            font-size: 10px;
            color: var(--gold);
            letter-spacing: 1px;
        }

        .footer-copy {
            font-family: 'Raleway', sans-serif;
            font-size: 10px;
            color: var(--med-gray);
            margin-top: 6px;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 900px) {
            .top-bar-center { display: none; }
            .nav-overlay-left { display: none; }
            .nav-overlay-right { padding: 100px 30px; }
            .nav-links a { font-size: 24px; }
            .stats-bar { grid-template-columns: repeat(2, 1fr); }
            .capstat-grid { grid-template-columns: 1fr; }
            .cv-grid { grid-template-columns: 1fr; }
            .founder-section { grid-template-columns: 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-inner { flex-direction: column; text-align: center; }
            .footer-right { text-align: center; }
        }

        @media (max-width: 600px) {
            .hero-h1 { letter-spacing: 2px; }
            .section-block { padding: 50px 20px; }
            .cv-content { padding: 30px 20px; }
            .capstat-grid { padding: 10px 20px 40px; }
        }

        /* Fade animations */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }