/* =====================================================
   UNIFIED DESIGN SYSTEM
   This stylesheet is the single source of truth for the
   whole site. It keeps the visual language simple so a
   beginner can understand how the layout works.
   ===================================================== */

/* -----------------------------------------------------
   1. ROOT COLORS AND SHARED SETTINGS
   These custom properties act like a small design system.
   Change one value here and the whole site updates.
   ----------------------------------------------------- */
:root {
  --bg: #090909;
  --panel: #111111;
  --panel-strong: #222222;
  --text: #f5f5f5;
  --muted: #b3b3b3;
  --accent: #00ff00;
  --border: #2f2f2f;
  --shadow: none;
  --max-width: 1200px;
  --space: 24px;
  --font-sans: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-body:  "Jost", Tahoma, Geneva, Verdana, sans-serif;
  --font-head:  "Tomorrow", Tahoma, Geneva, Verdana, sans-serif;
  --font-eyebrow: "Victor Mono", Tahoma, Geneva, Verdana, monospace;
}


/* -----------------------------------------------------
   1.5. TYPOGRAPHY
   These rules set the default font sizes and line heights.
   ----------------------------------------------------- */


.victor-mono-600 {
  font-family: var(--font-eyebrow);
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.jost-400 {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.tomorrow-medium {
  font-family: var(--font-head);
  font-weight: 500;
  font-style: normal;
}

h1 {
  font-family: var(--font-head);
  color: var(#fff);
  font-size: 5.6rem;
  line-height: 1.1;
  letter-spacing: 2.2rem;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  transform: translateX(-1px);
}

h2 {
  font-family: var(--font-head);
  color: var(#fff);
  font-size: 3.8rem;
  line-height: 1.2;
  letter-spacing: 0.05rem;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

h3 {
  font-family: var(--font-head);
  color: var(--text);
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.14rem;
  -webkit-font-smoothing: antialiased;
  text-transform: capitalize;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

h4 {
  font-family: var(--font-eyebrow);
  margin:0;
  color: var(--accent);
  font-size: 0.85rem;
  line-height: 0.8;
  letter-spacing: 0.45rem;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

h5 {
  font-family: var(--font-eyebrow);
  margin:0;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 0.8;
  letter-spacing: 0.55rem;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

h6 {
  font-family: var(--font-eyebrow);
  margin:0;
  color: var(--muted);
  font-size: 0.48rem;
  line-height: 1.4;
  letter-spacing: 0.05rem;
  -webkit-font-smoothing: antialiased;
}

p {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: 0.069rem;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: 0.069rem;
  -webkit-font-smoothing: antialiased;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}


/* -----------------------------------------------------
   2. RESET AND BASE STYLES
   These rules remove browser default spacing so we can
   build the layout from a clean slate.
   ----------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

img,
video {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: var(--text);
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

/* -----------------------------------------------------
   3. REUSABLE LAYOUT HELPERS
   These are simple classes that make the HTML easier to
   read and keep the structure consistent across pages.
   ----------------------------------------------------- */

.container {
  width: min(100% - 8rem, var(--max-width));
  margin: 0 auto;
}

.section-img-bg {
  background-image:linear-gradient(rgba(46, 204, 59, 1),rgba(0,0,0,0.45)), ;
  background-size:cover;
}

.container-widescreen {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
}

.section {
  padding: 3rem 0;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.panel-strong {
  background: var(--panel-strong);
  border: 1px solid var(--border);
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.8rem;
  font-family: var(--font-eyebrow);
}

.muted {
  color: var(--muted);
}

/* -----------------------------------------------------
   4. HEADER AND NAVIGATION
   The top bar is intentionally simple and sharp-edged.
   ----------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(0, 0, 0);
  border-bottom: 1px solid var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.69);

}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--accent);
}

.brand-logo {
  height: 55px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  padding: 0.4rem 0.2rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  transition: color 180ms ease;
  font-family: var(--font-eyebrow);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

/* -----------------------------------------------------
   5. HERO AND PAGE HEADER STYLES
   This is the main content intro for every page.
   ----------------------------------------------------- */
.hero {
  padding: 4rem 0 2.5rem;
}

.hero h1,
.page-title {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4.2vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-head);
}

.hero p,
.page-intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-family: var(--font-body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.hero-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}


/* -----------------------------------------------------
   5.5. BACkGROUND IMAGES 
   & TEXT COLORS
   ----------------------------------------------------- */

.img-tex-1 {
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/texture1.jpg');
}

.img-tex-2 {
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/texture2.jpg');
}

.img-tex-3 {
  background-image: url('../images/texture3.jpg');
}

.img-tex-4 {
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/texture4.jpg');
}

.img-tex-5 {
  background-image:
    linear-gradient(#00ff0073, #00ff0073),
    url('../images/texture5.jpg');
}

.img-tex-6 {
  background-image:
    linear-gradient(#ffffff73, #ffffff73),
    url('../images/texture6.jpg');
}

.cfff {
  color: #fff;
}

.c000 {
  color: #000;
}

.c222 {
  color: #222;
}

.c0f0 {
  color: #0f0;
}



/* -----------------------------------------------------
   6. BUTTONS
   Buttons are intentionally bold and simple.
   ----------------------------------------------------- */
.button {
  display: inline-block;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #020202;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #14ff14;
  box-shadow: 0 0 10px #00ff0099 ;
}

.button.secondary {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--accent);
  background: var(--panel-strong);
}

.button.black {
  display: inline-block;
  padding: 0.8rem 1.1rem;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 180ms ease, background 180ms ease;
}

.button.black:hover {
  transform: translateY(-1px);
  color:#0f0;
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/texture4.jpg');
  }


/* -----------------------------------------------------
   7. MEDIA AND VIDEO STYLES
   These rules make the video areas feel like part of the
   same system as the cards and panels.
   ----------------------------------------------------- */
.media-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  background: #020202;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 90;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: min(100%, 960px);
  background: #000;
  border: 1px solid var(--border);
}

.modal-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.8);
  color: var(--text);
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
}

.media-faux-portfolio {
  height: 100%;       
  max-height: 100vh;    /* prevents accidental stretching */
  width: auto;          /* width grows naturally */
  object-fit: cover;    /* keeps proportions while filling height */
  position: relative;   /* allows overflow */
  left: 0;              /* anchor to the left edge */
  overflow: hidden;    /* allow the right side to spill out */
}

/* Full-bleed wrapper that breaks out of .container and .grid */
.faux-portfolio-wrap {
  position: relative;
  overflow: hidden;

  /* Pull the wrapper left so its left edge aligns with the viewport */
  margin-left: calc(-50vw + 100% +(var(--space)));
  width: 100vw; /* full viewport width */
}

/* The image itself */
.faux-portfolio-img {
  height: 100%;     /* as tall as possible */
  width: auto;       /* width grows naturally */
  object-fit: cover; /* fill height without distortion */
  display: block;
}


.preloader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.9);
  color: var(--text);
}

/* Ensure the media frame centers its content and can accept an aspect-ratio */
.media-frame-port {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; /* allow poster/video to show fully; change to hidden if you want strict clipping */
  background: #020202;
  border: 1px solid var(--border);
  padding: 0; /* remove inner padding so aspect-ratio sizing is accurate */
  /* default aspect ratio fallback (16/9) until JS sets the real one */
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  max-height: 600px;
}

/* Video fills the frame but preserves its intrinsic aspect ratio (no cropping) */
.video-frame-port {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show entire video, letterbox if needed */
  display: block;
  background: #000; /* visible behind letterboxing */
  border: 0;
}


/* Small-screen tweak: allow taller frames on phones if desired */
@media (max-width: 680px) {
  .media-frame-port {
    aspect-ratio: 3 / 2; /* temporary fallback for small screens; JS will still override */
  }
}


/* -----------------------------------------------------
   8. CARD AND LIST STYLES
   These are used on the portfolio and about pages.
   ----------------------------------------------------- */
.card-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.card-list li {
  padding: 0.8rem 0;
  border-top: 1px solid var(--border);
}

.card-list li:first-child {
  border-top: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-family: var(--font-eyebrow);
}

.tag.active,
.tag.highlight {
  background: var(--accent);
  color: #020202;
  border-color: var(--accent);
}

/* -----------------------------------------------------
   9. PORTFOLIO SECTION STYLES
   The gallery uses simple cards with bold labels.
   ----------------------------------------------------- */
.portfolio-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-card {
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.portfolio-card:hover{
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 10px #00ff0099 ;
}

.portfolio-card.active {
  border-color: var(--accent);
  filter:opacity(20%);
  transform: translateY(-2px);
}

.portfolio-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.portfolio-card .card-body {
  padding: 1rem;
}

.portfolio-card h3 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Feature thumbnails row */
.feature-thumbs {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
  padding: 0.5rem 0;
  overflow: visible;
}

/* Individual thumb container */
.feature-thumb {
  flex: 0 0 auto;            /* do not grow; keep natural width */
  width: clamp(69px, 20vw, 280px); 
  height: auto;
  border: 0px solid var(--border);
  background: #000;
  display: inline-block;
  transition: transform 180ms ease, box-shadow 180ms ease;
  border-radius: 0px;
  overflow: hidden;
}

/* The image inside the thumb */
.feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop inside the thumb box, but keep aspect visually pleasing */
  display: block;
}


/* If fewer than 3 thumbs, center them on small screens */
@media (max-width: 680px) {
  .feature-thumbs {
    justify-content: center;
    gap: 0.5rem;
  }
  .feature-thumb { width: clamp(72px, 28vw, 160px); }
}


/* -----------------------------------------------------
   10. ABOUT PAGE STYLES
   A few simple feature blocks make the page easy to scan.
   ----------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 1rem;
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent);
}

/* -------------------------
   LOGO SECTION
   - Centered logos, responsive swap handled in HTML <picture>
   ------------------------- */
.logos{
  margin:48px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding-top:4rem;
  padding-bottom:4rem;
  border-top:1px solid var(--accent);
  border-bottom:1px solid var(--accent);
}
.logos img{max-width:100%;height:auto;display:block}


/* -------------------------
    METRICS SECTION
   - Left text, right 2x2 grid of metric cards
   ------------------------- */




.metrics{
  display:flex;
  gap:32px;
  align-items:flex-start;
  margin:48px 0;
}
.metrics .metrics-left{flex:1 1 200px}
.metrics .metrics-right{
  flex:2 1 400px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.metric{
  background:rgba(255,255,255,0.02);
  border:1px solid var(--border);
  padding:18px;
  min-height:110px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}
.metric .num{
  font-size: clamp(3rem, 6vw + 0.5rem, 20vw);
  font-weight:800;
  line-height:1;
  font-family: var(--font-head);
}
.metric .label{
  color:var(--muted);
  font-size:.69rem;
  margin-top:1rem;
  font-family: var(--font-eyebrow);
  text-transform:uppercase;
  letter-spacing:0.33em;
}



/* --- CTA BG --- */
.cta-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}




/* -----------------------------------------------------
   11. FOOTER
   The footer stays quiet so the content remains the focus.
   ----------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--accent);
  margin-top: 3rem;
  padding: 1.5rem 0 2rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-legal h6{
  color: var(--muted);
  font-family: var(--font-eyebrow);
}

/* -----------------------------------------------------
   12. RESPONSIVE RULES
   These rules make the layout work well on tablets and
   mobile phones without adding more complexity.
   ----------------------------------------------------- */
@media (max-width: 860px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 725px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 4.1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    background: var(--panel);
    border: 1px solid var(--border);
    padding: 0.8rem;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* -----------------------------------------------------
   13. HERO REEL VIDEO 
   Stolen from previous portfolio project
   these were prependeded with the character '3'
   ----------------------------------------------------- */

   /* ===================================
   HOME PAGE STYLES
   =================================== */


   
/* Hero Section */
.t3hero {
    position: relative;
    width: 100%;
    height: clamp(360px, 100vh, 810px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t3hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.t3hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Play Button */
.t3play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.t3play-button:hover {
    transform: scale(1.1);
}

.play-button img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Video Modal */
.t3video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.t3video-modal.active {
    display: flex;
    opacity: 1;
}

.t3modal-content {
    position: relative;
    width: 90%;
    max-width: 1440px;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

/* Preloader Animation */
.t3preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
}


/* When hidden, preloader uses the .hidden utility */
.t3preloader.hidden { display: none !important; }


/* Spinner (single definition) */
.spinner {
  width: 2.2rem;
  height: 2.2rem;
  border: 4px solid rgba(255,255,255,0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 0.6rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Small safety: ensure preloader is on top of modal content */
.t3preloader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(0,0,0,0.9);
  color: var(--text);
  z-index: 20;
}

.t3modal-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Close Button */
.t3modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.0);
    border: none;
    color: #ffffff;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 20;
}

.t3modal-close:hover {
    background-color: #000;
    color: #0f0;
}

/* Utility to hide elements (used by JS) */
.hidden {
  display: none !important;
}


/* When modal is active, show it (JS will toggle aria-hidden and class) */
.t3video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* -------------------------
   about2. VIDEO EDGE WRAP
   - This wrapper allows the video to reach the viewport edges
     while constraining its maximum width to 1450px (as requested).
   - The wrapper is full width; the inner video fills the wrapper.
   ------------------------- */
.video-edge-wrap {
  /* full width so the video can touch the viewport edges */
  width: 100%;
  /* center the inner content when the viewport is wider than the cap */
  display: flex;
  justify-content: center;
  /* the inner max width is the cap (1450px) */
  padding-left: 0;
  padding-right: 0;
}

/* The actual video element is constrained by a centered inner container */
.edge-video {
  width: 100%;
  height: auto;
  /* object-fit: cover is already set in unified.css .video-frame,
     but we ensure it here for the edge-video variant */
  object-fit: cover;
  /* Constrain the visible width to 1450px at large screens */
  max-width: 1450px;
  /* Remove default border from some browsers */
  border: 0;
  display: block;
  max-width: 100%;
}

/* -------------------------
   about4. SMALL MEDIA / PANEL TWEAKS
   - Keep the sharp corners and neon accent; only small spacing tweaks here.
   ------------------------- */
.panel.media-frame img {
  border-radius: 0px;
  }

/* -------------------------
   about5. RESPONSIVE ADJUSTMENTS
   - Ensure the video cap and hero image behave on small screens.
   ------------------------- */
@media (max-width: 680px) {
  /* Make sure the hero text has comfortable padding on small screens */
  .hero-bg-image .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }


}
