:root {
    /* Brighter Pop Premium Palette */
    --primary-color: #007bff;
    /* Vivid Blue */
    --secondary-color: #ff007f;
    /* Vivid Pink */
    --accent-color: #ffcc00;
    /* Sunny Yellow */
    --bg-color: #ffffff;
    /* Bright White */
    --text-color: #222222;
    /* Sharp Black */
    --text-muted: #555555;
    /* Steel Gray */
    --card-bg: #f8fbff;
    /* Very light cool gray */
    --border-color: #e6e6e6;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;

    /* Spacing Defaults */
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 80px;
}

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

body {
    font-family: var(--font-body);
    /* Zaiko-style Tech Background */
    background-color: #fcfcfc;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.8;
}

/* Digital Noise Elements (Zaiko Style) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(4px 4px at 10% 10%, #ff00ff 50%, transparent 50%),
        radial-gradient(4px 4px at 20% 30%, #00f2ff 50%, transparent 50%),
        radial-gradient(4px 4px at 80% 80%, #ffe600 50%, transparent 50%),
        radial-gradient(4px 4px at 90% 20%, #ff00ff 50%, transparent 50%);
    background-size: 600px 600px;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
    animation: noise-move 100s linear infinite;
}

@keyframes noise-move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 100%;
    }
}

/* Scrollbar - Pop Style */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    border: 2px solid #fff;
}

/* Loader */
.loader {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

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

.loader-text {
    color: var(--text-color);
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: #eee;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 2px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: translateX(-100%);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    100% {
        transform: translateX(100%);
    }
}


/* Navigation (Light Glass) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    color: var(--text-color);
    font-weight: 900;
    font-size: 1.5rem;
    text-decoration: none;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    color: white !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--secondary-color);
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s;
}

/* Hero Section (Bright Pop & Canvas) */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    /* Fallback soft gradient */
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    /* Faint background for light mode */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    color: var(--text-color);
    font-weight: 900;
    letter-spacing: -2px;
    font-size: 6rem;
    line-height: 0.95;
    margin-bottom: 30px;
    text-transform: uppercase;
    /* Clean text, no glow */
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
}

.hero-description {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 800;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 1s;
}

.scroll-indicator.visible {
    opacity: 1;
}

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

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}


/* Marquee (Neon) */
.marquee-section {
    background: var(--primary-color);
    color: #000;
    font-weight: 900;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


/* Section Defaults */
.section {
    padding: 120px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 80px;
    position: relative;
    display: inline-block;
}

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

.section-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--text-color) 30%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stylish Underline for Titles */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 60px;
    height: 8px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 4px;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Line before subtitle */
.section-subtitle::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    display: block;
}


/* About Section */
.about-section {
    background: var(--bg-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    transition: all 0.5s ease;
    box-shadow: -20px 20px 0px rgba(0, 123, 255, 0.1);
}

.about-image:hover img {
    filter: grayscale(0%);
    transform: translate(10px, -10px);
    box-shadow: -30px 30px 0px var(--secondary-color);
}

.about-text h3 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

.highlight {
    color: transparent;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
}


/* Strengths Section */
.strengths-section {
    background: #f0f8ff;
    /* Alice Blue */
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.glass-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.custom-icon-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.glass-card:hover .custom-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.custom-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 5px 10px rgba(0, 123, 255, 0.2));
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
}

.card-title {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background: #fff;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.faq-question {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question::before {
    content: 'Q.';
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 900;
}

.faq-answer {
    color: var(--text-muted);
    padding-left: 40px;
    line-height: 1.6;
}

/* CTA Section - LIMIT BREAK STYLE */
.cta-section {
    background: #050505;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 0, 50, 0.8), #000 70%);
    z-index: 1;
}

/* Dynamic background for CTA */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, #ff00ff, #00f2ff, #ffe600, #ff00ff);
    animation: rotate-bg 20s linear infinite;
    opacity: 0.1;
    z-index: 0;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 80px 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.cta-text {
    color: #ddd;
    font-size: 1.4rem;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* ULTIMATE BUTTON */
.main-btn.cta-btn {
    position: relative;
    background: linear-gradient(90deg, #ff00ff, #ffdd00, #00f2ff, #ff00ff);
    background-size: 300% 100%;
    color: white;
    padding: 25px 80px;
    border-radius: 100px;
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.6);
    animation: rainbow-move 3s linear infinite, float 4s ease-in-out infinite;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid white;
}

@keyframes rainbow-move {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.main-btn.cta-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.8);
    background-size: 100% 100%;
    /* Snap to full gradient */
}

/* Global Ambient Orbs */
.ambient-orbs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orb-float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
    opacity: 0.2;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}


/* Footer */
.footer {
    background: #020202;
    border-top: 1px solid #111;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #111;
    padding-bottom: 50px;
}

.footer-logo {
    color: white;
    font-weight: 900;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-links a,
.footer-socials a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-socials a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 3rem;
    }
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: exclusion;
    box-shadow: 0 0 10px var(--primary-color);
}

.cursor.hovered {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

/* Floating Shapes */
.floating-shapes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-shape 10s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: 20%;
    left: -100px;
    animation-delay: -2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 30%;
    right: 30%;
    opacity: 0.2;
    animation-delay: -5s;
}