@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@500;700;800&family=Ubuntu:wght@400;500;700&display=swap');

:root {
    /* Brand Colors */
    --bg-black: #080808;
    --text-white: #FFFFFF;
    --gold: #F5A623;
    --green: #22C55E;
    --blue: #38BDF8;
    --card-charcoal: #151B24;
    --text-muted: #9CA3AF;
    
    /* Functional Tokens */
    --paper: var(--bg-black);
    --panel: var(--card-charcoal);
    --card-bg: #151B24;
    --glass-border: rgba(255, 255, 255, 0.1);
    --line: rgba(255, 255, 255, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
    border: 2px solid var(--bg-black);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

body {
    margin: 0;
    font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
    color: var(--text-white);
    background: var(--bg-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--blue);
    transition: color 0.2s ease;
}

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

/* SVG & Icon Alignment Helper */
svg, .lucide-icon, i[data-lucide] {
    display: inline-block;
    vertical-align: middle;
    color: var(--blue);
}

/* Top Announcement Bar */
.top-bar {
    background: #06090d;
    border-bottom: 1px solid var(--glass-border);
    padding: 8px clamp(18px, 5vw, 70px);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.top-bar-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-bar-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
}

.top-bar-links a:hover {
    color: var(--gold);
}

/* Header Main Row & Clean Store Layout */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-black);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 clamp(18px, 5vw, 70px);
}

.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    width: 154px;
    height: auto;
    display: block;
}

.header-search-form {
    display: flex;
    flex: 1;
    max-width: 480px;
    position: relative;
}

.header-search-form input {
    width: 100%;
    padding: 10px 44px 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--card-charcoal);
    color: var(--text-white);
    font-size: 0.88rem;
}

.header-search-form button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    border: 0;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-search-form button svg {
    color: #0A0E14;
}

/* Combined Shopping Cart & Checkout Widget */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-widget-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.4);
    text-decoration: none;
    transition: all 0.2s ease;
}

.cart-widget-btn:hover {
    background: var(--green);
}

.cart-icon-box {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-widget-btn svg {
    color: var(--green);
}

.cart-widget-btn:hover svg {
    color: #ffffff;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--green);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 900;
}

.cart-widget-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cart-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
}

.cart-widget-btn:hover .cart-label {
    color: rgba(255, 255, 255, 0.85);
}

.cart-total-amount {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--green);
}

.cart-widget-btn:hover .cart-total-amount {
    color: #ffffff;
}

/* Clean Navigation Menu (Text Links Only) */
.site-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding: 10px 0;
}

.site-nav a {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text-white);
    border-bottom: 2px solid var(--gold);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

/* Toast Notification */
.cart-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 2000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 10px;
    background: var(--green);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.cart-toast svg {
    color: #ffffff;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
    gap: clamp(26px, 4vw, 54px);
    align-items: center;
    padding: clamp(52px, 7vw, 92px) clamp(18px, 4vw, 64px);
    color: var(--text-white);
    background: var(--bg-black);
}

.hero-copy {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    line-height: 1.12;
    font-weight: 900;
    color: var(--text-white);
    font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0;
}

h1 span {
    display: inline;
    color: var(--gold);
    text-transform: uppercase;
    font-size: inherit;
}

h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.2vw, 1.95rem);
    line-height: 1.18;
    font-weight: 800;
    color: var(--text-white);
    font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0;
}

.lead {
    max-width: 650px;
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Stat Cards */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.stat-card {
    padding: 18px 14px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: var(--card-charcoal);
}

.stat-card strong {
    display: block;
    color: var(--gold);
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 12px 26px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.button.gold, .button.primary {
    color: #0A0E14;
    background: var(--gold);
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
    font-weight: 900;
}

.button.gold:hover, .button.primary:hover {
    transform: translateY(-2px);
    background: #e0961f;
    color: #0A0E14;
}

.button.secondary {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--glass-border);
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-white);
}

.button.conversion {
    color: #ffffff;
    background: var(--green);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

.button.conversion:hover {
    transform: translateY(-2px);
    background: #16a34a;
    color: #ffffff;
}

.button.wide {
    width: 100%;
}

.hero-showcase {
    position: relative;
    z-index: 1;
}

.hero-featured-image {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: var(--card-charcoal);
}

.hero-featured-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-image-caption {
    position: absolute;
    bottom: 0;
    inset-x: 0;
    padding: 18px 22px;
    background: linear-gradient(180deg, transparent, rgba(10, 14, 20, 0.95));
}

.hero-image-caption p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Sections Setup */
.section-padding {
    padding: clamp(38px, 5vw, 58px) clamp(18px, 4vw, 56px);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 40px;
}

.section-heading p:not(.eyebrow) {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Services Section */
.services-section {
    background: var(--bg-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(280px, 1fr) );
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--card-charcoal);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--blue);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.service-features li::before {
    content: "✓";
    color: var(--blue);
    font-weight: 900;
}

.service-card .card-action {
    margin-top: auto;
}

/* About Section */
.about-section {
    background: var(--bg-black);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 48px;
    align-items: start;
}

.about-box {
    padding: 28px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--card-charcoal);
    margin-bottom: 20px;
}

.about-box h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(180px, 1fr) );
    gap: 14px;
    margin-top: 24px;
}

.value-pill {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 8px;
    background: var(--card-charcoal);
    border: 1px solid var(--glass-border);
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.88rem;
}

.value-pill strong {
    color: var(--blue);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.leader-card {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--card-charcoal);
}

.leader-photo {
    width: 100%;
    aspect-ratio: 4 / 4;
    object-fit: cover;
    object-position: center top;
}

.leader-info {
    padding: 24px;
}

.leader-role {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.leader-bio {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Projects Section */
.projects-section {
    background: var(--bg-black);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(320px, 1fr) );
    gap: 24px;
}

.project-card {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--card-charcoal);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
}

.project-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-body {
    padding: 24px;
}

.project-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(56, 189, 248, 0.15);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.project-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Events & Masterclass Section */
.events-section {
    background: var(--bg-black);
}

.events-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 36px;
    align-items: start;
}

.event-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 12px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 18px;
    color: var(--text-white);
    background: var(--card-charcoal);
    margin-top: 24px;
}

.event-panel > div {
    padding: 14px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.event-panel span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.event-panel strong {
    display: block;
    margin-top: 6px;
    color: var(--text-white);
    font-size: 1.1rem;
}

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

.date-tile {
    overflow: hidden;
    width: 60px;
    flex: 0 0 60px;
    border-radius: 8px;
    color: #0A0E14;
    background: #ffffff;
    text-align: center;
}

.date-tile span {
    padding: 3px 0;
    color: #ffffff;
    background: var(--gold);
    font-weight: 900;
    font-size: 0.75rem;
}

.date-tile strong {
    margin: 0;
    padding: 4px 0 6px;
    color: #0A0E14;
    font-size: 1.4rem;
}

.event-countdown {
    grid-row: span 2;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
}

.countdown-grid strong {
    display: grid;
    min-height: 60px;
    align-content: center;
    justify-items: center;
    margin: 0;
    border-radius: 6px;
    color: #0A0E14;
    background: #ffffff;
    font-size: 1.25rem;
}

.countdown-grid small {
    margin-top: 2px;
    color: #64748b;
    font-size: 0.65rem;
    font-weight: 800;
}

.event-price strong {
    color: var(--gold);
}

.event-payment strong {
    color: var(--green);
}

.published-events {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 42px;
}

.published-event-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: var(--card-charcoal);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.published-event-card:hover {
    transform: translateY(-3px);
    border-color: var(--blue);
}

.published-event-card img {
    width: 100%;
    height: 180px;
    max-height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    margin-bottom: 14px;
}

.product-card img,
.bw-product-card img,
.hero-featured-image img,
.project-img {
    max-height: 260px;
    object-fit: cover;
}

.leader-photo {
    width: 100%;
    max-height: 380px;
    height: 380px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

.bw-about-media img,
.about-image img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
}

.event-card-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.event-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 6px;
}

.event-meta-pill.date-pill {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    border: 1px solid rgba(250, 204, 21, 0.85);
    color: #07111f;
    box-shadow: 0 0 0 rgba(250, 204, 21, 0);
    animation: dateBadgePulse 2.4s ease-in-out infinite;
    font-weight: 900;
}

.event-meta-pill.days-pill {
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: var(--gold);
}

.event-meta-pill.seats-pill {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

@keyframes dateBadgePulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(250, 204, 21, 0);
    }
    50% {
        transform: translateY(-1px);
        box-shadow: 0 0 18px rgba(250, 204, 21, 0.5);
    }
}

.event-category-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.published-event-card span,
.podcast-body span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.published-event-card h2,
.podcast-body h2 {
    margin: 8px 0 10px;
}

.published-event-card p,
.podcast-body p,
.empty-state p {
    color: var(--text-muted);
}

.event-spec-list {
    display: grid;
    gap: 8px;
    margin: 16px 0;
    padding-left: 20px;
    color: var(--text-white);
}

.published-event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}

.published-event-actions strong {
    color: var(--gold);
    font-size: 1.25rem;
}

.event-inline-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 12px;
    width: 100%;
    margin-top: 14px;
}

.event-inline-form label {
    margin-bottom: 0;
}

.event-inline-form .button {
    grid-column: 1 / -1;
}

.compact-event-form {
    grid-template-columns: 1fr;
}

.event-product-details {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
    padding: 14px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
}

.event-product-details span {
    display: grid;
    gap: 2px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.event-product-details strong {
    color: var(--text-white);
    font-size: 0.72rem;
    text-transform: uppercase;
}

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

.podcast-toolbar {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    max-width: 780px;
    margin-bottom: 18px;
}

.podcast-search {
    flex: 1;
    margin: 0;
}

.podcast-search span {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.podcast-search input {
    height: 46px;
    border-radius: 999px;
    padding: 0 18px;
    background: #0d1117;
}

.podcast-search-button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: var(--gold);
    color: #080808;
    cursor: pointer;
}

.podcast-search-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.podcast-chip-row {
    display: flex;
    gap: 10px;
    margin: 0 0 24px;
    padding-bottom: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.podcast-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 8px 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 800;
}

.podcast-chip:hover,
.podcast-chip.is-active {
    background: #ffffff;
    color: #080808;
}

.podcast-chip span {
    color: inherit;
    opacity: 0.7;
    font-size: 0.74rem;
}

.podcast-results-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px 16px;
    justify-content: flex-start;
}

.podcast-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    max-width: none;
    width: 100%;
    transition: transform 0.22s ease;
}

.podcast-card:hover {
    transform: translateY(-3px);
}

.video-player-shell {
    overflow: hidden;
    width: 100%;
    height: auto;
    min-height: 170px;
    max-height: none;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 10px;
    background: #000000;
    margin-bottom: 12px;
}

.video-player-shell iframe,
.video-player-shell video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.podcast-body h2 {
    font-size: 1.02rem;
    line-height: 1.35;
}

.podcast-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 0.92rem;
}

.public-pagination {
    justify-content: center;
    margin-top: 34px;
}

.public-pagination .pagination-actions {
    justify-content: center;
}

.empty-state {
    padding: 34px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--card-charcoal);
}

.home-banner-image {
    overflow: hidden;
    min-height: 430px;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: var(--card-charcoal);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.home-banner-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    aspect-ratio: 1536 / 1074;
    object-fit: cover;
    display: block;
}

.project-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.project-detail-hero {
    display: grid;
    grid-template-columns: minmax(320px, 0.52fr) minmax(0, 0.48fr);
    gap: 34px;
    align-items: center;
    padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 70px);
    border-bottom: 1px solid var(--glass-border);
}

.project-detail-hero img {
    width: 100%;
    aspect-ratio: 1536 / 1074;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--card-charcoal);
}

.project-detail-hero h1 {
    margin: 12px 0 16px;
}

.project-detail-hero p {
    color: var(--text-muted);
    font-size: 1.02rem;
}

.project-detail-meta,
.project-media-grid {
    display: grid;
    gap: 14px;
}

.project-detail-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 22px 0;
}

.project-detail-meta span {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    color: var(--text-muted);
}

.project-detail-meta strong {
    color: var(--text-white);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.project-region-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
    gap: 20px;
    align-items: stretch;
    border-bottom: 1px solid var(--glass-border);
}

.project-region-panel,
.project-ongoing-panel,
.project-story-grid article {
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255,255,255,0.035);
}

.project-region-panel {
    grid-column: 1 / -1;
    padding: clamp(22px, 4vw, 34px);
    background:
        linear-gradient(135deg, rgba(245, 166, 35, 0.16), rgba(12, 17, 24, 0.94)),
        var(--card-charcoal);
}

.project-region-panel h2,
.project-ongoing-panel h2 {
    margin: 8px 0 12px;
}

.project-region-panel p,
.project-story-grid p,
.project-ongoing-panel li {
    color: var(--text-muted);
}

.project-region-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.project-region-stats span {
    padding: 9px 12px;
    border: 1px solid rgba(245, 166, 35, 0.35);
    border-radius: 999px;
    background: rgba(245, 166, 35, 0.1);
    color: var(--text-white);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.project-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.project-story-grid article {
    padding: 20px;
}

.project-story-grid h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.project-ongoing-panel {
    padding: 22px;
}

.project-ongoing-panel ul {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.project-ongoing-panel li {
    position: relative;
    padding-left: 22px;
}

.project-ongoing-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 16px rgba(245, 166, 35, 0.7);
}

.project-media-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.project-media-grid img {
    width: 100%;
    aspect-ratio: 1536 / 1074;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: block;
}

.project-video-link {
    display: grid;
    align-content: center;
    min-height: 180px;
    padding: 22px;
    border: 1px solid rgba(245, 166, 35, 0.35);
    border-radius: 8px;
    background: rgba(245, 166, 35, 0.1);
    text-decoration: none;
}

.project-video-link span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.project-video-link strong {
    color: var(--text-white);
    font-size: 1.2rem;
}

/* Forms & Inputs */
.checkout-form {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 30px;
    background: var(--card-charcoal);
}

.form-heading {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.form-heading span {
    color: var(--text-muted);
    font-weight: 800;
}

.form-heading strong {
    color: var(--gold);
    font-size: 1.3rem;
}

label {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}

label span {
    color: var(--text-white);
    font-size: 0.88rem;
    font-weight: 700;
}

input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text-white);
    background: #0A0E14;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--blue);
    outline: 2px solid rgba(56, 189, 248, 0.3);
}

.fine-print {
    margin: 12px 0 0;
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* Store & Shop Tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    background: var(--card-charcoal);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold);
    color: #0A0E14;
    border-color: var(--gold);
    font-weight: 800;
}

/* Store Grid */
.store-section {
    background: var(--bg-black);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 330px));
    gap: 24px;
    justify-content: flex-start;
}

.product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 22px;
    max-width: 330px;
    width: 100%;
    background: var(--card-charcoal);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
}

.product-type {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-card h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.product-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--glass-border);
}

.product-price {
    color: var(--text-white);
    font-weight: 900;
    font-size: 1.15rem;
}

/* Contact Us Section */
.contact-section {
    background: var(--bg-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.2fr);
    gap: 44px;
}

.contact-info {
    display: grid;
    gap: 18px;
}

.contact-channel {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--card-charcoal);
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-channel:hover {
    border-color: var(--blue);
}

.channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--blue);
    flex: 0 0 48px;
}

.channel-details strong {
    display: block;
    color: var(--text-white);
    font-size: 1rem;
}

.channel-details span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* Modal Dialog Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 14, 20, 0.88);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.modal-active {
    display: flex;
}

.modal-content {
    position: relative;
    width: min(100%, 520px);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 32px;
    background: var(--card-charcoal);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: 0;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--text-white);
}

.form-alert {
    display: none;
    padding: 12px;
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid var(--green);
    color: var(--green);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* Admin Dashboard UI */
.admin-body {
    min-height: 100vh;
    padding-left: 280px;
    background: var(--bg-black);
    color: var(--text-white);
}

.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    width: 280px;
    padding: 24px 20px;
    color: var(--text-white);
    background: #06090d;
    border-right: 1px solid var(--glass-border);
}

.admin-brand {
    margin-bottom: 32px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #ffffff;
}

.admin-brand img {
    width: 154px;
}

.admin-side-nav {
    display: grid;
    gap: 8px;
}

.admin-side-nav a,
.admin-side-nav button {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    width: 100%;
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text-muted);
    background: transparent;
    font: inherit;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-side-nav a.active,
.admin-side-nav a:hover,
.admin-side-nav button:hover {
    color: var(--text-white);
    background: rgba(245, 166, 35, 0.12);
    border-left: 3px solid var(--gold);
}

.admin-side-nav a.active svg {
    color: var(--gold);
}

.admin-powered {
    margin: auto 0 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.admin-main {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 54px) clamp(18px, 4vw, 42px);
}

.admin-title {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.admin-title-split {
    align-items: flex-end;
}

.admin-subtitle {
    margin-top: 8px;
    max-width: 660px;
    color: var(--text-muted);
    font-weight: 650;
}

.admin-actions,
.row-actions,
.pagination-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.admin-metric-grid article {
    padding: 18px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.admin-metric-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-metric-grid strong {
    color: var(--text-white);
    font-size: 1.8rem;
    line-height: 1;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.metrics article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--card-charcoal);
}

.metrics span {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.metrics strong {
    display: block;
    margin-top: 4px;
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.metrics-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: var(--gold);
}

.admin-filters {
    display: grid;
    grid-template-columns: minmax(150px, 200px) minmax(240px, 1fr) minmax(100px, 130px) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 22px;
    padding: 20px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--card-charcoal);
}

.admin-data-toolbar {
    grid-template-columns: minmax(150px, 200px) minmax(240px, 1fr) minmax(92px, 110px) auto auto;
}

.table-toolbar {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.table-shell {
    overflow-x: auto;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--card-charcoal);
}

.data-table-shell {
    overflow: hidden;
}

.data-table-shell table {
    min-width: 980px;
}

.data-table th[data-sort] {
    cursor: pointer;
    user-select: none;
}

.data-table th[data-sort]::after {
    content: " \2195";
    color: var(--gold);
    opacity: 0.65;
}

.data-table th[data-direction="asc"]::after {
    content: " \2191";
    opacity: 1;
}

.data-table th[data-direction="desc"]::after {
    content: " \2193";
    opacity: 1;
}

.admin-product-cell {
    display: flex;
    gap: 12px;
    align-items: center;
}

.admin-product-cell img {
    width: 64px;
    height: 52px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
}

.admin-product-cell strong {
    display: block;
    color: var(--text-white);
}

.admin-product-cell small,
td small {
    color: var(--text-muted);
}

.money-text {
    color: var(--gold);
}

.strike-text {
    color: var(--text-muted);
    text-decoration: line-through;
}

.small-button {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 0.86rem;
}

.danger-button {
    color: #ef4444;
}

.button.disabled {
    pointer-events: none;
    opacity: 0.45;
}

.empty-table {
    padding: 42px;
    text-align: center;
    color: var(--text-muted);
}

.pagination-bar {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-weight: 800;
}

table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
}

th, td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--glass-border);
    text-align: left;
    vertical-align: middle;
    font-size: 0.92rem;
}

th {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    background: rgba(10, 14, 20, 0.6);
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.status-pill.paid { color: var(--green); background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3); }
.status-pill.pending { color: var(--gold); background: rgba(245, 166, 35, 0.15); border: 1px solid rgba(245, 166, 35, 0.3); }
.status-pill.failed { color: #f87171; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); }

.payment-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.payment-detail-grid span {
    display: grid;
    gap: 2px;
    padding: 7px 9px;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    font-size: 0.78rem;
}

.payment-detail-grid strong {
    color: var(--text-white);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.success-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(34,197,94,0.15);
    border: 1px solid #22c55e;
    color: #4ade80;
    font-weight: 700;
}

.danger-alert {
    border-color: #ef4444;
    color: #fca5a5;
    background: rgba(239,68,68,0.12);
}

.settings-form {
    display: grid;
    gap: 20px;
}

.advanced-fields {
    padding: 14px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    background: rgba(255,255,255,0.025);
}

.advanced-fields summary {
    cursor: pointer;
    color: var(--gold);
    font-weight: 900;
}

.advanced-fields .two-col {
    margin-top: 14px;
}

.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 32px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(12px);
}

.admin-modal.is-open {
    display: flex;
}

.admin-modal-panel {
    width: min(980px, 100%);
    border: 1px solid rgba(245, 166, 35, 0.32);
    border-radius: 16px;
    background: #0d1117;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.admin-modal-header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px;
    border-bottom: 1px solid var(--glass-border);
}

.admin-modal-header h2 {
    margin: 0;
    font-size: 2.2rem;
}

.modal-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-white);
    background: rgba(255,255,255,0.05);
    cursor: pointer;
}

.modal-product-form {
    padding: 22px;
}

.modal-product-form .settings-section {
    padding: 0;
    border: 0;
    background: transparent;
}

.settings-section {
    padding: 22px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--card-charcoal);
}

.settings-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 1.3rem;
}

.admin-image-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin: 12px 0 18px;
}

.admin-image-remove {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255,255,255,0.035);
}

.admin-image-remove img {
    width: 72px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    background: #000;
}

.admin-image-remove span {
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-image-remove input {
    justify-self: start;
}

.admin-image-remove strong {
    color: var(--gold);
    font-size: 0.76rem;
}

.two-col,
.three-col {
    display: grid;
    gap: 16px;
}

.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.three-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Footer */
.site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 40px clamp(18px, 5vw, 70px) 24px clamp(18px, 5vw, 70px);
    color: var(--text-muted);
    background: var(--bg-black);
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--blue);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--gold);
}

/* BlackWiFi 2026 Landing Redesign */
.top-bar {
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0;
    background: #080808;
}

.site-header {
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(14px);
}

.site-nav a,
.cart-label,
.eyebrow,
.bw-kicker {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0;
}

.bw-home {
    background:
        radial-gradient(circle at 75% 0%, rgba(245,166,35,0.13), transparent 34rem),
        radial-gradient(circle at 10% 38%, rgba(56,189,248,0.08), transparent 28rem),
        #080808;
}

.bw-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
    padding: clamp(26px, 4vw, 44px) clamp(18px, 5vw, 72px) clamp(48px, 6vw, 76px);
    border-bottom: 1px solid var(--glass-border);
}

.bw-hero-copy {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 1180px;
}

.bw-hero-copy h1 {
    max-width: 780px;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 900;
}

.bw-hero-copy h1 span {
    color: var(--gold);
    font-size: inherit;
}

.bw-kicker {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bw-lead {
    max-width: 680px;
    margin: 18px 0 0;
    color: #d7dee8;
    font-size: 1.02rem;
}

.bw-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.bw-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 38px;
    border: 1px solid var(--glass-border);
    background: rgba(255,255,255,0.03);
}

.bw-stats article {
    padding: 18px;
    border-right: 1px solid var(--glass-border);
}

.bw-stats article:last-child {
    border-right: 0;
}

.bw-stats strong {
    display: block;
    color: var(--gold);
    font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.bw-stats span {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bw-hero-panel {
    position: relative;
    min-height: 560px;
    border: 1px solid rgba(245,166,35,0.34);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(245,166,35,0.18), rgba(56,189,248,0.08), rgba(255,255,255,0.02));
    overflow: hidden;
}

.bw-hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(8,8,8,0.86));
}

.bw-hero-panel img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.08);
}

.home-banner-slider,
.home-video-banner {
    position: relative;
    grid-column: 1 / -1;
    width: 100%;
    min-height: clamp(520px, 68vh, 760px);
    border: 1px solid rgba(245,166,35,0.34);
    border-radius: 8px;
    overflow: hidden;
    background: #111820;
}

.home-video-banner video {
    width: 100%;
    height: clamp(520px, 68vh, 760px);
    display: block;
    object-fit: cover;
    background: #000000;
}

.home-video-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 55%, rgba(8,8,8,0.56));
}

.home-banner-track,
.home-banner-slide {
    position: absolute;
    inset: 0;
}

.home-banner-slide {
    opacity: 0;
    transition: opacity 700ms ease;
}

.home-banner-slide.is-active { opacity: 1; }

.home-banner-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(8,8,8,0.7));
}

.home-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner-arrow,
.home-banner-dot {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.32);
    color: #fff;
    background: rgba(8,8,8,0.68);
    cursor: pointer;
}

.home-banner-arrow {
    top: 50%;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: translateY(-50%);
}

.home-banner-arrow:hover { background: var(--gold); color: #080808; }
.home-banner-prev { left: 16px; }
.home-banner-next { right: 16px; }

.home-banner-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 18px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.home-banner-dot {
    position: static;
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
}

.home-banner-dot.is-active { width: 26px; border-radius: 8px; background: var(--gold); border-color: var(--gold); }

.bw-signal-card {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.24);
    background: rgba(8,8,8,0.82);
    border-radius: 8px;
}

.bw-signal-card span,
.bw-signal-card small {
    display: block;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bw-signal-card strong {
    display: block;
    margin: 8px 0;
    color: #ffffff;
    font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
}

.bw-section {
    padding: clamp(40px, 5vw, 64px) clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--glass-border);
}

.bw-section-head {
    max-width: 860px;
    margin-bottom: 28px;
}

.bw-section-head h2,
.bw-about-copy h2,
.bw-cta h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.15;
    max-width: 860px;
}

.bw-split-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    max-width: none;
}

.bw-services-grid,
.bw-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bw-service-card,
.bw-product-card {
    min-height: 280px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.bw-service-card:hover,
.bw-product-card:hover,
.bw-project-list article:hover {
    transform: translateY(-4px);
    background: rgba(245,166,35,0.1);
    border-color: rgba(245,166,35,0.58);
}

.bw-service-card span,
.bw-product-card span,
.bw-project-list span {
    color: var(--gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bw-service-card h3,
.bw-product-card h3,
.bw-project-list h3 {
    margin-top: 12px;
    color: #ffffff;
    font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
    font-size: 1.25rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.bw-service-card p,
.bw-project-list p,
.bw-about-copy p {
    color: #c4cad4;
}

.bw-about {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.bw-about-media {
    position: relative;
    min-height: 560px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
}

.bw-about-media img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center top;
}

.bw-since-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    border: 1px solid #080808;
    background: var(--gold);
    color: #080808;
    text-align: center;
    border-radius: 8px;
}

.bw-since-badge span {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    text-transform: uppercase;
}

.bw-since-badge strong {
    display: block;
    font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.bw-about-copy p {
    max-width: 760px;
    font-size: 1.05rem;
}

.bw-project-list {
    display: grid;
    border-top: 1px solid var(--glass-border);
}

.bw-project-list article {
    display: grid;
    grid-template-columns: 150px minmax(260px, 1fr) minmax(180px, auto);
    gap: 20px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.22s ease, background 0.22s ease;
    border-radius: 8px;
}

.bw-project-list p {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    text-transform: uppercase;
}

.bw-product-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    margin-bottom: 18px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
}

.bw-product-card strong {
    display: block;
    margin: 12px 0;
    color: var(--gold);
    font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
}

.bw-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 72px);
    background: var(--gold);
    color: #080808;
}

.bw-cta .bw-kicker,
.bw-cta h2 {
    color: #080808;
}

.bw-cta .button.primary {
    background: #080808;
    color: #ffffff;
    box-shadow: none;
}

.bw-cta .button.secondary {
    background: #ffffff;
    color: #080808;
    border-color: #080808;
}

.bw-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 1fr));
    gap: 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 32px;
    text-align: left;
}

.bw-footer-grid h4 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.bw-footer-grid a,
.bw-footer-grid span {
    display: block;
    margin-bottom: 9px;
    color: var(--text-muted);
    text-decoration: none;
}

.bw-footer-brand img {
    width: 150px;
    margin-bottom: 14px;
}

.bw-footer-brand p {
    max-width: 390px;
    margin: 0;
    color: var(--text-muted);
}

.bw-footer-bottom {
    width: 100%;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
}

/* Responsive Rules */
@media (max-width: 1120px) {
    .header-main-row {
        flex-wrap: wrap;
    }
    .header-search-form {
        order: 3;
        max-width: 100%;
        width: 100%;
    }
    .hero {
        grid-template-columns: 1fr;
        padding-top: 44px;
    }
    .events-wrapper, .about-grid, .contact-grid, .checkout-page-grid, .metrics, .admin-filters, .admin-metric-grid, .two-col, .three-col, .published-event-card, .podcast-card, .project-detail-hero, .project-region-section, .project-story-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .admin-body {
        padding-left: 0;
    }
    .admin-sidebar {
        position: static;
        width: auto;
    }
    .admin-title,
    .admin-title-split,
    .pagination-bar {
        align-items: stretch;
        flex-direction: column;
    }
    .admin-actions,
    .pagination-actions {
        width: 100%;
    }
    .admin-actions .button,
    .pagination-actions .button {
        flex: 1;
    }
    .admin-modal {
        padding: 14px;
    }
    .admin-modal-header {
        padding: 18px;
    }
    .modal-product-form {
        padding: 18px;
    }
    .bw-about {
        grid-template-columns: 1fr;
    }
    .bw-hero-panel,
    .bw-hero-panel img,
    .home-banner-slider,
    .home-video-banner,
    .home-video-banner video,
    .bw-about-media,
    .bw-about-media img {
        min-height: 420px;
    }
    .bw-services-grid,
    .bw-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bw-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bw-section-head h2,
    .bw-about-copy h2,
    .bw-cta h2 {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .mobile-toggle {
        display: block;
    }
    .site-nav {
        display: none;
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
    }
    .site-nav.nav-open {
        display: flex;
    }
    .subpage-header {
        min-height: 150px;
        padding: 26px 18px;
        align-items: flex-start;
    }
    .event-panel {
        grid-template-columns: 1fr;
    }
    .published-event-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .published-event-actions .button {
        width: 100%;
    }
    .event-inline-form,
    .project-detail-meta {
        grid-template-columns: 1fr;
    }
    .project-card-actions {
        flex-direction: column;
    }
    .project-card-actions .button {
        width: 100%;
    }
    .podcast-toolbar {
        align-items: stretch;
        flex-wrap: wrap;
    }
    .podcast-search {
        flex: 1 1 100%;
    }
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    h1 {
        font-size: 3.2rem;
    }
    h1 span {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.1rem;
    }
    .bw-hero {
        min-height: auto;
        padding-top: 24px;
    }
    .bw-hero-copy h1 {
        font-size: 2.7rem;
    }
    .bw-stats,
    .bw-services-grid,
    .bw-product-grid,
    .bw-footer-grid {
        grid-template-columns: 1fr;
    }
    .bw-stats article {
        border-right: 0;
        border-bottom: 1px solid var(--glass-border);
    }
    .bw-stats article:last-child {
        border-bottom: 0;
    }
    .bw-split-head,
    .bw-cta {
        align-items: flex-start;
        flex-direction: column;
    }
    .bw-project-list article {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .bw-section-head h2,
    .bw-about-copy h2,
    .bw-cta h2 {
        font-size: 3.4rem;
    }
    .bw-about-media,
    .bw-about-media img {
        min-height: 430px;
    }
    .bw-since-badge {
        width: 118px;
        height: 118px;
    }
    .bw-since-badge strong {
        font-size: 3.3rem;
    }
}

/* Top Subpage Header Thumbnail Banner */
.subpage-header {
    position: relative;
    min-height: 180px;
    padding: 34px clamp(18px, 5vw, 70px);
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(56, 189, 248, 0.05), #080808);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.subpage-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(56, 189, 248, 0.05), #080808);
    background-position: center;
    background-size: cover;
    pointer-events: none;
}

.subpage-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at right center, rgba(245, 166, 35, 0.16), transparent 70%);
    pointer-events: none;
}

.subpage-header-thumb {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 12px;
    border: 1px solid rgba(245, 166, 35, 0.35);
    background: rgba(15, 23, 36, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.subpage-header-thumb img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.subpage-header-thumb svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.subpage-header-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.subpage-breadcrumb {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.subpage-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.subpage-breadcrumb a:hover {
    color: var(--gold);
}

.subpage-header h1 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    margin: 0;
    line-height: 1.15;
}

.subpage-header p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 760px;
}

@media (prefers-reduced-motion: reduce) {
    .event-meta-pill.date-pill {
        animation: none;
    }
}

/* Simulated NOC Video Banner Component */
.noc-video-banner {
    position: relative;
    width: 100%;
    border: 1px solid rgba(245, 166, 35, 0.35);
    border-radius: 8px;
    overflow: hidden;
    background: #040609;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    min-height: clamp(520px, 68vh, 760px);
}

.noc-video-canvas {
    width: 100%;
    height: clamp(520px, 68vh, 760px);
    display: block;
    background: radial-gradient(circle at center, #09121d 0%, #030508 100%);
}

.noc-video-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
    pointer-events: none;
}

.noc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.85);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 800;
}

.noc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
    animation: blink 1.5s infinite;
}

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

.noc-controls {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 12px 18px;
    border-radius: 8px;
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}

.noc-play-btn {
    background: var(--gold);
    color: #080808;
    border: 0;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 900;
    transition: transform 0.2s ease;
}

.noc-play-btn:hover {
    transform: scale(1.08);
}

.noc-stream-info {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-white);
}

.noc-stream-info span {
    color: var(--text-muted);
}

/* Event Registration Modal Multi-Step Styles */
.event-reg-modal {
    width: min(100%, 540px);
}

.event-reg-steps {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 14px;
}

.event-reg-step-pill {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.76rem;
    font-weight: 700;
}

.event-reg-step-pill.active {
    background: rgba(245, 166, 35, 0.18);
    color: var(--gold);
    border: 1px solid rgba(245, 166, 35, 0.4);
}


.service-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, 0.22);
    background: rgba(15, 23, 42, 0.72);
}

.service-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.service-card:hover .service-thumbnail img {
    transform: scale(1.04);
    filter: saturate(1.08);
}
