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

:root {
    --bg-deep-black: #000000;
    --primary-blue: #0057FF;
    --text-off-white: #F5F5F5;
    --text-secondary: #B0B0B0;
    --text-muted: #808080;
    --border-color: rgba(0, 87, 255, 0.2);
    --surface-dark: #000000;
}

/* Gradient Classes */
.green-gradient {
    background: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blue-gradient {
    background: linear-gradient(135deg, #007cf0 0%, #00dfd8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.red-gradient {
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-deep-black);
    color: var(--text-off-white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

section {
    padding: 70px 14px;
}

section:not(.platforms-section) {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section:not(.platforms-section).animate-in {
    opacity: 1;
    transform: translateY(0);
}

.platforms-section {
    opacity: 1 !important;
    transform: none !important;
}

.system-card,
.comparison-card,
.faq-item,
.proof-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.system-card.animate-in,
.comparison-card.animate-in,
.faq-item.animate-in,
.proof-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for grid items */
.systems-grid .system-card:nth-child(1) { transition-delay: 0.1s; }
.systems-grid .system-card:nth-child(2) { transition-delay: 0.2s; }
.systems-grid .system-card:nth-child(3) { transition-delay: 0.3s; }

.comparison-grid .comparison-card:nth-child(1) { transition-delay: 0.1s; }
.comparison-grid .comparison-card:nth-child(2) { transition-delay: 0.2s; }

.faq-grid .faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-grid .faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-grid .faq-item:nth-child(3) { transition-delay: 0.3s; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-off-white);
}

.mono {
    font-family: 'Roboto Mono', monospace;
}

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

.container-narrow {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 14px;
}

.difference-logo {
    height: auto;
    max-width: 300px;
    width: 100%;
    display: inline-block;
    margin: 20px auto;
    padding: 20px;
    vertical-align: bottom;
}

.difference-section .section-title {
    margin: 0;
    padding: 0;
    line-height: 0;
    text-align: center;
}

.difference-section .section-subtitle {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    display: block;
    width: 100%;
}

.notion-embeds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
    max-width: 100%;
    margin: 0 auto;
}

.notion-embeds-stacked {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 50%;
    margin: 0 auto;
}

.notion-embed-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-off-white);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 40px;
    border-radius: 8px;
    display: block;
    width: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.notion-embed-title:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.cta-section-inline {
    background: var(--bg-deep-black);
    padding: 40px 14px;
    text-align: center;
}

/* Money Animation Section */
.money-animation-section {
    background: var(--bg-deep-black);
    padding: 40px 14px;
    overflow: hidden;
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.media-stage {
    position: relative;
    width: clamp(320px, 92vw, 1000px);
    height: clamp(200px, 50vw, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 40px);
    max-width: 1000px;
    margin: 0 auto;
}

.money-animation-left,
.money-animation-right {
    position: relative;
    flex: 0 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.money-animation-gif {
    width: clamp(150px, 30vw, 300px);
    height: auto;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.folder-image {
    margin-left: 6%;
}

.phone-image {
    margin-right: 6%;
}

.arrow-container {
    flex: 0 0 auto;
    position: relative;
}

.animated-arrow {
    font-size: 60px;
    color: var(--primary-blue);
    animation: arrow-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 87, 255, 0.8));
    text-shadow: 0 0 20px rgba(0, 87, 255, 0.6);
}

@keyframes arrow-pulse {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(10px) scale(1.1);
        opacity: 0.8;
    }
}

.money-popup {
    position: absolute;
    font-size: 24px;
    font-weight: 900;
    animation: money-pop 2s ease-out infinite;
    pointer-events: none;
    z-index: 10;
}

.money-popup.negative {
    color: #ff4b2b;
    text-shadow: 0 0 10px rgba(255, 75, 43, 0.8);
}

.money-popup.positive {
    color: #00ff87;
    text-shadow: 0 0 10px rgba(0, 255, 135, 0.8);
}

@keyframes money-pop {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.8);
    }
}

.notion-embed-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.notion-embed-container {
    width: 100%;
    margin-bottom: 40px;
}

.notion-embed-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-off-white);
    margin-bottom: 20px;
    text-align: center;
}

.notion-embed-container iframe {
    border-radius: 12px;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
}

.notion-iframe-desktop {
    display: block;
}

.notion-iframe-mobile {
    display: none;
    width: 100%;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px 20px;
    text-align: center;
}

.hero-content {
    max-width: 100%;
}

.brand-section {
    margin: 0;
    padding: 0;
    line-height: 0;
    text-align: center;
}

.brand-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 20px auto;
    padding: 20px;
    vertical-align: bottom;
}

/* Authority Bar */
.authority-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 32px 0;
    padding: 0;
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
    flex-wrap: wrap;
}

.authority-bar .separator {
    color: var(--text-muted);
    opacity: 0.5;
}

.headline {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.highlight-blue {
    color: var(--primary-blue);
}

.subheadline {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
}

/* Bifurcated CTAs */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: nowrap;
}

.cta-button {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border: 2px solid transparent;
    scroll-behavior: smooth;
}

.cta-green {
    background: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
    color: var(--bg-deep-black);
    border: none;
    font-weight: 700;
}

.cta-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 135, 0.4);
    opacity: 0.95;
}

.cta-blue {
    background: linear-gradient(135deg, #007cf0 0%, #00dfd8 100%);
    color: white;
    border: none;
    font-weight: 700;
}

.cta-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 124, 240, 0.4);
    opacity: 0.95;
}

/* Legacy support */
.cta-primary {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.cta-primary:hover {
    background: #0047CC;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 87, 255, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.cta-secondary:hover {
    background: rgba(0, 87, 255, 0.1);
    transform: translateY(-2px);
}

/* Section Styles */

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 42px;
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.problem-section {
    background: var(--bg-deep-black);
    padding-bottom: 35px;
}

.problem-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.inline-logo,
.h-8 {
    height: 32px;
    width: auto;
}

.inline {
    display: inline;
    vertical-align: middle;
    margin: 0 8px;
}

.google-drive-logo {
    height: 160px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 12px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.large-text {
    font-size: 28px;
    line-height: 1.6;
    color: var(--text-off-white);
}

.large-text.single-line {
    text-align: center;
    margin: 20px 0;
    line-height: 1.2;
}

.large-text.single-line.uniform-size {
    font-size: 48px;
    font-weight: 900;
}

.large-text.single-line.uniform-size span {
    font-size: 48px;
    font-weight: 900;
}

.large-gradient-text {
    font-size: 80px;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.liability-text {
    font-size: 48px;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.asset-text {
    font-size: 48px;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.large-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* System Section */
.system-section {
    background: var(--bg-deep-black);
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
    max-width: 100%;
    margin: 0 auto;
}

.system-card {
    background: var(--bg-deep-black);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.system-card.no-border {
    background: transparent;
    border: none;
    padding: 20px 30px;
}

.system-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
}

.system-card.no-border:hover {
    transform: none;
}

.animation-container {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Globe Animation */
.globe-animation {
    width: 150px;
    height: 150px;
    position: relative;
    animation: rotate-globe 20s linear infinite;
}

.globe-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 135, 0.8), rgba(96, 239, 255, 0.6), transparent);
    box-shadow: 
        0 0 20px rgba(0, 255, 135, 0.6),
        0 0 40px rgba(96, 239, 255, 0.4),
        inset -20px -20px 40px rgba(0, 0, 0, 0.5);
}

.globe-animation::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 135, 0.3), transparent 30%),
        radial-gradient(circle at 60% 40%, rgba(96, 239, 255, 0.3), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 135, 0.2), transparent 30%);
    animation: pulse-network 3s ease-in-out infinite;
}

@keyframes rotate-globe {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-network {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Snoring Animation */
.snoring-animation {
    width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snoring-animation::before {
    content: '😴';
    font-size: 100px;
    animation: snore 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 124, 240, 0.5));
}

.snoring-animation::after {
    content: '💤';
    position: absolute;
    font-size: 40px;
    top: 20%;
    right: 10%;
    animation: zzz 1.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes snore {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.05) rotate(-2deg);
    }
    75% {
        transform: scale(1.05) rotate(2deg);
    }
}

@keyframes zzz {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0.8);
    }
}

/* Data Center Animation */
.datacenter-animation {
    width: 200px;
    height: 150px;
    position: relative;
    background: linear-gradient(to bottom, 
        rgba(0, 124, 240, 0.1) 0%,
        rgba(0, 223, 216, 0.1) 50%,
        rgba(0, 124, 240, 0.1) 100%);
    border-radius: 8px;
    overflow: hidden;
}

.datacenter-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, 
            transparent,
            transparent 2px,
            rgba(0, 124, 240, 0.3) 2px,
            rgba(0, 124, 240, 0.3) 4px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(0, 223, 216, 0.3) 2px,
            rgba(0, 223, 216, 0.3) 4px);
    animation: grid-pulse 2s ease-in-out infinite;
}

.datacenter-animation::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 255, 135, 0.8);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(0, 255, 135, 0.8),
        20px 20px 0 rgba(96, 239, 255, 0.8),
        40px 10px 0 rgba(0, 255, 135, 0.8),
        60px 30px 0 rgba(96, 239, 255, 0.8),
        80px 15px 0 rgba(0, 255, 135, 0.8),
        100px 25px 0 rgba(96, 239, 255, 0.8),
        120px 5px 0 rgba(0, 255, 135, 0.8),
        140px 20px 0 rgba(96, 239, 255, 0.8),
        160px 10px 0 rgba(0, 255, 135, 0.8),
        180px 30px 0 rgba(96, 239, 255, 0.8);
    animation: datacenter-pulse 1.5s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes datacenter-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.system-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: white;
}

.animation-gif {
    width: 200px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.system-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Platforms Served Section */
.platforms-section {
    background: var(--bg-deep-black);
    padding: 20px 0;
    overflow: hidden;
}

.platforms-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

@keyframes infinite-scroll-platforms {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.platforms-scroll-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.platforms-scroll {
    display: flex;
    gap: 40px;
    padding: 10px 0;
    width: fit-content;
    animation: infinite-scroll-platforms 15s linear infinite;
    will-change: transform;
}

.platforms-scroll:hover {
    animation-play-state: paused;
}

.platforms-headline {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-off-white);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.platform-logo {
    height: 40px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

.platform-logo[src="xlogo.webp"] {
    height: 60px;
}

/* Brands Section */
.brands-section {
    background: var(--bg-deep-black);
    padding: 6px 0 20px 0;
    overflow: hidden;
}

.brands-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

@keyframes infinite-scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.brands-scroll {
    display: flex;
    gap: 40px;
    padding: 10px 0;
    width: fit-content;
    animation: infinite-scroll-brands 12s linear infinite;
    will-change: transform;
}

.brands-scroll:hover {
    animation-play-state: paused;
}

.brands-headline {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-off-white);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
}

.brand-logo-scroll {
    height: 40px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

.brand-logo-scroll[src="thrustlogo.png"],
.brand-logo-scroll[src="rainbetlogo.png"],
.brand-logo-scroll[src="polygonlogo.png"] {
    height: 120px;
}

.brand-logo-scroll[src="magciedenlogo.jpg"],
.brand-logo-scroll[src="toshibetlogo.png"] {
    height: 60px;
}

/* Social Proof Section (Horizontal Scroll) */
.social-proof-section {
    background: var(--bg-deep-black);
    padding: 70px 0;
}

.social-proof-section .container-narrow {
    margin-bottom: 40px;
}

.social-proof-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.social-proof-scroll {
    display: flex;
    gap: 24px;
    padding: 20px 0 40px;
    animation: infinite-scroll-social 60s linear infinite;
    width: fit-content;
    will-change: transform;
}

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

.social-proof-scroll:hover {
    animation-play-state: paused;
}

.proof-card {
    flex: 0 0 380px;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.proof-header {
    padding: 16px 20px 12px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 87, 255, 0.05);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 87, 255, 0.2);
}

.proof-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.proof-content {
    padding: 24px;
}

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

.proof-bullets li {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.proof-bullets li::before {
    content: "•";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.overlay-label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    z-index: 10;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.red-overlay {
    color: #ff4b2b;
}

.green-overlay {
    color: #00ff87;
}

.before-card .proof-image,
.after-card .proof-image {
    filter: brightness(0.7);
}

/* Final CTA Section */
.final-cta-section {
    background: var(--bg-deep-black);
    text-align: center;
}

/* The ClipperU Difference Section */
.difference-section {
    background: var(--bg-deep-black);
    padding: 20px 14px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 21px;
    max-width: 840px;
    margin: 42px auto;
}

.comparison-card {
    background: var(--surface-dark);
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
}

.chaos-card {
    border-color: rgba(255, 75, 43, 0.5);
}

.system-card-comp {
    border-color: rgba(0, 255, 135, 0.5);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comparison-icon {
    font-size: 32px;
    font-weight: 900;
}

.red-x {
    color: #ff4b2b;
}

.green-check {
    color: #00ff87;
}

.comparison-header h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-off-white);
    margin: 0;
}

.comparison-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.list-icon {
    font-size: 20px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-deep-black);
    padding: 100px 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 21px;
    max-width: 700px;
    margin: 42px auto 0;
}

.faq-grid-inline {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 42px auto 0;
}

.faq-grid-inline .faq-item {
    flex: 1;
    min-width: 0;
}

.faq-item {
    background: var(--bg-deep-black);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
}

.faq-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.faq-link:hover {
    text-decoration: none;
}

.faq-link:active {
    transform: translateY(-2px);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 87, 255, 0.2);
}

.faq-question {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.faq-answer {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Page Hero (for /partner and /apply) */
.page-hero {
    padding: 80px 20px 60px;
    background: var(--bg-deep-black);
    text-align: center;
}

.back-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 30px;
    display: inline-block;
    transition: all 0.2s ease;
}

.back-link:hover {
    opacity: 0.8;
}

.page-title {
    font-size: 56px;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ROI Section */
.roi-section {
    background: var(--bg-deep-black);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.roi-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
}

.roi-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.roi-card p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Operator Section */
.operator-section {
    background: var(--bg-deep-black);
}

.operator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.operator-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
}

.operator-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.operator-card p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Form Section */
.form-section {
    background: var(--surface-dark);
    padding: 80px 20px;
}

.form-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.campaign-form,
.clipper-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-deep-black);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 50px 40px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-off-white);
    font-size: 16px;
}

.required {
    color: var(--primary-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-off-white);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.consent-text {
    font-size: 14px;
    color: var(--text-muted);
    margin: 30px 0;
    line-height: 1.6;
}

.consent-text .link {
    color: var(--primary-blue);
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 18px 40px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-button:hover {
    background: #0047CC;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 87, 255, 0.4);
}

/* Success Pages */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--bg-deep-black);
}

.success-content {
    max-width: 700px;
    text-align: center;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 60px 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    font-weight: 900;
}

.success-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.success-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.success-actions {
    text-align: left;
    margin: 40px 0;
}

.success-actions h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.next-steps li {
    counter-increment: step-counter;
    padding: 15px 0 15px 50px;
    position: relative;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.next-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 15px;
    width: 35px;
    height: 35px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.calendar-embed,
.test-link {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.calendar-embed h3,
.test-link h3 {
    margin-bottom: 20px;
    text-align: center;
}

.back-button {
    display: inline-block;
    margin-top: 40px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
}

.back-button:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 14px;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
/* Form Page Styles */
.form-page-section {
    min-height: 100vh;
    padding: 40px 20px;
    background: var(--bg-deep-black);
}

.form-page-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-page-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-off-white);
}

.form-page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
}

.notion-iframe-container {
    width: 100%;
    height: 78vh;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
}

.notion-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-deep-black);
    border-top: 1px solid var(--border-color);
    padding: 12px 14px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    gap: 10px;
    flex-direction: row;
}

.mobile-cta-button {
    flex: 1;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-cta-green {
    background: linear-gradient(135deg, #00ff87 0%, #60efff 100%);
    color: var(--bg-deep-black);
}

.mobile-cta-green:active {
    transform: scale(0.98);
    opacity: 0.9;
}

.mobile-cta-blue {
    background: linear-gradient(135deg, #007cf0 0%, #00dfd8 100%);
    color: white;
}

.mobile-cta-blue:active {
    transform: scale(0.98);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .headline {
        font-size: 42px;
    }
    
    .subheadline {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .authority-bar {
        font-size: 14px;
        gap: 8px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .systems-grid,
    .roi-grid,
    .operator-grid {
        grid-template-columns: 1fr;
    }
    
    .social-proof-scroll {
        gap: 16px;
        padding: 20px 0 30px;
    }
    
    .proof-card {
        flex: 0 0 320px;
    }
    
    .proof-image {
        height: 200px;
    }
    
    .overlay-label {
        font-size: 36px;
    }
    
    .large-text {
        font-size: 22px;
    }
    
    .inline-logo {
        height: 24px;
    }
    
    .campaign-form,
    .clipper-form {
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 42px;
    }
    
    /* Hero Media Mobile */
    .hero-media {
        padding: 0;
    }
    
    .media-stage {
        width: 92vw;
        max-width: 92vw;
        flex-direction: column;
        gap: 20px;
        height: auto;
        min-height: clamp(400px, 80vh, 600px);
    }
    
    .money-animation-left,
    .money-animation-right {
        width: 100%;
        height: auto;
    }
    
    .folder-image {
        margin-left: 6%;
        width: clamp(200px, 40vw, 300px);
    }
    
    .phone-image {
        margin-right: 6%;
        width: clamp(200px, 40vw, 300px);
    }
    
    .arrow-container {
        transform: rotate(90deg);
    }
    
    /* FAQ Grid Mobile */
    .faq-grid-inline {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Notion Forms Mobile */
    .notion-iframe-desktop {
        display: none;
    }
    
    .notion-iframe-mobile {
        display: block;
    }
    
    /* Hide Final CTA Section (Notion Embeds) on Mobile */
    .final-cta-section {
        display: none;
    }
    
    /* Mobile Sticky CTA */
    .mobile-sticky-cta {
        display: flex;
    }
    
    /* Add padding to main to account for sticky CTA */
    main {
        padding-bottom: 80px;
    }
    
    /* Form Page Mobile */
    .form-page-title {
        font-size: 32px;
    }
    
    .form-page-subtitle {
        font-size: 18px;
    }
    
    .notion-iframe-container {
        height: 78vh;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .authority-bar {
        font-size: 12px;
        flex-direction: column;
        gap: 4px;
    }
    
    .authority-bar .separator {
        display: none;
    }
    
    .proof-card {
        flex: 0 0 280px;
    }
    
    .overlay-label {
        font-size: 28px;
        top: 12px;
        left: 12px;
    }
}

/* Footer Styles */
.site-footer {
    background: var(--bg-deep-black);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 40px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Legal Pages Styles */
.legal-page {
    background: var(--bg-deep-black);
    padding: 80px 20px;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-off-white);
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--text-off-white);
    text-align: center;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-off-white);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 18px;
    color: var(--text-off-white);
    margin-bottom: 30px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.legal-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.legal-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .legal-content h1 {
        font-size: 36px;
    }
    
    .legal-content h2 {
        font-size: 28px;
    }
}
