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

:root {
    --green: #2ECC71;
    --green-dark: #27AE60;
    --green-glow: rgba(46, 204, 113, 0.2);
    --bg: #080c09;
    --bg-card: #0f1a12;
    --bg-card2: #111d14;
    --text: #f0f8f0;
    --text-muted: #8aaa8d;
    --gold: #EDB645;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(ellipse at top, #0d2010 0%, var(--bg) 60%);
    background-attachment: fixed;
    color: var(--text);
    min-height: 100vh;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    z-index: 100;
    background: rgba(8, 12, 9, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-logo:hover { color: var(--green); }
.logo-icon { font-size: 16px; }

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
    padding: 8px 20px;
    background: var(--green);
    color: #040804 !important;
    border-radius: 20px;
    font-weight: 700 !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: #fff !important; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 60px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.court-line {
    position: absolute;
    background: rgba(46, 204, 113, 0.06);
}
.line-1 { width: 100%; height: 2px; top: 40%; }
.line-2 { width: 2px; height: 100%; left: 30%; }
.line-3 { width: 2px; height: 100%; right: 30%; }

.ball {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(46, 204, 113, 0.15);
    animation: floatBall 8s ease-in-out infinite;
}
.ball-1 { top: 20%; left: 15%; animation-delay: 0s; }
.ball-2 { bottom: 25%; right: 12%; animation-delay: -4s; width: 40px; height: 40px; }

@keyframes floatBall {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 20px;
}

.hero-icon { font-size: 64px; margin-bottom: 16px; }

.hero-title {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text);
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff 40%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 18px;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 36px;
}

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

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.btn-primary { background: var(--green); color: #040804; box-shadow: 0 8px 24px var(--green-glow); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text); border: 2px solid rgba(46, 204, 113, 0.4); }
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

/* Sections */
.container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

.features, .how-it-works { padding: 100px 0; }
.how-it-works { background: rgba(46, 204, 113, 0.02); border-top: 1px solid rgba(46, 204, 113, 0.08); border-bottom: 1px solid rgba(46, 204, 113, 0.08); }

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(46, 204, 113, 0.12);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s;
}
.feature-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--green-glow);
}

.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 32px; max-width: 640px; margin: 0 auto; }
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--green);
    opacity: 0.3;
    min-width: 60px;
    line-height: 1;
}
.step-content h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* CTA Section */
.cta-section { padding: 100px 0; }
.cta-card {
    background: linear-gradient(135deg, #0d2010 0%, #0f1a12 100%);
    border: 1px solid rgba(46, 204, 113, 0.25);
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 0 60px rgba(46, 204, 113, 0.08);
}
.cta-card h2 { font-size: 32px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.cta-card > p { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; line-height: 1.6; }

.waitlist-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.waitlist-input {
    padding: 14px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 30px;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    width: 280px;
    outline: none;
    transition: border-color 0.2s;
}
.waitlist-input:focus { border-color: var(--green); }
.waitlist-input::placeholder { color: var(--text-muted); }
.cta-disclaimer { font-size: 12px; color: var(--text-muted); opacity: 0.6; }

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(46, 204, 113, 0.08);
    text-align: center;
}
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { text-decoration: none; color: var(--text-muted); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 12px; color: var(--text-muted); opacity: 0.5; }

@media (max-width: 600px) {
    .navbar { padding: 14px 20px; }
    .nav-links { gap: 16px; }
    .hero-content { padding: 0 8px; }
    .cta-card { padding: 40px 20px; }
}
