: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 {
    background: linear-gradient(120deg, transparent 0%, transparent 100%);
    /* Placeholder for highlight anim */
    position: relative;
    font-weight: bold;
    color: var(--color-text-main);
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 139, 167, 0.3);
    z-index: -1;
    transform: scaleX(1);
    transform-origin: left;
}


/* 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 {
    display: inline-block;
    /* Clean Glassmorphism Plate */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 1.5rem 3rem;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--color-accent-blue);

    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

    margin-bottom: 30px;
    letter-spacing: 0.05em;
    max-width: 90vw;

    /* Clean Pill Shape */
    border-radius: 100px;

    transition: all 0.3s ease;
}

.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-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.team-member-large {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-m);
    transition: transform 0.3s;
}

.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%;
    background: #ddd;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 5px solid #fff;
    animation: rotate-border-reverse 4s infinite linear;
}

@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;
}

.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 {
    background: #eee;
    border-radius: var(--radius-s);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #aaa;
}

.placeholder-inner {
    text-align: center;
}

.placeholder-inner i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.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;
    }
}