* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    background: #0a0a0a;
    min-height: 100vh;
}

:root {
    --color-bg: #0a0a0a;
    --color-text: #ffffff;
    --color-text-muted: #8a8a8a;
    --color-border: #1f1f1f;
    --color-accent: #c41e3a;
    --color-card-bg: #141414;
    --color-light-accent: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--color-text);
}

.nav-cta {
    background: var(--color-accent);
    color: var(--color-text);
    padding: 10px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.nav-cta:hover {
    opacity: 0.85;
}

/* Hero */
.hero {
    padding: 200px 0 120px;
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, var(--color-border) 2px, var(--color-border) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, var(--color-border) 2px, var(--color-border) 3px);
    background-size: 80px 80px;
    opacity: 0.15;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.25; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.brand-hero {
    display: flex;
    align-items: center;
    gap: 64px;
    justify-content: center;
}

.hero-logo {
    width: 400px;
    height: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 96px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 24px;
}

.hero-tagline {
    font-size: 22px;
    color: var(--color-text-muted);
    max-width: 700px;
    line-height: 1.6;
}

/* Section Headers */
.section-header-large {
    margin-bottom: 80px;
    text-align: center;
}

.section-header-large h2 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 24px;
}

.section-subtext {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 800px;
    line-height: 1.7;
    margin: 0 auto;
    text-align: center;
}

/* Metrics Section */
.metrics-section {
    padding: 120px 0;
    background: var(--color-card-bg);
    position: relative;
}

.metrics-section .container {
    position: relative;
    z-index: 1;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.metric-card {
    padding: 40px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.metric-icon {
    color: var(--color-accent);
    margin-bottom: 24px;
}

.metric-value {
    font-size: 84px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Channels Section */
.channels-section {
    padding: 80px 0;
    position: relative;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
    justify-items: center;
}

.channel-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 900px;
    width: 100%;
}

.channel-card:hover {
    transform: translateX(5px);
    box-shadow: -5px 5px 0 var(--color-accent);
}

.channel-content {
    padding: 48px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.channel-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--color-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.channel-avatar:hover {
    transform: scale(1.05);
    border-color: var(--color-accent);
}

.channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.channel-info {
    flex: 1;
    max-width: 500px;
}

.channel-info h3 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.channel-info p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.channel-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-accent);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* What We Do Section */
.what-we-do-section {
    padding: 100px 0 120px;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.dynamic-content {
    text-align: center;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.dynamic-text {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.services-intro {
    font-size: 20px;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 40px auto 0;
    line-height: 1.6;
}

.services-stagger {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-box {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    padding: 35px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
}

.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, var(--color-accent) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover::before {
    transform: scaleY(1);
}

.service-box:hover::after {
    opacity: 0.1;
}

.service-box:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.15);
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.service-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.dynamic-highlight {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
    min-width: 250px;
    text-align: center;
}

.typewriter-wrapper {
    display: block;
    position: relative;
    margin-top: 4px;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background-color: var(--color-accent);
    animation: blink 1s infinite;
    vertical-align: text-bottom;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1 }
    51%, 100% { opacity: 0 }
}

/* Partnership Section */
.partnership-section {
    padding: 140px 0;
    background: var(--color-card-bg);
    position: relative;
}

.partnership-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, transparent 0%, rgba(196, 30, 58, 0.03) 100%);
    pointer-events: none;
}

.partnership-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

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

.timeline-marker {
    width: 240px;
    flex-shrink: 0;
    text-align: right;
    position: relative;
}

.marker-number {
    display: block;
    font-size: 72px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 10px;
}

.timeline-content h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.timeline-content p {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 140px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-content h2 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.contact-content p {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 48px;
}

.contact-email {
    margin-top: 40px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    padding: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-email p {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.email-link {
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: opacity 0.2s;
    letter-spacing: -0.01em;
}

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

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    gap: 32px;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero-content h1 {
        font-size: 64px;
    }

    .section-header-large h2 {
        font-size: 56px;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
    }

    .timeline-marker {
        width: 100%;
        text-align: left;
    }

    .marker-number {
        font-size: 36px;
    }

    .nav-menu {
        display: none;
    }

    .hero-logo {
        width: 250px;
    }

    .hero-text h1 {
        font-size: 72px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .dynamic-text {
        font-size: 56px;
    }

    .services-stagger {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

    .hero {
        padding: 140px 0 40px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .section-header-large h2 {
        font-size: 40px;
    }

    .contact-content h2 {
        font-size: 40px;
    }

    .channel-content {
        flex-direction: column;
        padding: 40px 32px;
        text-align: center;
        gap: 32px;
    }

    .channel-avatar {
        margin: 0 auto;
    }

    .channel-info h3 {
        font-size: 28px;
    }

    .channel-stats {
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }

    .brand-hero {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .hero-logo {
        width: 180px;
    }

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

    .hero-text h1 {
        font-size: 48px;
        text-align: center;
    }

    .hero-tagline {
        font-size: 18px;
        text-align: center;
    }

    .dynamic-text {
        font-size: 40px;
    }

    .typewriter-wrapper {
        display: inline-block;
        min-height: 50px;
        vertical-align: top;
    }

    .dynamic-highlight {
        display: inline-block;
        min-width: 200px;
        text-align: center;
    }

    .service-box {
        width: 100%;
        margin: 0 auto 20px !important;
    }

    .services-stagger {
        padding: 0 20px;
    }

    .stat {
        align-items: center;
    }

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .metric-value {
        font-size: 64px;
    }

    .email-link {
        font-size: 22px;
    }

    .contact-email {
        padding: 30px 20px;
    }

    .contact-email p {
        font-size: 18px;
    }

    .what-we-do-section {
        padding: 60px 0 80px;
    }

    .dynamic-content {
        padding: 30px 0;
    }

    .metrics-section {
        padding: 60px 0;
    }

    .section-header-large {
        margin-bottom: 40px;
    }

    .partnership-section {
        padding: 60px 0;
    }

    .partnership-timeline {
        padding: 20px 0;
    }

    .timeline-item {
        flex-direction: row !important;
        gap: 15px !important;
        margin-bottom: 30px;
        align-items: flex-start !important;
    }

    .timeline-marker {
        width: auto !important;
        text-align: left;
        flex-shrink: 0 !important;
    }

    .marker-number {
        font-size: 28px !important;
    }

    .timeline-content {
        padding-top: 0;
    }

    .timeline-content h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .cursor {
        display: inline;
    }

    #reach .section-header-large h2 {
        font-size: 0;
    }

    #reach .section-header-large h2::after {
        content: "The Numbers\A Don't Lie";
        white-space: pre-line;
        font-size: 40px;
        display: block;
        line-height: 1.2;
    }
}
