:root {
    --pink: #FF0055;
    --black: #0c0c0c;
    --white: #f9f9f9;
    --border: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html, body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo, .footer-logo, .outline-text, .nav-btn, .submit-btn, .marquee-inner, .big-num {
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--pink);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

body.hovered .cursor-follower {
    width: 80px;
    height: 80px;
    background: rgba(255, 0, 85, 0.1);
}

/* Nav */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    mix-blend-mode: difference;
    color: white;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
}

.nav-btn {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s;
}
.nav-btn:hover {
    background: white;
    color: black;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    position: relative;
}

.hero-title {
    font-size: 8vw;
    line-height: 0.9;
    letter-spacing: -2px;
}

.line {
    display: block;
    overflow: hidden;
}
.line span {
    display: block;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
}

.pink-text {
    color: var(--pink);
}

.hero-bottom {
    position: absolute;
    bottom: 2rem;
    left: 4rem;
    right: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-bottom p {
    max-width: 400px;
    font-size: 1rem;
    opacity: 0.7;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.line-down {
    width: 1px;
    height: 60px;
    background: var(--white);
    transform-origin: top;
    animation: scaleLine 2s infinite ease-in-out;
}

@keyframes scaleLine {
    0% { transform: scaleY(0); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Marquee */
.marquee {
    padding: 2rem 0;
    background: var(--pink);
    color: var(--black);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* Stats */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--white);
    color: var(--black);
}

.grid-item {
    padding: 6rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.1);
}
.grid-item:last-child {
    border-right: none;
}

.bg-pink {
    background: var(--pink);
    color: var(--black);
}

.huge-stat h2 {
    font-size: clamp(1.5rem, 3vw, 3rem);
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.stat-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 2rem 0;
}
.bg-pink .stat-row {
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.big-num {
    font-size: 4vw;
    font-weight: 800;
    line-height: 1;
}

.stat-lbl {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 500;
}

/* Contact */
.contact {
    padding: 8rem 4rem;
    background: var(--black);
    color: var(--white);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-text h2 {
    font-size: 6vw;
    line-height: 0.9;
    color: var(--pink);
    letter-spacing: -2px;
}
.contact-text p {
    margin-top: 2rem;
    font-size: 1.2rem;
    max-width: 300px;
    opacity: 0.7;
}

/* Brutalist Form */
.mode-selection {
    border-bottom: none !important;
}
.radio-label {
    display: block;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.custom-radio {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    position: relative;
}
.custom-radio input {
    display: none;
}
.radio-btn {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}
.custom-radio input:checked ~ .radio-btn {
    border-color: var(--pink);
}
.custom-radio input:checked ~ .radio-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--pink);
    border-radius: 50%;
}

.custom-select {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    padding: 1rem 0;
    appearance: none;
}
.custom-select:focus {
    outline: none;
}
.custom-multi-select {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.cms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    color: var(--white);
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.5rem;
}
.cms-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    border: 1px solid rgba(255, 0, 85, 0.3);
    border-top: none;
    max-height: 350px;
    overflow-y: auto;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.custom-multi-select.open .cms-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.cms-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 2rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.cms-option input[type="checkbox"] {
    display: none;
}
.cms-option.selected {
    background: var(--pink);
    color: var(--black);
    border-color: var(--pink);
    padding-left: 3rem;
}
.cms-option:hover:not(.selected) {
    background: rgba(255,0,85,0.1);
    padding-left: 2.5rem;
}
.cms-dropdown::-webkit-scrollbar {
    width: 6px;
}
.cms-dropdown::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 3px;
}

.disclaimer-box {
    background: rgba(255, 0, 85, 0.05);
    border-left: 2px solid var(--pink);
    padding: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}
.disclaimer-box strong {
    color: var(--pink);
    font-weight: 600;
}

.input-line {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
    position: relative;
}

.input-line.half {
    display: flex;
    gap: 2rem;
    border-bottom: none;
    margin-bottom: 0;
}
.input-line.half input {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
}

input[type="text"], textarea {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    padding: 1rem 0;
    resize: none;
}
input[type="text"]:focus, textarea:focus {
    outline: none;
    border-bottom-color: var(--pink);
}
input::placeholder, textarea::placeholder {
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
}

/* Slider */
.slider-line {
    padding: 1rem 0 2rem 0;
    border-bottom: none;
}
.slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}
#investment-value, #reach-value {
    color: var(--pink);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    outline: none;
    background: rgba(255, 0, 85, 0.2);
    margin: 10px 0;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--pink);
    cursor: none;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

input[type=range]::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--pink);
    cursor: none;
    border: none;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

input[type=range]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 4px;
    background: transparent;
    border: none;
}

input[type=range]::-moz-range-track {
    height: 4px;
    background: transparent;
    border: none;
}

.slider-helper {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: none;
    text-align: left;
}

.submit-btn {
    background: var(--pink);
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 2rem;
    width: 100%;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    transition: background 0.3s, color 0.3s;
}
.submit-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* Footer */
.footer {
    padding: 4rem;
    background: var(--black);
    color: var(--white);
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
}

.footer-credit a {
    color: var(--pink);
    text-decoration: none;
}

@media (max-width: 900px) {
    .nav { padding: 1.5rem; }
    .logo { font-size: 1.5rem; }
    .nav-btn { font-size: 0.8rem; padding: 0.8rem 1rem; }
    
    .hero { padding: 0 1.5rem; }
    .hero-title { font-size: 11vw; letter-spacing: -1px; word-wrap: break-word; }
    .hero-bottom { left: 1.5rem; right: 1.5rem; bottom: 1.5rem; flex-direction: column; align-items: flex-start; gap: 2rem; }
    .scroll-indicator { display: none; }
    
    .marquee-inner { font-size: 2rem; }
    
    .grid-container { grid-template-columns: 1fr; }
    .grid-item { border-right: none; padding: 4rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.1); }
    .bg-pink.grid-item { border-bottom: none; }
    
    .huge-stat h2 { font-size: 1.8rem; margin-bottom: 2rem; }
    .big-num { font-size: 3rem; word-break: break-word; }
    
    .contact { padding: 4rem 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-text h2 { font-size: 3rem; line-height: 1; word-break: break-word; }
    
    .input-line.half { flex-direction: column; gap: 0; }
    .submit-btn { font-size: 1.1rem; padding: 1.2rem 1rem; justify-content: center; gap: 10px; }
    
    .footer { padding: 3rem 1.5rem; }
    .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
    
    .cursor, .cursor-follower { display: none; }
    * { cursor: auto !important; }
}
