/* /assets/css/zc-site.css
   clean single-file replacement for your current-css-mess.txt :contentReference[oaicite:0]{index=0}
   includes: base + hero video + header meter + tracks/about/contact/footer + mini eq
*/

/* =========================
   tokens
   ========================= */
:root{
    --zc-orange:#ff6200;
    --zc-wash: rgba(64, 31, 96, 0.72);
    --zc-white: rgba(255,255,255,0.92);

    --zc-bg0:#190223;
    --zc-bg1:#0b0b10;

    --zc-text: rgba(255,255,255,.90);
    --zc-muted: rgba(255,255,255,.64);
    --zc-muted2: rgba(255,255,255,.48);

    --zc-stroke: rgba(255,255,255,.12);
    --zc-stroke2: rgba(255,255,255,.18);

    --zc-radius: 22px;
    --zc-radius-sm: 16px;

    --zc-wrap: 1180px;

    --zc-shadow: 0 18px 55px rgba(0,0,0,.62);
    --zc-shadow-soft: 0 12px 30px rgba(0,0,0,.38);

    --zc-focus: 0 0 0 3px rgba(255,98,0,.22);

    --zc-section-pad: 72px;
    --zc-section-pad-sm: 52px;

    /* header meter (big) */
    --m-block-w: 18px;
    --m-block-h: 4px;
    --m-gap-y:   2px;
    --m-gap-x:   2px;
    --m-rows:    22;
    --m-opacity: .38;

    /* mini eq (card) */
    --eq-h: 34px;
    --eq-gap: 4px;
    --eq-opacity: .80; /* ~80% */
}

.text-center
{
    text-align: center !important;
}

/* =========================
   Global Typography Scale
   ========================= */

html {
    font-size: clamp(15px, 1.1vw, 18px);
}

body {
    font-size: 1rem;
    line-height: 1.6;
}

/* =========================
   base
   ========================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ margin:0; padding:0; }

body{
    font-family: "MuseoModerno", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--zc-text);
    background:
            radial-gradient(1100px 680px at 50% 0%, rgba(112,57,155,.20), transparent 62%),
            radial-gradient(900px 520px at 0% 35%, rgba(255,98,0,.11), transparent 55%),
            radial-gradient(900px 520px at 100% 40%, rgba(52,152,219,.07), transparent 55%),
            linear-gradient(180deg, var(--zc-bg0), var(--zc-bg1));
}

img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

.wrap{
    max-width: var(--zc-wrap);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   hero (video header)
   ========================= */
.zc-hero{
    position: relative;                 /* IMPORTANT (fixes mobile overlap/absolute layers) */
    min-height: 100svh;
    height: 100svh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

/* your purple wash */
.zc-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background: var(--zc-wash);
    z-index: 1;
}

/* video + overlay */
.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index: 0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background: rgba(45, 16, 67, 0.68);
    pointer-events:none;
    z-index: 2;
}

/* dots */
.zc-dots{
    position:absolute;
    top:18px;
    width: 220px;
    height: 120px;
    z-index: 3;
    opacity:.45;
    pointer-events:none;
    background: radial-gradient(circle, rgba(120,170,255,.95) 0 2px, transparent 3px) 0 0/14px 14px;
}
.zc-dots--left{
    left:18px;
    -webkit-mask: radial-gradient(160px 110px at 0% 0%, #000 55%, transparent 70%);
    mask: radial-gradient(160px 110px at 0% 0%, #000 55%, transparent 70%);
}
.zc-dots--right{
    right:18px;
    background: radial-gradient(circle, rgba(255,140,220,.95) 0 2px, transparent 3px) 0 0/14px 14px;
    -webkit-mask: radial-gradient(160px 110px at 100% 0%, #000 55%, transparent 70%);
    mask: radial-gradient(160px 110px at 100% 0%, #000 55%, transparent 70%);
}

/* hero content */
.zc-hero__inner{
    position:relative;
    z-index: 4;
    text-align:center;
    padding: 0 16px 110px;              /* space for meter at bottom */
}

/* wordmark */
.zc-brand{
    line-height:1;
    font-size: clamp(62px, 12vw, 200px);
    letter-spacing: .01em;
    color: var(--zc-orange);
    text-transform: lowercase;
    text-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.zc-brand__zoom{ font-weight: 400; }
.zc-brand__crush{ font-weight: 800; }

.zc-tagline{
    font-size: clamp(14px, 4.5vw, 18px);
    letter-spacing: .25em;
    margin-top: 10px;
    font-weight: 300;
    font-size: clamp(16px, 2.8vw, 80px);
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
    text-shadow: 0 10px 26px rgba(0,0,0,.35);
}

/* =========================
   header meter (big)
   expects: .zc-meter containing many .zc-bar with style="--h: n"
   ========================= */
.zc-meter{
    position:absolute;
    left:0; right:0; bottom:0;
    z-index: 4;

    display:flex;
    align-items:flex-end;
    justify-content:center;

    gap: var(--m-gap-x);
    padding: 0 10px 12px;
    opacity: var(--m-opacity);
    pointer-events:none;

    flex-wrap: nowrap;
    overflow:hidden;
}

/* each bar column */
.zc-bar{
    width: var(--m-block-w);
    flex: 0 0 var(--m-block-w);
    height: calc((var(--m-block-h) + var(--m-gap-y)) * var(--m-rows));
    position:relative;
}

/* stacked LED blocks */
.zc-bar::before{
    content:"";
    position:absolute;
    left:0; right:0; bottom:0;

    height: calc((var(--m-block-h) + var(--m-gap-y)) * var(--h, 1));

    background-image: linear-gradient(
            to top,
            rgba(255,255,255,.92) 0 var(--m-block-h),
            transparent var(--m-block-h) calc(var(--m-block-h) + var(--m-gap-y))
    );

    background-size: 100% calc(var(--m-block-h) + var(--m-gap-y));
    background-repeat: repeat-y;
    background-position: bottom;

    border-radius: 1px;
}

/* =========================
   sections (CLEAN + FIXED)
   - you had duplicates for .section-title + ::after
   - adds true centering for section-sub
   ========================= */

.section{
    padding: var(--zc-section-pad) 0;
    position: relative;
}

.section + .section::before{
    content:"";
    position:absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(980px, calc(100% - 40px));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

.section-title{
    margin: 0 0 10px 0;
    font-size: clamp(24px, 2.2vw, 34px);
    letter-spacing: .08em;
    text-transform: lowercase;
    font-weight: 800;
    line-height: 1.05;
    color: rgba(255,255,255,.92);
    position: relative;
}

.section-title::after{
    content:"";
    display:block;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    margin-top: 12px;
    background: linear-gradient(90deg, rgba(255,98,0,.95), rgba(255,98,0,.20));
    box-shadow: 0 0 18px rgba(255,98,0,.18);
}

/* centered title + centered accent */
.section-title.text-center,
.text-center .section-title{
    text-align: center;
}
.section-title.text-center::after,
.text-center .section-title::after{
    margin-left: auto;
    margin-right: auto;
}

/* subtext: visually centered (not just text-align) */
.section-sub{
    margin: 0 auto 28px auto;
    max-width: 720px;
    font-size: clamp(15px, 4.2vw, 17px);
    color: var(--zc-muted);
    line-height: 1.6;
    text-align: center;
}

.section-sub.text-center,
.text-center .section-sub{
    text-align: center;
    margin-left: auto;       /* key: centers the block */
    margin-right: auto;
    margin-top: 10px;
}
/* panel */
.panel{
    background:
            radial-gradient(900px 220px at 50% 0%, rgba(255,255,255,.06), transparent 70%),
            linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.028));
    border: 1px solid var(--zc-stroke);
    border-radius: var(--zc-radius);
    box-shadow: var(--zc-shadow-soft);
    padding: 22px;
}

/* =========================
   tracks grid + cards (clean + corrected)
   - removes duplicates (.chip + .card-top repeated)
   - adds missing .chip--tier + .card-desc
   - keeps your pill styles
   ========================= */

/* grid */
.grid{
    display:grid;
    gap: 22px;
    grid-template-columns: repeat(4, minmax(0,1fr));
}

/* tracks filter bar (force proper pill buttons) */
#tracks .track-filters{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
    align-items:center;
    margin:14px 0 18px;
}

#tracks .track-filters .filter-btn{
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: inherit;
    padding: 10px 14px;
    border-radius: 999px;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    user-select: none;
    transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
}

#tracks .track-filters .filter-btn:hover{
    transform: translateY(-1px);
}

/* active state: neutral for "all" */
#tracks .track-filters .filter-btn[data-filter="all"].is-active{
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.3);
}

/* active by tier */
#tracks .track-filters .filter-btn[data-filter="1"].is-active{
    background: rgba(255,98,0,.14);
    border-color: rgba(255,98,0,.45);
    color: #ffffff;
}
#tracks .track-filters .filter-btn[data-filter="2"].is-active{
    background: rgba(0,140,255,.14);
    border-color: rgba(0,140,255,.45);
    color: #ffffff;
}
#tracks .track-filters .filter-btn[data-filter="3"].is-active{
    background: rgba(255,0,70,.14);
    border-color: rgba(255,0,70,.45);
    color: #ffffff;
}
#tracks .track-filters .filter-btn[data-filter="cool"].is-active{
    background: rgba(0,200,140,.14);
    border-color: rgba(0,200,140,.45);
    color: #ffffff;
}


/* card */
.card{
    position: relative;
    border-radius: var(--zc-radius);
    border: 1px solid rgba(255,255,255,.11);
    overflow: hidden;
    background:
            radial-gradient(900px 260px at 50% 0%, rgba(255,255,255,.06), transparent 70%),
            linear-gradient(180deg, rgba(255,255,255,.045), rgba(0,0,0,.06));
    box-shadow: var(--zc-shadow-soft);
    padding: 18px;
    transition: transform .14s ease, border-color .14s ease, background .14s ease;
}
.card::before{
    content:"";
    position:absolute;
    inset:-1px;
    pointer-events:none;
    background: radial-gradient(820px 200px at 50% 0%, rgba(255,98,0,.08), transparent 70%);
    opacity:.6;
}
.card:hover{
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.18);
    background:
            radial-gradient(900px 260px at 50% 0%, rgba(255,255,255,.075), transparent 70%),
            linear-gradient(180deg, rgba(255,255,255,.055), rgba(0,0,0,.05));
}

/* top row */
.card-top{
    display:flex;
    gap: 14px;
    align-items:flex-start; /* IMPORTANT for chips */
    margin-bottom: 14px;
}

/* rotating record thumb */
.thumb{
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    border-radius: 999px;
    overflow:hidden;
    position:relative;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 14px 26px rgba(0,0,0,.50);
}
.thumb img{
    width:100%;
    height:100%;
    object-fit: cover;
    border-radius:999px;
    transform-origin:center;
    animation: zc-spin 14s linear infinite;
    filter: saturate(1.05) contrast(1.05);
}
.thumb::after{
    content:"";
    position:absolute;
    inset:-10px;
    border-radius:999px;
    background: radial-gradient(circle at 50% 50%,
    transparent 58%,
    rgba(255,255,255,.12) 60%,
    transparent 64%);
    pointer-events:none;
    opacity:.75;
}
.card:hover .thumb img{ animation-duration: 9s; }
@keyframes zc-spin{ to{ transform: rotate(360deg); } }

/* meta block */
.card-meta{
    display:flex;
    flex-direction:column;
    gap: 8px;
    min-width: 0;
}
.card-title{
    font-size: clamp(17px, 4.5vw, 20px);
    margin:0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .01em;
    text-transform: lowercase;
    color: rgba(255,255,255,.92);
    line-height: 1.15;
}
.card-chips{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin: 12px 0 10px;
}

/* short description under chips (replaces long subtitle) */
.card-desc{
    font-size: clamp(14px, 3.8vw, 15px);
    margin-top: 2px;
    font-size: 13px;
    color: rgba(255,255,255,.62);
    line-height: 1.25;
    text-transform: none;
}


/* center layout */
.card{
    text-align: center;
    padding: 28px 22px 30px;
}

/* centered thumbnail */
.card-thumb-center{
    display:flex;
    justify-content:center;
    margin-bottom:18px;
}

.card-thumb-center img{
    width: 120px;     /* adjust size here */
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 0px solid rgba(255,98,0,.35);
    box-shadow: 0 0px 0px rgba(0,0,0,.4);
}

/* spacing */
.card-title{
    margin-bottom:6px;
}

.card-desc{
    margin-bottom:14px;
    opacity:.85;
}

.card-chips{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-bottom:16px;
}

.card-actions{
    display:flex;
    justify-content:center;
}

/* smooth image transition */
.card-thumb-center img{
    transition: transform .4s ease;
}

/* slow rotate on hover */
/* spin animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ONLY rotate image when youtube pill is hovered */
.card:has(.pill--youtube:hover) .card-thumb-center img {
    animation: spin 14s linear infinite;
}

/* ===== chips ===== */
.chip{
    display:inline-flex;
    align-items:center;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .02em;
    font-weight: 700;
    text-transform: none; /* Title Case stays */
    color: rgba(255,255,255,.90);
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.05);
    box-shadow: 0 8px 18px rgba(0,0,0,.28);
}

/* smooth transitions */
.card{
    transition: transform .25s ease, box-shadow .25s ease;
}

/* base hover lift */
.card:hover{
    transform: translateY(-6px);
}

/* image smooth transition */
.card-thumb-center img{
    transition: transform .35s ease, box-shadow .35s ease;
}

/* image slight scale */
.card:hover .card-thumb-center img{
    transform: scale(1.05);
}

/* ===== TIER GLOW EFFECTS ===== */

/* Tier 1 – Orange */
.card[data-tier-code="1"]:hover{
    box-shadow: 0 0 30px rgba(255,98,0,.25);
}

/* Tier 2 – Blue */
.card[data-tier-code="2"]:hover{
    box-shadow: 0 0 30px rgba(0,140,255,.25);
}

/* Tier 3 – Red */
.card[data-tier-code="3"]:hover{
    box-shadow: 0 0 30px rgba(255,0,70,.25);
}

/* Cool Down – Teal */
.card[data-tier-code="cool"]:hover{
    box-shadow: 0 0 30px rgba(0,200,140,.25);
}

/* energy chip stays neutral */
.chip--energy{
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.18);
}

/* tier chip base (gets colored via data-tier below) */
/* Base */
.chip--tier{
    border: 1px solid;
}

/* Tier 1 */
.chip--tier[data-tier="1"]{
    background: rgba(255,98,0,.14);
    border-color: rgba(255,98,0,.45);
    color: #ffffff;
}

/* Tier 2 */
.chip--tier[data-tier="2"]{
    background: rgba(0,140,255,.14);
    border-color: rgba(0,140,255,.45);
    color: #ffffff;
}

/* Tier 3 */
.chip--tier[data-tier="3"]{
    background: rgba(255,0,70,.14);
    border-color: rgba(255,0,70,.45);
    color: #ffffff;
}

/* Cool Down */
.chip--tier[data-tier="cool"]{
    background: rgba(0,200,140,.14);
    border-color: rgba(0,200,140,.45);
    color: #ffffff;
}

/* ==========================================================
   ENERGY COLOR SYSTEM
   ========================================================== */

/* High Energy */
.card .chip--energy[data-energy="high"]{
    background: rgba(255,98,0,.18);
    border-color: rgba(255,98,0,.60);
    box-shadow: 0 0 16px rgba(255,98,0,.18);
}

/* Medium Energy */
.card .chip--energy[data-energy="medium"]{
    background: rgba(168,85,247,.18);
    border-color: rgba(168,85,247,.60);
    box-shadow: 0 0 16px rgba(168,85,247,.18);
}

/* Low Energy */
.card .chip--energy[data-energy="low"]{
    background: rgba(46,204,113,.18);
    border-color: rgba(46,204,113,.60);
    box-shadow: 0 0 16px rgba(46,204,113,.18);
}

/* ===== tier color mapping ===== */
.card[data-tier="1"] .chip--tier{
    background: rgba(255,98,0,.18);
    border-color: rgba(255,98,0,.60);
    box-shadow: 0 0 18px rgba(255,98,0,.18);
}
.card[data-tier="2"] .chip--tier{
    background: rgba(168,85,247,.18);
    border-color: rgba(168,85,247,.60);
    box-shadow: 0 0 18px rgba(168,85,247,.18);
}
.card[data-tier="3"] .chip--tier{
    background: rgba(52,152,219,.18);
    border-color: rgba(52,152,219,.60);
    box-shadow: 0 0 18px rgba(52,152,219,.18);
}
.card[data-tier="cool"] .chip--tier{
    background: rgba(46,204,113,.18);
    border-color: rgba(46,204,113,.60);
    box-shadow: 0 0 18px rgba(46,204,113,.18);
}

/* action links (youtube / spotify) */
.card-actions{
    display:flex;
    flex-wrap:wrap;
    gap: 10px;
    margin: 12px 0 0;
}

.pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.82);
    font-size: 12px;
    letter-spacing: .06em;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
    gap: 6px;
}
.pill:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.22);
}
.pill:focus{
    outline: none;
    box-shadow: var(--zc-focus);
    border-color: rgba(255,98,0,.70);
}

.pill svg{
    width: 16px;
    height: 16px;
}

/* =========================
   YouTube Pill
   ========================= */

.pill--youtube{
    border-color: rgba(255,0,0,.5);
    color: #fff;
    background: rgba(255,0,0,.10);
}

.pill--youtube:hover{
    background: rgba(255,0,0,.18);
    border-color: rgba(255,0,0,.8);
    box-shadow: 0 0 18px rgba(255,0,0,.25);
}


/* mini eq */
.mini-eq{
    height: var(--eq-h);
    display:flex;
    align-items:flex-end;
    gap: var(--eq-gap);
    padding: 10px 2px 2px;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 6px;
    opacity: var(--eq-opacity);
}

.mini-eq > span{
    flex: 1 1 0;
    min-width: 0;
    height: 55%;
    border-radius: 2px 2px 0 0;
    background: rgba(255,255,255,.92);
    transform-origin: bottom;
    animation: mini-eq-bounce var(--d, .56s) ease-in-out infinite;
    animation-delay: var(--dl, 0s);

    --seg-on: 6px;
    --seg-off: 2px;
    --seg-row: calc(var(--seg-on) + var(--seg-off));

    -webkit-mask-image: repeating-linear-gradient(
            to bottom,
            #000 0,
            #000 var(--seg-on),
            transparent var(--seg-on),
            transparent var(--seg-row)
    );
    mask-image: repeating-linear-gradient(
            to bottom,
            #000 0,
            #000 var(--seg-on),
            transparent var(--seg-on),
            transparent var(--seg-row)
    );
    -webkit-mask-size: 100% var(--seg-row);
    mask-size: 100% var(--seg-row);
    -webkit-mask-repeat: repeat;
    mask-repeat: repeat;
}

@keyframes mini-eq-bounce{
    0%,100%{ transform: scaleY(.24); opacity:.55; }
    18%    { transform: scaleY(1);   opacity:1; }
    48%    { transform: scaleY(.55); opacity:.75; }
    78%    { transform: scaleY(.80); opacity:.92; }
}

/* =========================
   about
   ========================= */
.section.about{ padding-top: 12px; }

.about-grid{
    display:grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 22px;
    align-items:start;
}

.about p{
    margin: 0 0 12px 0;
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    font-size: 15px;
}

.tiny{
    font-size: 12px;
    color: var(--zc-muted2);
    line-height: 1.5;
}

/* buttons */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.88);
    letter-spacing: .06em;
    font-weight: 700;
    transition: transform .12s ease, background .12s ease, border-color .12s ease;
    box-shadow: 0 10px 22px rgba(0,0,0,.28);
}
.btn:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.22);
}
.btn--orange{
    background: linear-gradient(180deg, rgba(255,98,0,.22), rgba(255,98,0,.10));
    border-color: rgba(255,98,0,.55);
    box-shadow: 0 16px 30px rgba(255,98,0,.10), 0 10px 22px rgba(0,0,0,.28);
}
.btn--orange:hover{
    border-color: rgba(255,98,0,.75);
    background: linear-gradient(180deg, rgba(255,98,0,.26), rgba(255,98,0,.12));
}

/* =========================
   contact
   ========================= */
.form{ display:grid; gap: 14px; }

.field label{
    display:block;
    margin: 0 0 6px 0;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: none;
    color: rgba(255,255,255,.60);
}

.field input,
.field textarea{
    width:100%;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.22);
    color: rgba(255,255,255,.90);
    padding: 12px 12px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.field textarea{ min-height: 150px; resize: vertical; }

.field input:focus,
.field textarea:focus{
    border-color: rgba(255,98,0,.65);
    box-shadow: var(--zc-focus), inset 0 1px 0 rgba(255,255,255,.06);
}

.alert{
    border-radius: 16px;
    padding: 12px 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.82);
}
.alert--ok{ border-color: rgba(46,204,113,.45); background: rgba(46,204,113,.10); }
.alert--bad{ border-color: rgba(231,76,60,.55); background: rgba(231,76,60,.10); }


/* select field styling */
.form select{
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    color: inherit;
    font: inherit;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* focus state */
.form select:focus{
    border-color: rgba(255,98,0,.55);
    background: rgba(255,255,255,.09);
}

/* dropdown arrow (custom) */
.form .field{
    position: relative;
}

.form select{
    padding-right: 40px; /* space for arrow */
}

.form .field:has(select)::after{
    content: "▾";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    opacity: .7;
}

/* style options (limited browser support) */
.form select option {
    background: #111018;
    color: #ffffff;
}

/* selected option highlight color */
.form select option:checked {
    background: #ff6200;
    color: #ffffff;
}

/* =========================
   footer layout
   ========================= */

.footer{
    padding: 40px 0 28px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-brand{
    display:flex;
    align-items:center;
    gap:16px;        /* now only between wordmark and tagline */
    flex-wrap:wrap;
}

/* container for zoomcrush */
.footer-wordmark{
    display:inline-flex;
}

.footer-zoom,
.footer-crush{
    font-size:20px;
    color:#ff6200;
    letter-spacing:0;
    text-transform:lowercase;
}

.footer-zoom{
    font-weight:400;
}

.footer-crush{
    font-weight:800;
}

.footer-tagline{
    font-size:13px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color: rgba(255,255,255,.55);
}

.footer-meta{
    color: rgba(255,255,255,.5);
    font-size:13px;
}

.footer-legal{
    margin-top:10px;
    padding-top:18px;
    font-size:12px;
    line-height:1.6;
    color: rgba(255,255,255,.45);
    text-align:center;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

/* =========================
   responsive
   ========================= */
@media (max-width: 1100px){
    .grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
    .about-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
    .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 560px){
    .section{ padding: var(--zc-section-pad-sm) 0; }
    .grid{ grid-template-columns: 1fr; }
    .panel{ padding: 20px; }
    .card{ padding: 16px; }
    .thumb{ width: 60px; height: 60px; flex-basis: 60px; }
    .footer .wrap{ flex-direction: column; align-items:flex-start; }

    /* hero on mobile (video stays on) */
    .zc-hero{
        height: 78vh;
        min-height: 560px;
    }
    .zc-hero__inner{
        padding-bottom: 120px;
    }

    /* header meter mobile sizing */
    :root{
        --m-block-w: 10px;
        --m-block-h: 3px;
        --m-gap-x:   2px;
        --m-rows:    16;
        --m-opacity: .42;
    }
    .zc-meter{ padding: 0 6px 10px; }
}

@media (prefers-reduced-motion: reduce){
    .thumb img{ animation: none !important; }
    .mini-eq > span{ animation: none !important; }
}