/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    --bg: #030303;
    --surface: #0a0a0b;
    --surface-hover: #121215;
    --border: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.12);
    --text: #ffffff;
    --text-muted: #88888b;
    --accent: #ffffff;
    --accent-dim: rgba(255, 255, 255, 0.4);
    --glow: rgba(255, 255, 255, 0.04);
    --ff-display: 'Syne', sans-serif;
    --ff-body: 'Onest', sans-serif;
    --ff-mono: 'Space Mono', monospace;
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg);
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--ff-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- NOISE OVERLAY --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.045"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 999;
}

/* --- CUSTOM CURSOR --- */
.cursor-dot, .cursor-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--text);
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid var(--accent-dim);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s;
}

body:hover .cursor-dot, body:hover .cursor-ring {
    opacity: 1;
}

.cursor-hover .cursor-ring {
    width: 50px;
    height: 50px;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* --- CANVAS BACKGROUND --- */
#gridCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.85;
}

/* --- PIXEL SNOW CANVAS --- */
#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    mask-image: linear-gradient(to bottom, white 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, white 40%, transparent 100%);
}

/* --- NAVBAR --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 1.5rem 0;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, padding 0.3s ease;
}

#navbar.scrolled {
    background: rgba(3, 3, 3, 0.8);
    padding: 1rem 0;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.brand-dot {
    color: #88888b;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ethical-badge {
    font-family: var(--ff-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0.85rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff66;
    display: inline-block;
}

.nav-cta {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 0 15px rgba(255, 255, 255, 0.03);
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 4rem;
    z-index: 1;
    overflow: hidden;
}

/* Curved text ring */
.curved-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(80vw, 750px);
    height: min(80vw, 750px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.38;
    animation: rotateRing 38s linear infinite;
}

@keyframes rotateRing {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ring-text {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 16px;
    fill: var(--text);
    letter-spacing: 4px;
}

.hero-deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    height: 1px;
    width: 100%;
}

.deco-line-1 { top: 25%; }
.deco-line-2 { bottom: 30%; }

.hero-content {
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tag {
    font-family: var(--ff-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-indicator {
    width: 5px;
    height: 5px;
    background: var(--text);
    border-radius: 50%;
}

.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(3rem, 11vw, 7.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.title-line {
    display: inline-block;
}

.accent-text {
    -webkit-text-stroke: 1px var(--text);
    color: transparent;
}

.hero-sub {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--text-muted);
    font-weight: 300;
    max-width: 680px;
    line-height: 1.5;
    margin-bottom: 3.5rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

/* Button & Magnetic wrapping */
.mag-wrap {
    display: inline-block;
}

.btn {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 1rem;
    padding: 1.1rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn-fill {
    background: var(--text);
    color: var(--bg);
}

.btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow);
}

.btn-icon svg {
    display: block;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-ghost:hover .btn-arrow {
    transform: translate(2px, -2px);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: #fff;
    animation: scrollDot 2s infinite ease-in-out;
}

@keyframes scrollDot {
    0% { transform: translateY(-100%); }
    80% { transform: translateY(250%); }
    100% { transform: translateY(250%); }
}

.scroll-hint span {
    font-family: var(--ff-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* --- TRUST BAND --- */
.trust-band {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(10, 10, 11, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 10;
}

.trust-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2.5rem 2rem;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 200px;
}

.trust-icon {
    font-size: 1.8rem;
}

.trust-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.trust-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 35px;
    background: var(--border);
}

@media (max-width: 900px) {
    .trust-divider {
        display: none;
    }
}

/* --- MARQUEE SECTION --- */
.marquee-section {
    padding: 5rem 0 3rem;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.marquee-label {
    text-align: center;
    font-family: var(--ff-mono);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.marquee-track-wrapper {
    position: relative;
    width: 100%;
}

.marquee-fade-left, .marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-inner {
    display: inline-flex;
    gap: 5rem;
}

.marquee-item {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--text);
    opacity: 0.4;
    transition: opacity 0.3s;
}

.marquee-item:hover {
    opacity: 1;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- CONTENT SECTION --- */
.content-section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-eyebrow {
    font-family: var(--ff-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.section-heading {
    font-family: var(--ff-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-heading em {
    font-style: italic;
    font-weight: 400;
    -webkit-text-stroke: 1px var(--text);
    color: transparent;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 4.5rem;
}

/* CONTENT GRID */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

.content-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.content-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.card-bg-glow {
    position: absolute;
    top: var(--y, 0);
    left: var(--x, 0);
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.035) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover .card-bg-glow {
    opacity: 1;
}

.card-num {
    font-family: var(--ff-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    z-index: 1;
}

.card-title {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
    z-index: 1;
}

.card-tag {
    font-family: var(--ff-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    width: fit-content;
    background: rgba(255, 255, 255, 0.01);
    z-index: 1;
}

/* --- ETHICAL SECTION --- */
.ethical-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.ethical-inner {
    border: 1px solid var(--border);
    background: rgba(10, 10, 11, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 4rem 3.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 768px) {
    .ethical-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
    }
}

.ethical-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ethical-content h3 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.ethical-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- FINAL CTA --- */
.final-cta {
    padding: 10rem 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.final-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-eyebrow {
    font-family: var(--ff-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.final-heading {
    font-family: var(--ff-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.8rem;
    font-size: 1.05rem;
}

.final-bg-text {
    position: absolute;
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ff-display);
    font-size: clamp(10rem, 30vw, 25rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.012);
    pointer-events: none;
    z-index: 1;
    letter-spacing: -10px;
}

/* --- FOOTER --- */
.footer {
    border-top: 1px solid var(--border);
    padding: 4rem 0;
    background: #030303;
    position: relative;
    z-index: 10;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 1.25rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* GSAP Reveal State */
[data-reveal] {
    opacity: 0;
}

/* --- HERO CENTER LOGO --- */
.hero-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(28vw, 240px);
    height: min(28vw, 240px);
    z-index: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-label {
    position: absolute;
    top: -3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: italic;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: none;
    opacity: 0.85;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.hero-center-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.38;
    filter: grayscale(1) brightness(2.5);
    mask-image: radial-gradient(circle at center, white 45%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, white 45%, transparent 80%);
}

/* --- TRUST BAND ICON MODERN --- */
.trust-icon-modern {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: border-color 0.3s, color 0.3s;
}

.trust-item:hover .trust-icon-modern {
    border-color: var(--border-hover);
    color: var(--text);
}

/* --- CTF SECTION --- */
.ctf-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.ctf-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 24px;
    padding: 5rem;
    position: relative;
    overflow: hidden;
}

.ctf-inner::before {
    content: 'CTF';
    position: absolute;
    right: -2rem;
    bottom: -4rem;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 14rem;
    color: rgba(255,255,255,0.015);
    pointer-events: none;
    letter-spacing: -8px;
}

@media (max-width: 900px) {
    .ctf-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
}

.ctf-eyebrow {
    font-family: var(--ff-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.ctf-title {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.ctf-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.ctf-btn {
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

/* Terminal Mockup */
.terminal-mockup {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    font-family: var(--ff-mono);
}

.terminal-header {
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }

.terminal-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.terminal-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.6;
}

.terminal-body span {
    color: #00ff88;
    margin-right: 0.5rem;
}

.terminal-body .success {
    color: #00ff88;
}

/* --- ENHANCED CONTENT CARDS --- */
.content-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    cursor: default;
}

.content-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.content-card:hover::after {
    opacity: 1;
}

.content-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Marquee logos */
.marquee-logo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.45;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.marquee-logo-item:hover {
    opacity: 1;
}

.marquee-logo-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: grayscale(1) brightness(3);
}

.marquee-logo-item span {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}
