@font-face {
    font-family: 'Clash Display';
    src: url('assets/fonts/ClashDisplay-Bold.woff') format('woff'),
        url('assets/fonts/ClashDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Delight';
    src: url('assets/fonts/Delight-VF.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* ===========================================
   Typography Scale System
   Base: 16px (1rem)
   Scale ratio: ~1.25 (Major Third)
   =========================================== */
:root {
    /* Base font size */
    --font-size-base: 1rem;
    /* 16px - body text */

    /* Type scale - smaller */
    --font-size-xs: 0.75rem;
    /* 12px - badges, tiny labels */
    --font-size-sm: 0.875rem;
    /* 14px - small text, nav links, buttons */

    /* Type scale - larger */
    --font-size-md: 1rem;
    /* 16px - body, paragraphs */
    --font-size-lg: 1.125rem;
    /* 18px - lead text, subtitles */
    --font-size-xl: 1.25rem;
    /* 20px - h4, card titles */
    --font-size-2xl: 1.5rem;
    /* 24px - h3 */
    --font-size-3xl: 2rem;
    /* 32px - h2 mobile */
    --font-size-4xl: 2.25rem;
    /* 36px - h1 mobile */
    --font-size-5xl: 3rem;
    /* 48px - pricing, large numbers */
    --font-size-6xl: 3.25rem;
    /* 52px - h2 desktop */
    --font-size-7xl: 4.5rem;
    /* 72px - h1 desktop */
}

html {
    font-size: 100%;
    /* 16px base */
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.nav-links a {
    font-family: 'Delight', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: var(--font-size-md);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.btn-primary {
    background-color: #ffffff;
    color: #0a0a0a;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-primary.btn-large {
    padding: 16px 32px;
    font-size: var(--font-size-md);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: var(--font-size-md);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-ghost:hover {
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Floating Letters Background */
.floating-letters {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.letter {
    position: absolute;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.06);
    animation: floatLetter 20s ease-in-out infinite;
}

.letter:nth-child(odd) {
    animation-delay: -10s;
}

.letter:nth-child(3n) {
    animation-duration: 25s;
}

.letter:nth-child(5n) {
    animation-duration: 18s;
    animation-delay: -5s;
}

@keyframes floatLetter {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.06;
    }

    25% {
        transform: translateY(-10px) rotate(5deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(5px) rotate(-3deg);
        opacity: 0.04;
    }

    75% {
        transform: translateY(-5px) rotate(2deg);
        opacity: 0.08;
    }
}

/* Centered Hero Content */
.hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    padding-top: 60px;
}

.hero-headline {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(var(--font-size-4xl), 5.5vw, var(--font-size-7xl));
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 48px;
}

.headline-line {
    display: block;
}

.highlight {
    color: #E3FF93;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: -0.05em;
    right: -0.05em;
    height: 0.15em;
    background: #E3FF93;
    z-index: -1;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.btn-google:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero .btn-primary {
    background: #E3FF93;
    color: #0a0a0a;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(227, 255, 147, 0.3);
}

.hero .btn-primary:hover {
    background: #d4f076;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 255, 147, 0.4);
}

/* Leads Section */
.leads-section {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    width: 100%;
}

.leads-card {
    background: #0F0F13;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    width: 420px;
    box-shadow: 0 2px 2px 0 rgba(228, 255, 152, 0.5);
}

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

.leads-spinner-img {
    width: 24px;
    height: 24px;
    animation: spinLeads 2.4s linear infinite;
}

@keyframes spinLeads {
    to { transform: rotate(360deg); }
}

.leads-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: #ffffff;
}

.leads-count {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    text-align: left;
}

.leads-count-number {
    color: #ffffff;
    font-weight: 600;
}

.leads-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 260px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.lead-item {
    display: grid;
    grid-template-columns: 36px 1fr auto auto;
    align-items: center;
    gap: 12px;
    background: #252525;
    border-radius: 12px;
    padding: 12px;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lead-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #333;
}

.lead-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lead-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.lead-name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.lead-league {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.lead-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    white-space: nowrap;
}

.lead-value {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.lead-salary {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.lead-match {
    background: rgba(227, 255, 147, 0.15);
    border: none;
    color: #E3FF93;
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Annotation */
.leads-annotation {
    position: absolute;
    left: calc(50% + 210px);
    top: 0;
    max-width: 220px;
    text-align: center;
}

.leads-annotation p {
    font-family: 'Space Mono', monospace;
    font-size: var(--font-size-sm);
    color: #E3FF93;
    line-height: 1.6;
    text-align: center;
}

.annotation-connector-img {
    display: block;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    height: auto;
    max-width: 100%;
}

/* Agency Input */
.agency-input-container {
    position: relative;
    width: 100%;
    max-width: 465px;
    margin: 0 auto;
}

.agency-input-wrapper {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 8px 8px 8px 28px;
    width: 100%;
}

.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    margin-top: 4px;
}

.autocomplete-dropdown.active {
    display: block;
}

.autocomplete-item {
    padding: 16px 24px;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.2s ease;
    font-size: var(--font-size-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.autocomplete-item:hover {
    background: rgba(227, 255, 147, 0.1);
    color: #E3FF93;
}

.autocomplete-item:first-child {
    border-radius: 12px 12px 0 0;
}

.autocomplete-item:last-child {
    border-radius: 0 0 12px 12px;
}

.agency-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: var(--font-size-lg);
    outline: none;
    padding: 14px 0;
}

/* Teaser Section */
.teaser-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teaser-card {
    background: #0F0F13;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.teaser-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.teaser-headline {
    font-family: 'Clash Display', sans-serif;
    font-size: var(--font-size-3xl);
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 24px;
}

.teaser-subtext {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.btn-create-account {
    background: #E3FF93;
    color: #0a0a0a;
    padding: 16px 48px;
    border-radius: 12px;
    font-size: var(--font-size-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-create-account:hover {
    background: #d4f076;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 255, 147, 0.4);
}

.teaser-loading {
    text-align: center;
    display: none;
}

.teaser-loading.active {
    display: block;
}

.teaser-loading p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-md);
    margin-top: 24px;
}

.agency-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-try {
    background: #E3FF93;
    color: #0a0a0a;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: var(--font-size-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-try:hover {
    background: #d4f076;
    transform: scale(1.02);
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}

.customer-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    margin-left: -10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-placeholder {
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.rating-text {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

/* Brand Carousel */
.brand-carousel {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brand-track {
    display: flex;
    gap: 60px;
    animation: scrollBrands 30s linear infinite;
    width: max-content;
}

.brand-logo {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    padding: 12px 0;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }

    .hero-content-centered {
        padding-top: 40px;
    }

    .hero-headline {
        font-size: var(--font-size-4xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-md);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn-google,
    .hero .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .social-proof {
        flex-direction: column;
        gap: 12px;
    }

    .brand-track {
        gap: 40px;
    }

    .brand-logo {
        font-size: var(--font-size-md);
    }

    .leads-section {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .leads-card {
        width: 100%;
        max-width: 420px;
    }

    .leads-annotation {
        position: relative;
        left: auto;
        top: auto;
        padding-top: 0;
        max-width: 100%;
        text-align: center;
    }

    .leads-annotation p {
        text-align: center;
    }

    .annotation-connector-img {
        display: none;
    }

    .agency-input-wrapper {
        max-width: 100%;
        padding: 4px 4px 4px 16px;
    }

    .btn-try {
        padding: 12px 20px;
    }
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-6xl));
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    max-width: 500px;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: #0a0a0a;
}

.how-it-works .section-header {
    margin-bottom: 60px;
}

.how-it-works .section-header h2 {
    font-family: 'Space Mono', monospace;
    font-size: var(--font-size-sm);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #E3FF93;
}

.hiw-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: flex-start;
}

.hiw-step {
    display: flex;
    flex-direction: column;
}

.hiw-step-title {
    font-family: 'Clash Display', sans-serif;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.hiw-step-num {
    color: #E3FF93;
}

.hiw-step-desc {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-top: 20px;
    text-align: center;
}

/* Connector Lines */
.hiw-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 180px;
    width: 80px;
}

.connector-line {
    width: 100%;
    height: 20px;
}

.dotted-path {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 3;
    stroke-dasharray: 8 8;
    fill: none;
    animation: dashMove 1s linear infinite;
}

@keyframes dashMove {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -16;
    }
}

/* Club Cards */
.hiw-card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.club-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.club-card.selected {
    border-color: #E3FF93;
    background: rgba(227, 255, 147, 0.05);
}

.club-logo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #2a2a2a;
}

.club-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.club-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.club-name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.club-league {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.league-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Position-based badge colors */
.league-badge.pos-w {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.2);
}

.league-badge.pos-cf {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.2);
}

.league-badge.pos-cb {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.2);
}

.league-badge.pos-dm {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.2);
}

.league-badge.pos-am {
    color: #22C55E;
    background: rgba(34, 197, 94, 0.2);
}

.league-badge.pos-lb,
.league-badge.pos-rb {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.2);
}

.league-badge.pos-gk {
    color: #F59E0B;
    background: rgba(245, 158, 11, 0.2);
}

.club-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.club-value {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #ffffff;
}

.club-salary {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.4);
}

.match-btn {
    background: rgba(227, 255, 147, 0.15);
    border: 1px solid rgba(227, 255, 147, 0.3);
    color: #E3FF93;
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
}

/* Player Cards */
.player-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.player-card.selected {
    border-color: #E3FF93;
    background: rgba(227, 255, 147, 0.05);
}

.player-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #2a2a2a;
}

.player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.player-name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.player-flag {
    font-size: 12px;
}

.player-details {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.team-dot.leeds { background: #ffcd00; }
.team-dot.barcelona { background: #ffcd00; }
.team-dot.cska { background: #e00; }
.team-dot.lazio { background: #87ceeb; }

.player-value {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #E3FF93;
}

.position-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    color: #ffffff;
}

.position-badge.gk { background: #f59e0b; }
.position-badge.dm { background: #3b82f6; }
.position-badge.am { background: #22c55e; }
.position-badge.lb { background: #ef4444; }

.link-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--font-size-md);
    cursor: pointer;
    padding: 4px;
}

/* WhatsApp Chat */
.whatsapp-chat {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 340px;
    margin: 0 auto;
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

.wa-club-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
}

.wa-club-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wa-club-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wa-club-name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #1a1a1a;
}

.wa-status {
    font-size: var(--font-size-xs);
    color: #666;
}

.wa-status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    margin-right: 6px;
}

.wa-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    line-height: 1;
}

.wa-messages {
    padding: 20px 16px;
    background: #e5ddd5;
    min-height: 150px;
}

.wa-message {
    background: #dcf8c6;
    border-radius: 8px 8px 0 8px;
    padding: 10px 12px;
    max-width: 90%;
    margin-left: auto;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.wa-message.visible {
    opacity: 1;
    transform: translateY(0);
}

.wa-message p {
    font-size: var(--font-size-sm);
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.45);
    margin-top: 4px;
}

/* Animation states */
.club-card,
.player-card {
    opacity: 0.7;
}

.club-card.selected,
.player-card.selected {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .hiw-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hiw-connector {
        display: none;
    }

    .hiw-step-desc {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .whatsapp-chat {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }

    .club-card,
    .player-card {
        padding: 10px 12px;
    }

    .club-logo {
        width: 32px;
        height: 32px;
    }

    .player-photo {
        width: 36px;
        height: 36px;
    }
}

/* Player Discovery Section */
.discovery-section {
    padding: 80px 0;
    background: #0a0a0a;
    overflow: hidden;
    position: relative;
}

.discovery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.discovery-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Clash Display', sans-serif;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #E3FF93;
    margin-bottom: 20px;
}

.label-bar {
    width: 4px;
    height: 20px;
    background: #E3FF93;
    border-radius: 2px;
}

.discovery-text h2 {
    color: #ffffff;
    font-size: clamp(var(--font-size-3xl), 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

.discovery-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-md);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 480px;
}

.discovery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E3FF93;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.discovery-link:hover {
    gap: 12px;
}

.discovery-link svg {
    transition: transform 0.3s ease;
}

.discovery-link:hover svg {
    transform: translateX(4px);
}

.radar-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    margin: 0 auto;
}

/* Gradient fade overlay - fades out from center */
.radar-container::after {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at center,
            transparent 0%,
            transparent 30%,
            rgba(10, 10, 10, 0.3) 50%,
            rgba(10, 10, 10, 0.7) 70%,
            rgba(10, 10, 10, 0.95) 90%);
    pointer-events: none;
    z-index: 5;
}

.radar-bg-pattern {
    position: absolute;
    inset: -30%;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 8px,
            rgba(255, 255, 255, 0.02) 8px,
            rgba(255, 255, 255, 0.02) 9px);
}

.radar-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.radar-circle {
    fill: none;
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 1;
    stroke-dasharray: 6 4;
}

.radar-line {
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 1;
    stroke-dasharray: 4 4;
}

.radar-cone {
    fill: rgba(227, 255, 147, 0.12);
    transform-origin: 200px 200px;
    animation: radarSweep 16s linear infinite;
}

.radar-center {
    fill: #E3FF93;
}

@keyframes radarSweep {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Player Badges */
.player-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    transform: scale(0.8);
}

.player-icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.player-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-label {
    background: #ffffff;
    color: #0a0a0a;
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

/* Player positions - spread around the radar */
.player-1 {
    top: 12%;
    right: 15%;
    animation: playerReveal1 16s linear infinite;
}

.player-2 {
    top: 45%;
    right: 5%;
    animation: playerReveal2 16s linear infinite;
}

.player-3 {
    bottom: 30%;
    left: 20%;
    animation: playerReveal3 16s linear infinite;
}

/* Players appear when radar beam leading edge sweeps over them */
/* Adjusted +8% later for narrower cone */

/* player-1: top-right - appears at 90% */
@keyframes playerReveal1 {

    0%,
    89% {
        opacity: 0;
        transform: scale(0.8);
    }

    90%,
    91% {
        opacity: 1;
        transform: scale(1);
    }

    92%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* player-2: right side - appears at 5%, wraps through 0% */
@keyframes playerReveal2 {

    0%,
    4% {
        opacity: 0;
        transform: scale(0.8);
    }

    5%,
    6% {
        opacity: 1;
        transform: scale(1);
    }

    7%,
    17% {
        opacity: 1;
        transform: scale(1);
    }

    21%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* player-3: bottom-left - appears at 40% */
@keyframes playerReveal3 {

    0%,
    39% {
        opacity: 0;
        transform: scale(0.8);
    }

    40%,
    41% {
        opacity: 1;
        transform: scale(1);
    }

    42%,
    52% {
        opacity: 1;
        transform: scale(1);
    }

    56%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

@media (max-width: 1024px) {
    .discovery-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .discovery-label {
        justify-content: center;
    }

    .discovery-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .radar-container {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .discovery-section {
        padding: 60px 0;
    }

    .radar-container {
        max-width: 240px;
    }

    .player-icon {
        width: 32px;
        height: 32px;
    }

    .player-label {
        font-size: 0.6875rem;
        padding: 4px 8px;
    }
}

/* Boost Performance Section */
.performance-section {
    padding: 80px 0;
    background: #0a0a0a;
    overflow: hidden;
}

.performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.performance-text {
    max-width: 480px;
}

.performance-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Clash Display', sans-serif;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #E3FF93;
    margin-bottom: 20px;
}

.performance-text h2 {
    color: #ffffff;
    font-size: clamp(var(--font-size-3xl), 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

.performance-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-md);
    line-height: 1.7;
    margin-bottom: 24px;
}

.performance-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E3FF93;
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.performance-link:hover {
    gap: 12px;
}

.performance-link svg {
    transition: transform 0.3s ease;
}

.performance-link:hover svg {
    transform: translateX(4px);
}

/* Chart container */
.chart-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
    margin: 0 auto;
}

/* Grid background */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Horizontal guide lines */
.guide-lines {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.guide-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* Chart area */
.performance-chart {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 60px;
    height: 300px;
}

.chart-arrow {
    position: absolute;
    width: 80px;
    height: 120px;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
}

.arrow-path {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    transition: stroke-dashoffset 0.8s ease-out 0.6s;
}

.arrow-head {
    opacity: 0;
    transition: opacity 0.3s ease 1.3s;
}

.performance-section.in-view .arrow-path {
    stroke-dashoffset: 0;
}

.performance-section.in-view .arrow-head {
    opacity: 1;
}

.chart-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.chart-bar {
    width: 100px;
    height: 0;
    border-radius: 16px 16px 6px 6px;
    position: relative;
    overflow: hidden;
    transition: height 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bar-normal {
    background: #4a4a4a;
}

.bar-signed {
    background: linear-gradient(180deg, #E3FF93 0%, #c8e67a 100%);
}

.bar-fill {
    position: absolute;
    inset: 0;
}

.bar-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(227, 255, 147, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s ease 1s;
}

.performance-section.in-view .bar-glow {
    opacity: 1;
}

/* Animate bars when in view */
.performance-section.in-view .bar-normal {
    height: 120px;
}

.performance-section.in-view .bar-signed {
    height: 220px;
}

.bar-label {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.signed-logo {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
}

@media (max-width: 1024px) {
    .performance-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .performance-text {
        max-width: 100%;
    }

    .performance-label {
        justify-content: center;
    }

    .performance-desc {
        margin-left: auto;
        margin-right: auto;
        max-width: 480px;
    }

    .chart-container {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .performance-section {
        padding: 60px 0;
    }

    .chart-container {
        height: 350px;
        max-width: 320px;
    }

    .performance-chart {
        gap: 40px;
        height: 260px;
    }

    .chart-bar {
        width: 80px;
    }

    .performance-section.in-view .bar-normal {
        height: 90px;
    }

    .performance-section.in-view .bar-signed {
        height: 180px;
    }

    .bar-label {
        font-size: var(--font-size-sm);
    }

    .signed-logo {
        height: 16px;
    }

    .chart-arrow {
        width: 60px;
        height: 90px;
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #111111;
}

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

.feature-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-card.accent {
    background: linear-gradient(135deg, #E3FF93 0%, #C4E060 100%);
    border: none;
}

.feature-card.accent h3,
.feature-card.accent p {
    color: #0a0a0a;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.feature-card.accent .feature-icon {
    background: rgba(0, 0, 0, 0.1);
    color: #0a0a0a;
}

.feature-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.feature-card p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}


/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: #0a0a0a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #E3FF93 0%, #C4E060 100%);
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: #0a0a0a;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0a0a0a;
    color: #E3FF93;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.pricing-header h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-description {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card.featured .pricing-description {
    color: rgba(0, 0, 0, 0.7);
}

.pricing-price {
    margin: 32px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price {
    font-size: var(--font-size-5xl);
    font-weight: 600;
    color: #ffffff;
}

.period {
    font-size: var(--font-size-md);
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card.featured .period {
    color: rgba(0, 0, 0, 0.6);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pricing-features svg {
    color: #E3FF93;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features svg {
    color: #0a0a0a;
}

.pricing-card.featured .pricing-features li {
    color: rgba(0, 0, 0, 0.8);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.pricing-card .btn-primary,
.pricing-card .btn-outline {
    width: 100%;
    text-align: center;
}

.pricing-card.featured .btn-primary {
    background: #0a0a0a;
    color: #E3FF93;
}

/* Integrations Section */
.integrations {
    padding: 120px 0;
    background: #111111;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.integration-card {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.integration-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.integration-icon {
    color: rgba(255, 255, 255, 0.8);
}

.integration-card span {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #0a0a0a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-content p {
    font-size: var(--font-size-md);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E3FF93 0%, #C4E060 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: #0a0a0a;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: #ffffff;
}

.author-role {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #E3FF93 0%, #C4E060 100%);
    text-align: center;
}

.cta h2 {
    color: #0a0a0a;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    font-size: var(--font-size-lg);
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: #0a0a0a;
    color: #ffffff;
}

.cta .btn-primary:hover {
    background: #1a1a1a;
}

.cta .btn-ghost {
    color: rgba(0, 0, 0, 0.7);
}

.cta .btn-ghost:hover {
    color: #0a0a0a;
}

/* Footer */
.footer {
    padding: 80px 0 32px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-text {
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-column h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-column a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .browser-container {
        right: -100px;
    }

    .browser {
        width: 450px;
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .headline-row {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .stats {
        justify-content: center;
        margin-top: 60px;
    }

    .browser-container {
        position: relative;
        right: 0;
        top: 0;
        margin-top: 60px;
    }

    .browser {
        width: 100%;
        max-width: 520px;
    }

    .steps-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-main {
        flex-direction: column;
        gap: 48px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    h1 {
        font-size: var(--font-size-4xl);
    }

    h2 {
        font-size: var(--font-size-3xl);
    }

    .tag {
        font-size: var(--font-size-sm);
        padding: 6px 12px;
    }

    .hero-subtitle,
    .section-subtitle {
        font-size: var(--font-size-md);
    }

    .stats {
        gap: 40px;
    }

    .stat-number {
        font-size: var(--font-size-4xl);
    }

    .browser {
        width: 100%;
    }

    .browser-screen {
        height: 280px;
    }

    .how-it-works,
    .features,
    .pricing,
    .integrations,
    .testimonials,
    .cta {
        padding: 80px 0;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 16px;
    }

    .hero-container,
    .section-container,
    .cta-container,
    .footer-container {
        padding: 0 16px;
    }

    .step-card,
    .feature-card,
    .pricing-card,
    .testimonial-card {
        padding: 24px;
    }

    .price {
        font-size: var(--font-size-4xl);
    }
}

/* ===========================================
   Sign Up Page Styles
   =========================================== */

.signup-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    background: #0a0a0a;
}

.signup-container {
    width: 100%;
    max-width: 480px;
}

.signup-header {
    text-align: center;
    margin-bottom: 40px;
}

.signup-header h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.signup-header p {
    font-size: var(--font-size-md);
    color: rgba(255, 255, 255, 0.6);
}

.signup-form {
    background: #0F0F13;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

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

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: var(--font-size-md);
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #E3FF93;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.agency-select-container {
    position: relative;
}

.agency-select-container .autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
}

.form-error {
    display: none;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
    color: #EF4444;
    font-size: var(--font-size-sm);
}

.btn-signup {
    width: 100%;
    padding: 16px 24px;
    background: #E3FF93;
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    font-size: var(--font-size-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-signup:hover:not(:disabled) {
    background: #d4f076;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 255, 147, 0.4);
}

.btn-signup:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-spinner {
    width: 20px;
    height: 20px;
    animation: spin 2.4s linear infinite;
}

.signup-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.signup-divider::before,
.signup-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.signup-divider span {
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-sm);
}

.btn-google-signup {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: var(--font-size-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-google-signup:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-google-signup svg {
    flex-shrink: 0;
}

.signup-terms {
    margin-top: 20px;
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.signup-terms a {
    color: #E3FF93;
    text-decoration: none;
}

.signup-terms a:hover {
    text-decoration: underline;
}

.signup-footer {
    margin-top: 24px;
    text-align: center;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.signup-footer a {
    color: #E3FF93;
    text-decoration: none;
    font-weight: 500;
}

.signup-footer a:hover {
    text-decoration: underline;
}

/* ===========================================
   Success Page Styles
   =========================================== */

.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    background: #0a0a0a;
}

.success-container {
    text-align: center;
    max-width: 560px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(227, 255, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 40px;
}

.success-container h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.success-container p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #E3FF93;
    color: #0a0a0a;
    border-radius: 12px;
    font-size: var(--font-size-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #d4f076;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 255, 147, 0.4);
}

.btn-download img {
    width: 24px;
    height: 24px;
}

.success-note {
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.success-note strong {
    color: #E3FF93;
}

@media (max-width: 640px) {
    .signup-section,
    .success-section {
        padding: 100px 16px 40px;
    }

    .signup-form {
        padding: 24px;
    }

    .signup-header h1,
    .success-container h1 {
        font-size: var(--font-size-2xl);
    }
}