:root {
    --bg-color: #050508;
    --text-color: #f0f0f5;
    --primary: #5c2eff;
    --secondary: #00e0ff;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
    /* For custom cursor */
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 224, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

.cursor-hover .cursor {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    mix-blend-mode: exclusion;
}

.cursor-hover .cursor-follower {
    opacity: 0;
}

/* Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.italic-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-padding {
    padding: 120px 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: none;
}

.btn-primary {
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
}

.btn-primary .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    transition: var(--transition);
    border-radius: 50px;
}

.btn-primary:hover {
    color: white;
}

.btn-primary:hover .btn-glow {
    left: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

.btn.large {
    padding: 20px 48px;
    font-size: 1.3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 100;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(0px);
    background: rgba(5, 5, 8, 0);
    transform: translateY(-100%);
    /* Hidden by default */
    opacity: 0;
}

.navbar.scrolled {
    padding: 16px 0;
    backdrop-filter: blur(12px);
    background: rgba(5, 5, 8, 0.8);
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(0);
    /* Reveal on scroll */
    opacity: 1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    font-weight: 300;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary-sm {
    background: var(--gradient);
    padding: 10px 24px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
}

.btn-primary-sm::after {
    display: none;
}

.btn-primary-sm:hover {
    box-shadow: 0 0 20px rgba(92, 46, 255, 0.4);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: none;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 0;
    align-items: center;
}

.subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: var(--glass-bg);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    display: inline-flex;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 24px;
}

.hero-visual {
    position: relative;
    height: 750px;
    width: 100%;
}

.glass-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 8s ease-in-out infinite alternate;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    right: 0;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 10%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, 40px) scale(1.1);
    }
}

.hero-laptop-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.15);
    z-index: 10;
    position: relative;
}

@keyframes hero-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.image-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.6;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Marquee Section */
.marquee-section {
    background: var(--gradient);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    transform: rotate(-2deg) scale(1.05);
    margin: 60px 0;
}

.marquee {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    animation: scroll-left 20s linear infinite;
}

.marquee-content span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-color);
    padding: 0 30px;
    text-transform: uppercase;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* About Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 24px;
}

.section-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.about-visual {
    position: relative;
}

.about-visual .photo-placeholder {
    height: 500px;
    border-radius: 30px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: spin-pulse 10s infinite alternate ease-in-out;
}

@keyframes spin-pulse {
    0% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(10deg) scale(1.05);
    }
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-list .icon {
    font-size: 2rem;
    background: var(--glass-bg);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.feature-list h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-list p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Services */
.subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 16px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.card-title {
    font-size: 1.5rem;
}

.card-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.card-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-link:hover {
    color: var(--text-color);
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    margin-top: 60px;
}

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: none;
}

.portfolio-item .photo-placeholder {
    height: 400px;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item.tall .photo-placeholder {
    height: 600px;
}

.portfolio-item:hover .photo-placeholder {
    transform: scale(1.05);
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .item-info {
    transform: translateY(0);
    opacity: 1;
}

.item-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.item-info p {
    color: var(--secondary);
    font-weight: 500;
}

/* CTA */
.cta-section {
    padding: 150px 0;
}

.cta-box {
    text-align: center;
    padding: 80px 40px;
    background: radial-gradient(circle at center, rgba(92, 46, 255, 0.1) 0%, var(--glass-bg) 100%);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
    margin-top: 20px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.socials a:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Animations Triggered by JS */
[data-scroll] {
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll="fade-up"] {
    transform: translateY(40px);
}

[data-scroll="fade-right"] {
    transform: translateX(-40px);
}

[data-scroll="fade-left"] {
    transform: translateX(40px);
}

[data-scroll="scale-up"] {
    transform: scale(0.95);
}

.is-visible[data-scroll] {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .subtitle-wrap {
        margin: 0 auto 24px;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

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

    .about-visual {
        order: -1;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: -1;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Brand Expression Section Styles */
.brand-expression {
    position: relative;
    min-height: 100vh;
    /* Splash screen effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.asasa-dynamic-text {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.asasa-main-title {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: -5px;
    margin: 0;
    line-height: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.asasa-main-title .name {
    display: flex;
    gap: 15px;
}

.asasa-main-title .name span {
    display: inline-block;
    transition: all 0.7s cubic-bezier(0.17, 0.67, 0.35, 1.2);
    /* Apply gradient to EACH letter so it stays visible while moving */
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scattering Effect - Spreading them more clearly and in different directions */
.asasa-main-title:hover .name span:nth-child(1) {
    transform: translate(-80px, -40px) rotate(-35deg);
}

.asasa-main-title:hover .name span:nth-child(2) {
    transform: translate(-30px, 90px) rotate(25deg);
}

.asasa-main-title:hover .name span:nth-child(3) {
    transform: translate(10px, -120px) rotate(-15deg);
}

.asasa-main-title:hover .name span:nth-child(4) {
    transform: translate(60px, 80px) rotate(40deg);
}

.asasa-main-title:hover .name span:nth-child(5) {
    transform: translate(110px, -30px) rotate(-20deg);
}

.asasa-main-title:hover .bracket {
    opacity: 0.2;
    transform: scale(1.1);
}

.brand-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 12px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    transition: all 0.6s ease;
}

.asasa-dynamic-text:hover .brand-tagline {
    letter-spacing: 20px;
    color: var(--secondary);
    opacity: 1;
}

.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 150px;
    background: var(--gradient);
    filter: blur(100px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
    animation: pulse-glow 4s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.1;
        width: 60%;
    }

    100% {
        opacity: 0.3;
        width: 80%;
    }
}

.overflow-hidden {
    overflow: visible;
    /* Prevent clipping during scatter */
}

/* Acrostic Section Styles */
.acrostic-section {
    position: relative;
    background: linear-gradient(to bottom, rgba(5, 5, 8, 1), rgba(15, 15, 25, 1), rgba(5, 5, 8, 1));
    z-index: 2;
}

.acrostic-container {
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.acrostic-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.acrostic-row {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    /* Lightened up to 0.40 */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    line-height: 1;
    letter-spacing: -2px;
}

.acrostic-letter {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: -4px;
    display: inline-block;
}

.acrostic-word {
    transition: all 0.6s ease;
}

.acrostic-row:hover {
    color: white;
    transform: translateX(30px) scale(1.05);
    text-shadow: 0 0 50px rgba(92, 46, 255, 0.3);
}

.acrostic-row:hover .acrostic-word {
    letter-spacing: 4px;
}

@media (max-width: 768px) {
    .acrostic-row {
        letter-spacing: -1px;
    }

    .acrostic-row:hover {
        transform: translateX(10px) scale(1.02);
    }

    /* Mobile ASASA Animation */
    .asasa-main-title .name span {
        animation: mobile-float 4s ease-in-out infinite alternate;
    }

    .asasa-main-title .name span:nth-child(1) { animation-delay: 0s; }
    .asasa-main-title .name span:nth-child(2) { animation-delay: 0.5s; }
    .asasa-main-title .name span:nth-child(3) { animation-delay: 1s; }
    .asasa-main-title .name span:nth-child(4) { animation-delay: 1.5s; }
    .asasa-main-title .name span:nth-child(5) { animation-delay: 2s; }

    @keyframes mobile-float {
        0% { transform: translate(0, 0) rotate(0); }
        100% { transform: translate(5px, -10px) rotate(5deg); }
    }

    .acrostic-row {
        color: rgba(255, 255, 255, 0.45); /* More visible on mobile */
    }

    /* Mobile JS Triggered States */
    .asasa-main-title.mobile-active .name span:nth-child(1) { transform: translate(-80px, -40px) rotate(-35deg); }
    .asasa-main-title.mobile-active .name span:nth-child(2) { transform: translate(-30px, 90px) rotate(25deg); }
    .asasa-main-title.mobile-active .name span:nth-child(3) { transform: translate(10px, -120px) rotate(-15deg); }
    .asasa-main-title.mobile-active .name span:nth-child(4) { transform: translate(60px, 80px) rotate(40deg); }
    .asasa-main-title.mobile-active .name span:nth-child(5) { transform: translate(110px, -30px) rotate(-20deg); }

    .acrostic-row.mobile-highlight {
        color: white;
        transform: translateX(15px) scale(1.03);
        text-shadow: 0 0 30px rgba(92, 46, 255, 0.4);
    }
}

/* Exclusive Access (Construction) Section Styles */
.exclusive-access {
    position: relative;
    overflow: hidden;
}

.construction-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.construction-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
    animation: slow-rotate 20s linear infinite;
}

@keyframes slow-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    border-radius: 50%;
    animation: dot-pulse 2s infinite;
}

@keyframes dot-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.construction-heading {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 16px;
}

.construction-subheading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
}

.construction-description {
    max-width: 650px;
    margin: 0 auto 48px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .construction-card {
        padding: 60px 30px;
    }
    
    .construction-heading {
        font-size: 2.5rem;
    }
    
    .construction-subheading {
        font-size: 1.5rem;
    }
}