* { margin: 0; padding: 0; box-sizing: border-box; }
      html, body { width: 100%; overflow-x: clip; }

      :root{
        --bg: #090c13;
        --text: rgba(244, 248, 255, 0.96);
        --muted: rgba(234, 242, 255, 0.72);
        --muted2: rgba(234, 242, 255, 0.45);

        --border: 1px solid rgba(255, 255, 255, 0.08);

        --accentA: #1aaaff;
        --accentB: #3b82f6;
        --accentC: #ff9800;
        --accentD: #6c5793;

        --maxw: 1120px;
        --r-xl: 26px;
        --r-lg: 18px;

        --shadow: 0 18px 60px rgba(0, 0, 0, 0.40);
      }

      body{
        background: var(--bg);
        color: var(--text);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
        min-height: 100vh;
      }

      .anton { font-family: "Anton", sans-serif; }
      .rf { font-family: "Roboto Flex", sans-serif; }

      /* Top bar */
      .topbar{
        position: fixed;
        left: 0; right: 0; top: 0;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px;
        z-index: 50;

        background: rgba(9, 12, 19, 0.55);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

        .drawerList a {
            text-decoration: none;
            color: inherit;
        }

        .call_blue {
            color: var(--accentA);
        }

      .logo{
        width: 200px;
        height: 40px;
        background-image: url(../images/bsv_logo.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: 0 50%;
        opacity: 0.95;
      }

        .login_logo {max-width:200px; position:absolute; top:-42px; left: 50%; transform: translate(-50%);}
        @media (max-width:600px) {
            .login_logo {max-width:160px; left:0; transform:none;}
        }

        .footer_logo {
            width: 100%;
            max-width: 250px;
        }

      .iconBtn{
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        cursor: pointer;
        user-select: none;

        color: rgba(234, 242, 255, 0.82);
        border: 1px solid rgba(255, 255, 255, 0.10);
        background: rgba(255, 255, 255, 0.03);
        transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
      }

      .iconBtn:hover{
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.14);
        color: rgba(234, 242, 255, 0.95);
      }

      .iconBtn:active { transform: translateY(0); }

      /* Off-canvas menu */
      .overlay{
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.70);
        opacity: 0;
        pointer-events: none;
        transition: opacity 200ms ease;
        z-index: 40;
      }

        .neural-gradient-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    border: var(--border);
    background: #000; /* Deep black foundation */
    padding: 60px 40px;
}

.neural-gradient-panel::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    /* Deepened Palette: Blues and Magentas concentrated at the top/sides */
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 80, 255, 0.6) 0%, transparent 40%),  /* Top Left Blue */
        radial-gradient(circle at 80% 15%, rgba(200, 0, 100, 0.5) 0%, transparent 35%), /* Top Right Magenta */
        radial-gradient(circle at 50% 30%, rgba(70, 0, 180, 0.4) 0%, transparent 50%),  /* Subtle Center Purple */
        radial-gradient(circle at 15% 45%, rgba(0, 150, 255, 0.3) 0%, transparent 30%); /* Mid-left Cyan Glow */
    
    /* THE VIGNETTE: This forces the fade to black at the bottom */
    -webkit-mask-image: linear-gradient(to bottom, black 20%, rgba(0,0,0,0.5) 60%, transparent 95%);
    mask-image: linear-gradient(to bottom, black 20%, rgba(0,0,0,0.5) 60%, transparent 95%);

    filter: blur(70px); /* Heavier blur for a smoother "ink in water" feel */
    opacity: 0.7;
    z-index: 0;
    animation: slowDrift 18s infinite alternate ease-in-out;
}

.neural-gradient-panel > * {
    position: relative;
    z-index: 1; 
}

@keyframes slowDrift {
    from { transform: translate(-3%, -5%) rotate(0deg); }
    to { transform: translate(3%, 5%) rotate(2deg); }
}
@keyframes slowDrift {
    from { transform: translate(-2%, -2%) rotate(0deg); }
    to { transform: translate(2%, 2%) rotate(3deg); }
}

        @keyframes slowDrift {
            from { transform: rotate(0deg) scale(1); }
            to { transform: rotate(5deg) scale(1.1); }
        }

      .overlay.is-active { opacity: 1; pointer-events: auto; }

      .drawer{
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 320px;
        transform: translateX(100%);
        transition: transform 200ms ease;
        z-index: 60;

        background: rgba(14, 20, 25, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
      }

      .drawer.is-open { transform: translateX(0); }
      body.menu-open { overflow: hidden; }

      .drawerHeader{
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .drawerHeader img { height: 64px; opacity: 0.95; }

      .drawerList { padding: 10px 8px; }
      .drawerItem{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 14px;
        border-radius: 14px;
        cursor: pointer;
        color: rgba(234, 242, 255, 0.78);
        transition: background 140ms ease, color 140ms ease;
      }

      .drawerItem:hover { background: rgba(26, 170, 255, 0.16); color: rgba(244, 248, 255, 0.98); }
      .drawerItem .left { display: inline-flex; align-items: center; gap: 12px; }
      .drawerItem i { opacity: 0.9; }

      .drawerDivider{
        margin: 8px 10px 6px 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0.9;
      }

      .drawerLabel{
        padding: 10px 14px 6px 14px;
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(234, 242, 255, 0.45);
      }

      /* Page layout */
      .page { padding-top: 86px; }
      .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

      .hero{
        position: relative;
        overflow: hidden;
        padding: 46px 0 36px 0;
          margin-top: 50px;
      }

      .heroGlow{
        position: absolute;
        inset: -120px;
        pointer-events: none;
        background:
          radial-gradient(760px 320px at 16% 28%, rgba(26, 170, 255, 0.22), rgba(26, 170, 255, 0) 62%),
          radial-gradient(820px 360px at 78% 12%, rgba(168, 85, 247, 0.16), rgba(168, 85, 247, 0) 60%),
          radial-gradient(700px 320px at 60% 78%, rgba(59, 130, 246, 0.14), rgba(59, 130, 246, 0) 60%),
          radial-gradient(520px 260px at 46% 92%, rgba(245, 158, 11, 0.10), rgba(245, 158, 11, 0) 62%);
      }

      .heroGrid{
        position: relative;
        display: grid;
        grid-template-columns: 420px 1fr;
        gap: 44px;
        align-items: center;
      }

      .h1{
        font-family: "Anton", sans-serif;
        font-size: clamp(44px, 6vw, 110px);
        line-height: 1.05;
        letter-spacing: 0.01em;
        text-transform: uppercase;
      }

        .the_bible {
            font-size: inherit;
        }



    .sub_head {
        font-family: "Roboto Flex", sans-serif;
        font-size: clamp(27px, 2.5vw, 45px);
        line-height: 1.05;
        letter-spacing: 0.01em;
        text-transform: uppercase;
    }
    
        @media (max-width:600px) {
            .sub_head {text-align: center;}
            .the_bible {
                font-size: 66px;
            }
        }

        .main_heading_mob {
            display: none;
        }
        .main_heading {
            display: block;
        }

      .sub{
        margin-top: 14px;
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.55;
        color: var(--muted);
        max-width: 56ch;
        font-weight: 200;
      }

        /* Edge-to-Edge Carousel Breakout */
      .full-bleed-carousel {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: #000;
            padding: 60px 0;
            overflow: hidden;
            border-top: 1px solid rgba(50,100,120,0.45);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        @media (max-width: 600px){
            .full-bleed-carousel {
                padding: 30px 0;
            }
        }

      .ctaRow{ margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; }

      .btn{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        padding: 0 16px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.10);
        background: rgba(255, 255, 255, 0.04);
        color: rgba(244, 248, 255, 0.92);
        text-decoration: none;
        font-weight: 650;
        transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
      }

      .btn:hover{
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.14);
      }

      .btnPrimary{
        background: linear-gradient(90deg, rgba(26, 170, 255, 0.95), rgba(59, 130, 246, 0.95));
        border-color: rgba(255, 255, 255, 0.12);
        color: #071018;
      }

      .app_store_btn{
        max-width: 200px;
        width: 100%;
        height: auto;
        cursor: pointer;
        transition: transform 140ms ease, opacity 140ms ease;
      }

      .app_store_btn:hover{
        transform: translateY(-2px);
        opacity: 0.9;
      }

      .app_store_btn:active{
        transform: translateY(0);
      }

      /* Minimal phone placeholder - half phone */
      .phoneHalf{
        position: relative;
        width: 100%;
        max-width: 368px;
        height: 600px;
        //background: rgba(255, 255, 255, 0.05);
        //box-shadow: var(--shadow);
        overflow: hidden;
        -webkit-border-top-left-radius: 40px;
        -webkit-border-top-right-radius: 40px;
        -moz-border-radius-topleft: 40px;
        -moz-border-radius-topright: 40px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
          box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
      }

      .phoneCut{
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 74%;
        border-right: 1px solid rgba(255, 255, 255, 0.10);
        //background: rgba(0, 0, 0, 0.22);
      }

      .heroVideo{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        z-index: 1;
      }

      /* Sections */
      .section{ padding: 70px 0; }
      .sectionTight{ padding: 56px 0; }

      .kicker{
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--muted2);
      }

      .h2{
        //margin-top: 10px;
        font-size: clamp(36px, 3.3vw, 55px);
        line-height: 0.95;
        letter-spacing: -0.03em;
          
        font-family: "Saira", sans-serif;
        font-optical-sizing: auto;
        font-weight: 900;
        font-style: normal;
        font-variation-settings:
        "wdth" 800;
          
        //text-transform: uppercase;
      }

      .p{
        margin-top: 14px;
        max-width: 72ch;
        font-size: 18px;
        line-height: 1.75;
        color: var(--muted);
        font-weight: 200;
      }

      .split{
        display: grid;
        grid-template-columns: 1fr 520px;
        gap: 34px;
        align-items: center;
      }
        
        .splitVid{
        display: grid;
        grid-template-columns: 1fr 310px;
        gap: 34px;
        align-items: center;
      }

      .splitReverse{
        grid-template-columns: 520px 1fr;
      }

      /* Minimal blocks */
      .block {
        border-radius: var(--r-xl);
        border: var(--border);
        background: rgba(255, 255, 255, 0.03);
        box-shadow: var(--shadow);
        overflow: hidden;
      }

.call_box {
    background: linear-gradient(135deg, rgba(26,170,255,0.08) 0%, rgba(59,130,246,0.04) 100%); border: 1px solid rgba(26,170,255,0.2); border-radius: 12px; padding: 30px; margin: 40px -40px;
}

    @media (max-width: 600px){
        .call_box {padding: 20px;margin: 30px -10px;}
    }

    .block_blank{
    }

      .blockPad { padding: 22px; }

      .mediaSolid{
        position: relative;
        height: 320px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
      }

      .mediaSolid.tall { height: 400px; }
        
        .mediaSolid.lg { height: 470px; }
        
        .mediaSolid.xlg { height: 470px; }

      .shepherdVideo{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 20px;
      }
        
        .shepherdVideoContain, .shepherdVideoCover {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        border-radius: 20px;
      }

        .shepherdVideoContain {
            float: right;
            max-width: 280px;
            margin: 30px 0 20px 30px;
        }
        @media (max-width: 600px){
            .shepherdVideoContain {
                float: none;
                margin: 30px auto;
            }
        }

        
        .shepherdVideoCover {
        object-fit: cover;
      }

      .shepherd_logo{
        max-width: 600px;
        margin: 20px 20px 40px -20px;
      }

      .shepherd_logo img{
        width: 100%;
        height: auto;
        display: block;
      }

      .verseQuestionImg{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
      }

      /* Full-width color bars */
      .bar{
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }

      .barA{
        background: linear-gradient(90deg, rgba(26, 170, 255, 0.12), rgba(168, 85, 247, 0.10));
      }

      .barB{
        background: linear-gradient(90deg, rgba(168, 85, 247, 0.10), rgba(245, 158, 11, 0.08));
      }

      /* Pillars */
      .pillars{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 22px;
      }

      .pillar{
        padding: 20px;
        border-radius: var(--r-lg);
        border: var(--border);
        //background: rgba(255, 255, 255, 0.02);
        background: var(--accentB);
      }

      .pillarTitle{ 
          font-weight: 820;
          font-family: "Saira", sans-serif;
          letter-spacing: 0.01em; 
          font-size: 2em;
          line-height: 1.2;
        }

      .pillarText{ 
          margin-top: 10px; 
          color: var(--muted); 
          line-height: 1.3; 
          font-size: 18px; 
        }
        
        .pillar_med {
            height: 250px;
            overflow: hidden;
            background-color: #000;
            margin: -10px -10px 20px -10px;
            -webkit-border-top-left-radius: 10px;
            -webkit-border-top-right-radius: 10px;
            -moz-border-radius-topleft: 10px;
            -moz-border-radius-topright: 10px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            background-position: 50% 0;
            background-size:cover;
        }

      /* Art carousel */
      .carouselWrap{
        padding: 20px 0 50px 0;
          border-top: 1px solid rgba(125,10,200,.5);
          border-bottom: 1px solid rgba(125,10,200,.5);
      }

      .carousel{
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        cursor: grab;
      }

      .carousel::-webkit-scrollbar{ display: none; }

      .carousel.is-dragging{ cursor: grabbing; }

      .carouselTrack{
        display: flex;
        gap: 14px;
        padding: 0 22px;
        will-change: transform;
      }

      .cItem{
        flex: 0 0 auto;
        width: 240px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.10);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
        overflow: hidden;
        position: relative;
        padding: 0;
        cursor: pointer;
      }

      .cItem img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .cItem::after{
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.25));
        pointer-events: none;
      }

      /* Modal */
      .modal{
        position: fixed;
        inset: 0;
        display: none;
        z-index: 200;
      }

      .modal.is-open{ display: block; }

      .modalBackdrop{
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.82);
      }

      .modalClose{
        position: absolute;
        top: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.06);
        color: rgba(244, 248, 255, 0.92);
        cursor: pointer;
        display: grid;
        place-items: center;
      }

      .modalImg{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        max-width: min(1100px, 92vw);
        max-height: 86vh;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow);
        object-fit: contain;
        background: rgba(255, 255, 255, 0.03);
      }

        .col_img {
            float: right;
            max-width: 280px;
            widows: 100%;
            margin: 30px 0 20px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 5px rgba(0,0,0,0.5);
        }

        @media (max-width:600px) {
            .col_img {
                float: none;
                max-width:calc(100vw - 60px);
                margin: 20px auto 30px auto;
            }
        }

        .stat-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; text-align: center;}
        .stat-item h4 { font-family: 'Anton'; font-size: 32px; color: var(--accentA); margin: 0; }
        .stat-item span { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color:; }

        .screenshot_flow {
            width: 100%;
            max-width: 450px;
        }
        @media (max-width:600px) {
            .stat-grid { gap: 10px; margin-top:10px; padding-top: 20px; }
            .stat-grid h4 { font-size: 28px; }
        }

      /* Footer */
      .footer{
        padding: 44px 0 52px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
      }

      .footerGrid{
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 18px;
        align-items: start;
      }

      .footerTitle{ font-weight: 850; margin-bottom: 10px; }
      .footerText{ color: var(--muted); line-height: 1.7; font-size: 14px; }

      .footerLinks{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: flex-end;
      }

      .footerLinks a{
        color: rgba(234, 242, 255, 0.72);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.10);
        background: rgba(255, 255, 255, 0.03);
        padding: 10px 12px;
        border-radius: 999px;
        font-size: 13px;
        transition: background 140ms ease, border-color 140ms ease;
      }

      .footerLinks a:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.14); }

      /* Responsive */
      @media (max-width: 980px){
        .heroGrid{ grid-template-columns: 360px 1fr; gap: 26px; }
        .split, .splitVid{ grid-template-columns: 1fr; }
        .splitReverse{ grid-template-columns: 1fr; }
        .footerGrid{ grid-template-columns: 1fr; }
        .footerLinks{ justify-content: flex-start; }
      }

      @media (max-width: 760px){
        .topbar{ height: 60px; }
        .page{ padding-top: 78px; }

        .hero{ padding: 34px 0 20px 0; }
        .heroGrid{ grid-template-columns: 1fr; gap: 20px; }
        .phoneHalf{ max-width: 380px; height: 520px; }
        .section{ padding: 54px 0; }

        .pillars{ grid-template-columns: 1fr; }

        .carouselTrack{ padding: 0 14px; }
        .cItem{ width: 220px; }
      }

      @media (prefers-reduced-motion: reduce){
        .overlay, .drawer, .iconBtn, .btn { transition: none; }
      }
    
      /* Mobile spacing + hero centering */
      @media (max-width: 720px){
        .wrap { padding: 0 22px; }
        .heroGrid { grid-template-columns: 1fr; gap: 26px; }
        .heroRight { display: flex; justify-content: center; }
        .phoneMock { margin: 0 auto; }
        .section { padding: 50px 0; }
      }
        
        @media (max-width: 620px){
            
        .main_heading_mob {
            display: block;
        }
        .main_heading {
            display: none;
        }
            
        .heroVideo{
            object-fit: contain;
          }

        .app_store_btn{
            max-width: 48%;
          }
            
        .sub{
            font-size: 22px;
        }
            
        .blockPad { padding: 10px; }
            
        .screenshot_flow {
            max-width: 95%;
            margin: auto;
        }
    }

      @media (max-width: 420px){
        .wrap { padding: 0 20px; }
      }

    
      /* Footer - modern */
      .footer{
        padding: 54px 0 34px;
        border-top: 1px solid rgba(255,255,255,0.10);
        background:
          radial-gradient(900px 340px at 12% 20%, rgba(26,170,255,0.10), rgba(26,170,255,0) 60%),
          radial-gradient(900px 340px at 88% 10%, rgba(168,85,247,0.10), rgba(168,85,247,0) 60%),
          rgba(0,0,0,0.12);
      }
      .footerTop{
        justify-content:space-between;
        padding-top: 10px;
      }
      .footerBrand{ 
        max-width: 420px;
        text-align: center;
        flex: 1;
      }
      .footerLogo{
        font-weight: 850;
        letter-spacing: -0.02em;
        font-size: 18px;
        color: rgba(244,248,255,0.95);
      }
      .footerTag{
        margin-top: 10px;
        color: rgba(244,248,255,0.62);
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
      }
.footerCols{
          text-align: center;
      }
      .footerColTitle{
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: rgba(244,248,255,0.50);
        margin-bottom: 10px;
      }
      .footerCol a{
        display:block;
        padding: 6px 0;
        color: rgba(244,248,255,0.72);
        text-decoration: none;
        font-size: 14px;
        transition: color 160ms ease;
      }
      .footerCol a:hover{ color: rgba(244,248,255,0.95); }

      .footerBottom{
        margin-top: 26px;
        padding-top: 18px;
        border-top: 1px solid rgba(255,255,255,0.08);
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap: 14px;
        color: rgba(244,248,255,0.50);
        font-size: 12px;
      }
      .footerFineLinks{
        display:flex;
        align-items:center;
        gap: 10px;
        flex-wrap:wrap;
      }
      .footerFineLinks a{
        color: rgba(244,248,255,0.60);
        text-decoration:none;
      }
      .footerFineLinks a:hover{ color: rgba(244,248,255,0.90); }
      .footerFineLinks .dot{ opacity: 0.35; }

    .clear {
        clear:both;
    }

    .footer, .section {
        border-top: 1px solid rgba(255,255,255,.15);
    }

    .footer_box {
        max-width: 700px;
        margin: auto;
        text-align: center;
        overflow: auto;
    }

    .footer_box_item {
        text-align: center;
        padding: 20px;
        width: 58%;
        float: left;
    }

    .footer_brand {
        border-right: 1px solid rgba(255,255,255,.15);
    }

    .footer_box_links {
        width: 40%;
        text-align: left;
        color: var(--accentA);
    }

    .footer_box_item a, .footer_box_item a:visited {
        display: block;
        margin: auto;
        text-decoration: none;
        color: var(--muted);
        border-radius: 10px;
        max-width: 200px;
        padding: 5px;
        color: var(--accentA);
    }

    .footer_box_item a:hover {
        background: var(--accentA);
        color: #fff;
    }

      @media (max-width: 860px){
        .footerTop{ 
          flex-direction: column;
          align-items: center;
        }
        .footerBrand {
          width: 100%;
          max-width: 100%;
        }
        .footerCols{ 
          grid-template-columns: repeat(3, 1fr);
          width: auto;
          max-width: 600px;
          margin: 0 auto;
        }
      }

    @media (max-width: 620px){
        
        .footer {
            padding-top:20px;
        }
            
        .footer_box_item {
            width: auto;
            float: none;
        }
        
        .footer_brand {
            border: none;
        }
        
        .footer_box_links {
            text-align: center;
        }
        
    }
          
    
      @media (max-width: 520px){
        .footerBottom{ flex-direction: column; align-items:flex-start; }
      }
      .cPh{ width: 220px; height: 140px; border-radius: 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }

    
      /* Carousel image tiles - standalone, clean */
      .cItem{
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
      }
      .cItem img{
        display: block;
        width: 100%;
        height: auto;
        border-radius: 10px;
        border: none;
        box-shadow: 0 18px 38px rgba(0,0,0,0.22);
      }
      .cItem img:hover{ transform: translateZ(0); }

    
      /* Carousel - hard disable snap and smooth (Safari) */
      #artCarousel{
        scroll-snap-type: none !important;
        scroll-behavior: auto !important;
        -webkit-overflow-scrolling: auto !important;
      }
      #artCarousel *{ scroll-snap-align: none !important; }

      /* Thumbs - scaled width, keep aspect ratio (512x768) */
      .cItem{ width: 220px !important; flex: 0 0 auto !important; }
      .cItem img{ width: 220px !important; height: auto !important; border-radius: 10px; box-shadow: 0 18px 38px rgba(0,0,0,0.22); }
      @media (max-width: 520px){
        .cItem{ width: 170px !important; }
        .cItem img{ width: 170px !important; }
      }

      /* Modal scroll lock */
      body.modal-open{ overflow: hidden; }

      /* Modal controls */
      .modalStage{
        width: min(92vw, 980px);
        height: min(86vh, 860px);
        margin: 0 auto;
        display: grid;
        place-items: center;
        padding: 10px;
      }
      .modalImg{
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        border-radius: 14px;
        box-shadow: 0 30px 70px rgba(0,0,0,0.55);
      }
      .modalClose{
        position: absolute;
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.16);
        background: rgba(0,0,0,0.40);
        color: rgba(255,255,255,0.9);
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        z-index: 6;
        display: grid;
        place-items: center;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
      }
      .modalNav{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.16);
        background: rgba(0,0,0,0.40);
        color: rgba(255,255,255,0.9);
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        z-index: 6;
        display: grid;
        place-items: center;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
      }
      .modalPrev{ left: 14px; }
      .modalNext{ right: 14px; }
      @media (max-width: 520px){
        .modalClose{ width: 36px; height: 36px; font-size: 22px; }
        .modalNav{ width: 36px; height: 36px; font-size: 26px; }
        .modalPrev{ left: 10px; }
        .modalNext{ right: 10px; }
        .modalStage{ width: 94vw; height: 82vh; padding: 6px; }
      }

    
      /* Thumb fix: never crop - preserve full aspect ratio */
      .carouselTrack{ align-items: flex-start !important; }
      .cItem{ height: auto !important; overflow: visible !important; }
      .cItem img{
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
      }

.contentPage {
        padding-top: 86px;
        padding-bottom: 60px;
        min-height: calc(100vh - 200px);
      }
      
      .contentWrap {
        max-width: 850px;
        margin: 0 auto;
        padding: 0 26px;
      }
      
      .contentWrap h1 {
        font-family: "Saira", sans-serif;
        font-size: clamp(40px, 6vw, 64px);
        line-height: 1.05;
        letter-spacing: -0.03em;
        font-weight: 900;
        margin-bottom: 12px;
        font-variation-settings: "wdth" 800;
        background: linear-gradient(135deg, var(--accentA), var(--accentB));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      
      .subtitle {
        font-size: clamp(20px, 3vw, 26px);
        line-height: 1.3;
        color: var(--muted);
        font-weight: 300;
        margin-bottom: 48px;
        letter-spacing: -0.01em;
      }
      
      .calloutBox {
        font-size: 22px;
        line-height: 1.5;
        color: var(--text);
        font-weight: 400;
        margin-bottom: 40px;
        padding: 28px;
        background: linear-gradient(135deg, rgba(26, 170, 255, 0.08), rgba(59, 130, 246, 0.08));
        border-left: 4px solid var(--accentA);
        border-radius: 12px;
      }
      
      .contentWrap h2 {
        font-family: "Saira", sans-serif;
        font-size: clamp(32px, 4.5vw, 44px);
        line-height: 1.1;
        letter-spacing: -0.02em;
        font-weight: 900;
        margin-top: 56px;
        margin-bottom: 24px;
        font-variation-settings: "wdth" 800;
      }
      
      .contentWrap h3 {
        font-size: 24px;
        font-weight: 700;
        margin-top: 36px;
        margin-bottom: 14px;
        color: var(--text);
        letter-spacing: -0.01em;
      }
      
      .contentWrap p {
        font-size: 18px;
        line-height: 1.75;
        color: var(--muted);
        font-weight: 200;
        margin-bottom: 20px;
      }
      
      .contentWrap strong {
        font-weight: 600;
        color: var(--text);
      }
      
      .featureBox {
        margin: 28px 0;
        padding: 28px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        transition: transform 200ms ease, background 200ms ease;
      }
      
      .featureBox:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.04);
      }
      
      .featureBox h3 {
        margin-top: 0;
        color: var(--accentA);
      }
      
      .featureBox p {
        margin-bottom: 0;
      }
      
      .statsGrid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin: 40px 0;
      }
      
      .statCard {
        padding: 28px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        text-align: center;
      }
      
      .statNumber {
        font-family: "Saira", sans-serif;
        font-size: clamp(36px, 5vw, 48px);
        font-weight: 900;
        line-height: 1;
        background: linear-gradient(135deg, var(--accentA), var(--accentB));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 8px;
        font-variation-settings: "wdth" 800;
      }
      
      .statLabel {
        font-size: 14px;
        color: var(--muted2);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 600;
      }
      
      .highlightBox {
        margin: 48px 0;
        padding: 36px;
        background: linear-gradient(135deg, rgba(26, 170, 255, 0.1), rgba(138, 43, 226, 0.1), rgba(255, 87, 34, 0.1));
        border-radius: 20px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
      
      .highlightBox h2 {
        margin: 0 0 16px 0;
        font-size: clamp(28px, 4vw, 36px);
      }
      
      .highlightBox p {
        margin: 0;
        font-size: 18px;
        color: var(--muted);
      }
      
      .arrowList {
        margin: 24px 0;
        padding-left: 0;
        list-style: none;
      }
      
      .arrowList li {
        font-size: 18px;
        line-height: 1.75;
        color: var(--muted);
        font-weight: 200;
        margin-bottom: 16px;
        padding-left: 32px;
        position: relative;
      }
      
      .arrowList li:before {
        content: "→";
        position: absolute;
        left: 0;
        color: var(--accentA);
        font-weight: 700;
        font-size: 20px;
      }
      
      /* Responsive adjustments */
      @media (max-width: 768px) {
        .contentPage {
          padding-top: 76px;
        }
        
        .contentWrap {
          padding: 0 20px;
        }
        
        .subtitle {
          margin-bottom: 36px;
        }
        
        .calloutBox {
          font-size: 19px;
          padding: 22px;
        }
        
        .contentWrap h2 {
          margin-top: 44px;
          margin-bottom: 20px;
        }
        
        .featureBox,
        .statCard {
          padding: 22px;
        }
        
        .statsGrid {
          gap: 16px;
          margin: 32px 0;
        }
        
        .highlightBox {
          padding: 28px 20px;
          margin: 36px 0;
        }
      }