/* --- CINEMATIC CORE --- */
.hero-cinema {
    position: relative;

    width: 100%;
    background: #000;
    overflow: hidden;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Widescreen Letterbox Effect */
.letterbox {
    position: absolute;
    left: 0; 
    width: 100%; 
    height: 8vh;
    background: #000; 
    z-index: 10;
}
.letterbox.top { top: 0; }
.letterbox.bottom { bottom: 0; }

/* Viewport & Video */
.hero-viewport {
    position: absolute;
    inset: 8vh 0; /* Keeps video inside letterbox */
    z-index: 1;
}

.bg-reel {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1);
}

.vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

/* UI LAYER */
.hero-ui {
    position: relative;
    z-index: 15;
    height: 100%;
    padding: 17vh 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.hero-ui * { pointer-events: auto; }

/* TOP ROW */
.ui-top-row {
    display: flex; justify-content: space-between;
    font-family: monospace; font-size: 11px; letter-spacing: 4px;
    color: rgba(255,255,255,0.5);
}

/* CENTER CONTENT */
.hero-center { text-align: left; max-width: 1000px; }

.main-title {
    font-size: clamp(40px, 7vw, 95px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px #D4AF37;
    font-style: italic;
}

.title-footer {
    display: flex; align-items: center; gap: 20px;
    margin-bottom: 40px;
}

.title-footer .line { height: 1px; width: 100px; background: #D4AF37; }
.vertical-tag { font-family: monospace; font-size: 12px; color: #D4AF37; letter-spacing: 3px; }

.hero-description {
    font-size: 18px; line-height: 1.6; color: #bbb;
    max-width: 600px; margin-bottom: 50px;
}

/* BUTTONS */
.cta-rack { display: flex; gap: 25px; align-items: center; flex-wrap: wrap; }

.btn-primary {
    position: relative; padding: 20px 40px; background: #D4AF37;
    color: #000; font-weight: 900; text-decoration: none;
    text-transform: uppercase; font-size: 13px; overflow: hidden;
}

.btn-primary:hover { background: #fff; transform: scale(1.05); transition: 0.3s; }

.btn-outline {
    padding: 20px 40px; border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-weight: 800; text-decoration: none;
    text-transform: uppercase; font-size: 13px; transition: 0.3s;
}

.btn-outline:hover { background: #fff; color: #000; }

.hall-btn {
    display: flex; align-items: center; gap: 12px;
    color: #fff; text-decoration: none; font-weight: 900; font-size: 12px;
    letter-spacing: 1px;
}

.frame-icon {
    width: 24px; height: 16px; border: 1px solid #D4AF37; position: relative;
}

/* BOTTOM ROW METADATA */
.ui-bottom-row {
    display: flex; gap: 60px;
}

.data-point { display: flex; flex-direction: column; gap: 5px; }
.data-point .label { font-family: monospace; font-size: 9px; color: #444; letter-spacing: 2px; }
.data-point .val { font-size: 13px; font-weight: 700; color: #888; }

.gold-pulse { color: #D4AF37 !important; }
.gold-pulse::before {
    content: '●'; margin-right: 8px; animation: blink 1s infinite;
}

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

/* Entrance Animations */
.animate-in { opacity: 0; transform: translateY(30px); animation: fadeUp 1s forwards; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .ui-bottom-row { display: none; }
    .hero-ui { justify-content: center; }
}



.mission {
    position: relative;
    width: 100%;
    
    background: #000;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

/* Background Effect - subtle light leak or dark texture */
.mission-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-eyebrow {
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 11px;
    display: block;
    margin-bottom: 40px;
}

/* THE BOLD STATEMENT */
.mission-statement h2 {
    font-size: clamp(30px, 6vw, 85px);
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}
.mission-statement h2.reveal-text-two {
    font-size: clamp(30px, 6vw, 25px);
    font-weight: 600;
    line-height: 1;
    color: black;
    width: 87%;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
    background-color: rgb(255, 255, 255);
    padding: 20px 20px;
    padding-left: 90px;
    opacity: 0;
    transform: translateX(0) scale(0.98);
    filter: blur(4px);
    transition: all 0.8s ease;
}
.mission-statement h2.reveal-text-two.active {
    opacity: 1;
    transform: translateX(-80px) scale(1);
    filter: blur(0);
}
.mission-statement h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #D4AF37;
    font-style: italic;
}

/* MISSION PILLARS GRID */

/* ENTERPRISE HOVER EFFECT */
.mission-item:hover h4 {
    color: #D4AF37;
    transform: translateX(10px);
    transition: all 0.4s ease;
}

/* RESPONSIVENESS */
@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-statement h2 {
        font-size: 40px;
    }
}



/* --- ECOSYSTEM STYLING --- */
.home-capabilities {
    background: #000;
    color: #fff;
    padding: 0px 5%;
    border-top: 1px solid #111;
}

.capabilities-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

/* HEADER */
.cap-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 100px;
}

.index-code {
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 4px;
    color: #444;
    display: block;
    margin-bottom: 15px;
}

.display-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.gold-outline {
    color: transparent;
    -webkit-text-stroke: 1px #D4AF37;
}

.cap-summary {
    max-width: 400px;
    text-align: right;
}

.cap-summary p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.services-link {
    font-family: monospace;
    color: #D4AF37;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 2px;
}

/* SCHEMATIC GRID */
.schematic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #111;
}

.schematic-item {
    padding: 60px 40px;
    border: 1px solid #111;
    transition: 0.4s ease;
}

.schematic-item:hover {
    background: #050505;
    border-color: #222;
}

.item-head {
    margin-bottom: 40px;
}

.step-num {
    font-family: monospace;
    color: #D4AF37;
    font-size: 12px;
    display: block;
    margin-bottom: 20px;
}

.item-head h3 {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
}

.item-body p {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* TAGS */
.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.item-tags span {
    font-family: monospace;
    font-size: 9px;
    color: #333;
    border: 1px solid #222;
    padding: 5px 10px;
    letter-spacing: 1px;
}

/* HIGHLIGHT CARD */
.schematic-item.highlight {
    background: #080808;
    border-color: #D4AF37;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.schematic-item.highlight .step-num::before {
    content: '●';
    margin-right: 8px;
    animation: blink 1s infinite;
}

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

/* SCROLL REVEAL */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1000px) {
    .cap-header { flex-direction: column; align-items: flex-start; gap: 30px; }
    .cap-summary { text-align: left; }
    .schematic-grid { grid-template-columns: 1fr; }
}



.home-capabilities {
    background: #000;
    color: #fff;
    border-top: 1px solid #111;
    overflow: hidden;
}



/* STREAM SYSTEM */
.stream-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stream-row {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stream-content {
    display: flex;
    align-items: center;
    gap: 40px;
    will-change: transform;
}

.stream-content span {
    font-size: 18px; /* Refined, smaller size */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px; /* Cinematic tracking */
    font-family: 'Inter', sans-serif;
}

.divider {
    color: #333;
    font-weight: 300 !important;
}

/* COLOR VARIANTS */
.gold-text span { color: #D4AF37; }
.dim-text span { color: #333; transition: color 0.3s; }
.dim-text span:hover { color: #fff; }

/* ANIMATION SPEEDS */
.stream-left .stream-content {
    animation: scroll-left 30s linear infinite;
}

.stream-right .stream-content {
    animation: scroll-right 25s linear infinite;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Hover Interaction */
.stream-row:hover .stream-content {
    animation-play-state: paused;
}

/* Header Styles */
.index-code { font-family: monospace; font-size: 11px; letter-spacing: 4px; color: #444; display: block; margin-bottom: 10px; }

.gold-outline { color: transparent; -webkit-text-stroke: 1px #D4AF37; }
.cap-summary p { color: #666; font-size: 15px; max-width: 350px; margin-bottom: 15px; }
.services-link { font-family: monospace; color: #D4AF37; text-decoration: none; font-size: 11px; letter-spacing: 2px; }

.scroll-reveal { opacity: 0; transform: translateY(20px); transition: 0.8s ease-out; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
    .cap-header { flex-direction: column; align-items: flex-start; text-align: left; }
    .cap-summary { text-align: left; margin-top: 20px; }
}



.production-deals {
    background: #000;
    color: #fff;
    padding: 100px 5%;
    border-top: 1px solid #111;
}

.deals-container { max-width: 1200px; margin: 0 auto; }

/* HEADER */
.deals-header { text-align: center; margin-bottom: 70px; }
.display-title { font-size: clamp(40px, 5vw, 70px); font-weight: 900; text-transform: uppercase; margin: 0; }
.gold-text { color: #D4AF37; }
.deals-subtitle { color: #888; font-size: 18px; margin-top: 15px; }

/* GRID */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.deal-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 40px;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.deal-card:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
}

/* BADGE */
.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 800;
}

.gold-bg { background: #D4AF37; color: #000; }

/* CONTENT */
.category { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: #555; font-weight: 700; }
.deal-card h3 { font-size: 28px; font-weight: 800; margin: 15px 0; text-transform: uppercase; line-height: 1.1; }
.deal-card p { color: #888; font-size: 15px; line-height: 1.6; margin-bottom: 30px; }

.deal-list { list-style: none; padding: 0; margin-bottom: 40px; }
.deal-list li { 
    font-size: 13px; color: #ccc; margin-bottom: 12px; 
    display: flex; align-items: center; gap: 10px;
}
.deal-list li::before { content: '✓'; color: #D4AF37; font-weight: bold; }

/* BUTTONS */
.deal-btn {
    display: block;
    text-align: center;
    padding: 15px;
    border: 1px solid #333;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    transition: 0.3s;
}

.deal-btn:hover { background: #fff; color: #000; }
.gold-btn { background: #D4AF37; color: #000; border-color: #D4AF37; }

/* HIGHLIGHT */
.highlight-card { 
    background: #0f0f0f; 
    border-color: #333; 
    transform: scale(1.05);
    z-index: 2;
}

.deals-footer { text-align: center; margin-top: 50px; color: #444; font-size: 12px; }

@media (max-width: 900px) {
    .deals-grid { grid-template-columns: 1fr; }
    .highlight-card { transform: scale(1); }
}


.offer-modal {
    position: fixed; inset: 0; z-index: 9999;
    display: none; align-items: center; justify-content: center;
}

.modal-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(10px);
}

.modal-content {
    position: relative; z-index: 10;
    background: #0d0d0d;
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 90%; max-width: 650px;
    padding: 50px; border-radius: 4px;
}

.gold-badge { color: #D4AF37; font-size: 10px; letter-spacing: 4px; font-weight: 800; display: block; margin-bottom: 10px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }

.form-field label { display: block; font-size: 9px; color: #D4AF37; letter-spacing: 2px; margin-bottom: 8px; font-weight: 700; }

.form-field input, .form-field textarea {
    width: 100%; background: #161616; border: 1px solid #333;
    padding: 12px; color: #fff; border-radius: 2px;
}

.form-field input:focus { border-color: #D4AF37; outline: none; }

.submit-offer-btn {
    width: 100%; padding: 18px; background: #D4AF37; color: #000;
    border: none; font-weight: 900; letter-spacing: 2px; margin-top: 30px;
    cursor: pointer; transition: 0.3s;
}

.modal-content button.close-modal{
position: absolute;
right: 20px;
top: 20px;
font-size: 30px;
height: 40px;
background: #cccccca4;
width: 40px;
border: none;
border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease, font-size 0.3s ease;

}
.modal-content button.close-modal:hover{
    background: #ccc;
   transform: scale(1.1); /* keep it subtle */
   font-size: 34px;
}
.submit-offer-btn:hover { background: #fff; }

/* Status Indicators */
.status-box { margin-top: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; display: none; text-align: center; }
.status-success { color: #4ade80; }
.status-error { color: #f87171; }

.animate-pop { animation: popUp 0.4s cubic-bezier(0.19, 1, 0.22, 1); }
@keyframes popUp { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
