/* Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

:root {
    --midnight: #0b0c0e;
    --matte-blue: #161a20;
    --soft-blue: #222831;
    --text: #e6ecf3;
    --accent: #7ea1c4;
    --hover: #2c3440;
    --glass: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(98, 123, 148, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: var(--midnight);
    color: var(--text);
    overflow-x: hidden;
}
.orb {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    animation: float 12s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Orb 1 – top left */
.orb1 {
    background: #7ea1c4;
    top: -150px;
    left: -120px;
    animation-delay: 0s;
}

/* Orb 2 – bottom right */
.orb2 {
    background: #3a4d63;
    top: 600px;
    right: -150px;
    animation-delay: 3s;
}

/* Subtle drifting animation */
@keyframes float {
    0% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(100px, -200px) scale(1.05); }
    100% { transform: translate(-20px, 25px) scale(1); }
}


/* HERO */
.hero {
    padding: 120px 20px;
    text-align: center;
}

.title {
    font-size: 3rem;
    font-weight: 600;
}

.title span {
    color: var(--accent);
}

.subtitle {
    font-size: 1.2rem;
    margin: 18px auto 35px;
    max-width: 650px;
    opacity: 0.85;
}

.cta {
    background: var(--accent);
    color: var(--midnight);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 35px;
    transition: 0.25s ease;
}

.cta:hover {
    background: var(--hover);
    color: var(--text);
}

/* GLASS CODE BOX */
.glass-preview {
    margin: 0 auto;
    padding: 18px;
    width: 90%;
    max-width: 800px;

    background: var(--glass);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.glass-preview pre {
    color: var(--accent);
    font-size: 0.95rem;
}

/* SECTIONS */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 35px;
}

/* FEATURES GRID */
.features {
    padding: 80px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.feature {
    background: var(--matte-blue);
    padding: 25px;
    border-radius: 14px;
    transition: 0.25s;
    border: 1px solid transparent;
}

.feature:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

/* STEPS GRID */
.steps {
    padding: 80px 20px;
}

.steps-grid {
    max-width: 900px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    background: var(--soft-blue);
    padding: 30px;
    width: 230px;
    border-radius: 14px;
    text-align: center;
    transition: 0.25s;
}

.step:hover {
    transform: translateY(-6px);
}

.step span {
    font-size: 2rem;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 0;
    opacity: 0.7;
    margin-top: 40px;
}


/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0b0c0e; /* midnight */
}

::-webkit-scrollbar-thumb {
    background: #2c3440; /* hover color */
    border-radius: 10px;
    border: 2px solid #0b0c0e; /* creates spacing effect */
}

::-webkit-scrollbar-thumb:hover {
    background: #627b94; /* accent */
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #2c3440 #0b0c0e;
}



