/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, #161519 0%, #2a1a2e 40%, #d90a2c 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80vh;
    height: 80vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,10,44,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237,13,80,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
}

.pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-title {
    font-size: 5vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title .dynamic-word {
    background: linear-gradient(135deg, #ed0d50, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-right: 3px solid #ed0d50;
    padding-right: 4px;
    display: inline-block;
    min-width: 1ch;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.hero-stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #fff;
    color: #161519;
}

.btn-primary:hover {
    background: #ed0d50;
    color: #fff;
}

.btn-outlined {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outlined:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-brand {
    background: #878787;
    color: #fff;
}

.btn-brand:hover {
    opacity: 0.85;
}

.btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Floating shapes in hero */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
}

.hero-shapes .shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.hero-shapes .shape-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 8%;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 20%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ========== DARK SECTION: BEST IN LOOKING ========== */
.section-creators {
    background: #161519;
    color: #fff;
    padding: 10vh 0;
}

.section-creators .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: end;
}

.section-creators h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.15;
}

.section-creators h2 .light {
    font-weight: 300;
}

.red-card {
    background: linear-gradient(135deg, #d90a2c 0%, #ed0d50 50%, #d9230a 100%);
    border-radius: 15px;
    padding: 32px;
    color: #fff;
}

.red-card .icon-circle {
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.red-card .divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.25);
    margin: 16px 0;
}

.red-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

.btn-white-outlined {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-white-outlined:hover {
    background: #fff;
    color: #161519;
}

.btn-white-outlined svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.stats-card {
    background: rgba(148, 148, 158, 0.06);
    border-radius: 15px;
    padding: 32px;
}

.counter-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
}

.stats-card .divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.25);
    margin: 16px 0;
}

.stats-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

/* ========== WHAT WE OFFER ========== */
.section-offer {
    background: #161519;
    color: #fff;
    padding: 5vh 0 10vh;
}

.section-offer .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.offer-intro .pill-inverse {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #fff;
}

.offer-intro h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 12px;
}

.offer-intro h2 .light {
    font-weight: 300;
}

.offer-intro .sub {
    color: #94949e;
    font-size: 15px;
}

.offer-intro .sub b {
    color: #94949e;
}

.feature-item {
    margin-bottom: 40px;
}

.feature-item .icon-box {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
}

.feature-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
}

.feature-item p {
    color: #8b8a8d;
    font-size: 14px;
}

/* ========== PORTFOLIO SECTION ========== */
.section-portfolio {
    background: #fbf0f1;
    padding: 10vh 0;
}

.section-portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 5vh;
}

.section-portfolio h2 .light {
    font-weight: 300;
}

/* ========== SIDE ELEMENTS ========== */
.side-follow {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #24262B;
    transition: color 0.4s;
}

.side-follow.light {
    color: #fff;
}

.side-follow span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.side-follow .dash {
    width: 1px;
    height: 20px;
    background: currentColor;
    transition: background 0.4s;
}

.side-follow a {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 12px;
    color: inherit;
}

.side-follow a:hover {
    color: #878787;
}

/* ========== ANIMATIONS ========== */
@keyframes blink {
    0%, 50% { border-color: #ed0d50; }
    51%, 100% { border-color: transparent; }
}

.cursor-blink {
    animation: blink 1s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 7vw;
    }

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

    .section-offer .container {
        grid-template-columns: 1fr 1fr;
    }

    .side-follow {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero .container {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 10vw;
    }

    .hero-stats {
        gap: 30px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .hero-stat .number {
        font-size: 1.8rem;
    }

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

    .section-offer .container {
        grid-template-columns: 1fr;
    }

    .side-follow {
        display: none;
    }
}
