/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Temporarily hide documentation (remove this block to restore) */
.hamburger-btn,
.docs-sidebar,
.docs-overlay,
.docs-content {
    display: none !important;
}

/* Z-Index Management */
:root {
    --z-overlay: 997;
    --z-docs-content: 998;
    --z-sidebar: 999;
    --z-header: 1000;
    --z-hamburger: 1001;
    --z-modal: 1200;

    /* Color Palette */
    --gold: #FFD700;
    --gold-orange: #FFA500;
    --gold-glow: rgba(255, 215, 0, 0.3);
    --gold-border: rgba(255, 215, 0, 0.2);
    --gold-border-hover: rgba(255, 215, 0, 0.35);
    --bg-dark: #0a0a0a;
    --bg-card: linear-gradient(145deg, rgba(26, 26, 26, 0.85), rgba(10, 10, 10, 0.9));
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --text-faint: #777777;
    --green-accent: #4ade80;
    --red-accent: #ef4444;
    --orange-accent: #ff6b35;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 20px;
    border-top: 1px solid rgba(150, 230, 220, 0.18);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 15px;
}

.cookie-consent-banner.show {
    display: flex;
}

.cookie-consent-message {
    width: 100%;
    font-size: 13px;
    line-height: 1.5;
    color: #cccccc;
}

.cookie-consent-message a {
    color: #96E6DC;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-message a:hover {
    color: #ffffff;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.cookie-consent-close,
.cookie-consent-button {
    flex: 1;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.cookie-consent-button {
    background: linear-gradient(135deg, #96E6DC, #BCE7C1, #F6D384, #DB98CB);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(150, 230, 220, 0.2);
}

.cookie-consent-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(150, 230, 220, 0.35);
}

.cookie-consent-close {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-close:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(150, 230, 220, 0.4);
}

/* Desktop styles */
@media (min-width: 769px) {
    .cookie-consent-banner {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    
    .cookie-consent-message {
        flex: 1;
        min-width: 250px;
        font-size: 15px;
    }
    
    .cookie-consent-buttons {
        width: auto;
        flex-shrink: 0;
    }
    
    .cookie-consent-close,
    .cookie-consent-button {
        flex: 0 0 auto;
        min-width: 100px;
    }
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Selection styling */
::selection {
    background: rgba(150, 230, 220, 0.25);
    color: var(--text-primary);
}

/* Focus-visible for keyboard accessibility */
:focus-visible {
    outline: 2px solid #96E6DC;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid #96E6DC;
    outline-offset: 2px;
    border-radius: 4px;
}

body.modal-open {
    overflow: hidden;
}

/* Starfield disabled for rebrand */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 0.1rem;
    padding-top: 0.1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: var(--z-header);
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 100vw;
    transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease, backdrop-filter .25s ease, transform .35s ease;
}

.header--scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: none;
}

.header.header-hidden {
    transform: translateY(-100%);
}

@media (min-width: 769px) {
    .header { backdrop-filter: blur(10px); }
}

.header .container {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.logo {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo-icon {
    height: 2.8rem;
    width: auto;
}

.logo-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.nav {
    grid-column: 3;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Hamburger Button */
.hamburger-btn {
    grid-column: 1;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px;
    transition: background 0.3s ease;
    z-index: var(--z-hamburger);
    position: relative;
}

.hamburger-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hamburger-btn.active {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: transparent;
    color: #ffffff;
    border: none;
    box-shadow: none;
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, #96E6DC, #BCE7C1, #F6D384, #DB98CB);
    color: #000;
    border: none;
    box-shadow: none;
    font-weight: 700;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(150, 230, 220, 0.3);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image,
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

.hero-bg-overlay {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.hero-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    z-index: 2;
    position: relative;
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    margin-bottom: 0.4rem;
}

.hero-brand-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    color: #ffffff;
    letter-spacing: 0.04em;
    display: block;
}

.hero-brand-icon {
    display: none;
}

.hero-icon-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon-large {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.hero-description {
    font-size: 0.95rem;
    color: #cccccc;
    opacity: 0.8;
    max-width: 500px;
}

/* Brand Logos Bar */
.brand-logos-bar {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
    z-index: 2;
}

.brand-logos-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.brand-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.brand-logo {
    height: 1.2rem;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.brand-logo:hover {
    opacity: 1;
}

/* Ship float animation — pre-computed sine-curve for smooth bob + rock */
@keyframes float {
    0%      { transform: translateY(0px)      rotate(-4deg); }
    3.125%  { transform: translateY(-5.85px)  rotate(-3.92deg); }
    6.25%   { transform: translateY(-11.48px) rotate(-3.7deg); }
    9.375%  { transform: translateY(-16.67px) rotate(-3.33deg); }
    12.5%   { transform: translateY(-21.21px) rotate(-2.83deg); }
    15.625% { transform: translateY(-24.94px) rotate(-2.22deg); }
    18.75%  { transform: translateY(-27.72px) rotate(-1.53deg); }
    21.875% { transform: translateY(-29.42px) rotate(-0.78deg); }
    25%     { transform: translateY(-30px)    rotate(0deg); }
    28.125% { transform: translateY(-29.42px) rotate(0.78deg); }
    31.25%  { transform: translateY(-27.72px) rotate(1.53deg); }
    34.375% { transform: translateY(-24.94px) rotate(2.22deg); }
    37.5%   { transform: translateY(-21.21px) rotate(2.83deg); }
    40.625% { transform: translateY(-16.67px) rotate(3.33deg); }
    43.75%  { transform: translateY(-11.48px) rotate(3.7deg); }
    46.875% { transform: translateY(-5.85px)  rotate(3.92deg); }
    50%     { transform: translateY(0px)      rotate(4deg); }
    53.125% { transform: translateY(5.85px)   rotate(3.92deg); }
    56.25%  { transform: translateY(11.48px)  rotate(3.7deg); }
    59.375% { transform: translateY(16.67px)  rotate(3.33deg); }
    62.5%   { transform: translateY(21.21px)  rotate(2.83deg); }
    65.625% { transform: translateY(24.94px)  rotate(2.22deg); }
    68.75%  { transform: translateY(27.72px)  rotate(1.53deg); }
    71.875% { transform: translateY(29.42px)  rotate(0.78deg); }
    75%     { transform: translateY(30px)     rotate(0deg); }
    78.125% { transform: translateY(29.42px)  rotate(-0.78deg); }
    81.25%  { transform: translateY(27.72px)  rotate(-1.53deg); }
    84.375% { transform: translateY(24.94px)  rotate(-2.22deg); }
    87.5%   { transform: translateY(21.21px)  rotate(-2.83deg); }
    90.625% { transform: translateY(16.67px)  rotate(-3.33deg); }
    93.75%  { transform: translateY(11.48px)  rotate(-3.7deg); }
    96.875% { transform: translateY(5.85px)   rotate(-3.92deg); }
    100%    { transform: translateY(0px)      rotate(-4deg); }
}

@keyframes sparkle {
    from { transform: translateX(0); }
    to { transform: translateX(-1200px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ship-image { animation: none; }
    .problem-section { height: auto; }
    .problem-sticky { position: relative; height: auto; overflow: hidden; }
    .problem-card { transition: none; position: relative; opacity: 1; transform: none; pointer-events: auto; }
    .problem-stage { min-height: auto; }
    .problem-dot { transition: none; }
    .problem-dots { display: none; }
    .how-it-works { height: auto; padding: 3rem 0; }
    .steps-sticky { position: static; height: auto; }
    .step-card { transform: none !important; opacity: 1 !important; }
    .bounty-explainer { opacity: 1 !important; }
    .why-section { height: auto; padding: 3rem 0; }
    .why-sticky { position: static; height: auto; }
    .value-card { transform: none !important; opacity: 1 !important; }
    .campaigns-section { height: auto; padding: 3rem 0; }
    .campaigns-sticky { position: relative; height: auto; overflow: hidden; }
    .campaigns-title-sub { opacity: 1 !important; }
    .campaign-card { transform: none !important; opacity: 1 !important; }
    .campaigns-supporting { opacity: 1 !important; }
}

/* Title-centered intro: hide sub-content until JS animates it in (desktop only) */
@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
    .js .problem-stage,
    .js .problem-dots {
        opacity: 0;
    }
    .js .steps-grid {
        opacity: 0;
    }
    .why-section--animated .value-grid {
        opacity: 0;
    }
    .js .campaigns-title-sub,
    .js .campaigns-grid,
    .js .campaigns-supporting {
        opacity: 0;
    }
}

/* Platforms Section */
.platforms {
    padding: 3rem 0 2rem;
    background: transparent;
    content-visibility: auto;
    contain-intrinsic-size: 520px;
}

.platforms-header {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.platforms-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.platform-card {
    background: #1F1F1F;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-height: 140px;
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 18px 36px rgba(150, 230, 220, 0.08);
    background: linear-gradient(145deg, rgba(34, 34, 34, 0.95), rgba(12, 12, 12, 0.95));
}

.platform-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.platform-logo img {
    max-width: 56px;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.platform-name {
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #f7f7f7;
}

.coming-soon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6b35, #ffae00);
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35);
}

/* How It Works Section */
.how-it-works {
    height: 300vh;
    position: relative;
    padding: 0;
}

.steps-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0C0C0C;
}

.section-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #ffffff;
}

/* Creative / Media / Commerce Section */
.cmc-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    background: #0A0A0A;
}

.cmc-headline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #ffffff;
    max-width: 750px;
    margin: 0 auto 3rem;
}

.cmc-concept {
    color: #76E5F0;
    font-weight: 700;
}

.cmc-content {
    color: #F6DB7E;
    font-weight: 700;
}

.cmc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cmc-card {
    background: #1F1F1F;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: left;
    position: relative;
}

.cmc-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.cmc-icon {
    margin-right: 0.5rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.cmc-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.cmc-card-text {
    color: #cccccc;
    font-size: 0.85rem;
    line-height: 1.6;
}

.cmc-card-text strong {
    color: #ffffff;
}

.section-title.platforms-title {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: #1F1F1F;
    border: none;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    max-width: 320px;
    margin: 0 auto;
    opacity: 1;
    will-change: transform;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.step-card--0 { z-index: 3; }
.step-card--1 { z-index: 2; opacity: 0; }
.step-card--2 { z-index: 1; opacity: 0; }

.step-card:hover {
    box-shadow: 0 20px 40px rgba(150, 230, 220, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #5B9BD5, #7BC8F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(91, 155, 213, 0.4);
}

.step-icon {
    margin: 1rem 0 0;
    display: flex;
    justify-content: center;
    order: 3;
}

.step-icon .icon {
    width: 120px;
    height: 120px;
}

.step-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    order: 1;
}

.step-description {
    color: #cccccc;
    line-height: 1.6;
    order: 3;
    flex-grow: 1;
}

/* Audience Section */
.audience-section {
    padding-top: 3rem;
    padding-bottom: 9rem;
    background: transparent;
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.audience-card-wrapper {
    position: relative;
    height: auto;
    width: 100%;
}

/* Base audience card styles */
.audience-card {
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    contain: layout style paint;

    /* reveal (no inline styles) */
    opacity: 0;
    transform: translateY(30px);
    transition-property: opacity, transform;
    transition-duration: .6s;
    transition-timing-function: ease;
    will-change: opacity, transform;
}
.audience-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Viewer card specific styles */
.audience-card.viewer-card {
    background: rgba(134, 59, 3, 0.22);
    border: 2px solid #863B03;
}

/* Streamer card specific styles */
.audience-card.streamer-card {
    background: rgba(255, 242, 137, 0.22);
    border: 2px solid #D7CC82;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    will-change: transform;
}

.audience-card:hover::before {
    transform: translateX(100%);
}

.audience-card:hover {
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
    border-color: #FFA500;
}

/* === Icon placement (kept exactly) === */
.audience-icon {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    width: 200px;
    height: 200px;
}
.audience-icon .icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.4));
}

@supports (-webkit-overflow-scrolling: touch) {
    /* iOS Safari rasterizes CSS filters; disable them to keep icons sharp */
    .step-icon .icon,
    .audience-icon .icon {
        filter: none;
    }
}

/* Viewer card icon positioning — telescope overlapping top-right */
.audience-card-wrapper:has(.viewer-card) .audience-icon {
    top: -60px;
    right: -40px;
}

/* Streamer card icon positioning — pirate hat big at top-right */
.audience-card-wrapper:has(.streamer-card) .audience-icon {
    top: -60px;
    right: -40px;
}

.audience-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: left;
}

.audience-description {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: left;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo-icon {
    height: 2.5rem;
    width: auto;
}

.footer-logo-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.footer-tagline {
    color: #cccccc;
    max-width: 400px;
    line-height: 1.6;
    font-size: .8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-icon-new {
    width: 50px;
    height: 50px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(6px);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-dialog {
    position: relative;
    width: min(420px, 100%);
    padding: 2.75rem 2.25rem 2.25rem;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(12, 12, 12, 0.95));
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.modal-dialog::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, #96E6DC, #BCE7C1, #F6D384, #DB98CB);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.modal-copy {
    color: #cccccc;
    margin-bottom: 1.75rem;
    font-size: 1rem;
}

.modal-copy:last-child {
    margin-bottom: 0;
}

.modal-title:last-child {
    margin-bottom: 0;
}

.modal-email-link {
    color: #96E6DC;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.modal-email-link:hover {
    color: #ffffff;
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(6deg);
}

.crypto-backed-bounties-text {
    color: #FFD700;
    font-weight: bold;
}

.pump-fun-text,
.creator-text {
    color: #53D793;
    font-weight: bold;
}

/* ============================================
   HERO BANNER SECTION
   ============================================ */
.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A0A0A;
    border-top: none;
    text-align: center;
    content-visibility: auto;
    contain-intrinsic-size: 500px;
    padding: 4rem 0;
    position: relative;
}

.hero-banner-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.hero-banner-photo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.photo-stack {
    position: relative;
    width: 220px;
    height: 300px;
}

.photo-card {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    transform-origin: center bottom;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Left stack: fans right (positive rotation), behind banner text */
.hero-banner-photo--left .photo-card--1 { transform: rotate(0deg); z-index: 1; }
.hero-banner-photo--left .photo-card--2 { transform: rotate(6deg); z-index: 2; }
.hero-banner-photo--left .photo-card--3 { transform: rotate(12deg); z-index: 3; }
.hero-banner-photo--left .photo-card--4 { transform: rotate(19deg); z-index: 4; }
.hero-banner-photo--left .photo-card--5 { transform: rotate(30deg); z-index: 5; }

/* Right stack: fans left (negative rotation) */
.hero-banner-photo--right .photo-card--1 { transform: rotate(0deg); z-index: 1; }
.hero-banner-photo--right .photo-card--2 { transform: rotate(-4deg); z-index: 2; }
.hero-banner-photo--right .photo-card--3 { transform: rotate(-8deg); z-index: 3; }
.hero-banner-photo--right .photo-card--4 { transform: rotate(-12deg); z-index: 4; }
.hero-banner-photo--right .photo-card--5 { transform: rotate(-16deg); z-index: 5; }

.hero-banner-photo--right .photo-card { transform-origin: center; }

/* Shadow layers — only bottom cards visible as colored edges */
.photo-card--1,
.photo-card--2,
.photo-card--3,
.photo-card--4 {
    background: #1a2a3a;
}

.hero-banner-photo--left .photo-card--1,
.hero-banner-photo--left .photo-card--2 {
    background: #1a3a6a;
}

.hero-banner-photo--right .photo-card--1,
.hero-banner-photo--right .photo-card--2 {
    background: #2a2a2a;
}

.hero-banner-content {
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.hero-banner-headline {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-banner-sub {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Platform Partners */
.platform-partners {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.platform-partners-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.platform-partners-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    text-align: left;
}

.platform-partners-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
}

.platform-partner-icon {
    height: 2.5rem;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.platform-partner-icon:hover {
    opacity: 1;
}

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

.btn-cta-primary {
    background: linear-gradient(135deg, #96E6DC, #BCE7C1, #F6D384, #DB98CB);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.25rem;
    border-radius: 10px;
    border: none;
    box-shadow: 0 6px 24px rgba(150, 230, 220, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(150, 230, 220, 0.35);
}

.btn-cta-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(150, 230, 220, 0.15);
}

.btn-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    position: relative;
}

.btn-cta-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* ============================================
   PROBLEM SECTION (scroll-driven)
   ============================================ */
.problem-section {
    height: 300vh;
    position: relative;
}

.problem-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
    isolation: isolate;
}

.problem-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.problem-icon-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.problem-infinity-icon {
    height: 3.5rem;
    width: auto;
}

.problem-section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.75), 0 0 36px rgba(0, 0, 0, 0.55);
}

.problem-stage {
    position: relative;
    width: 100%;
    max-width: 640px;
    min-height: 200px;
    margin: 0 auto;
}

.problem-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #1F1F1F;
    border: none;
    border-radius: 8px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.problem-card.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.problem-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.problem-card-text {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.2rem;
}

.problem-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.problem-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

.problem-dot.is-active {
    background: #ffffff;
    transform: scale(1.3);
}

/* ============================================
   HOW IT WORKS — updated step cards (no icons)
   ============================================ */
.how-it-works .step-card {
    min-height: auto;
    max-width: none;
}

.bounty-explainer,
.trust-explainer {
    max-width: 720px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    border: none;
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%) 1;
    background: #1F1F1F;
    border-radius: 8px;
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
}

.bounty-explainer {
    opacity: 0;
}

/* ============================================
   WHY SECTION (value props)
   ============================================ */
.why-section {
    height: 300vh;
    position: relative;
    padding: 0;
}

.why-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0A0A0A;
}

.why-section--animated {
    min-height: 100vh;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-section--animated .value-grid {
    display: block;
    position: relative;
    width: 100%;
}

.why-section--animated .value-card {
    position: absolute;
    width: calc(50% - 0.625rem);
    will-change: transform, opacity;
}

.value-card {
    background: #1F1F1F;
    border: none;
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.value-card:hover {
    box-shadow: 0 18px 40px rgba(150, 230, 220, 0.08);
}

.value-card-icon {
    margin-bottom: 1rem;
    text-align: center;
}

.value-card-icon .icon {
    width: 48px;
    height: 48px;
}

.value-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    text-align: center;
}

.value-card-text {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.925rem;
    text-align: center;
}

/* ============================================
   CAMPAIGN TYPES SECTION
   ============================================ */
.campaigns-section {
    height: 300vh;
    position: relative;
    padding: 0;
}

.campaigns-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0a;
    isolation: isolate;
}

.campaigns-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
}

.campaigns-title-main,
.campaigns-title-sub {
    display: block;
}

.campaigns-title-sub {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.campaign-card {
    background: #1F1F1F;
    border: none;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.campaign-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.campaign-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(150, 230, 220, 0.08);
}

.campaign-card-number {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-family: 'Archivo', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
}

.campaign-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.campaign-card-best {
    color: #aaaaaa;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.campaign-card-icon {
    margin-bottom: 1rem;
}

.campaign-card-icon .icon {
    width: 56px;
    height: 56px;
}

.campaign-card-example {
    color: #777777;
    font-size: 0.85rem;
    line-height: 1.6;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.25rem;
    margin-top: auto;
}

.campaigns-supporting {
    text-align: center;
    color: #999;
    font-size: 0.95rem;
    margin-top: -2.5rem;
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 5rem 0;
    background: #0C0C0C;
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.pricing-card {
    max-width: 640px;
    margin: 2rem auto 0;
    background: #1F1F1F;
    border: none;
    border-radius: 8px;
    padding: 2rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-label {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
}

.pricing-value {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-align: right;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background: #101011;
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.faq-list {
    max-width: 780px;
    margin: 2rem auto 0;
}

.faq-item {
    border: none;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background: #1F1F1F;
    overflow: hidden;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-item[open] .faq-question {
    color: #ffffff;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease, padding 0.3s ease;
    padding-bottom: 0;
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: 1.25rem;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    padding: 6rem 0;
    background: #0A0A0A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    content-visibility: auto;
    contain-intrinsic-size: 400px;
}

.final-cta-content {
    max-width: 680px;
    margin: 0 auto;
}

.final-cta-headline {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.final-cta-sub {
    font-size: 1.15rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-cta-large {
    font-size: 1.2rem;
    padding: 1.15rem 2.75rem;
}

.final-cta-trust {
    margin-top: 1.5rem;
    color: #777;
    font-size: 0.9rem;
}

/* ============================================
   REVEAL ANIMATION (shared for new cards)
   ============================================ */
.reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .audience-card-wrapper:has(.viewer-card) .audience-icon { 
        top: -60px; 
        right: -30px; 
        width: 200px;
        height: 200px;
    }
    .audience-card-wrapper:has(.streamer-card) .audience-icon { 
        top: -60px; 
        right: -30px; 
        width: 200px;
        height: 200px;
    }
    .audience-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header .logo {
        display: flex;
    }

    .header .container {
        display: flex;
        justify-content: center;
    }

    .nav {
        justify-content: center;
    }

    .nav .btn {
        flex: 1;
        min-width: 0;
        max-width: 200px;
        white-space: nowrap;
        font-size: 0.75rem;
        padding: 0.6rem 0.8rem;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: var(--z-header);
        backdrop-filter: blur(10px);
    }

    .docs-sidebar {
        width: 280px;
        left: -280px;
        transition: transform 0.3s ease, left 0.3s ease;
    }

    .docs-sidebar.active {
        left: 0;
        transform: translateX(-100%);
        pointer-events: none;
    }

    .docs-sidebar.active.show-menu {
        transform: translateX(0);
        pointer-events: auto;
    }
    
    .hamburger-btn {
        position: absolute;
        left: 1rem;
        z-index: var(--z-hamburger);
    }

    .docs-content {
        padding: 1.5rem;
    }

    .docs-content.active {
        left: 0;
        padding-left: 1.5rem;
    }

    .doc-section {
        min-height: auto;
    }

    .doc-nav {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        padding-top: 0.5rem;
    }

    .doc-section h1 {
        font-size: 2rem;
    }

    .doc-section h2 {
        font-size: 1.5rem;
    }

    .doc-section p {
        font-size: 1rem;
    }

    .hero,
    .hero .container,
    .hero-banner,
    .cmc-section,
    .problem-section,
    .how-it-works,
    .why-section,
    .campaigns-section,
    .pricing-section,
    .faq-section {
        min-height: 100dvh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }

    .hero-text {
        align-items: center;
    }

    .hero-brand-text {
        font-size: 3.8rem;
    }

    .hero-icon-col {
        justify-content: center;
    }

    .hero-icon-large {
        max-width: 260px;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .brand-logos-label {
        font-size: 1rem;
    }

    .brand-logos-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 1rem;
        justify-items: center;
    }

    .brand-logo {
        height: 1.7rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .cmc-headline {
        font-size: 1.4rem;
    }

    .how-it-works {
        height: auto;
        padding: 3rem 0;
        background: rgba(17, 17, 19, 0.75);
    }

    .steps-sticky {
        position: static;
        height: auto;
        overflow: visible;
        background: rgba(17, 17, 19, 0.75);
    }

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

    .step-card,
    .step-card--1,
    .step-card--2 {
        opacity: 0;
        transform: translateY(30px) !important;
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .step-card.is-visible {
        opacity: 1;
        transform: translateY(0) !important;
    }

    .bounty-explainer {
        opacity: 1;
    }

    .hero {
        background: rgba(17, 17, 19, 0.75);
    }

    .hero-banner {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-banner-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-banner-photo {
        display: none;
    }

    .hero-banner-headline {
        font-size: 2.2rem;
    }

    .hero-banner-sub {
        font-size: 1rem;
    }

    .platform-partners-inner {
        align-items: stretch;
        width: 100%;
    }

    .platform-partners-label {
        text-align: center;
    }

    .platform-partners-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem 0.75rem;
        justify-items: center;
        width: 100%;
    }

    .platform-partner-icon {
        height: 2.9rem;
        flex-shrink: 0;
    }

    .campaigns-section {
        height: auto;
        padding: 3.5rem 0;
        background: rgba(17, 17, 19, 0.75);
    }

    .campaigns-sticky {
        position: relative;
        height: auto;
        overflow: hidden;
        background: rgba(17, 17, 19, 0.75);
    }

    .campaigns-title-sub {
        opacity: 1;
    }

    .campaigns-supporting {
        opacity: 1;
    }

    .campaigns-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .campaign-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .campaign-card.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .problem-section {
        height: auto;
        background: rgba(17, 17, 19, 0.75);
    }

    .problem-sticky {
        position: relative;
        height: auto;
        overflow: hidden;
        background: rgba(17, 17, 19, 0.75);
    }

    .problem-stage {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .problem-card {
        position: relative;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
        pointer-events: auto;
    }

    .problem-card.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .problem-dots {
        display: none;
    }

    .problem-card-title {
        font-size: 1.75rem;
    }

    .problem-card-text {
        font-size: 1.05rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .why-section {
        height: auto;
        padding: 3.5rem 0;
        background: rgba(17, 17, 19, 0.75);
    }

    .why-sticky {
        position: static;
        height: auto;
        background: rgba(17, 17, 19, 0.75);
    }

    .why-section,
    .campaigns-section,
    .pricing-section,
    .faq-section {
        padding: 3.5rem 0;
    }

    .pricing-section,
    .faq-section {
        background: rgba(17, 17, 19, 0.75);
    }

    .final-cta-section {
        padding: 4rem 0;
        background: rgba(17, 17, 19, 0.75);
    }

    .final-cta-headline {
        font-size: 2.25rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .bounty-explainer,
    .trust-explainer {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        flex-direction: row;
        gap: 1rem;
        flex-shrink: 0;
        justify-content: center;
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hamburger-btn {
        width: 36px;
        height: 36px;
        left: 0.5rem;
    }

    .hamburger-line {
        width: 20px;
    }

    .nav {
        gap: 0.5rem;
    }

    .logo-icon {
        height: 2rem;
    }

    .logo-text {
        display: none;
    }

    .hero-brand-text {
        font-size: 3rem;
    }

    .hero-icon-large {
        max-width: 200px;
    }

    .brand-logo {
        height: 1.4rem;
    }

    .brand-logos-row {
        gap: 1rem 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step-card {
        padding: 1.5rem;
        padding-top: 2.5rem;
    }

    .hero-banner-headline {
        font-size: 1.8rem;
    }

    .hero-banner-sub {
        font-size: 0.95rem;
    }

    .hero-banner-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .platform-partner-icon {
        height: 2.4rem;
    }

    .problem-card {
        padding: 2rem 1.5rem;
    }

    .problem-card-title {
        font-size: 1.5rem;
    }

    .problem-card-text {
        font-size: 1rem;
    }

    .value-card,
    .campaign-card {
        padding: 1.75rem 1.5rem;
    }

    .final-cta-headline {
        font-size: 1.75rem;
    }

    .btn-cta-large {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
    }

    .modal-dialog {
        padding: 2.25rem 1.5rem 1.9rem;
    }

    .docs-sidebar {
        width: 250px;
        left: -250px;
    }

    .docs-content {
        padding: 1rem;
    }

    .doc-section {
        min-height: auto;
        padding-bottom: 1rem;
    }

    .doc-section h1 {
        font-size: 1.75rem;
    }

    .doc-section h2 {
        font-size: 1.35rem;
    }

    .doc-nav {
        flex-direction: row;
        gap: 0.75rem;
        margin-top: 0.75rem;
        margin-bottom: 0.5rem;
        padding-top: 0.75rem;
    }

    .doc-nav-btn {
        flex: 0;
    }

    .doc-nav-btn-next {
        margin-left: auto;
    }
}

/* Documentation Sidebar */
.docs-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    z-index: var(--z-sidebar);
    transition: left 0.3s ease;
    overflow-y: auto;
    padding-top: 80px;
}

.docs-sidebar.active {
    left: 0;
}

.docs-nav {
    padding: 2rem 1.5rem;
}

.docs-nav-title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.docs-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.docs-nav-list li {
    margin-bottom: 0.5rem;
}

.docs-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.docs-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.docs-nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-image: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%) 1;
    border-left: 3px solid;
}

.docs-social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.docs-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.docs-social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Documentation Content */
.docs-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    z-index: var(--z-docs-content);
    overflow-y: auto;
    padding: 100px 2rem 2rem;
    display: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.docs-content::-webkit-scrollbar {
    width: 6px;
}

.docs-content::-webkit-scrollbar-track {
    background: transparent;
}

.docs-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.docs-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.docs-content.active {
    display: block;
}

.doc-section {
    max-width: 900px;
    margin: 0 auto;
    display: none;
    padding-bottom: 2rem;
}

.doc-section.active {
    display: block;
}

.doc-section h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.doc-section h2 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.doc-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.doc-section ol,
.doc-section ul {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.doc-section li {
    margin-bottom: 0.5rem;
}

.doc-section a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.doc-section a:hover {
    border-bottom-color: #ffffff;
}

.doc-section strong {
    color: #ffffff;
    font-weight: 600;
}

/* Documentation Navigation */
.doc-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 1rem;
}

.doc-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.doc-nav-btn:hover {
    color: #cccccc;
}

.doc-nav-btn.disabled {
    opacity: 0;
    pointer-events: none;
}

.doc-nav-btn-prev::before {
    content: '←';
    font-size: 1.2rem;
}

.doc-nav-btn-next::after {
    content: '→';
    font-size: 1.2rem;
}

/* Overlay for sidebar */
.docs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-overlay);
    display: none;
}

.docs-overlay.active {
    display: block;
}

/* Hide original content when docs are active */
body.docs-active .hero,
body.docs-active .hero-banner,
body.docs-active .problem-section,
body.docs-active .how-it-works,
body.docs-active .why-section,
body.docs-active .campaigns-section,
body.docs-active .pricing-section,
body.docs-active .faq-section,
body.docs-active .final-cta-section,
body.docs-active .creators-page,
body.docs-active .footer {
    display: none;
}

/* ============================================
   COOKIE POLICY PAGE STYLES
   ============================================ */

.policy-page {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.policy-content {
    max-width: 50rem;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.policy-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.policy-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-of-type {
    margin-bottom: 2rem;
}

.policy-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #FFA500;
    margin-bottom: 1rem;
    margin-top: 0;
}

.policy-section h3 {
    font-size: 1.25rem;
    color: #FFD700;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.policy-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.policy-section ul {
    margin: 1rem 0 1rem 1.5rem;
    padding: 0;
    list-style: none;
}

.policy-section ul li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.policy-section ul li::before {
    content: "⚓";
    position: absolute;
    left: 0;
    color: #FFA500;
    font-size: 1rem;
}

.policy-section a {
    color: #FFD700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.policy-section a:hover {
    color: #FFA500;
    border-bottom-color: #FFA500;
}

.policy-section em {
    color: #FFA500;
    font-style: italic;
}

.policy-section strong {
    color: #FFD700;
    font-weight: 600;
}

/* Cookie Table Styles */
.cookie-table {
    margin: 2rem 0;
}

.cookie-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.cookie-item:last-child {
    margin-bottom: 0;
}

.cookie-item h3 {
    margin-top: 0;
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.cookie-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cookie-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-detail strong {
    color: #FFA500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cookie-detail span,
.cookie-detail a {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1.05rem;
}

.cookie-detail a {
    color: #FFD700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    word-break: break-all;
}

.cookie-detail a:hover {
    color: #FFA500;
    border-bottom-color: #FFA500;
}

/* Policy Footer */
.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFD700;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

/* Responsive Policy Page */
@media (max-width: 768px) {
    .policy-page {
        padding: 5rem 0 3rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .policy-title {
        font-size: 2.5rem;
    }

    .policy-section h2 {
        font-size: 1.75rem;
    }

    .policy-section h3 {
        font-size: 1.15rem;
    }

    .policy-section p,
    .policy-section ul li,
    .cookie-detail span {
        font-size: 1rem;
    }

    .cookie-item {
        padding: 1.5rem;
    }

    .cookie-item h3 {
        font-size: 1.25rem;
    }

    .cookie-details {
        gap: 1rem;
    }
}

/* ============================================
   FOR-CREATORS PAGE
   ============================================ */

.creators-page {
    padding-top: 1rem;
}

/* --- Hero --- */
.creators-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0A0A0A;
    padding: 2rem 0;
    overflow: hidden;
    isolation: isolate;
}

.creators-hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
}

.creators-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.creators-hero-headline {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.creators-hero-sub {
    font-size: 1.25rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-cta-primary .btn-icon {
    filter: brightness(0);
}

/* --- Creator CTA buttons (used on claim-a-bounty page) --- */
.btn-creator-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.25rem;
    border-radius: 10px;
    border: none;
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-creator-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(255, 215, 0, 0.45);
}

.btn-creator-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25);
}

.btn-creator-secondary {
    background: transparent;
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-creator-secondary:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: #FFD700;
    transform: translateY(-2px);
}

.btn-creator-primary .btn-icon {
    filter: brightness(0);
}

.btn-creator-secondary .btn-icon {
    filter: brightness(0) invert(84%) sepia(100%) saturate(1500%) hue-rotate(3deg) brightness(103%);
}

/* --- Benefits grid --- */
.creators-benefits {
    padding: 5rem 0;
}

.creators-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- How It Works --- */
.creators-how-it-works {
    padding: 5rem 0;
    background: #0C0C0C;
}

.creators-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.creators-how-it-works .step-card {
    min-height: auto;
    max-width: none;
}

.claim-prereqs-intro {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.claim-prereqs-intro a {
    color: #FFD700;
}

.claim-prereqs {
    max-width: 720px;
    margin: 1.5rem auto 0;
}

.claim-prereqs blockquote {
    border-left: 3px solid #FFD700;
    margin: 1rem 0;
    padding: 0.75rem 1.25rem;
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 0 8px 8px 0;
}

.claim-prereqs blockquote strong {
    color: #ffffff;
}

.claim-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.claim-steps-row .step-card {
    min-height: auto;
    max-width: none;
    justify-content: flex-start;
}

.step-image {
    width: 100%;
    max-width: 280px;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    order: 2;
}

.claim-outcomes-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.outcome-group {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    background: linear-gradient(160deg, rgba(20, 20, 20, 0.6), rgba(10, 10, 10, 0.8));
}

.outcome-group--success {
    border-top: 3px solid #4ade80;
}

.outcome-group--failed {
    border-top: 3px solid #ef4444;
}

.outcome-group-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.outcome-group-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.outcome-group--success .outcome-group-icon {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.outcome-group--failed .outcome-group-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.outcome-group-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.outcome-group--success .outcome-group-title {
    color: #4ade80;
}

.outcome-group--failed .outcome-group-title {
    color: #ef4444;
}

.outcome-group-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.claim-outcome {
    border-left: 3px solid #FFD700;
    margin: 0;
    padding: 0.75rem 1.25rem;
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
}

.claim-outcome strong {
    color: #ffffff;
}

.outcome-group--success .claim-outcome {
    border-left-color: #4ade80;
}

.outcome-group--failed .claim-outcome {
    border-left-color: #ef4444;
}

/* --- Example Bounties --- */
.creators-examples {
    padding: 5rem 0;
}

.creators-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.example-card {
    background: #1F1F1F;
    border: none;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: left;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

.example-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(135deg, #83D8F5 0%, #E89AD6 32%, #F7B6B9 65%, #FBCB81 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.example-card:hover {
    box-shadow: 0 18px 40px rgba(150, 230, 220, 0.08);
}

.example-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 1rem;
}

.example-status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.example-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.example-terms {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.example-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.example-amount {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.example-deadline {
    font-size: 0.8rem;
    color: #777;
}

.examples-note {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    margin-top: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.examples-note-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.examples-note-link:hover {
    text-decoration: underline;
}

.creators-page .faq-section {
    background: #101011;
}

/* --- Final CTA --- */
.creators-final-cta {
    padding: 6rem 0;
    background: #0A0A0A;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

/* --- Footer nav link --- */
.footer-nav {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #cccccc;
}

/* --- Responsive: 768px --- */
@media (max-width: 768px) {
    .creators-hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .creators-hero-headline {
        font-size: 2.5rem;
    }

    .creators-hero-sub {
        font-size: 1.1rem;
    }

    .creators-benefits {
        padding: 3.5rem 0;
    }

    .creators-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .creators-how-it-works {
        padding: 3.5rem 0;
    }

    .creators-steps-grid {
        grid-template-columns: 1fr;
    }

    .claim-steps-row {
        grid-template-columns: 1fr;
    }

    .claim-outcomes-split {
        grid-template-columns: 1fr;
    }

    .creators-examples {
        padding: 3.5rem 0;
    }

    .creators-examples-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .creators-final-cta {
        padding: 4rem 0;
    }
}

/* --- Responsive: 480px --- */
@media (max-width: 480px) {
    .creators-hero-headline {
        font-size: 2rem;
    }

    .creators-hero-sub {
        font-size: 1rem;
    }

    .creators-hero .hero-banner-cta,
    .creators-final-cta .hero-banner-cta {
        flex-direction: column;
        align-items: center;
    }

    .creators-hero .btn-cta-primary,
    .creators-hero .btn-cta-secondary,
    .creators-final-cta .btn-cta-primary,
    .creators-final-cta .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
