/* ================================================================
   GRAYZ PORTFOLIO — Full Design System
   Dark/Light Mode | Yellow Accent | Nick Graz Style
   ================================================================ */

/* ── Variables ── */
:root {
    --accent: #FFE500;
    --accent-dark: #e6cf00;

    /* Dark mode (default) */
    --bg: #0d0d14;
    --bg-alt: #141420;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222240;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --text: #e4e4e7;
    --text-muted: #8a8a9a;
    --text-heading: #ffffff;

    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --font-h: 'Space Grotesk', sans-serif;
    --font-b: 'Inter', sans-serif;
    --max-w: 1320px;
    --gutter: 40px;
}

/* Light mode overrides */
[data-theme="light"] {
    --bg: #f5f5f5;
    --bg-alt: #eaeaee;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f5;
    --border: rgba(0,0,0,0.08);
    --border-hover: rgba(0,0,0,0.15);
    --text: #2d2d3a;
    --text-muted: #6b6b80;
    --text-heading: #0d0d14;
}

/* ── Global Reset for Plugin ── */
[class^="grayz-"] *, [class^="grayz-"] *::before, [class^="grayz-"] *::after { box-sizing: border-box; margin: 0; padding: 0; }
[class^="grayz-"] { font-family: var(--font-b); color: var(--text); }
html, body { overflow-x: hidden; max-width: 100vw; }

/* ── Kill ALL pink/magenta/Elementor default focus colors globally ── */
[class^="grayz-"] *:focus,
[class^="grayz-"] *:active,
[class^="grayz-"] *:focus-visible,
[class^="grayz-"] button:focus,
[class^="grayz-"] a:focus,
[class^="grayz-"] input:focus,
[class^="grayz-"] select:focus,
[class^="grayz-"] textarea:focus {
    outline-color: var(--accent) !important;
    box-shadow: none !important;
    border-color: var(--accent) !important;
}
[class^="grayz-"] ::selection { background: var(--accent); color: #000; }

/* ── NUCLEAR: Override Elementor's pink/magenta (#e1306c, #d63384, #e91e8e, etc.) everywhere ── */
[class^="grayz-"] button,
[class^="grayz-"] button:hover,
[class^="grayz-"] button:focus,
[class^="grayz-"] button:active,
[class*="grayz"] button,
[class*="grayz"] button:hover,
[class*="grayz"] button:focus,
[class*="grayz"] button:active {
    background-color: transparent !important;
}
[class^="grayz-"] .grayz-btn,
[class^="grayz-"] .grayz-btn:hover { background-color: var(--accent) !important; }
[class^="grayz-"] .grayz-btn--outline,
[class^="grayz-"] .grayz-btn--outline:hover { background-color: transparent !important; }

/* ── Force accent on ALL interactive states — no pink ever ── */
.grayz-header a:hover,
.grayz-header a:focus,
.grayz-header a:active,
.grayz-header button:hover,
.grayz-header button:focus,
.grayz-header button:active,
.grayz-footer a:hover,
.grayz-footer a:focus,
.grayz-footer a:active,
.grayz-theme-toggle:hover,
.grayz-theme-toggle:focus,
.grayz-theme-toggle:active {
    color: var(--accent) !important;
    outline-color: var(--accent) !important;
}
.grayz-header__btn,
.grayz-header__btn:hover,
.grayz-header__btn:focus,
.grayz-header__btn:active,
.grayz-header__btn:visited {
    background-color: #FFE500 !important;
    color: #000 !important;
    border-color: #FFE500 !important;
}
.grayz-header__btn:hover {
    background-color: #e6cf00 !important;
    box-shadow: 0 6px 20px rgba(255,229,0,0.25) !important;
}
.grayz-theme-toggle,
.grayz-theme-toggle:hover,
.grayz-theme-toggle:focus {
    background-color: var(--bg-card) !important;
    border-color: var(--border) !important;
}
.grayz-theme-toggle:hover {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

/* ── Highlight (yellow box behind text) ── */
.grayz-hl {
    background: var(--accent);
    color: #000;
    padding: 2px 10px;
    display: inline-block;
}

/* ── Outlined Image Effect (yellow hand-drawn border) ── */
.grayz-outlined-img {
    position: relative;
    display: inline-block;
}
.grayz-outlined-img img {
    display: block;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}
.grayz-outlined-img::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 3px solid var(--accent);
    border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
    z-index: 0;
    animation: grayz-morph 8s ease-in-out infinite;
}
/* No morphing border on hero card — it uses glassmorphism instead */
.grayz-hero__card .grayz-outlined-img::before,
.grayz-hero__card-glass .grayz-outlined-img::before { display: none; }

@keyframes grayz-morph {
    0%   { border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%; }
    25%  { border-radius: 60% 40% 30% 70% / 40% 60% 50% 50%; }
    50%  { border-radius: 40% 60% 70% 30% / 60% 50% 40% 50%; }
    75%  { border-radius: 70% 30% 40% 60% / 50% 50% 60% 40%; }
    100% { border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%; }
}

/* ── Section Heading ── */
.grayz-section-heading {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.grayz-section-heading--center { text-align: center; }

/* ── Buttons ── */
.grayz-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.grayz-btn--accent {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}
.grayz-btn--accent:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,229,0,0.2);
}
.grayz-btn--outline {
    background: transparent;
    color: var(--text-heading);
    border-color: var(--border-hover);
}
.grayz-btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
.grayz-btn--sm { padding: 10px 22px; font-size: 13px; }

/* ── Reusable Glassmorphism Card (About, Engagement) ── */
.grayz-glass-card {
    position: relative; perspective: 1200px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}
.grayz-glass-card__inner {
    position: relative; border-radius: 24px; overflow: hidden;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05) inset;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.grayz-glass-card:hover .grayz-glass-card__inner {
    border-color: rgba(255,229,0,0.25);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 60px rgba(255,229,0,0.08), 0 0 0 1px rgba(255,229,0,0.15) inset;
}
.grayz-glass-card__img-wrap {
    overflow: hidden;
}
.grayz-glass-card__img {
    width: 100%; height: auto; display: block; object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}
.grayz-glass-card:hover .grayz-glass-card__img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}
.grayz-glass-card__glow {
    position: absolute; inset: -2px; border-radius: 26px; z-index: -1;
    background: transparent; border: 2px solid transparent;
    opacity: 0; transition: opacity 0.5s; pointer-events: none;
}
.grayz-glass-card:hover .grayz-glass-card__glow {
    opacity: 1; border-color: var(--accent);
    box-shadow: 0 0 15px rgba(255,229,0,0.15), 0 0 40px rgba(255,229,0,0.08), inset 0 0 15px rgba(255,229,0,0.05);
}

/* ── Avatar Placeholder ── */
.grayz-avatar-placeholder {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-h); font-weight: 700; font-size: 22px; color: #000;
}

/* ── Particles Canvas ── */
.grayz-particles {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
    opacity: 0.35;
}

/* ── Ensure all section content stays above particles/patterns ── */
.grayz-hero__inner,
.grayz-hero__scroll,
.grayz-trusted__inner,
.grayz-shared__inner,
.grayz-about__inner,
.grayz-engagement__inner,
.grayz-insights__inner,
.grayz-podcast__inner,
.grayz-latest__inner,
.grayz-testimonials__inner,
.grayz-collab__inner,
.grayz-newsletter__inner,
.grayz-footer__inner,
.grayz-footer__bottom {
    position: relative;
    z-index: 2;
}

/* ========================================================================
   HEADER
   ======================================================================== */
.grayz-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 99999;
    background: rgba(13,13,20,0.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
[data-theme="light"] .grayz-header {
    background: rgba(245,245,245,0.95);
}
.grayz-header__inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px var(--gutter);
    position: relative;
}
.grayz-header__logo {
    display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-decoration: none;
}
.grayz-header__logo-script {
    font-family: 'Georgia', serif; font-style: italic;
    font-size: 32px; color: var(--accent); line-height: 1;
}
.grayz-header__logo-name {
    font-family: var(--font-h); font-size: 10px; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase; color: var(--text); opacity: .7;
    --name-tx: 0px; --name-ty: 0px;
    transform: translate(var(--name-tx), var(--name-ty));
}
.grayz-header__logo img { height: 48px; width: auto; }
.grayz-header__nav {
    display: flex; align-items: center; gap: 8px;
}
.grayz-header__link {
    font-family: var(--font-h); font-size: 14px; font-weight: 500;
    color: var(--text); text-decoration: none; padding: 8px 18px;
    border-radius: 100px; transition: all 0.3s;
}
.grayz-header__link:hover { color: var(--text-heading); background: var(--bg-card); }
.grayz-header__btn {
    font-family: var(--font-h); font-size: 14px; font-weight: 600;
    background: var(--accent); color: #000; padding: 10px 26px;
    border-radius: 100px; text-decoration: none; transition: all 0.3s;
}
.grayz-header__btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,229,0,0.25);
}

/* Burger — hidden on desktop, shown on mobile */
.grayz-header__burger,
button.grayz-header__burger,
.grayz-header__burger:hover,
.grayz-header__burger:focus,
.grayz-header__burger:active {
    display: none !important; flex-direction: column; gap: 5px;
    background: none !important; background-color: transparent !important;
    border: none !important; cursor: pointer; padding: 8px;
    box-shadow: none !important; outline: none !important;
}
.grayz-header__burger span {
    display: block !important;
    width: 24px; height: 2.5px;
    background: #fff !important; background-color: #fff !important;
    border-radius: 2px; transition: all 0.3s;
}
[data-theme="light"] .grayz-header__burger span {
    background: #222 !important; background-color: #222 !important;
}
.grayz-header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.grayz-header__burger.active span:nth-child(2) { opacity: 0; }
.grayz-header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Off-Canvas Mobile Menu (appended to body) ── */
.grayz-offcanvas {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999998;
    background: rgba(13,13,20,0.97);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 6px; padding: 80px 30px 40px;
    opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
}
[data-theme="light"] .grayz-offcanvas {
    background: rgba(245,245,245,0.97);
}
.grayz-offcanvas.active {
    opacity: 1; visibility: visible;
}
.grayz-offcanvas__close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff; font-size: 22px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 999999;
}
[data-theme="light"] .grayz-offcanvas__close {
    background: rgba(0,0,0,0.05) !important; border-color: rgba(0,0,0,0.1) !important;
    color: #222;
}
.grayz-offcanvas__close:hover {
    background: rgba(255,229,0,0.15) !important; border-color: var(--accent) !important;
    color: var(--accent) !important;
}
.grayz-offcanvas__link {
    font-family: var(--font-h); font-size: 22px; font-weight: 600;
    color: #fff; text-decoration: none;
    padding: 14px 40px; border-radius: 12px;
    transition: all 0.3s; text-transform: uppercase;
    letter-spacing: 1px; text-align: center; width: 100%;
    max-width: 320px;
}
[data-theme="light"] .grayz-offcanvas__link { color: #222; }
.grayz-offcanvas__link:hover {
    background: rgba(255,229,0,0.08); color: var(--accent) !important;
}
.grayz-offcanvas__btn {
    font-family: var(--font-h); font-size: 16px; font-weight: 700;
    background: #FFE500 !important; color: #000 !important;
    padding: 14px 40px; border-radius: 100px;
    text-decoration: none; margin-top: 12px;
    transition: all 0.3s; text-transform: uppercase;
    letter-spacing: 1px;
}
.grayz-offcanvas__btn:hover {
    background: #e6cf00 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,229,0,0.25);
}
.grayz-offcanvas__divider {
    width: 40px; height: 2px; background: var(--accent);
    margin: 12px 0; border-radius: 2px; opacity: 0.5;
}
.grayz-offcanvas__toggle {
    margin-top: 20px;
}
.grayz-offcanvas__theme-btn {
    font-family: var(--font-h) !important; font-size: 14px !important; font-weight: 600;
    color: var(--text-muted) !important; background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    padding: 12px 30px !important; border-radius: 100px !important;
    cursor: pointer; transition: all 0.3s; margin-top: 16px;
}
[data-theme="light"] .grayz-offcanvas__theme-btn {
    background: rgba(0,0,0,0.05) !important; border-color: rgba(0,0,0,0.1) !important;
    color: var(--text-muted) !important;
}
.grayz-offcanvas__theme-btn:hover {
    border-color: var(--accent) !important; color: var(--accent) !important;
}

/* Theme Toggle */
.grayz-theme-toggle {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 50%; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s; color: var(--text); margin-left: 8px;
}
.grayz-theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.grayz-theme-toggle__moon { display: none; }
[data-theme="light"] .grayz-theme-toggle__sun { display: none; }
[data-theme="light"] .grayz-theme-toggle__moon { display: block; }

/* ========================================================================
   HERO — 3D Glassmorphism
   ======================================================================== */
.grayz-hero {
    position: relative; overflow: hidden;
    background: var(--bg); padding: 140px var(--gutter) 80px;
    min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
}
.grayz-hero__inner {
    max-width: var(--max-w); margin: 0 auto; width: 100%;
    display: flex; gap: 80px;
    align-items: center; position: relative; z-index: 2;
}
.grayz-hero__card-wrap { flex: 1; }
.grayz-hero__content { flex: 1; }

/* ========================================================================
   POPUP MODAL FORM
   ======================================================================== */
.grayz-modal-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    padding: 20px;
}
.grayz-modal-overlay.active { opacity: 1; visibility: visible; }
.grayz-modal-overlay.active .grayz-modal {
    transform: translateY(0) scale(1); opacity: 1;
}

.grayz-modal {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    width: 100%; max-width: 520px;
    max-height: 90vh; overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95); opacity: 0;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 60px rgba(255,229,0,0.05);
}
[data-theme="light"] .grayz-modal {
    background: #fff; border-color: rgba(0,0,0,0.1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}
.grayz-modal__close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted); font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.grayz-modal__close:hover { background: rgba(255,229,0,0.1); border-color: var(--accent); color: var(--accent); }
.grayz-modal__title {
    font-family: var(--font-h); font-size: 1.4rem; font-weight: 800;
    color: var(--text-heading); margin-bottom: 6px; text-transform: uppercase;
}
.grayz-modal__subtitle {
    font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5;
}
.grayz-modal__form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grayz-modal__field--full { grid-column: 1 / -1; }
.grayz-modal__field { display: flex; flex-direction: column; gap: 6px; }
.grayz-modal__label {
    font-family: var(--font-h); font-size: 12px; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
}
.grayz-modal__input,
.grayz-modal__textarea,
.grayz-modal__select {
    font-family: var(--font-b); font-size: 14px;
    padding: 14px 18px; border-radius: 12px;
    border: 1px solid var(--border); background: var(--bg);
    color: var(--text); outline: none; transition: border-color 0.3s;
    width: 100%;
}
.grayz-modal__textarea { min-height: 100px; resize: vertical; }
.grayz-modal__input:focus,
.grayz-modal__textarea:focus,
.grayz-modal__select:focus { border-color: var(--accent); }
.grayz-modal__select { appearance: none; cursor: pointer; }
button.grayz-modal__submit,
.grayz-modal__submit,
.grayz-modal .grayz-modal__submit,
.grayz-modal-overlay .grayz-modal__submit {
    grid-column: 1 / -1;
    font-family: var(--font-h) !important; font-size: 14px !important; font-weight: 700 !important;
    padding: 16px 32px !important; border-radius: 100px !important; border: none !important;
    background: #FFE500 !important; background-color: #FFE500 !important;
    color: #000 !important; cursor: pointer;
    transition: all 0.3s; margin-top: 8px; text-transform: uppercase;
    letter-spacing: 1px;
}
button.grayz-modal__submit:hover,
.grayz-modal__submit:hover,
.grayz-modal .grayz-modal__submit:hover {
    transform: translateY(-2px);
    background: #e6cf00 !important; background-color: #e6cf00 !important;
    color: #000 !important;
    box-shadow: 0 8px 30px rgba(255,229,0,0.3) !important;
}
button.grayz-modal__submit:focus,
.grayz-modal__submit:focus {
    outline: 2px solid #FFE500 !important; outline-offset: 2px;
    background: #FFE500 !important; color: #000 !important;
}

/* ── Kill all pink/magenta focus/active colors ── */
.grayz-modal__input:focus,
.grayz-modal__textarea:focus,
.grayz-modal__select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 2px rgba(255,229,0,0.15) !important;
    outline: none !important;
}
@media (max-width: 580px) {
    .grayz-modal__form { grid-template-columns: 1fr; }
    .grayz-modal { padding: 28px 20px; }
}
.grayz-modal__success {
    text-align: center; padding: 30px 0;
}
.grayz-modal__success-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(34,197,94,0.1); border: 2px solid #22c55e;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.grayz-modal__success h3 {
    font-family: var(--font-h); color: var(--text-heading); margin-bottom: 8px;
}
.grayz-modal__success p { color: var(--text-muted); font-size: 14px; }

/* ── 3D Brick Wall Canvas ── */
.grayz-bricks {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}
/* Sections with bg animation need relative positioning */
section:has(.grayz-bricks),
section:has(.grayz-particles),
footer:has(.grayz-bricks),
footer:has(.grayz-particles) {
    position: relative !important;
    overflow: hidden !important;
}

/* ── Gradient Orbs ── */
.grayz-hero__orb {
    position: absolute; border-radius: 50%; filter: blur(100px);
    pointer-events: none; z-index: 0;
}
.grayz-hero__orb--1 {
    width: 500px; height: 500px; top: -100px; left: -150px;
    background: radial-gradient(circle, rgba(255,229,0,0.12), transparent 70%);
}
.grayz-hero__orb--2 {
    width: 400px; height: 400px; bottom: -80px; right: -100px;
    background: radial-gradient(circle, rgba(99,102,241,0.1), transparent 70%);
}
.grayz-hero__orb--3 {
    width: 300px; height: 300px; top: 40%; left: 45%;
    background: radial-gradient(circle, rgba(255,229,0,0.06), transparent 70%);
}

/* ── 3D Card Container ── */
.grayz-hero__card-wrap { position: relative; z-index: 1; perspective: 1200px; }
.grayz-hero__card {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* ── Glassmorphism Card ── */
.grayz-hero__card-glass {
    position: relative; border-radius: 24px; overflow: hidden;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.05) inset;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.grayz-hero__card:hover .grayz-hero__card-glass {
    border-color: rgba(255,229,0,0.25);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.5),
        0 0 60px rgba(255,229,0,0.08),
        0 0 0 1px rgba(255,229,0,0.15) inset;
}

/* ── Image — greyscale to color on hover + bottom feather ── */
.grayz-hero__card-img-wrap {
    aspect-ratio: 4/4; overflow: hidden; position: relative;
}
.grayz-hero__card-img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}
.grayz-hero__card:hover .grayz-hero__card-img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}
.grayz-hero__card-placeholder {
    width: 100%; aspect-ratio: 3/4; display: flex;
    align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-alt));
}
.grayz-hero__card-placeholder svg { width: 60%; height: auto; }


/* ── Glassmorphism Info Bar ── */
.grayz-hero__card-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(13,13,20,0.6);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 22px;
}
.grayz-hero__card-info-inner {
    display: flex; align-items: center; gap: 12px;
}
.grayz-hero__card-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #22c55e; flex-shrink: 0;
    box-shadow: 0 0 8px rgba(34,197,94,0.5);
    animation: grayz-pulse 2s infinite;
}
@keyframes grayz-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}
.grayz-hero__card-name {
    display: block; font-family: var(--font-h); font-weight: 700;
    font-size: 15px; color: #fff;
}
.grayz-hero__card-role {
    display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px;
}

/* ── Glowing border — thin line glow, no background rectangle ── */
.grayz-hero__card-glow {
    position: absolute; inset: -2px; border-radius: 26px; z-index: -1;
    background: transparent;
    border: 2px solid transparent;
    opacity: 0; transition: opacity 0.5s;
    pointer-events: none;
}
.grayz-hero__card:hover .grayz-hero__card-glow {
    opacity: 1;
    border-color: var(--accent);
    box-shadow:
        0 0 15px rgba(255,229,0,0.15),
        0 0 40px rgba(255,229,0,0.08),
        inset 0 0 15px rgba(255,229,0,0.05);
}

/* ── Floating Badges ── */
.grayz-hero__badge {
    position: absolute; display: flex; align-items: center; gap: 8px;
    background: rgba(13,13,20,0.7); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 16px; border-radius: 100px;
    font-family: var(--font-h); font-size: 12px; font-weight: 600;
    color: #fff; white-space: nowrap;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    z-index: 5;
}
.grayz-hero__badge--1 { top: 8%; right: -20px; }
.grayz-hero__badge--2 { bottom: 18%; left: -30px; }

/* ── Hero Content ── */
.grayz-hero__content { position: relative; z-index: 1; }
.grayz-hero__tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-h); font-size: 13px; font-weight: 500;
    color: var(--accent); background: rgba(255,229,0,0.08);
    border: 1px solid rgba(255,229,0,0.2);
    padding: 8px 20px; border-radius: 100px; margin-bottom: 28px;
}
.grayz-hero__tag-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
    animation: grayz-pulse 2s infinite;
}
.grayz-hero__heading {
    font-family: var(--font-h); font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1.08; letter-spacing: -0.03em;
    color: var(--accent); font-style: italic; text-transform: uppercase;
    margin-bottom: 28px;
}
.grayz-hero__subheading {
    font-family: var(--font-h); font-weight: 700;
    font-size: clamp(0.95rem, 1.8vw, 1.25rem);
    color: var(--text-heading); text-transform: uppercase;
    line-height: 1.45; margin-bottom: 18px; font-style: italic;
}
.grayz-hero__body {
    font-size: 1rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 36px;
}

/* ── CTA & Stats ── */
.grayz-hero__actions {
    display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.grayz-btn--glow {
    box-shadow: 0 0 30px rgba(255,229,0,0.2);
}
.grayz-btn--glow:hover {
    box-shadow: 0 0 50px rgba(255,229,0,0.35);
}
.grayz-hero__stats {
    display: flex; align-items: center; gap: 20px;
}
.grayz-hero__stat {
    text-align: center;
}
.grayz-hero__stat strong {
    display: block; font-family: var(--font-h); font-size: 1.4rem;
    font-weight: 800; color: var(--text-heading);
}
.grayz-hero__stat span {
    font-size: 12px; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 1px;
}
.grayz-hero__stat-divider {
    width: 1px; height: 36px; background: var(--border);
}

/* ── Scroll Indicator ── */
.grayz-hero__scroll {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); text-align: center; z-index: 3;
}
.grayz-hero__scroll-line {
    width: 1px; height: 50px; background: linear-gradient(to bottom, var(--accent), transparent);
    margin: 0 auto 10px;
    animation: grayz-scroll-bob 2s ease-in-out infinite;
}
@keyframes grayz-scroll-bob {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
}
.grayz-hero__scroll span {
    font-size: 11px; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 2px; font-family: var(--font-h);
}

/* ========================================================================
   TRUSTED BY — Glassmorphism auto-scrolling strip
   ======================================================================== */
.grayz-trusted {
    background: var(--bg-alt); padding: 50px 0; overflow: hidden;
}
.grayz-trusted__inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter);
}
.grayz-trusted__heading {
    font-family: var(--font-h); font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800; color: var(--text-heading); margin-bottom: 30px;
    text-transform: uppercase;
}

/* ── Glassmorphism strip container ── */
.grayz-trusted__strip {
    position: relative;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px 0;
    overflow: hidden;
}
[data-theme="light"] .grayz-trusted__strip {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.06);
}

/* Fade edges */
.grayz-trusted__strip::before,
.grayz-trusted__strip::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.grayz-trusted__strip::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-alt), transparent);
}
.grayz-trusted__strip::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-alt), transparent);
}

/* ── Infinite scrolling track ── */
.grayz-trusted__logos {
    display: flex; align-items: center; gap: 60px;
    width: max-content;
    animation: grayz-scroll-logos 25s linear infinite;
}
.grayz-trusted__logos:hover {
    animation-play-state: paused;
}

@keyframes grayz-scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Individual logo ── */
.grayz-trusted__logo {
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    padding: 0 10px;
}
.grayz-trusted__logo img {
    max-height: 50px; width: auto;
    filter: grayscale(100%) brightness(0.6);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
[data-theme="light"] .grayz-trusted__logo img {
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.5;
}
.grayz-trusted__logo:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Hide static dots — strip auto-scrolls now */
.grayz-trusted__dots { display: none; }

/* ========================================================================
   SHARED THE ROOM WITH — Glassmorphism auto-slide + particles
   ======================================================================== */
.grayz-shared {
    background: var(--bg); padding: 80px var(--gutter);
    position: relative; overflow: hidden;
}
.grayz-shared__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }
.grayz-shared__text { margin-bottom: 40px; }
.grayz-shared__heading {
    font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800; color: var(--text-heading); text-transform: uppercase;
    margin-bottom: 16px;
}
.grayz-shared__desc {
    font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 600px;
}

/* ── Carousel wrapper ── */
.grayz-shared__carousel {
    position: relative; display: flex; align-items: center; gap: 16px;
}
.grayz-shared__track {
    display: flex; gap: 20px; overflow: hidden;
    padding: 10px 0; width: 100%;
}
.grayz-shared__track-inner {
    display: flex; gap: 20px;
    animation: grayz-slide-speakers var(--shared-speed, 120s) linear infinite;
}
.grayz-shared__track-inner:hover {
    animation-play-state: paused;
}
@keyframes grayz-slide-speakers {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Glassmorphism Card ── */
.grayz-shared__card {
    flex: 0 0 200px; text-align: center; height: 260px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 0;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer; position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
}
[data-theme="light"] .grayz-shared__card {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.06);
}
.grayz-shared__card > .grayz-shared__badge ~ .grayz-shared__img ~ * {
    position: relative; z-index: 2;
}
.grayz-shared__card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,229,0,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(255,229,0,0.06);
}

/* ── Speaker Image — fills entire card ── */
.grayz-shared__img {
    width: 100%; height: 100%;
    overflow: hidden; margin: 0; padding: 0;
    transition: all 0.4s;
    position: absolute; inset: 0; z-index: 0;
    border-radius: inherit;
}
.grayz-shared__img img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
    border-radius: inherit;
    display: block;
}
.grayz-shared__card:hover .grayz-shared__img img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.08);
}
.grayz-shared__img--placeholder {
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); border-radius: 20px;
}
.grayz-shared__img--placeholder .grayz-avatar-placeholder {
    width: 100%; height: 100%; border-radius: 20px; font-size: 42px;
}

/* ── Bottom gradient overlay for text readability ── */
.grayz-shared__card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 50%; z-index: 1; border-radius: 0 0 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    pointer-events: none;
}

/* ── Speaker Info — overlaid on image ── */
.grayz-shared__name {
    display: block; font-family: var(--font-h); font-weight: 700;
    font-size: 13px; color: #fff;
    position: relative; z-index: 2;
    padding: 0 12px; margin-top: 0;
}
.grayz-shared__profession {
    display: block; font-size: 10px; color: rgba(255,255,255,0.65);
    margin-top: 2px; position: relative; z-index: 2;
    padding: 0 12px;
}
.grayz-shared__line {
    display: block; width: 25px; height: 2px; background: var(--accent);
    margin: 6px auto 12px; border-radius: 2px;
    position: relative; z-index: 2;
    transition: width 0.3s;
}
.grayz-shared__card:hover .grayz-shared__line { width: 50px; }

/* ── Social Buttons ── */
.grayz-shared__socials {
    display: flex; gap: 4px; justify-content: center;
    position: relative; z-index: 2;
    margin-bottom: 6px;
    opacity: 0; transform: translateY(8px);
    transition: all 0.3s ease;
}
.grayz-shared__card:hover .grayz-shared__socials {
    opacity: 1; transform: translateY(0);
}
.grayz-shared__socials a {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff; text-decoration: none;
    transition: all 0.3s;
}
.grayz-shared__socials a:hover {
    background: rgba(255,229,0,0.15);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* ── Speaker icon badge (microphone) ── */
.grayz-shared__badge {
    position: absolute; top: 10px; right: 10px;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,229,0,0.1); border: 1px solid rgba(255,229,0,0.2);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s; z-index: 2;
}
.grayz-shared__card:hover .grayz-shared__badge { opacity: 1; }

/* ── Navigation Arrows — accent color only ── */
.grayz-shared__arrow {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text); cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 3;
}
.grayz-shared__arrow:hover,
.grayz-shared__arrow:focus,
.grayz-shared__arrow:active {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    background: rgba(255,229,0,0.08) !important;
    box-shadow: 0 0 20px rgba(255,229,0,0.1) !important;
    outline: none;
}

/* ── Fade edges ── */
.grayz-shared__carousel::before,
.grayz-shared__carousel::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 60px;
    z-index: 2; pointer-events: none;
}
.grayz-shared__carousel::before {
    left: 50px; background: linear-gradient(to right, var(--bg), transparent);
}
.grayz-shared__carousel::after {
    right: 50px; background: linear-gradient(to left, var(--bg), transparent);
}

/* ========================================================================
   ABOUT
   ======================================================================== */
.grayz-about {
    background: var(--bg-alt); padding: 100px var(--gutter);
}
.grayz-about__inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; gap: 80px; align-items: center;
}
.grayz-about__content { flex: 1; }
.grayz-about__image { flex: 1; }
.grayz-about__heading {
    font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900; color: var(--text-heading); text-transform: uppercase;
    margin-bottom: 28px;
}
.grayz-about__text {
    font-size: 1rem; color: var(--text-muted); line-height: 1.8;
    margin-bottom: 20px;
}
.grayz-about__image { display: flex; justify-content: flex-end; }
.grayz-about__image .grayz-glass-card__img { max-height: 550px; }

/* ========================================================================
   ENGAGEMENT
   ======================================================================== */
.grayz-engagement {
    background: var(--bg); padding: 100px var(--gutter);
}
.grayz-engagement__inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; gap: 80px; align-items: start;
}
.grayz-engagement__content { flex: 1.1; }
.grayz-engagement__image { flex: 0.9; }
.grayz-engagement__heading {
    font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900; color: var(--text-heading); text-transform: uppercase;
    margin-bottom: 20px;
}
.grayz-engagement__intro {
    font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px;
}
.grayz-engagement__divider {
    border: none; border-top: 1px solid var(--border); margin: 24px 0;
}
.grayz-engagement__service { margin-bottom: 28px; }
.grayz-engagement__service h3 {
    font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
    color: var(--text-heading); margin-bottom: 8px;
}
.grayz-engagement__service p {
    font-size: 0.95rem; color: var(--text-muted); line-height: 1.6;
}
.grayz-engagement__buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 10px; }
.grayz-engagement__image { display: flex; justify-content: flex-end; }
.grayz-engagement__image .grayz-glass-card__img { max-height: 600px; }

/* ========================================================================
   INSIGHTS
   ======================================================================== */
.grayz-insights {
    background: var(--bg-alt); padding: 80px var(--gutter);
}
.grayz-insights__inner { max-width: var(--max-w); margin: 0 auto; }
.grayz-insights__header {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; margin-bottom: 40px;
}
.grayz-insights__text { }
.grayz-insights__desc {
    font-size: 1rem; color: var(--text-muted); line-height: 1.6; margin-top: 16px;
}
.grayz-insights__video {
    position: relative; border-radius: var(--radius); overflow: hidden;
    background: var(--bg-card);
}
.grayz-insights__video img { width: 100%; height: auto; display: block; }
/* ── Insights Video Grid ── */
.grayz-insights__header-text { margin-bottom: 40px; }
.grayz-insights__desc { font-size: 1rem; color: var(--text-muted); line-height: 1.6; margin-top: 16px; max-width: 600px; }
.grayz-insights__grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.grayz-insights__card {
    position: relative; border-radius: 16px; overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--border);
    cursor: pointer; aspect-ratio: 16/9;
    transition: all 0.4s;
}
.grayz-insights__card:hover {
    transform: translateY(-4px); border-color: var(--accent);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}
.grayz-insights__thumb {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
    filter: brightness(0.75); transition: filter 0.4s;
}
.grayz-insights__card:hover .grayz-insights__thumb { filter: brightness(0.9); }
.grayz-insights__play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%); z-index: 2;
    transition: transform 0.3s;
}
.grayz-insights__card:hover .grayz-insights__play { transform: translate(-50%,-50%) scale(1.15); }
.grayz-insights__title {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px; z-index: 2;
    font-family: var(--font-h); font-size: 13px; font-weight: 600;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.grayz-insights__card iframe {
    width: 100%; height: 100%; position: absolute; inset: 0; border: none; z-index: 3;
}

/* ── Podcast play overlay ── */
.grayz-podcast__play-overlay {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%); z-index: 2;
    transition: transform 0.3s;
}
.grayz-podcast__card:hover .grayz-podcast__play-overlay { transform: translate(-50%,-50%) scale(1.15); }
.grayz-podcast__title {
    padding: 14px 16px; font-family: var(--font-h); font-size: 13px;
    font-weight: 600; color: var(--text-heading); line-height: 1.4;
}
.grayz-podcast__card iframe {
    width: 100%; height: 100%; position: absolute; inset: 0; border: none; z-index: 3;
}

/* ========================================================================
   PODCAST
   ======================================================================== */
.grayz-podcast {
    background: var(--bg); padding: 80px var(--gutter);
}
.grayz-podcast__inner { max-width: var(--max-w); margin: 0 auto; }
.grayz-podcast .grayz-section-heading { margin-bottom: 40px; }
.grayz-podcast__header { text-align: center; margin-bottom: 48px; }
.grayz-podcast__header .grayz-section-heading { margin-bottom: 16px; }
.grayz-podcast__subline {
    font-family: var(--font); font-size: 16px; line-height: 1.7;
    color: var(--text); opacity: .7; max-width: 640px; margin: 0 auto;
}

/* ── Podcast Slider ── */
.grayz-podcast__slider {
    position: relative; overflow: hidden;
    margin: 0 -40px; padding: 10px 40px;
}
.grayz-podcast__slider::before,
.grayz-podcast__slider::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.grayz-podcast__slider::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.grayz-podcast__slider::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.grayz-podcast__track {
    display: flex; gap: 24px; width: max-content;
    animation: grayz-slide-podcast var(--podcast-speed, 60s) linear infinite;
}
.grayz-podcast__track:hover { animation-play-state: paused; }

@keyframes grayz-slide-podcast {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Podcast Card ── */
.grayz-podcast__card {
    flex: 0 0 320px; width: 320px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.4s; cursor: pointer;
}
[data-theme="light"] .grayz-podcast__card {
    background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06);
}
.grayz-podcast__card:hover {
    transform: translateY(-6px); border-color: var(--accent);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3), 0 0 30px rgba(255,229,0,0.05);
}
.grayz-podcast__thumb {
    position: relative; aspect-ratio: 16/9; background: var(--bg-alt); overflow: hidden;
}
.grayz-podcast__thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
}
.grayz-podcast__card:hover .grayz-podcast__thumb img { transform: scale(1.08); }

/* Old grid fallback */
.grayz-podcast__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
    gap: 24px;
}

/* ========================================================================
   LATEST
   ======================================================================== */
.grayz-latest {
    background: var(--bg-alt); padding: 80px var(--gutter);
}
.grayz-latest__inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; gap: 60px; align-items: center;
}
.grayz-latest__image { flex: 1; }
.grayz-latest__content { flex: 1.2; }
.grayz-latest__image .grayz-outlined-img img { max-height: 500px; }
.grayz-latest__list { margin-top: 24px; }
.grayz-latest__item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; border-bottom: 1px solid var(--border);
    text-decoration: none; transition: all 0.3s; gap: 16px;
}
.grayz-latest__item:hover { padding-left: 12px; }
.grayz-latest__item-title {
    font-family: var(--font-h); font-size: 1rem; font-weight: 600;
    color: var(--text-heading); transition: color 0.3s;
}
.grayz-latest__item:hover .grayz-latest__item-title { color: var(--accent); }
.grayz-latest__item-play { flex-shrink: 0; }

/* ── Latest item thumbnails ── */
.grayz-latest__item-thumb {
    width: 70px; height: 44px; border-radius: 8px; overflow: hidden;
    flex-shrink: 0; background: var(--bg-card);
}
.grayz-latest__item-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(80%) brightness(0.8);
    transition: filter 0.3s;
}
.grayz-latest__item:hover .grayz-latest__item-thumb img {
    filter: grayscale(0%) brightness(1);
}

/* ── Latest glassmorphism list wrapper ── */
.grayz-latest__list {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px; padding: 8px 0;
    margin-top: 24px;
}
.grayz-latest__item {
    padding: 14px 20px;
}
.grayz-latest__item:last-child { border-bottom: none; }

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.grayz-testimonials {
    background: var(--bg); padding: 80px var(--gutter);
}
.grayz-testimonials__inner { max-width: var(--max-w); margin: 0 auto; }
.grayz-testimonials__label {
    display: block; text-align: center;
    font-size: 13px; color: var(--text-muted);
    margin-bottom: 8px; letter-spacing: 1px;
}
.grayz-testimonials .grayz-section-heading { margin-bottom: 50px; }

/* ── Auto-scrolling testimonial slider ── */
.grayz-testimonials__slider {
    position: relative; overflow: hidden;
    margin: 0 -40px; padding: 12px 40px;
}
.grayz-testimonials__slider::before,
.grayz-testimonials__slider::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.grayz-testimonials__slider::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.grayz-testimonials__slider::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.grayz-testimonials__track {
    display: flex; gap: 24px; width: max-content;
    animation: grayz-slide-testimonials var(--testimonial-speed, 80s) linear infinite;
}
.grayz-testimonials__track:hover { animation-play-state: paused; }

@keyframes grayz-slide-testimonials {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Keep old grid as fallback class */
.grayz-testimonials__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
    gap: 24px;
}
.grayz-testimonial-card {
    flex: 0 0 380px; width: 380px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); padding: 32px; text-align: center;
    transition: all 0.4s;
}
[data-theme="light"] .grayz-testimonial-card {
    background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06);
}
.grayz-testimonial-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(255,229,0,0.05);
    transform: translateY(-4px);
    background: rgba(255,255,255,0.05);
}
.grayz-testimonial-card__stars {
    display: flex; justify-content: center; gap: 4px; margin-bottom: 16px;
}
.grayz-testimonial-card__avatar {
    width: 60px; height: 60px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 12px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s;
}
.grayz-testimonial-card:hover .grayz-testimonial-card__avatar {
    border-color: var(--accent);
}
.grayz-testimonial-card__avatar img {
    width: 100%; height: 100%; object-fit: cover;
}
.grayz-testimonial-card__name {
    font-family: var(--font-h); font-weight: 700; font-size: 0.95rem;
    color: var(--text-heading); margin-bottom: 4px;
}
.grayz-testimonial-card__role {
    display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 16px;
}
.grayz-testimonial-card__text {
    font-size: 13px; color: var(--text-muted); line-height: 1.7;
    font-style: italic;
}
.grayz-testimonial-card__text p { margin: 0; }

/* ========================================================================
   COLLABORATIONS
   ======================================================================== */
.grayz-collab {
    background: var(--bg-alt); padding: 80px var(--gutter);
}
.grayz-collab__inner {
    max-width: var(--max-w); margin: 0 auto;
    border-radius: var(--radius); overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 56px;
}
.grayz-collab__top { text-align: center; margin-bottom: 48px; }
.grayz-collab__heading {
    font-family: var(--font-h); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
    color: var(--text-heading); line-height: 1.3; margin-bottom: 16px;
}
.grayz-collab__subline {
    font-size: 1rem; color: var(--text); opacity: .7; line-height: 1.7;
    max-width: 680px; margin: 0 auto;
}
.grayz-collab__qualifiers {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    margin-bottom: 48px;
}
.grayz-collab__qual { padding: 28px; border-radius: 16px; background: rgba(255,255,255,.03); border: 1px solid var(--border); }
[data-theme="light"] .grayz-collab__qual { background: rgba(0,0,0,.02); }
.grayz-collab__qual-title {
    font-family: var(--font-h); font-size: 0.95rem; font-weight: 700;
    color: var(--text-heading); margin-bottom: 16px; letter-spacing: 0.5px;
}
.grayz-collab__qual-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.grayz-collab__qual-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9rem; color: var(--text); line-height: 1.5;
}
.grayz-collab__qual-icon { font-weight: 700; font-size: 1rem; flex-shrink: 0; line-height: 1.4; }
.grayz-collab__qual--for .grayz-collab__qual-icon { color: #22c55e; }
.grayz-collab__qual--not .grayz-collab__qual-icon { color: #ef4444; }
.grayz-collab__actions {
    display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}

/* ========================================================================
   NEWSLETTER
   ======================================================================== */
.grayz-newsletter {
    background: var(--bg); padding: 60px var(--gutter);
}
.grayz-newsletter__inner { max-width: var(--max-w); margin: 0 auto; }
.grayz-newsletter__card {
    border: 2px solid var(--accent); border-radius: var(--radius);
    padding: 40px;
}
.grayz-newsletter__heading {
    font-family: var(--font-h); font-size: 1.5rem; font-weight: 800;
    color: var(--text-heading); margin-bottom: 20px;
}
.grayz-newsletter__row {
    display: flex; align-items: center; gap: 40px;
}
.grayz-newsletter__desc {
    flex: 1; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
}
.grayz-newsletter__form {
    display: flex; gap: 12px; flex-shrink: 0;
}
.grayz-newsletter__input {
    font-family: var(--font-b); font-size: 14px;
    padding: 12px 20px; border-radius: 100px;
    border: 1px solid var(--border); background: var(--bg-card);
    color: var(--text); outline: none; min-width: 240px;
    transition: border-color 0.3s;
}
.grayz-newsletter__input:focus { border-color: var(--accent); }

/* ========================================================================
   MEDIA — Modern YouTube Gallery
   ======================================================================== */
.grayz-media {
    background: var(--bg); padding: 80px var(--gutter);
    position: relative; overflow: hidden;
}
.grayz-media__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }
.grayz-media__header { margin-bottom: 36px; }
.grayz-media__desc {
    font-size: 1rem; color: var(--text-muted); line-height: 1.6; margin-top: 12px; max-width: 600px;
}

/* ── Tabs ── */
.grayz-media__tabs {
    display: flex; gap: 10px; margin-bottom: 32px; flex-wrap: wrap;
}
.grayz-media__tab {
    font-family: var(--font-h) !important; font-size: 13px !important; font-weight: 600;
    padding: 10px 24px !important; border-radius: 100px !important;
    border: 1px solid var(--border) !important;
    background: transparent !important; color: var(--text-muted) !important;
    cursor: pointer; transition: all 0.3s;
}
.grayz-media__tab:hover {
    color: var(--text-heading) !important; border-color: rgba(255,255,255,0.15) !important;
    background: var(--bg-card) !important;
}
.grayz-media__tab.active {
    background: var(--accent) !important; color: #000 !important;
    border-color: var(--accent) !important;
    box-shadow: 0 4px 20px rgba(255,229,0,0.2);
}

/* ── Hero Featured Video ── */
.grayz-media__hero { margin-bottom: 28px; }
.grayz-media__hero-card {
    position: relative; border-radius: 20px; overflow: hidden;
    aspect-ratio: 16/7; cursor: pointer;
    background: var(--bg-card); border: 1px solid var(--border);
    transition: all 0.4s;
}
.grayz-media__hero-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(255,229,0,0.06);
}
.grayz-media__hero-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.6); transition: all 0.6s;
}
.grayz-media__hero-card:hover .grayz-media__hero-img {
    filter: brightness(0.75); transform: scale(1.03);
}
.grayz-media__hero-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; z-index: 2; gap: 16px;
}
.grayz-media__hero-play { transition: transform 0.3s; }
.grayz-media__hero-card:hover .grayz-media__hero-play { transform: scale(1.15); }
.grayz-media__hero-title {
    font-family: var(--font-h); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700; color: #fff; text-align: center;
    max-width: 600px; text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.grayz-media__badge, .grayz-media__card-badge {
    font-family: var(--font-h); font-size: 11px; font-weight: 700;
    background: var(--accent); color: #000;
    padding: 4px 14px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: 1px;
}
.grayz-media__card-badge {
    position: absolute; top: 12px; left: 12px; z-index: 3;
}
.grayz-media__hero-card iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: none; z-index: 5;
}

/* ── Video Grid ── */
.grayz-media__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.grayz-media__card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    transition: all 0.4s; cursor: pointer;
}
.grayz-media__card:hover {
    transform: translateY(-6px); border-color: var(--accent);
    box-shadow: 0 16px 50px rgba(0,0,0,0.25), 0 0 30px rgba(255,229,0,0.05);
}
.grayz-media__card.grayz-media--hidden {
    display: none;
}
.grayz-media__thumb {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
    background: var(--bg-alt);
}
.grayz-media__thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: all 0.5s;
}
.grayz-media__card:hover .grayz-media__thumb img {
    transform: scale(1.08); filter: brightness(0.85);
}
.grayz-media__play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%); z-index: 2;
    opacity: 0.85; transition: all 0.3s;
}
.grayz-media__card:hover .grayz-media__play { opacity: 1; transform: translate(-50%,-50%) scale(1.15); }
.grayz-media__info { padding: 16px; }
.grayz-media__title {
    font-family: var(--font-h); font-size: 14px; font-weight: 600;
    color: var(--text-heading); line-height: 1.4; margin-bottom: 6px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.grayz-media__date {
    font-size: 12px; color: var(--text-muted);
}
.grayz-media__card iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: none; z-index: 5;
}

/* ── Media Responsive ── */
@media (max-width: 768px) {
    .grayz-media__grid { grid-template-columns: 1fr 1fr; }
    .grayz-media__hero-card { aspect-ratio: 16/9; }
    .grayz-media__hero-title { font-size: 1rem; }
}
.grayz-newsletter__success {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-h); font-size: 14px; font-weight: 600;
    color: #22c55e;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.grayz-footer {
    background: var(--bg-alt); padding: 60px var(--gutter) 0;
    border-top: 1px solid var(--border);
}
.grayz-footer__inner {
    max-width: var(--max-w); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px;
}
.grayz-footer__logo-script {
    font-family: 'Georgia', serif; font-style: italic;
    font-size: 48px; color: var(--accent);
}
.grayz-footer__socials {
    display: flex; gap: 10px; margin-top: 20px;
}
.grayz-footer__social {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted); text-decoration: none;
    transition: all 0.3s;
}
.grayz-footer__social:hover {
    background: rgba(255,229,0,0.1) !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    transform: translateY(-3px);
}
.grayz-footer__logo { max-height: 60px; }
.grayz-footer__heading {
    font-family: var(--font-h); font-size: 14px; font-weight: 700;
    color: var(--text-heading); text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 20px;
}
.grayz-footer__links {
    list-style: none; padding: 0;
}
.grayz-footer__links li { margin-bottom: 10px; }
.grayz-footer__links a {
    color: var(--text-muted); text-decoration: none; font-size: 14px;
    transition: color 0.3s;
}
.grayz-footer__links a:hover { color: var(--accent); }
.grayz-footer__contact {
    list-style: none; padding: 0;
}
.grayz-footer__contact li {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px; font-size: 14px; color: var(--text-muted);
}
.grayz-footer__bottom {
    border-top: 1px solid var(--border);
    text-align: center; padding: 20px 0;
}
.grayz-footer__bottom p {
    font-size: 13px; color: var(--text-muted);
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1024px) {
    :root { --gutter: 24px; }
    .grayz-hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .grayz-hero__card-wrap { order: -1; max-width: 400px; margin: 0 auto; }
    .grayz-hero__badge--1 { right: -10px; }
    .grayz-hero__badge--2 { left: -10px; }
    .grayz-hero__actions { justify-content: center; }
    .grayz-hero__tag { margin-left: auto; margin-right: auto; }
    .grayz-about__inner { grid-template-columns: 1fr; }
    .grayz-about__image { justify-content: center; order: -1; }
    .grayz-engagement__inner { grid-template-columns: 1fr; }
    .grayz-engagement__image { justify-content: center; order: -1; }
    .grayz-insights__header { grid-template-columns: 1fr; }
    .grayz-latest__inner { grid-template-columns: 1fr; }
    .grayz-latest__image { display: flex; justify-content: center; }
    .grayz-collab__inner { padding: 40px 28px; }
    .grayz-collab__qualifiers { grid-template-columns: 1fr; gap: 24px; }
    .grayz-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --gutter: 16px; }
    /* Burger visible on mobile */
    .grayz-header__burger,
    button.grayz-header__burger {
        display: flex !important;
        z-index: 999999 !important;
        position: relative !important;
    }
    /* Hide desktop nav on mobile */
    .grayz-header__nav {
        display: none !important;
    }
    /* Hero mobile */
    .grayz-hero { padding: 80px 16px 40px !important; min-height: auto !important; overflow: hidden !important; }
    .grayz-hero__inner { flex-direction: column !important; gap: 24px !important; text-align: center; max-width: 100% !important; overflow: hidden !important; }
    .grayz-hero__card-wrap { order: -1; max-width: 260px !important; width: 260px !important; flex: none !important; margin: 0 auto; }
    .grayz-hero__card-wrap .grayz-hero__card { max-width: 100% !important; }
    .grayz-hero__content { max-width: 100% !important; overflow: hidden !important; word-wrap: break-word !important; }
    .grayz-hero__heading { font-size: 1.4rem !important; }
    .grayz-hero__subheading { font-size: 0.8rem !important; }
    .grayz-hero__body { font-size: 0.85rem !important; }
    .grayz-hero__badge { display: none !important; }
    .grayz-hero__tag { margin: 0 auto 16px !important; font-size: 11px; padding: 6px 14px; }
    .grayz-hero__stats { gap: 14px; justify-content: center; }
    .grayz-hero__actions { gap: 14px; flex-direction: column; align-items: center; }
    .grayz-hero__scroll { display: none !important; }
    .grayz-hero__card-info { padding: 10px 14px; }
    .grayz-hero__card-name { font-size: 12px; }
    .grayz-hero__card-role { font-size: 10px; }
    .grayz-hero__orb { display: none !important; }
    .grayz-hero__card-info-inner { gap: 8px; }
    .grayz-hero .grayz-bricks { display: none !important; }

    /* About / Engagement mobile */
    .grayz-about__inner,
    .grayz-engagement__inner { flex-direction: column !important; gap: 30px; }
    .grayz-about__image,
    .grayz-engagement__image { order: -1; flex: none !important; max-width: 100% !important; }
    .grayz-about__content,
    .grayz-engagement__content { flex: none !important; }

    /* Latest mobile */
    .grayz-latest__inner { flex-direction: column !important; gap: 30px; }
    .grayz-latest__image { flex: none !important; max-width: 100% !important; }
    .grayz-latest__content { flex: none !important; }

    /* General mobile */
    .grayz-newsletter__row { flex-direction: column; gap: 20px; }
    .grayz-newsletter__form { width: 100%; }
    .grayz-newsletter__input { min-width: 0; flex: 1; }
    .grayz-engagement__buttons { flex-direction: column; align-items: stretch; }
    .grayz-engagement__buttons .grayz-btn { text-align: center; justify-content: center; }
    .grayz-testimonials__grid { grid-template-columns: 1fr; }
    .grayz-podcast__grid { grid-template-columns: 1fr 1fr; }
    .grayz-insights__grid { grid-template-columns: 1fr; }
    .grayz-collab__inner { padding: 32px 20px; }
    .grayz-collab__actions { flex-direction: column; }
    /* Footer mobile */
    .grayz-footer { padding: 40px 16px 0 !important; }
    .grayz-footer__inner {
        grid-template-columns: 1fr !important; gap: 28px !important;
        text-align: center !important;
    }
    .grayz-footer__brand {
        display: flex; flex-direction: column; align-items: center;
        padding-bottom: 24px; border-bottom: 1px solid var(--border);
    }
    .grayz-footer__logo-script { font-size: 36px !important; }
    .grayz-footer__logo { max-height: 40px !important; }
    .grayz-footer__socials {
        justify-content: center !important; gap: 8px !important; margin-top: 16px !important;
    }
    .grayz-footer__social { width: 34px !important; height: 34px !important; }
    .grayz-footer__col { padding-bottom: 20px; border-bottom: 1px solid var(--border); }
    .grayz-footer__col:last-child { border-bottom: none; }
    .grayz-footer__heading {
        text-align: center !important; font-size: 13px !important; margin-bottom: 14px !important;
    }
    .grayz-footer__links { text-align: center; }
    .grayz-footer__links li { margin-bottom: 8px; }
    .grayz-footer__links a { font-size: 13px; }
    .grayz-footer__contact li {
        justify-content: center !important; font-size: 13px !important; gap: 8px !important;
        flex-wrap: wrap;
    }
    .grayz-footer__contact li svg { flex-shrink: 0; }
    .grayz-footer__bottom { padding: 16px 0 !important; }
    .grayz-footer__bottom p { font-size: 11px !important; }

    /* Shared Room mobile */
    .grayz-shared__card { flex: 0 0 160px !important; width: 160px !important; min-height: 220px; }
    .grayz-shared__name { font-size: 12px; }
    .grayz-shared__profession { font-size: 10px; }

    /* Section headings mobile */
    .grayz-section-heading { font-size: 1.6rem; }
    .grayz-about__heading,
    .grayz-engagement__heading { font-size: 1.8rem; }
    .grayz-shared__heading { font-size: 1.5rem; }
    .grayz-trusted__heading { font-size: 1.3rem; }

    /* Glass card mobile */
    .grayz-glass-card__inner { border-radius: 16px; }
}

/* ========================================================================
   GSAP — No CSS hiding. JS handles all animation via fromTo().
   Elements are visible by default. GSAP animates them FROM hidden TO visible.
   ======================================================================== */
