body {
    margin: 0;
    background: #090909;
    color: white;
    font-family: Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* ===========================
   HEADER
=========================== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 60px;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.logo span {
    color: #c1ff15;
}

nav a {
    color: white;
    margin: 0 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #c1ff15;
}

button {
    background: #c1ff15;
    color: black;
    border: none;

    padding: 12px 22px;

    border-radius: 30px;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 20px rgba(193, 255, 21, 0.4);
}

/* ===========================
   HERO
=========================== */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(193, 255, 21, 0.08),
            transparent 60%
        ),
        #090909;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    z-index: 0;
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 1;

    max-width: 750px;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    color: #c1ff15;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 19px;
    margin-bottom: 30px;
}

/* ===========================
   PROJECTS
=========================== */

.projects {
    padding: 100px 80px;
    text-align: center;
}

.projects h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.projects h2 span {
    color: #c1ff15;
}

.projects-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    margin-bottom: 50px;
}

.projects-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;

    margin: -20px 0 40px;
}

.filter-chip {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);

    padding: 8px 20px;
    border-radius: 20px;

    font-size: 13px;
    font-weight: normal;
    cursor: pointer;

    transition: 0.25s ease;
}

.filter-chip:hover {
    border-color: rgba(193, 255, 21, 0.4);
}

.filter-chip.active {
    background: #c1ff15;
    color: black;
    border-color: transparent;
    font-weight: bold;
}

.projects-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;

    max-width: 1100px;
    margin: 0 auto;
}

.project-card {
    position: relative;

    display: block;
    width: 100%;
    max-width: 420px;

    border-radius: 25px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);

    text-align: left;

    transition: border 0.3s ease, box-shadow 0.3s ease;

    transform-style: preserve-3d;
    will-change: transform;
}

.project-index {
    position: absolute;
    top: -12px;
    right: 12px;

    font-size: 72px;
    font-weight: bold;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);

    z-index: 0;
    pointer-events: none;
}

.project-glare {
    position: absolute;
    inset: 0;
    border-radius: inherit;

    z-index: 2;
    opacity: 0;
    pointer-events: none;

    transition: opacity 0.2s ease;
}

.project-image,
.project-info {
    position: relative;
    z-index: 1;
}

.project-image img {
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}

.project-card:hover {
    transform: translateY(-10px);

    border: 1px solid rgba(193, 255, 21, 0.35);

    box-shadow:
        0 0 25px rgba(193, 255, 21, 0.25),
        0 0 60px rgba(193, 255, 21, 0.15);
}

.project-card-static {
    cursor: default;
}

.project-card-static:hover {
    transform: none;

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.project-image {
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: 14px;
    right: 14px;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;

    padding: 6px 14px;

    font-size: 12px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.85);
}

.project-image img {
    width: 100%;
    height: 240px;

    object-fit: cover;

    display: block;
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    color: white;
    margin: 0 0 10px;
    font-size: 24px;
}

.project-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px;
}

.project-tags {
    color: #c1ff15;
    font-size: 13px;
    font-weight: bold;
}

.projects-loading {
    color: rgba(255, 255, 255, 0.5);
    grid-column: 1 / -1;
}

/* ===========================
   ABOUT
=========================== */

.about {
    background: rgba(255, 255, 255, 0.02);

    padding: 100px 80px;

    text-align: center;
}

.about-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;

    max-width: 800px;
    margin: 0 auto;
}

.about-image {
    flex: 1;

    border-radius: 25px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-image img {
    width: 100%;
    height: 450px;

    object-fit: cover;

    display: block;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-text h2 span {
    color: #c1ff15;
}

.about-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 40px;

    margin-top: 35px;
}

.stat h3 {
    color: #c1ff15;
    font-size: 22px;
    margin: 0 0 5px;
}

.stat p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin: 0;
}

/* ===========================
   PRICING
=========================== */

.pricing {
    padding: 100px 80px;
    text-align: center;
}

.pricing h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.pricing h2 span {
    color: #c1ff15;
}

.pricing-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    margin-bottom: 50px;
}

.pricing-intro {
    max-width: 850px;
    margin: 0 auto 50px;
    padding: 30px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(193, 255, 21, 0.18);
    border-radius: 20px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.pricing-intro h3 {
    color: #c1ff15;
    font-size: 28px;
    margin: 0 0 12px;
}

.pricing-intro p {
    margin: 0;

    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.8;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;

    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;

    width: 100%;
    max-width: 340px;

    display: flex;
    flex-direction: column;

    text-align: left;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;

    padding: 35px 30px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);

    border: 1px solid rgba(193, 255, 21, 0.35);

    box-shadow:
        0 0 25px rgba(193, 255, 21, 0.25),
        0 0 60px rgba(193, 255, 21, 0.15);
}

.pricing-card.featured {
    border: 1px solid rgba(193, 255, 21, 0.5);

    box-shadow:
        0 0 25px rgba(193, 255, 21, 0.2),
        0 0 60px rgba(193, 255, 21, 0.1);
}

.pricing-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);

    background: #c1ff15;
    color: black;

    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;

    padding: 6px 16px;
    border-radius: 20px;
}

.pricing-card h3 {
    color: white;
    font-size: 22px;
    margin: 0 0 10px;
}

.pricing-card .price {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin: 0 0 25px;
}

.pricing-card .price span {
    font-size: 15px;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    flex-grow: 1;
}

.pricing-card ul li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card a {
    margin-top: auto;
}

.pricing-card button {
    width: 100%;
}

.pricing-note {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 25px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(193, 255, 21, 0.16);
    border-radius: 16px;

    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

.pricing-note strong {
    display: block;

    margin-bottom: 8px;

    color: #c1ff15;
    font-size: 19px;
}

.pricing-note p {
    margin: 0;
}

.hosting-promise {
    max-width: 800px;
    margin: 35px auto 0;
    padding: 25px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(193, 255, 21, 0.08),
            transparent 70%
        );

    text-align: center;
}

.hosting-promise h3 {
    color: white;
    font-size: 25px;
    margin: 0 0 10px;
}

.hosting-promise p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.7;
}

.pricing-terms {
    max-width: 900px;
    margin: 25px auto 0;

    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
}

/* ===========================
   CONTACT
=========================== */

.contact {
    position: relative;

    padding: 100px 80px;
    text-align: center;
}

.contact h2,
.contact-sub,
.contact-grid {
    position: relative;
    z-index: 1;
}

.contact h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.contact h2 span {
    color: #c1ff15;
}

.contact-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    margin-bottom: 50px;
}

.contact-grid {
    display: flex;
    gap: 40px;

    max-width: 1100px;
    margin: 0 auto;

    text-align: left;
}

.contact-info {
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;

    padding: 25px 30px;

    transition: all 0.3s ease;
}

.info-item:hover {
    border: 1px solid rgba(193, 255, 21, 0.35);

    box-shadow:
        0 0 25px rgba(193, 255, 21, 0.2),
        0 0 50px rgba(193, 255, 21, 0.1);
}

.info-item h4 {
    color: #c1ff15;
    margin: 0 0 10px;
    font-size: 18px;
}

.info-item p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
    font-size: 15px;
}

.contact-form {
    position: relative;

    flex: 1.3;

    background: rgba(9, 9, 9, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;

    padding: 35px;

    display: flex;
    flex-direction: column;
    gap: 18px;

    transform-style: preserve-3d;
    will-change: transform;
}

.contact-form > * {
    position: relative;
    z-index: 2;
}

.form-glare {
    position: absolute;
    inset: 0;
    border-radius: 20px;

    z-index: 1;
    opacity: 0;
    pointer-events: none;

    transition: opacity 0.2s ease;
}

.info-item {
    position: relative;
    z-index: 1;

    background: rgba(9, 9, 9, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.form-row {
    display: flex;
    gap: 18px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;

    padding: 14px 16px;

    color: white;
    font-family: inherit;
    font-size: 15px;

    transition: 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form select {
    cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;

    border-color: rgba(193, 255, 21, 0.5);

    box-shadow:
        0 0 15px rgba(193, 255, 21, 0.15);
}

.contact-form select option {
    background: #151515;
    color: white;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 5px;
}

.send-btn-wrap {
    position: relative;
    display: inline-block;
    align-self: flex-start;
    margin-top: 5px;
}

.send-btn-wrap button {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    inset: -6px;
    border-radius: 30px;

    border: 1px solid #c1ff15;
    opacity: 0;
    pointer-events: none;
}

.burst-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;

    background: #c1ff15;
    z-index: 5;
    pointer-events: none;
}

/* ===========================
   FOOTER
=========================== */

.footer {
    text-align: center;
    padding: 30px 20px;

    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
    margin-top: 15px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #c1ff15;
}

/* ===========================
   LEGAL PAGES
=========================== */

.policy-page {
    max-width: 950px;
    margin: 120px auto 80px;
    padding: 45px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 25px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.policy-page h1 {
    font-size: 46px;
    margin-bottom: 10px;
}

.policy-page h2 {
    color: #c1ff15;
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 24px;
}

.policy-page p,
.policy-page li {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 16px;
}

.policy-page ul {
    padding-left: 20px;
}

.policy-page a {
    color: #c1ff15;
    text-decoration: none;
}

.policy-page a:hover {
    text-decoration: underline;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    header {
        padding: 18px 20px;
        flex-wrap: wrap;
        gap: 12px;
    }

    nav {
        order: 3;
        width: 100%;

        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px 14px;
    }

    nav a {
        margin: 0;
        font-size: 14px;
    }

    .hero {
        padding: 60px 25px;
        min-height: 70vh;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .projects,
    .about,
    .pricing,
    .contact {
        padding: 60px 25px;
    }

    .projects h2,
    .pricing h2,
    .contact h2 {
        font-size: 32px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-intro {
        margin-bottom: 35px;
        padding: 22px;
    }

    .pricing-intro h3 {
        font-size: 23px;
    }

    .pricing-intro p {
        font-size: 14px;
    }

    .pricing-note {
        margin-top: 30px;
        padding: 20px;
        font-size: 14px;
    }

    .hosting-promise {
        margin-top: 25px;
        padding: 20px 10px;
    }

    .hosting-promise h3 {
        font-size: 21px;
    }

    .pricing-terms {
        font-size: 12px;
    }

    .info-item,
    .contact-form {
        padding: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .policy-page {
        margin: 90px 20px 50px;
        padding: 25px;
    }

    .policy-page h1 {
        font-size: 32px;
    }

    .policy-page h2 {
        font-size: 22px;
    }
}