/* KYRZA LUMO – FULL POLISHED CSS */

/* ÜLDINE TAUST */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
}

/* HERO SEKTSIOON */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, #0b0f13 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(0,255,255,0.15) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(130px);
    z-index: 0;
}

.hero .logo {
    width: 180px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0,255,255,0.7), 0 0 50px rgba(0,255,255,0.4);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #cccccc;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-button {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 0 25px rgba(0,255,255,0.5);
    transform: scale(1);
}

.cta-button:hover {
    transform: scale(1.1);
}

.cta-button.primary {
    background: #00ffff;
    color: #000;
}

.cta-button.primary:hover {
    background: #00cccc;
    box-shadow: 0 0 50px rgba(0,255,255,0.8);
}

.cta-button.secondary {
    background: #ffaa00;
    color: #000;
}

.cta-button.secondary:hover {
    background: #e69500;
    box-shadow: 0 0 50px rgba(255,170,0,0.8);
}

/* HOW IT WORKS */
.how-it-works {
    padding: 100px 20px;
    background: linear-gradient(180deg, #101418 0%, #07090c 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,255,255,0.12) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(90px);
    z-index: 0;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0,255,255,0.6);
    position: relative;
    z-index: 1;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,255,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 300px;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0,255,255,0.3);
}

.step img {
    width: 80px;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.step p {
    font-size: 1rem;
    color: #ccc;
}

/* RITUAL EXAMPLES */
.ritual-examples {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f1215 0%, #050607 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ritual-examples::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,255,255,0.12) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(90px);
    z-index: 0;
}

.ritual-examples h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0,255,255,0.6);
    position: relative;
    z-index: 1;
}

.ritual-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.ritual-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,255,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 320px;
}

.ritual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0,255,255,0.3);
}

.ritual-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
}

.ritual-card p {
    font-size: 1rem;
    color: #ccc;
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(180deg, #101418 0%, #080a0c 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,255,255,0.1) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: 0;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0,255,255,0.6);
    position: relative;
    z-index: 1;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0,255,255,0.1);
    max-width: 400px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(0,255,255,0.3);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 1rem;
    color: #00ffff;
}

/* JOIN PRO */
.join-pro {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0e1215 0%, #040506 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.join-pro::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255,170,0,0.15) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    z-index: 0;
}

.join-pro h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffaa00;
    text-shadow: 0 0 20px rgba(255,170,0,0.6);
    position: relative;
    z-index: 1;
}

.join-pro p {
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #ddd;
    position: relative;
    z-index: 1;
}

.join-options {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.option {
    background: #1a1a1a;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(255,170,0,0.15);
    max-width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.option:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255,170,0,0.35);
}

.option h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.option p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
}

.option .cta-button {
    background: #ffaa00;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 25px rgba(255,170,0,0.5);
}

.option .cta-button:hover {
    background: #e69500;
    box-shadow: 0 0 50px rgba(255,170,0,0.8);
}

.option .cta-button.pro {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 25px rgba(0,255,255,0.5);
}

.option .cta-button.pro:hover {
    background: #00cccc;
    box-shadow: 0 0 50px rgba(0,255,255,0.8);
}

/* FOOTER */
.footer {
    padding: 40px 20px;
    background: #000;
    text-align: center;
    border-top: 1px solid #222;
    position: relative;
    z-index: 1;
}

.footer p {
    font-size: 0.9rem;
    color: #666;
}

