/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5% 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(249,115,22,0.12), transparent),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(249,115,22,0.06), transparent);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.3);
    color: var(--orange2);
    font-size: .8rem;
    font-weight: 600;
    padding: .35rem .9rem;
    border-radius: 999px;
    margin-bottom: 1.75rem;
    letter-spacing: .5px;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.hero h1 span {
    color: var(--orange);
    position: relative;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--muted);
    font-size: .8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    animation: bounce 2s infinite;
}

.hero-scroll::after {
    content: '↓';
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── PROBLEM ── */
.problem {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.problem-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.vs-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
}

.vs-card.bad  { border-color: rgba(239,68,68,0.25); }
.vs-card.good { border-color: rgba(249,115,22,0.25); background: rgba(249,115,22,0.04); }

.vs-card .tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .75rem;
    display: block;
}

.vs-card.bad  .tag { color: #ef4444; }
.vs-card.good .tag { color: var(--orange); }

.vs-card ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.vs-card ul li { font-size: .9rem; color: var(--muted); display: flex; align-items: flex-start; gap: .5rem; }
.vs-card.bad  ul li::before { content: '✕'; color: #ef4444; flex-shrink: 0; font-size: .8rem; margin-top: .1rem; }
.vs-card.good ul li::before { content: '✓'; color: var(--orange); flex-shrink: 0; font-size: .8rem; margin-top: .1rem; }

/* ── HOW IT WORKS ── */
.how { max-width: 1100px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 3.5rem; }
.how-header .section-desc { margin: 0 auto; }

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    counter-reset: steps;
}

.step {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    position: relative;
    transition: border-color .2s, transform .2s;
    counter-increment: steps;
}

.step:hover {
    border-color: rgba(249,115,22,0.4);
    transform: translateY(-3px);
}

.step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(249,115,22,0.2);
    line-height: 1;
    margin-bottom: .75rem;
}

.step-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: block;
}

.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }

.step p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── KITS ── */
.kits-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.kits-inner { max-width: 1100px; margin: 0 auto; }

.kits-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.kits-header-hint {
    color: var(--muted);
    font-size: .9rem;
    max-width: 340px;
    line-height: 1.65;
}

.kit-level {
    position: absolute;
    top: .75rem;
    right: .75rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .25rem .6rem;
    border-radius: 4px;
}

.level-beginner { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.level-inter    { background: rgba(249,115,22,0.15); color: var(--orange2); border: 1px solid rgba(249,115,22,0.25); }

.kit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.25rem;
}

.kit-tag {
    font-size: .72rem;
    font-weight: 600;
    padding: .2rem .6rem;
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--muted);
}

/* ── KIT TEASER ── */
.kit-teaser {
    position: relative;
    background: var(--bg3);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 16px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    overflow: hidden;
}

.kit-teaser-glow {
    position: absolute;
    top: -60px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 70%);
    pointer-events: none;
}

.kit-teaser-thumb {
    height: 220px;
    background: linear-gradient(135deg, #1a1a1f 0%, #0d0d0f 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.kit-teaser-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(249,115,22,0.1), transparent 70%);
}

.kit-teaser-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.25);
    padding: .3rem .8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.kit-teaser-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.7); }
}

.kit-teaser-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: .75rem;
}

.kit-teaser-desc {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    max-width: 520px;
}

.kit-teaser-tags { margin-bottom: 1.75rem; }

.kit-teaser-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.kit-teaser-stat { text-align: center; }

.kit-teaser-stat .stat-val {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.kit-teaser-stat .stat-lbl {
    font-size: .75rem;
    color: var(--muted);
    margin-top: .2rem;
    display: block;
}

.kit-teaser-sep {
    width: 1px;
    height: 32px;
    background: var(--border);
}

.kit-teaser-cta {
    margin-top: 1.75rem;
    display: inline-block;
}

.more-kits-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--muted);
    font-size: .85rem;
}

.hint-dots { display: flex; gap: .4rem; }

.hint-dots span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border);
    animation: dotPulse 1.4s infinite;
}

.hint-dots span:nth-child(2) { animation-delay: .2s; }
.hint-dots span:nth-child(3) { animation-delay: .4s; }

@keyframes dotPulse {
    0%, 80%, 100% { background: var(--border); }
    40%            { background: var(--orange); }
}

/* ── FEATURES ── */
.features-inner { max-width: 1100px; margin: 0 auto; }

.features-header { text-align: center; margin-bottom: 3.5rem; }
.features-header .section-desc { margin: 0 auto; }

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

.feature-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color .2s;
}

.feature-card:hover { border-color: rgba(249,115,22,0.3); }

.feature-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.feature-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: .5rem; }

.feature-card p { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ── COMMUNITY ── */
.community {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.community-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.discord-card {
    background: #5865F2;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discord-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.discord-logo { font-size: 3.5rem; margin-bottom: 1rem; display: block; }

.discord-card h3 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }

.discord-card p { color: rgba(255,255,255,0.75); font-size: .95rem; margin-bottom: 1.5rem; line-height: 1.65; }

.discord-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.75rem;
}

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

.discord-stat .num { font-size: 1.5rem; font-weight: 800; color: #fff; display: block; }

.discord-stat .lbl { font-size: .75rem; color: rgba(255,255,255,0.6); }

.btn-discord {
    display: inline-block;
    background: #fff;
    color: #5865F2;
    padding: .75rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: transform .15s, box-shadow .2s;
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.community-points { display: flex; flex-direction: column; gap: 1.5rem; }

.community-point { display: flex; gap: 1rem; align-items: flex-start; }

.point-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.community-point h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; }

.community-point p { font-size: .87rem; color: var(--muted); line-height: 1.6; }

.community-desc { margin-bottom: 2rem; }

/* ── CTA ── */
.cta-section {
    text-align: center;
    padding: 6rem 5%;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(249,115,22,0.08), transparent);
    pointer-events: none;
}

.cta-inner { max-width: 640px; margin: 0 auto; }

.cta-section .section-label { display: block; margin-bottom: .75rem; }

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.cta-section p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.cta-form {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-form input {
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text);
    padding: .85rem 1.25rem;
    border-radius: 8px;
    font-size: .95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .2s;
    min-width: 260px;
}

.cta-form input::placeholder { color: var(--muted); }

.cta-form input:focus { border-color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .problem-inner,
    .community-inner { grid-template-columns: 1fr; gap: 2.5rem; }

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

    .kit-teaser { grid-template-columns: 1fr; gap: 1.5rem; }
    .kit-teaser-thumb { height: 160px; font-size: 3.5rem; }
    .kit-teaser-title { font-size: 1.5rem; }
}
