:root {
    --color-bg: #f4f6f8;
    --color-accent-pink: #FF8BA7;
    --color-accent-pink-dim: #ff8ba755;
    --color-accent-blue: #8BE3FF;
    --color-accent-blue-dim: #8be3ff55;
    --color-text-main: #111111;
    --color-text-desc: #555555;
    --color-white: #ffffff;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);

    --radius-l: 24px;
    --radius-m: 16px;
    --radius-s: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    overflow-x: hidden;
    line-height: 1.8;
}

/* Backgrounds */
#vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    opacity: 0.6;
}

#parallax-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Floating Particles (Images) */
.floating-particle {
    /* Normal blend mode for Transparent PNGs */
    mix-blend-mode: normal;
    pointer-events: none;
    /* Add slight drop shadow for depth on white background */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* CHARACTER POPUP LAYER */
#character-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.char-popup {
    position: absolute;
    bottom: -100px;
    max-height: 80vh;
    max-width: 40vw;
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
    /* Do NOT blend characters, they need to be solid */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 900;
}

.center-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    letter-spacing: 0.1em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-pink), var(--color-accent-blue));
    border-radius: 2px;
}

.text-highlight {
    position: relative;
    font-weight: bold;
    color: var(--color-text-main);
    display: inline;
    background-image: linear-gradient(transparent 60%, rgba(255, 139, 167, 0.3) 60%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 4px;
}


/* CTA Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #000;
}

.btn-cta i {
    font-size: 1.2rem;
}

/* GLITCH BTN */
.glitch-btn {
    animation: glitch-shake 3s infinite linear alternate-reverse;
}

@keyframes glitch-shake {
    0% {
        transform: translate(0, 0);
    }

    90% {
        transform: translate(0, 0);
    }

    92% {
        transform: translate(-2px, 1px);
    }

    94% {
        transform: translate(2px, -1px);
    }

    96% {
        transform: translate(-1px, 2px);
    }

    98% {
        transform: translate(1px, -2px);
    }

    100% {
        transform: translate(0, 0);
    }
}


/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-objects-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.loading-text {
    margin-top: 0;
    font-weight: 900;
    letter-spacing: 0.2rem;
    position: relative;
    z-index: 2;
}


/* Structure */
.section {
    padding: 120px 20px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-l);
    padding: 3rem;
    box-shadow: var(--glass-shadow);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.glass-container.large-padding {
    padding: 4rem;
}

/* HERO */
#hero {
    height: 100vh;
    padding-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    z-index: 10;
    position: relative;
}

/* Badge: Editorial Dynamic Style */
.badge {
    display: inline-block;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: none;

    /* Editorial Black Thick Font */
    font-size: 2.6rem !important;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.02em;
    line-height: 1.1;
    padding: 0;
    margin-bottom: 20px;
    max-width: 90vw;
}

@media (max-width: 768px) {
    .badge {
        font-size: 1.6rem !important;
    }
}

/* Ensure FV Button matches Floating CTA */
.btn-main.puru-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: 50px;
    color: #fff;
    font-weight: 900;
    font-size: 1.2rem;
    text-decoration: none;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(255, 139, 167, 0.4);
    border: none;
    /* Gradient animation is handled by .puru-btn class */
}

/* Qualification Tags as Labels */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.qual-tag {
    display: inline-block;
    background: #fff;
    border: 2px solid #000;
    color: #000;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.qual-tag:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.spacer-lg {
    height: 50px;
    width: 100%;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(31, 38, 135, 0.1);
    color: var(--color-accent-pink);
    border-color: rgba(255, 255, 255, 0.4);
}

/* CLOUD BOTTOM */
.hero-cloud-bottom {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 40vh;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.cloud-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.9;
}

.glitch-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.glitch-text {
    font-size: 5rem;
    line-height: 0.95;
    position: relative;
    color: var(--color-text-main);
    display: block;
    mix-blend-mode: hard-light;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 var(--color-accent-pink);
    clip-path: inset(44% 0 61% 0);
    animation: glitch-anim-1 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 var(--color-accent-blue);
    clip-path: inset(10% 0 54% 0);
    animation: glitch-anim-2 4s infinite linear alternate-reverse;
}

/* Glitch Medium (Multi-line Safe) */
.glitch-text-md {
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    color: var(--color-text-main);
    line-height: 1.4;
    /* Use text-shadow based glitch only to prevent layout slice issues on multi-line */
    animation: glitch-anim-text-shake 3s infinite linear alternate-reverse;
}

.glitch-text-md::before,
.glitch-text-md::after {
    /* Hide pseudo elements for multi-line safe version to avoid overlapping mess */
    content: none;
}

/* Simple text shake & RGB split for Medium Text */
@keyframes glitch-anim-text-shake {
    0% {
        text-shadow: -2px 0 var(--color-accent-pink), 2px 0 var(--color-accent-blue);
        transform: translate(0, 0);
    }

    2% {
        text-shadow: 2px -1px var(--color-accent-pink), -2px 1px var(--color-accent-blue);
        transform: translate(-1px, 1px);
    }

    4% {
        text-shadow: -1px 2px var(--color-accent-pink), 1px -2px var(--color-accent-blue);
        transform: translate(0, 0);
    }

    10% {
        text-shadow: -2px 0 var(--color-accent-pink), 2px 0 var(--color-accent-blue);
        transform: translate(0, 0);
    }

    /* Pause */
    40% {
        text-shadow: -2px 0 var(--color-accent-pink), 2px 0 var(--color-accent-blue);
        transform: translate(0, 0);
    }

    42% {
        text-shadow: 3px 0 var(--color-accent-pink), -3px 0 var(--color-accent-blue);
        transform: translate(1px, -1px);
    }

    44% {
        text-shadow: -2px 0 var(--color-accent-pink), 2px 0 var(--color-accent-blue);
        transform: translate(0, 0);
    }

    100% {
        text-shadow: -2px 0 var(--color-accent-pink), 2px 0 var(--color-accent-blue);
        transform: translate(0, 0);
    }
}

/* RESTORED Keyframes for Main Title Glitch (Clip-path based) */
@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
    }

    20% {
        clip-path: inset(60% 0 10% 0);
    }

    40% {
        clip-path: inset(10% 0 90% 0);
    }

    60% {
        clip-path: inset(80% 0 30% 0);
    }

    80% {
        clip-path: inset(30% 0 60% 0);
    }

    100% {
        clip-path: inset(50% 0 10% 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(60% 0 2% 0);
        transform: translateX(-2px);
    }

    30% {
        clip-path: inset(5% 0 60% 0);
        transform: translateX(2px);
    }

    70% {
        clip-path: inset(34% 0 12% 0);
        transform: translateX(-1px);
    }

    100% {
        clip-path: inset(10% 0 50% 0);
        transform: translateX(1px);
    }
}

.hero-sub {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--color-text-main);
}

/* NAV CARDS */
#nav-cards {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: auto;
}

.nav-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.nav-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-m);
    padding: 2px;
    text-decoration: none;
    color: var(--color-text-main);
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nav-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.nav-card:hover .nav-visual {
    opacity: 0.5;
}

.nav-char {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.nav-card:hover .nav-char {
    transform: translateY(-10px) rotate(5deg) scale(1.1);
}

.nav-title {
    font-size: 1.8rem;
    font-weight: 900;
    z-index: 2;
    font-family: var(--font-heading);
    line-height: 1;
}

.nav-sub {
    font-size: 0.8rem;
    font-weight: bold;
    color: #555;
    z-index: 2;
    margin-top: 5px;
}

/* CONCEPT */
.concept-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.video-placeholder {
    width: 100%;
    height: 400px;
    background: #000;
    border-radius: var(--radius-m);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-direction: column;
    gap: 15px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #333 0%, #000 100%);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    opacity: 0.3;
}

.video-placeholder:hover .play-icon-overlay {
    transform: scale(1.1);
    background: #ff8ba7;
    border-color: #ff8ba7;
}

.play-icon-overlay {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.main-copy {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.sub-copy-small {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

.body-copy {
    margin-bottom: 40px;
    color: var(--color-text-desc);
}

/* TEAM */
/* TEAM */
.team-grid-large {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    /* Space for scrollbar if visible, or swipe area */
    scroll-snap-type: x mandatory;
    width: 100%;
    /* Hide scrollbar for cleaner look if requested, but nice to have indicator */
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.team-grid-large::-webkit-scrollbar {
    height: 8px;
}

.team-grid-large::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.team-grid-large::-webkit-scrollbar-thumb {
    background: rgba(255, 139, 167, 0.5);
    /* Pinkish thumb */
    border-radius: 4px;
}

.team-member-large {
    flex: 0 0 260px;
    /* Fixed width for items to ensure consistent size */
    scroll-snap-align: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-m);
    transition: transform 0.3s;
    position: relative;
    /* Context for needle */
}

/* Tone Arm (The Needle) */
.team-member-large::after {
    content: '';
    position: absolute;
    top: 130px;
    right: 40px;
    width: 60px;
    height: 100px;
    /* Bent left arm SVG */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Ccircle cx='70' cy='90' r='6' fill='%23333' /%3E%3Cpath d='M70 90 L70 50 L40 20' stroke='%23888' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' /%3E%3Crect x='32' y='12' width='14' height='20' rx='2' fill='%23222' transform='rotate(-45 39 22)' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 5;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.2));
}

.team-member-large:hover {
    transform: translateY(-5px);
}

.member-frame-anim {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 10px;
    background: linear-gradient(45deg, var(--color-accent-pink), var(--color-accent-blue));
    animation: rotate-border 4s infinite linear;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.member-img-large {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid #fff;
    /* Static image replacement if needed */
}

.member-video {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    display: block;
}

/* Achievements Box */
.achievements-box {
    margin-top: 40px;
    padding: 30px;
    background: rgb(255, 255, 255);
    border-radius: var(--radius-m);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.863);
}

.achievements-box h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-accent-pink);
}

.achievements-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-desc);
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.achievement-card {
    background: linear-gradient(135deg, #fdfbfb 0%, #ffffff 100%);
    /* Silver-ish */
    border-radius: 8px;
    padding: 8px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.2s;
    min-width: 140px;
    /* Increased from 120px */
    width: 45%;
    /* Allow 2 per row on small screens, smaller fixed on large */
    max-width: 200px;
    /* Increased from 140px to prevent wrapping */
    position: relative;
    overflow: visible;
    /* Allow glow to spill out */
    z-index: 1;
}

/* Glowing Back Effect */
.achievement-card::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 12px;

    background-size: 300% 300%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
    animation: glow-pulse 6s ease-in-out infinite alternate;
    transform: scale(0.9);
    transition: opacity 0.3s;
}

.achievement-card:hover::before {
    opacity: 0.8;
}

@keyframes glow-pulse {
    0% {
        background-position: 0% 50%;
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        background-position: 100% 50%;
        transform: scale(1.02);
        opacity: 0.7;
    }

    100% {
        background-position: 0% 50%;
        transform: scale(0.95);
        opacity: 0.5;
    }
}

.achievement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 500;
    /* Thinner */
    color: #111;
    margin-bottom: 3px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    /* Gradient Black Text */
    background: -webkit-linear-gradient(45deg, #555, #000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

/* Diverse Fonts for Logos */
.achievement-card:nth-child(1) .logo-text {
    font-family: 'RocknRoll One', sans-serif;
}

.achievement-card:nth-child(2) .logo-text {
    font-family: 'Mochiy Pop One', sans-serif;
}

.achievement-card:nth-child(3) .logo-text {
    font-family: 'Kaisei Tokumin', serif;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.achievement-card:nth-child(4) .logo-text {
    font-family: 'Dela Gothic One', cursive;
    font-size: 0.8rem;
}

.achievement-card:nth-child(5) .logo-text {
    font-family: 'DotGothic16', sans-serif;
    letter-spacing: 0.05em;
}

.achievement-card:nth-child(6) .logo-text {
    font-family: 'Hachi Maru Pop', cursive;
    font-size: 0.8rem;
}

.achievement-card:nth-child(7) .logo-text {
    font-family: 'Reggae One', cursive;
}

.achievement-card:nth-child(8) .logo-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 6600;
}

.achievement-card:nth-child(9) .logo-text {
    font-family: 'Yuji Syuku', serif;
}

.achievement-card:nth-child(10) .logo-text {
    font-family: 'Potta One', cursive;
    font-size: 0.8rem;
}

.desc-text {
    font-size: 0.6rem;
    color: #666;
    font-weight: 600;
    line-height: 1.2;
}

/* Network Section */
.achievements-footer {
    margin-top: 20px;
    text-align: center;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 15px;
}

.achievements-footer p {
    font-size: 1rem;
    color: #444;
    font-weight: 700;
}

.highlight-number {
    font-size: 1.8rem;
    color: #0094d3;
    /* Light Blue as requested */
    font-weight: 900;
    margin: 0 4px;
    font-family: 'Poppins', sans-serif;
    vertical-align: middle;
    display: inline-block;
    animation: pulse-scale 2s infinite ease-in-out;
}

.network-box {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.network-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #111;
}

.network-content {
    display: flex;
    flex-direction: row;
    /* Side by side on desktop */
    align-items: center;
    gap: 40px;
    text-align: left;
}

.network-text {
    flex: 1;
}

.network-image {
    flex: 1;
    position: relative;
    /* Context for overlays */
    border-radius: var(--radius-m);
    overflow: hidden;
    /* contain content */
}

.editorial-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.editorial-labels span {
    position: absolute;
    font-family: 'Oswald', 'Impact', sans-serif;
    /* Strong, condensed font */
    color: rgba(255, 255, 255, 0.9);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    mix-blend-mode: overlay;
    /* Dynamic blend */
}

/* Staggered positioning for editorial feel */
.label-japan {
    bottom: 20px;
    left: 20px;
    font-size: 2.5rem;
    transform: rotate(-5deg);
}

.label-hk {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    text-align: right;
}

.label-taiwan {
    bottom: 60px;
    right: 20px;
    font-size: 2rem;

    /* Pop of color */
    mix-blend-mode: normal !important;
    text-shadow: 2px 2px 0px #fff;
    transform: rotate(-10deg);
}

@media (max-width: 900px) {
    .editorial-labels span {
        font-size: 1.5rem;
    }
}

.network-text p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-desc);
    margin-bottom: 20px;
}

.network-image {
    position: relative;
    width: 100%;
    border-radius: var(--radius-m);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.network-img-placeholder {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

.network-overlay-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

/* Q&A Section */
.qa-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.qa-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.qa-list {
    display: grid;
    gap: 20px;
}

.qa-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: var(--radius-m);
}

.qa-item dt {
    font-weight: bold;
    color: var(--color-accent-pink);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.qa-item dd {
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 0;
}

@keyframes rotate-border-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.team-member-large h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.team-member-large p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* DESCRIPTION BOX & SOUNDS ETC... */
.sounds-desc-box {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    color: #333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sound-list {
    display: grid;
    gap: 20px;
}

.sound-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 50px;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 30px;
    border-radius: var(--radius-m);
    gap: 20px;
}

.sound-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--color-accent-pink);
}

.spectrum-container {
    display: flex;
    align-items: flex-end;
    height: 30px;
    gap: 3px;
    width: 100%;
}

.bar {
    flex: 1;
    background: var(--color-accent-blue);
    height: 10%;
    animation: spectrum-anim 0.8s infinite ease-in-out alternate;
}

.bar:nth-child(odd) {
    animation-duration: 0.6s;
    background: var(--color-accent-pink);
}

@keyframes spectrum-anim {
    0% {
        height: 10%;
        opacity: 0.5;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}


/* ROADMAP (Redesign) */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #FF8BA7, #8BE3FF, #111);
    border-radius: 4px;
}

.timeline-event {
    position: relative;
    width: 50%;
    padding: 20px 50px;
    margin-bottom: 40px;
}

.timeline-event:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-event:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-event::after {
    content: '';
    position: absolute;
    top: 25px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 5px solid var(--color-accent-blue);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

.timeline-event:nth-child(odd)::after {
    right: -12px;
    border-color: var(--color-accent-pink);
}

.timeline-event:nth-child(even)::after {
    left: -12px;
}

.event-date {
    font-family: var(--font-heading);
    font-weight: 900;
    color: #111;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.event-content h3 {
    font-size: 1.3rem;
    margin: 5px 0;
    color: var(--color-accent-pink);
}

.timeline-event:nth-child(even) .event-content h3 {
    color: var(--color-accent-blue);
}

.timeline-event.future {
    opacity: 0.8;
}


/* SUPPORT */
.price-hero {
    text-align: center;
    background: linear-gradient(135deg, #FF8BA7, #8BE3FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 40px 0;
}

.yen-mark {
    font-size: 4rem;
    font-weight: bold;
}

.price-val {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -5px;
}

.price-label {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    margin-top: -10px;
}

@keyframes pulse-scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 900px) {

    /* Network Section Mobile */
    .network-content {
        flex-direction: column;
        gap: 0;
        /* Request: Gap 0 */
    }

    .network-text {
        order: 1;
        text-align: left;
    }

    .network-image {
        order: 2;
        width: 100%;
        margin-top: 20px;
    }

    .network-overlay-label {
        font-size: 0.8rem;
    }

    /* Sounds Mobile - No Thumbnails */
    .sound-item {
        grid-template-columns: 1fr 40px;
        /* Text + Play Button */
        padding: 15px;
        gap: 15px;
        text-align: left;
    }

    .sound-icon-img {
        display: none !important;
        /* Request: Hide thumbnail */
    }

    /* Hide spectrum on mobile if too crowded */
    .spectrum-container {
        display: none;
    }

    /* Achievements Horizontal Scroll 2 Rows */
    .achievements-grid {
        display: grid;
        grid-template-rows: repeat(2, auto);
        grid-auto-flow: column;
        overflow-x: auto;
        justify-content: start;
        /* Align start to allow scroll */
        padding-bottom: 20px;
        /* Space for scrollbar */
        padding-left: 20px;
        /* Padding for visual balance */
        margin-left: -20px;
        /* Negative margin to pull to edge */
        margin-right: -20px;
        width: calc(100% + 40px);
        scroll-snap-type: x mandatory;
        position: relative;
    }

    .team-grid-large::after {
        content: 'SCROLL ->';
        position: absolute;
        right: 10px;
        bottom: -25px;
        font-size: 0.8rem;
        color: var(--color-accent-pink);
        font-weight: bold;
        animation: scroll-hint 1.5s infinite;
    }

    @keyframes scroll-hint {

        0%,
        100% {
            transform: translateX(0);
            opacity: 0.6;
        }

        50% {
            transform: translateX(5px);
            opacity: 1;
        }
    }

    .achievement-card {
        width: 220px;
        /* Fixed width for scroll items */
        scroll-snap-align: center;
        margin-right: 15px;
        max-width: none;
        /* Reset max-width */
    }

    /* Record Needle Mobile Adjustments */
    .team-member-large::after {
        top: 30%;
        /* Centering vertically */
        transform: translateY(-20%);
        /* User requested to remove right: -10px, so we let it use default or set to auto/different */

        width: 50px;
        /* Slightly smaller for mobile */
        height: 70px;
        background-size: contain;
        background-repeat: no-repeat;
        /* Bent left arm SVG */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Ccircle cx='70' cy='90' r='6' fill='%23333' /%3E%3Cpath d='M70 90 L70 50 L40 20' stroke='%23888' stroke-width='4' stroke-linecap='round' stroke-linejoin='round' /%3E%3Crect x='32' y='12' width='14' height='20' rx='2' fill='%23222' transform='rotate(-45 39 22)' /%3E%3C/svg%3E");
    }
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.support-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-s);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* CHECK LIST */
.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: var(--radius-m);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.check-icon {
    background: var(--color-accent-pink);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.note-box {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: var(--radius-s);
    border: 1px dashed #aaa;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* SELECTION FLOW */
.step-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px 0;
}

.flow-card {
    flex: 1;
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--radius-m);
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.flow-card.active {
    border: 2px solid var(--color-accent-pink);
}

.step-num {
    background: #111;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 900;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.flow-arrow {
    padding: 0 20px;
    align-self: center;
    font-size: 1.5rem;
    color: #ccc;
}

.post-flow {
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
}

/* COMPANY */
.company-desc {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.company-overview-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-m);
}

.company-info-text {
    text-align: left;
}

.company-info-text h3 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.small-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #555;
}

.company-dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
    font-size: 0.9rem;
}

.company-dl dt {
    font-weight: bold;
    color: var(--color-text-main);
}

.company-dl dd {
    color: var(--color-text-desc);
}

.company-image-placeholder {
    border-radius: var(--radius-s);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Optional: Limit height if it gets too tall relative to text, or let it flow */
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); User said 'Box', maybe shadow? */
    width: 66%;
    margin: 0 auto;
}

.office-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Ensures it covers if we ever set height */
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius-m);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.location-card h4 {
    margin-bottom: 10px;
    border-left: 4px solid var(--color-accent-blue);
    padding-left: 10px;
    font-size: 1.1rem;
}

.location-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #555;
    min-height: 2.7em;
}

.map-wrap iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: var(--radius-s);
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.location-card:hover iframe {
    filter: grayscale(0%);
}

/* FOOTER */
.footer.section {
    position: relative;
    overflow: hidden;
}

.footer-cloud-bg {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.footer-cta-container {
    text-align: center;
    padding: 80px 20px 150px;
    position: relative;
    z-index: 2;
    /* Above cloud */
}

.cta-message {
    margin-bottom: 40px;
}

.cta-message .sub {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
}

.cta-message .main {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 10px;
    display: block;
}


/* STICKY CTA */
#sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 90%;
    max-width: 400px;
}

#sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    gap: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* PURU PURU GRADIENT BTN */
.puru-btn {
    background: linear-gradient(270deg, #ff8ba7, #8be3ff, #ff9a9e, #8be3ff);
    background-size: 400% 400%;
    animation: gradient-anim 5s ease infinite, jelly-anim 2s infinite;
}

@keyframes gradient-anim {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes jelly-anim {

    0%,
    100% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.95, 1.05);
    }

    50% {
        transform: scale(1.05, 0.95);
    }

    75% {
        transform: scale(0.98, 1.02);
    }
}


/* RESPONISVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .center-wrapper {
        justify-content: center;
        display: flex;
    }

    .glitch-text {
        font-size: 3rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .glitch-text-md {
        font-size: 1.5rem;
    }

    /* Nav Cards: 2 cols on Mobile */
    .nav-grid-container {
        grid-template-columns: 1fr 1fr;
    }

    .nav-card {
        height: 200px;
    }

    .nav-title {
        font-size: 1.2rem;
    }

    .mobile-shrink {
        font-size: 1.3rem;
    }

    /* Adjust char size for mobile */
    .nav-char {
        width: 100px;
        height: 100px;
        top: -10px;
        right: -10px;
    }

    /* Team Small */
    .team-grid-large {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .member-frame-anim {
        width: 150px;
        height: 150px;
    }

    /* Concept */
    .concept-layout {
        grid-template-columns: 1fr;
    }

    .main-copy {
        font-size: 1.5rem;
    }

    /* Sounds */
    .sound-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .sound-item>* {
        width: 100%;
        margin-bottom: 10px;
    }

    .sound-icon-img {
        display: block;
        margin: 0 auto 10px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .spectrum-container {
        display: flex;
        transform: none;
        justify-content: center;
        height: 20px;
    }

    /* Roadmap */
    .timeline-line {
        left: 20px;
    }

    .timeline-event {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px;
    }

    .timeline-event::after {
        left: 12px !important;
    }

    /* Support */
    .support-grid {
        grid-template-columns: 1fr 1fr;
    }

    .price-val {
        font-size: 6rem;
    }

    /* Flow */
    .step-flow {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-card {
        width: 80%;
        margin: 0 auto;
    }

    /* Company */
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .company-overview-wrapper {
        grid-template-columns: 1fr;
    }
}

/* CREATIVE WORKS SECTION */
#creative {
    overflow: hidden;
    /* For scrolling */
    padding-bottom: 60px;
}

.creative-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    margin-bottom: 40px;
    transform: rotate(3deg) scale(1.1);
    /* Tilt and Scale */
    transform-origin: center;
}

.creative-marquee {
    display: flex;
    gap: 20px;
    width: max-content;
    /* Reverse to move Left -> Right (with tilt = Down-Right) */
    animation: marquee-scroll 40s linear infinite reverse;
}

.creative-img-item {
    height: 250px;
    width: 400px;
    /* Aspect ratio approx 16:9 or similar */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-color: #ddd;
    /* placeholder */
    /* Frosted glass / blur effect */
    filter: blur(3px);
    transition: filter 0.3s;
}



@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.creative-comment-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
}