@charset "UTF-8";

/* ==========================================================================
   Parabell Community House (PCH) - Main Stylesheet (Fluid Responsive)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Base (Variables, Reset, Typography)
   -------------------------------------------------------------------------- */
:root {
    --font-main: 'Zen Kaku Gothic New', sans-serif;
    --font-en: 'Outfit', sans-serif;
    --font-ja-mincho: 'Noto Serif JP', serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-size-h2: clamp(3.6rem, calc(1.44vw + 3.06rem), 4.5rem);
    --color-text: #343434;
    --color-text-light: #686868;
    --color-link: #28A0FF;
    --color-accent: #FF9F1C;
    --color-secondary: #D946EF;
    --color-attention: #E53935;
    --color-checked: #00A869;

    /* Gradient Colors (Pastel) */
    --col-a-1: #E1F5FE;
    --col-a-2: #B3E5FC;
    --col-a-3: #FFCCBC;
    --col-a-4: #E1BEE7;
    --col-a-5: #9FA8DA;
    --col-a-6: #5C6BC0;

    /* Gradient Colors (Night) */
    --col-b-1: #0F2D5D;
    --col-b-2: #2979FF;

    /* Magic Gradients */
    --grad-magic-85: linear-gradient(85deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    --grad-magic-135: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    --bg-cut-corner: linear-gradient(135deg, transparent var(--cut-size), rgba(255, 255, 255, 0.75) var(--cut-size), rgba(255, 255, 255, 0.75) calc(100% - var(--cut-size)), transparent calc(100% - var(--cut-size)));

    /* NFT Ring Variables */
    --ring-item-size: 76px;
    --ring-radius: 288px;
    --ring-spin-duration: 120s;

    /* Layout & Fluid Variables */
    --site-max-width: 1280px;
    --container-max-width: clamp(349px, calc(61.92vw + 116.8px), 736px);
    --section-padding: clamp(40px, calc(8.96vw + 6.4px), 96px) clamp(13px, calc(3.04vw + 1.6px), 32px);
    --cut-size: clamp(15px, calc(0.8vw + 12px), 20px);
}

body {
    background-color: #4d4d4d;
    background-image: repeating-linear-gradient(225deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08) 3px, transparent 3px, transparent 6px), repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08) 3px, transparent 3px, transparent 6px);
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right top;
    background-size: 50% 100%, 50% 100%;
    transition: color 0.5s ease;
}

.site-wrapper {
    position: relative;
    max-width: var(--site-max-width);
    min-height: 100dvh;
    margin: 0 auto;
    overflow-x: hidden;
    box-shadow: 30px 0 30px rgba(0, 0, 0, 0.3), 15px 0 0 rgba(255, 255, 255, 0.1), -30px 0 30px rgba(0, 0, 0, 0.3), -15px 0 0 rgba(255, 255, 255, 0.1);
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    margin-bottom: 0;
}

h2 {
    margin-bottom: 0.7em;
    font-family: var(--font-en);
    font-size: var(--font-size-h2);
    line-height: 1.25;
    color: var(--color-text);
    text-align: center;
    text-shadow: 1px 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 rgba(255, 255, 255, 0.4), 0 0 15px #fff, 0 0 30px #fff;
}

p {
    margin-bottom: 1em;
    font-size: clamp(1.4rem, calc(0.32vw + 1.28rem), 1.6rem);
    line-height: 1.8;
    text-align: center;
}

/* --------------------------------------------------------------------------
   2. Utility Classes
   -------------------------------------------------------------------------- */
.footer {
    margin: 0 !important;
}

.link-color {
    font-weight: 700;
    color: var(--color-link);
    transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .link-color:hover {
        color: var(--color-accent);
    }
}

.gradient-text {
    background: var(--grad-magic-135);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.no-scroll {
    overflow: hidden;
}

.hidden-svg-defs {
    position: absolute;
    visibility: hidden;
}

/* --------------------------------------------------------------------------
   3. Motifs & Backgrounds
   -------------------------------------------------------------------------- */
.motif-container {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    max-width: var(--site-max-width);
    height: 100%;
    margin: 0 auto;
    pointer-events: none;
    transform: translateZ(0);
}

.sun-moon {
    position: absolute;
    top: 60px;
    left: 136px;
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: var(--radius-max);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateX(-50%);
    transition: background-color 0.1s linear, box-shadow 0.1s linear, opacity 0.5s ease-in-out;
    will-change: background-color, box-shadow, opacity;
}

/* Common Full-Screen Style for Inner Sections */
.content-section {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
}

.hero-section,
.concept-section,
.gallery-section,
.vision-section,
.funding-section,
.resonance-section,
.roadmap-section,
.team-section,
.faq-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: var(--section-padding);
    margin: 0;
}

.concept-section {
    overflow: hidden;
    text-align: center;
    background: linear-gradient(150deg, var(--col-b-1), var(--col-b-2));
}

.gallery-section {
    overflow: hidden;
    background: linear-gradient(to bottom, var(--col-a-1) 0%, var(--col-a-1) 67%, var(--col-a-2) 100%);
}

.vision-section,
.funding-section {
    width: 100%;
    background: linear-gradient(to bottom, var(--col-a-2) 0%, var(--col-a-2) 67%, var(--col-a-3) 100%);
}

.resonance-section {
    background: linear-gradient(to bottom, var(--col-a-3) 0%, var(--col-a-3) 67%, var(--col-a-4) 100%);
}

.roadmap-section {
    text-align: center;
    background: linear-gradient(to bottom, var(--col-a-4) 0%, var(--col-a-4) 67%, var(--col-a-5) 100%);
}

.team-section {
    background: linear-gradient(to bottom, var(--col-a-5) 0%, var(--col-a-5) 67%, var(--col-a-6) 100%);
}

.faq-section {
    text-align: center;
    background-color: var(--col-a-6);
}

/* Ambient Stars (Twinkling) */
.star-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.static-star {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    animation: twinkle ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% {
        opacity: 0.1;
        transform: scale(0.6);
    }

    100% {
        opacity: 0.9;
        transform: scale(1.1);
    }
}

.shooting-star {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* Wide Screen Side Texts (1580px+) */
.side-margin-text {
    position: fixed;
    top: 50%;
    display: none;
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
}

/* Section Divider (Notch / Safe-area Spacer) */
.section-divider {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 35%;
    margin: clamp(32px, calc(2.56vw + 22.4px), 48px) auto;
}

.section-divider.light {
    color: rgba(255, 255, 255, 0.9);
}

.section-divider.dark {
    color: rgba(0, 0, 0, 0.6);
}

.section-divider span {
    display: block;
    transition: opacity 0.3s ease;
}

.section-divider span:nth-child(1),
.section-divider span:nth-child(3) {
    flex-grow: 1;
    max-width: 40px;
    height: 1px;
}

.section-divider span:nth-child(1) {
    background: linear-gradient(to left, currentColor, transparent);
}

.section-divider span:nth-child(3) {
    background: linear-gradient(to right, currentColor, transparent);
}

.section-divider span:nth-child(2) {
    width: 6px;
    height: 6px;
    border: 1px solid currentColor;
    transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   4. Navigation & Header
   -------------------------------------------------------------------------- */
/* Global Navigation Wrapper */
.global-nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 7500;
    width: 100%;
    max-width: var(--site-max-width);
    height: 100%;
    margin: 0 auto;
    pointer-events: none;
    transform: translateZ(0);
}

.global-nav-wrapper>* {
    pointer-events: auto;
}

/* Immersive Menu Trigger */
#menuTrigger {
    position: fixed;
    top: 30px;
    right: clamp(15px, calc(6.47vw - 34.7px), 30px);
}

.menu-circle {
    flex-direction: column;
    gap: 5px;
}

@media (hover: hover) and (pointer: fine) {
    #menuTrigger:hover .menu-circle {
        background-color: rgba(255, 255, 255, 0.8);
    }
}

#menuTrigger .menu-circle span {
    width: 28px;
    height: 3px;
    background-color: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

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

#menuTrigger.active .menu-circle span:nth-child(2) {
    opacity: 0;
}

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

/* Immersive Overlay Menu (PC/Responsive Layout) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8000;
    visibility: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.immersive-nav {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, calc(0.32vw + 12.8px), 16px);
    padding: 0;
    margin: 0;
    list-style: none;
}

#immersiveMenu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: clamp(240px, calc(12.8vw + 192px), 320px);
    height: 100dvh;
    padding: clamp(24px, calc(1.92vw + 16.8px), 36px);
    overflow-y: auto;
    font-size: clamp(14px, calc(0.64vw + 11.6px), 18px);
    background-color: rgba(255, 255, 255, 0.7);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 6px 0 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

#immersiveMenu.open {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
}

#immersiveMenu li {
    opacity: 0;
    transform: translateX(-20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#immersiveMenu.open li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation */
#immersiveMenu.open li:nth-child(1) {
    transition-delay: 0.1s;
}

#immersiveMenu.open li:nth-child(2) {
    transition-delay: 0.15s;
}

#immersiveMenu.open li:nth-child(3) {
    transition-delay: 0.2s;
}

#immersiveMenu.open li:nth-child(4) {
    transition-delay: 0.25s;
}

#immersiveMenu.open li:nth-child(5) {
    transition-delay: 0.3s;
}

#immersiveMenu.open li:nth-child(6) {
    transition-delay: 0.35s;
}

#immersiveMenu.open li:nth-child(7) {
    transition-delay: 0.4s;
}

#immersiveMenu.open li:nth-child(8) {
    transition-delay: 0.45s;
}

#immersiveMenu.open li:nth-child(9) {
    transition-delay: 0.5s;
}

#immersiveMenu.open li:nth-child(10) {
    transition-delay: 0.55s;
}

#immersiveMenu li.menu-home,
#immersiveMenu li.menu-funding-item {
    padding-bottom: clamp(14px, calc(0.32vw + 12.8px), 16px);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

#immersiveMenu li.menu-home,
#immersiveMenu li.menu-close-item {
    display: flex;
    justify-content: center;
}

.immersive-nav a.funding-link {
    border-left-color: var(--color-secondary);
}

.immersive-nav a {
    justify-content: flex-start;
    width: 100%;
    padding: clamp(10px, calc(0.32vw + 8.8px), 12px) clamp(16px, calc(0.64vw + 13.6px), 20px);
    font-family: var(--font-en);
    color: var(--color-text-light);
    background-color: rgba(255, 255, 255, 0.6);
    border-left: 4px solid var(--color-link);
    border-radius: clamp(10px, calc(0.32vw + 8.8px), 12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

@media (hover: hover) and (pointer: fine) {
    .immersive-nav a:hover {
        color: var(--color-text);
        background-color: rgba(255, 255, 255, 0.9);
        border-left-color: var(--color-accent);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    }
}

/* Circular HOME button override */
.immersive-nav a.menu-home-btn {
    justify-content: center;
    width: clamp(48px, calc(1.92vw + 40.8px), 60px);
    height: clamp(48px, calc(1.92vw + 40.8px), 60px);
    padding: 0;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-max);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (hover: hover) and (pointer: fine) {
    .immersive-nav a.menu-home-btn:hover {
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
}

.menu-home-icon {
    display: inline-block;
    width: clamp(22px, calc(0.96vw + 18.4px), 28px);
    height: clamp(22px, calc(0.96vw + 18.4px), 28px);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .immersive-nav a:hover .menu-home-icon {
        opacity: 1;
    }
}

/* Navigation Buttons (Fixed Bottom Right) */
.nav-container {
    position: fixed;
    right: clamp(15px, calc(6.47vw - 34.7px), 30px);
    bottom: 30px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.nav-btn-fixed {
    width: auto;
    height: auto;
    font-family: var(--font-en);
    color: var(--color-text);
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.nav-btn-float {
    position: relative;
    overflow: visible;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.nav-btn-float .nav-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 35px;
    background-color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-max);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav-btn-float .nav-circle span {
    transition: opacity 0.3s ease;
}

.nav-btn-float .nav-float-label {
    position: absolute;
    right: 70px;
    padding: 4px 8px;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .nav-btn-float:hover .nav-circle {
        background-color: rgba(255, 255, 255, 0.9);
    }
}

@media (hover: hover) and (pointer: fine) {
    .nav-btn-float:hover .nav-float-label {
        opacity: 1;
        transform: translateX(0);
    }
}

.icon-home-img {
    display: block;
    width: 28px;
    height: 28px;
}

.nav-container.state-top .nav-home {
    pointer-events: none;
    opacity: 0;
    transform: translateY(calc(200% + 30px));
}

.nav-container.state-top .nav-prev {
    pointer-events: none;
    opacity: 0;
    transform: translateY(calc(100% + 15px));
}

.nav-container.state-top .nav-next {
    opacity: 1;
    transform: none;
}

.nav-container.state-middle .nav-home,
.nav-container.state-middle .nav-prev,
.nav-container.state-middle .nav-next,
.nav-container.state-bottom .nav-home,
.nav-container.state-bottom .nav-prev {
    pointer-events: auto;
    opacity: 1;
    transform: none;
}

.nav-container.state-bottom .nav-next {
    pointer-events: none;
    opacity: 1;
    transform: none;
}

.nav-container.state-bottom .nav-next .nav-circle span {
    opacity: 0.3;
}

/* Funding CTA Specific Styles */
#btnFundingTop {
    position: fixed;
    top: 105px;
    right: clamp(15px, calc(6.47vw - 34.7px), 30px);
    z-index: 50;
    text-decoration: none;
}

.funding-circle {
    padding: 0;
    overflow: hidden;
}

.icon-funding-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-btn-float .funding-label {
    font-weight: bold;
    background: var(--grad-magic-85);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    z-index: 0;
    overflow: hidden;
    background-color: #87CEEB;
    background-image: linear-gradient(rgba(136, 205, 235, 0.8), rgba(136, 205, 235, 0.8)), url(../images/bgs/landscape.webp);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}

/* Hero Stripe Background Layer */
.hero-stripe-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.05) clamp(3px, min(calc(0.32vw + 1.8px), 0.6dvh), 5px),
            transparent clamp(3px, min(calc(0.32vw + 1.8px), 0.6dvh), 5px),
            transparent clamp(6px, min(calc(0.64vw + 3.6px), 1.2dvh), 10px));
}

/* Background Decoration Circle */
.hero-circle-deco {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 20;
    width: calc(68.4 * var(--hero-unit));
    height: calc(68.4 * var(--hero-unit));
    pointer-events: none;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.1) calc(23.8 * var(--hero-unit)),
            rgba(255, 255, 255, 0.6) calc(23.8 * var(--hero-unit)),
            rgba(255, 255, 255, 0.6) calc(23.9 * var(--hero-unit)),
            rgba(0, 0, 0, 0.05) calc(23.9 * var(--hero-unit)),
            rgba(0, 0, 0, 0.05) 100%);
    border: calc(0.3 * var(--hero-unit)) solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-max);
    box-shadow: 0 0 0 calc(1.2 * var(--hero-unit)) rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: heroFadeIn 1.5s ease-out 1.0s forwards;
}

/* NFT Ring Container */
.nft-ring-container {
    --total: 21;
    --ring-item-size: calc(7.6 * var(--hero-unit));
    --ring-radius: calc(28.8 * var(--hero-unit));
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 30;
    width: 0;
    height: 0;
    opacity: 0;
    animation:
        spin-ring var(--ring-spin-duration) linear infinite,
        reverse-burst 21s infinite,
        heroFadeIn 1.5s ease-out 1.6s forwards;
}

.nft-ring-item {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: var(--ring-item-size);
    height: var(--ring-item-size);
    margin-top: calc(var(--ring-item-size) / -2);
    margin-left: calc(var(--ring-item-size) / -2);
    background-color: #fff;
    border: clamp(1px, calc(0.3 * var(--hero-unit)), 3px) solid #fff;
    border-radius: calc(1.2 * var(--hero-unit));
    opacity: 0.4;
    transform: rotate(calc(360deg / var(--total) * var(--i))) translateY(calc(var(--ring-radius) * -1));
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: ring-flash 10.5s ease-out infinite;
    animation-delay: calc(var(--i) * -0.5s);
}

@keyframes spin-ring {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes ring-flash {
    0% {
        opacity: 0.4;
    }

    4.76% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

@keyframes reverse-burst {

    0%,
    84% {
        rotate: z 0deg;
        animation-timing-function: ease-in-out;
    }

    88% {
        rotate: z -10deg;
        animation-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
    }

    96% {
        rotate: z 360deg;
        animation-timing-function: linear;
    }

    100% {
        rotate: z 360deg;
    }
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.text-content {
    position: relative;
    z-index: 100;
    text-shadow: 1px 0 0 rgba(0, 0, 0, 0.1), -1px 0 0 rgba(255, 255, 255, 0.4), 0 0 10px #fff;
    opacity: 0;
    animation: heroFadeIn 1s ease-out 0.4s forwards;
}

/* Hero Zoom Container */
.hero-zoom-container {
    --hero-unit: clamp(4.3px, min(calc(0.82vw + 1.8px), 1.13dvh), 10px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-title {
    margin-bottom: 0.35em;
    font-family: var(--font-en);
    font-size: calc(4.8 * var(--hero-unit));
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.hero-title-sub {
    display: block;
    margin-top: 0.4em;
    font-size: calc(2.6 * var(--hero-unit));
    font-weight: 300;
}

.hero-subtitle {
    margin-bottom: 2.2em;
    font-family: var(--font-ja-mincho);
    font-size: calc(1.4 * var(--hero-unit));
    font-weight: 900;
    color: var(--color-attention);
    letter-spacing: 0.07em;
    paint-order: stroke fill;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.hero-zoom-container .poly-logotype {
    font-size: calc(2.4 * var(--hero-unit));
}

.hero-zoom-container .poly-icon {
    width: calc(3.2 * var(--hero-unit));
    height: calc(3.2 * var(--hero-unit));
}

.footer-title {
    margin-bottom: 0.35em;
    font-family: var(--font-en);
    font-size: clamp(32px, calc(2.56vw + 22.4px), 48px);
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.footer-title-sub {
    display: block;
    margin-top: 0.4em;
    font-size: clamp(17px, calc(1.44vw + 11.6px), 26px);
    font-weight: 300;
}

.footer-subtitle {
    margin: 0;
    font-family: var(--font-ja-mincho);
    font-size: clamp(9px, calc(0.8vw + 6px), 14px);
    font-weight: 900;
    color: var(--color-attention);
    letter-spacing: 0.07em;
}

.poly-logotype {
    display: flex;
    gap: 0.4em;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    font-family: var(--font-en);
    font-size: clamp(11px, calc(1.28vw + 6.2px), 19px);
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.poly-icon {
    flex-shrink: 0;
    width: clamp(24px, calc(1.28vw + 19.2px), 32px);
    height: clamp(24px, calc(1.28vw + 19.2px), 32px);
}

/* --------------------------------------------------------------------------
   6. Concept Section
   -------------------------------------------------------------------------- */
.concept-container {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: var(--container-max-width);
    padding: clamp(18px, calc(4.48vw + 1.2px), 46px) clamp(18px, calc(4.48vw + 1.2px), 46px) clamp(26px, calc(3.2vw + 14px), 46px);
    margin: 0 auto;
    text-align: center;
    background: var(--bg-cut-corner);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.concept-headline,
.vision-headline,
.funding-headline {
    position: relative;
    padding: 6px clamp(18px, calc(2.7vw + 5px), 32px);
    margin-bottom: 0.8em;
    font-family: var(--font-ja-mincho);
    font-size: clamp(2.2rem, calc(1.6vw + 1.6rem), 3.2rem);
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
}

.concept-headline::before,
.concept-headline::after,
.vision-headline::before,
.vision-headline::after,
.funding-headline::before,
.funding-headline::after,
.resonance-card h3::before,
.resonance-card h3::after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15px;
    content: '';
    border-block: 1px solid var(--color-accent);
}

.concept-headline::before,
.vision-headline::before,
.funding-headline::before,
.resonance-card h3::before {
    left: 0;
    border-left: 1px solid var(--color-accent);
}

.concept-headline::after,
.vision-headline::after,
.funding-headline::after,
.resonance-card h3::after {
    right: 0;
    border-right: 1px solid var(--color-accent);
}

.concept-support-message {
    display: inline-flex;
    gap: 0.4em;
    align-items: center;
    padding: clamp(8px, calc(0.8vw + 5px), 13px) clamp(15px, calc(1.44vw + 9.6px), 24px);
    margin: clamp(20px, calc(1.92vw + 12.8px), 32px) auto 0;
    font-size: clamp(1.3rem, calc(0.32vw + 1.18rem), 1.5rem);
    line-height: 1.6;
    color: var(--color-text-light);
    text-align: left;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
}

.concept-inline-mark {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.5em;
    height: 1.5em;
    background-color: #00A869;
    border-radius: var(--radius-max);
}

.concept-inline-mark svg {
    width: clamp(1.3rem, calc(0.48vw + 1.12rem), 1.6rem);
    height: clamp(1.3rem, calc(0.48vw + 1.12rem), 1.6rem);
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.notice-box {
    position: relative;
    z-index: 100;
    display: flex;
    width: 100%;
    max-width: var(--container-max-width);
    margin: clamp(21px, calc(1.76vw + 14.4px), 32px) auto clamp(32px, calc(2.56vw + 22.4px), 48px);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.notice-icon-area {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, calc(0.64vw + 11.6px), 18px) clamp(17px, calc(0.8vw + 14px), 22px);
    background-color: rgba(255, 229, 229, 1);
}

.notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.6rem, calc(1.6vw + 2rem), 3.6rem);
    height: clamp(2.6rem, calc(1.6vw + 2rem), 3.6rem);
    font-family: var(--font-en);
    font-size: clamp(1.8rem, calc(0.96vw + 1.44rem), 2.4rem);
    font-weight: 700;
    line-height: 1;
    color: #fff;
    user-select: none;
    background-color: var(--color-attention);
    border: none;
    border-radius: var(--radius-max);
}

.notice-content {
    flex-grow: 1;
    padding: clamp(14px, calc(0.64vw + 11.6px), 18px) clamp(17px, calc(0.8vw + 14px), 22px);
    font-size: clamp(1.3rem, calc(0.32vw + 1.18rem), 1.5rem);
    line-height: 1.6;
    color: var(--color-text);
    text-align: left;
    background-color: rgba(255, 255, 255, 0.8);
}

.cta-btn {
    gap: clamp(6px, calc(0.64vw + 3.6px), 10px);
    padding: clamp(6px, calc(0.32vw + 4.8px), 8px);
    padding-right: clamp(14px, calc(0.96vw + 10.4px), 20px);
    font-size: clamp(13px, calc(0.48vw + 11.2px), 16px);
    color: #fff;
    background: var(--grad-magic-85);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: pulse-cta 3.5s linear infinite;
}

@media (hover: hover) and (pointer: fine) {
    .cta-btn:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        animation: none;
    }
}

@keyframes pulse-cta {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(255, 255, 255, 0.35);
    }

    15% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 0 5px rgba(255, 159, 28, 0.2);
    }

    30%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

/* --------------------------------------------------------------------------
   7. Gallery Section
   -------------------------------------------------------------------------- */
.gallery-container {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: var(--container-max-width);
    height: clamp(180px, calc(19.2vw + 108px), 300px);
    margin: 0 auto clamp(32px, calc(2.56vw + 22.4px), 48px);
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 4%, rgba(255, 255, 255, 0.4) 12%, rgba(255, 255, 255, 0.4) 88%, rgba(255, 255, 255, 0) 96%, rgba(255, 255, 255, 0) 100%);
}

.gallery-track {
    position: absolute;
    left: 0;
    z-index: 100;
    display: flex;
    gap: clamp(12px, calc(1.28vw + 7.2px), 20px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-track.is-dragging {
    transition: none;
}

.gallery-item {
    flex: 0 0 auto;
    width: clamp(120px, calc(12.8vw + 72px), 200px);
    height: clamp(120px, calc(12.8vw + 72px), 200px);
    overflow: hidden;
    user-select: none;
    background-color: #fff;
    border-radius: clamp(9px, calc(0.96vw + 5.4px), 15px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .gallery-item:hover {
        z-index: 100;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
}

.gallery-fade-left,
.gallery-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(60px, calc(6.4vw + 36px), 100px);
    pointer-events: none;
}

.gallery-fade-left {
    left: 0;
    box-shadow: inset 15px 0 10px -15px rgba(0, 0, 0, 0.3);
}

.gallery-fade-right {
    right: 0;
    box-shadow: inset -15px 0 10px -15px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    z-index: 300;
    width: clamp(28px, calc(2.72vw + 17.8px), 45px);
    height: clamp(43px, calc(4.32vw + 26.8px), 70px);
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(22px, calc(1.6vw + 16px), 32px);
    color: var(--color-text);
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: clamp(10px, calc(0.8vw + 7px), 15px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media (hover: hover) and (pointer: fine) {
    .carousel-btn:hover {
        background-color: #fff;
    }
}

.gallery-live-note {
    margin: clamp(20px, calc(1.92vw + 12.8px), 32px) 0 0;
    font-size: clamp(1.2rem, calc(0.32vw + 1.08rem), 1.4rem);
    color: var(--color-text-light);
    text-align: center;
}

/* --------------------------------------------------------------------------
   8. Vision/Funding Section
   -------------------------------------------------------------------------- */
.vision-container,
.funding-container {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: var(--container-max-width);
    padding: clamp(18px, calc(4.48vw + 1.2px), 46px) clamp(18px, calc(4.48vw + 1.2px), 46px) clamp(26px, calc(3.2vw + 14px), 46px);
    margin: 0 auto;
    text-align: center;
    background: var(--bg-cut-corner);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.text-on {
    color: #6495ED;
}

.text-off {
    color: var(--color-attention);
}

.text-x {
    color: #999;
}

.vision-read-more-btn {
    gap: clamp(8px, calc(0.64vw + 5.6px), 12px);
    padding: clamp(4px, calc(0.32vw + 2.8px), 6px) clamp(12px, calc(1.28vw + 7.2px), 20px) clamp(4px, calc(0.32vw + 2.8px), 6px) clamp(5px, calc(0.48vw + 3.2px), 8px);
    margin-top: clamp(16px, calc(1.92vw + 8.8px), 28px);
    text-align: left;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (hover: hover) and (pointer: fine) {
    .vision-read-more-btn:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

.vision-btn-avatar {
    width: clamp(36px, calc(1.92vw + 28.8px), 48px);
    height: clamp(36px, calc(1.92vw + 28.8px), 48px);
    object-fit: cover;
    border: 2px solid #fff;
    border-radius: var(--radius-max);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.vision-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.vision-btn-text span {
    margin-bottom: 2px;
    font-family: var(--font-en);
    font-size: clamp(12px, calc(0.32vw + 10.8px), 14px);
    color: var(--color-text-light);
}

.vision-btn-text strong {
    font-size: clamp(13px, calc(0.32vw + 11.8px), 15px);
    font-weight: 700;
}

.community-links-container {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: var(--container-max-width);
    margin-top: clamp(32px, calc(2.56vw + 22.4px), 48px);
    text-align: center;
}

.community-title {
    margin-bottom: 0.9em;
    font-family: var(--font-main);
    font-size: clamp(1.4rem, calc(0.32vw + 1.28rem), 1.6rem);
    font-weight: bold;
    color: var(--color-text);
}

.community-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, calc(1.6vw + 4px), 20px);
    justify-content: center;
}

.community-btn {
    min-width: clamp(98px, calc(6.72vw + 72.8px), 140px);
    padding: clamp(6px, calc(0.48vw + 4.2px), 9px) clamp(13px, calc(1.12vw + 8.8px), 20px);
    font-family: var(--font-en);
    font-size: clamp(13px, calc(0.48vw + 11.2px), 16px);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (hover: hover) and (pointer: fine) {
    .community-btn:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

.btn-stepn {
    background: linear-gradient(135deg, #00695C 0%, #00E676 100%);
}

.btn-heal3 {
    background: linear-gradient(135deg, #b71c1c 0%, #FF1744 100%);
}

.btn-ninja {
    background: linear-gradient(135deg, #616161 0%, #BDBDBD 100%);
}

/* --------------------------------------------------------------------------
   9. Resonance Section
   -------------------------------------------------------------------------- */
.resonance-list {
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: clamp(28px, calc(0.77vw + 24.3px), 32px);
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.resonance-card {
    padding: clamp(18px, calc(3.2vw + 6px), 38px);
    text-align: left;
    background: var(--bg-cut-corner);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.resonance-card h3 {
    position: relative;
    padding: 6px clamp(18px, calc(2.7vw + 5px), 32px);
    margin-bottom: clamp(18px, calc(0.64vw + 15.6px), 22px);
    font-family: var(--font-ja-mincho);
    font-size: clamp(1.8rem, calc(0.96vw + 1.44rem), 2.4rem);
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
}

.resonance-body {
    display: flex;
    gap: clamp(14px, calc(0.96vw + 10.4px), 20px);
    align-items: center;
}

.resonance-icon {
    display: block;
    flex-shrink: 0;
    width: 180px;
    max-width: 100%;
    height: 110px;
    margin: 0;
}

.resonance-icon-wrapper {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    padding-right: 20px;
    overflow: hidden;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.icon-label {
    position: absolute;
    top: 12px;
    left: -40px;
    z-index: 500;
    width: 120px;
    padding: 4px 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: rotate(-45deg);
}

.label-realized {
    background-color: #0288D1;
}

.label-in-progress {
    background-color: #F57C00;
}

.label-planned {
    background-color: #E91E63;
}

.resonance-card p {
    margin: 0;
    text-align: left;
}

/* --------------------------------------------------------------------------
   10. Roadmap Section
   -------------------------------------------------------------------------- */
.roadmap-timeline {
    position: relative;
    z-index: 100;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: var(--container-max-width);
    padding: clamp(18px, calc(4.48vw + 1.2px), 46px);
    margin: 0 auto;
    text-align: left;
    background: var(--bg-cut-corner);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.roadmap-header {
    padding-bottom: clamp(12px, calc(1.92vw + 4.8px), 24px);
    margin-bottom: clamp(18px, calc(2.88vw + 7.2px), 36px);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

.roadmap-visual-box {
    display: flex;
    gap: clamp(12px, calc(1.6vw + 6px), 22px);
    align-items: center;
    justify-content: center;
}

.roadmap-avatar {
    flex-shrink: 0;
    width: clamp(56px, calc(3.84vw + 41.6px), 80px);
    height: clamp(56px, calc(3.84vw + 41.6px), 80px);
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: var(--radius-max);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.roadmap-visual-text {
    display: flex;
    flex-direction: column;
}

.roadmap-header-lead {
    margin-bottom: 0;
    font-family: var(--font-ja-mincho);
    font-size: clamp(1.8rem, calc(0.96vw + 1.44rem), 2.4rem);
    font-weight: 900;
    color: var(--color-text);
}

.roadmap-header-note {
    margin: 0;
    font-size: clamp(1.3rem, calc(0.32vw + 1.18rem), 1.5rem);
    color: var(--color-text-light);
}

.timeline-node {
    position: relative;
    padding: clamp(12px, calc(1.28vw + 7.2px), 20px) clamp(14px, calc(1.6vw + 8px), 24px);
    color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.4);
    border-left: 4px solid;
    border-radius: 12px;
}

.timeline-node.past {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: var(--color-checked);
}

.timeline-node.past h3 svg {
    color: var(--color-checked);
}

.timeline-node.current {
    color: var(--color-secondary);
    background-color: rgba(255, 255, 255, 0.6);
}

.timeline-node.current h3 svg {
    color: var(--color-accent);
}

.timeline-node h3 svg {
    flex-shrink: 0;
    width: clamp(2rem, calc(0.64vw + 1.76rem), 2.4rem);
    height: clamp(2rem, calc(0.64vw + 1.76rem), 2.4rem);
}

.timeline-node h3 {
    display: flex;
    gap: 0.3em;
    align-items: center;
    margin: 0 0 0.4em 0;
    font-size: clamp(1.6rem, calc(0.64vw + 1.36rem), 2rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text-light);
}

.timeline-node.current h3 {
    font-size: clamp(1.7rem, calc(0.64vw + 1.46rem), 2.1rem);
    font-weight: 700;
}

.timeline-node p {
    margin: 0;
    font-size: clamp(1.3rem, calc(0.32vw + 1.18rem), 1.5rem);
    color: var(--color-text-light);
    text-align: left;
}

.timeline-arrow {
    font-family: var(--font-en);
    font-size: clamp(2.6rem, calc(0.96vw + 2.24rem), 3.2rem);
    color: var(--color-text-light);
    text-align: center;
}

.roadmap-footer {
    padding-top: clamp(12px, calc(1.92vw + 4.8px), 24px);
    margin-top: clamp(18px, calc(2.88vw + 7.2px), 36px);
    border-top: 1px dashed rgba(0, 0, 0, 0.15);
}

.roadmap-footer p {
    text-align: left;
}

.roadmap-footer-lead {
    display: flex;
    gap: 0.4em;
    align-items: center;
    margin-bottom: 0.5em;
    font-weight: bold;
    line-height: 1.4;
    color: var(--color-attention);
}

.roadmap-footer-note {
    margin: 0;
    font-size: clamp(1.2rem, calc(0.32vw + 1.08rem), 1.4rem);
}

.footer-icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 1.5em;
    height: 1.5em;
    font-family: var(--font-en);
    font-weight: 700;
    color: #fff;
    user-select: none;
    background-color: var(--color-attention);
    border-radius: var(--radius-max);
}

/* --------------------------------------------------------------------------
   11. Team Section
   -------------------------------------------------------------------------- */
.team-list {
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: clamp(28px, calc(0.77vw + 24.3px), 32px);
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.team-list-item {
    display: flex;
    flex-direction: row;
    gap: clamp(20px, calc(2.31vw + 8.9px), 32px);
    align-items: center;
    padding: clamp(20px, calc(2.31vw + 8.9px), 32px);
    background: var(--bg-cut-corner);
    border-radius: 0;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.item-left {
    display: flex;
    flex: 0 0 clamp(132px, calc(7.32vw + 96.8px), 170px);
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    justify-content: center;
    padding-right: clamp(20px, calc(2.31vw + 8.9px), 32px);
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.team-avatar-large {
    width: clamp(80px, calc(6.4vw + 56px), 120px);
    height: clamp(80px, calc(6.4vw + 56px), 120px);
    margin-bottom: clamp(12px, calc(0.32vw + 10.8px), 14px);
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: var(--radius-max);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-info h3 {
    font-family: var(--font-en);
    font-size: clamp(1.3rem, calc(0.77vw + 0.93rem), 1.7rem);
    color: #888;
}

.team-info a {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: clamp(12px, calc(0.77vw + 8.3px), 16px);
    font-weight: 700;
    color: var(--color-text);
    transition: opacity 0.3s;
}

@media (hover: hover) and (pointer: fine) {
    .team-info a:hover {
        opacity: 0.7;
    }
}

.item-right {
    flex: 1;
    text-align: left;
}

.item-right h4 {
    display: inline-block;
    margin: 0 0 0.6em 0;
    font-family: var(--font-en);
    font-size: clamp(1.5rem, calc(0.64vw + 1.26rem), 1.9rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.item-right h4::after {
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 0.4rem;
    content: '';
    background: var(--grad-magic-135);
}

.item-right p {
    width: 100%;
    margin: 0;
    font-size: clamp(1.3rem, calc(0.32vw + 1.18rem), 1.5rem);
    line-height: 1.8;
    color: var(--color-text);
    text-align: left;
}

.x-icon {
    width: 22px;
    height: 22px;
    padding: 4px;
    background-color: #000;
    border-radius: 6px;
    fill: #fff;
}

/* --------------------------------------------------------------------------
   12. FAQ Section
   -------------------------------------------------------------------------- */
.faq-container {
    position: relative;
    z-index: 100;
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: left;
}

.faq-category-group {
    margin-bottom: clamp(12px, calc(0.64vw + 9.6px), 16px);
    transition: margin-bottom 0.4s ease;
}

.faq-category-group:last-child {
    margin-bottom: 0 !important;
}

.faq-category-group.active {
    margin-bottom: clamp(24px, calc(1.28vw + 19.2px), 32px);
}

.faq-category-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: clamp(12px, calc(0.64vw + 9.6px), 16px) clamp(16px, calc(0.96vw + 12.4px), 22px);
    text-align: left;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-accent);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, border-color 0.3s ease, border-left-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-category-group:first-child .faq-category-toggle {
    margin-top: 0;
}

.faq-category-group.active .faq-category-toggle {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    border-left-color: var(--color-accent);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (hover: hover) and (pointer: fine) {
    .faq-category-toggle:hover {
        background-color: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.4);
        border-left-color: var(--color-accent);
    }
}

.faq-category-title {
    margin: 0;
    font-family: var(--font-main);
    font-size: clamp(1.6rem, calc(0.64vw + 1.36rem), 2rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-category-icon {
    position: relative;
    width: clamp(16px, calc(0.64vw + 13.6px), 20px);
    height: clamp(16px, calc(0.64vw + 13.6px), 20px);
    transition: transform 0.3s ease;
}

.faq-category-icon::before,
.faq-category-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    background-color: var(--color-accent);
    transform: translate(-50%, -50%);
}

.faq-category-icon::before {
    width: 100%;
    height: 2px;
}

.faq-category-icon::after {
    width: 2px;
    height: 100%;
}

.faq-category-group.active .faq-category-icon {
    transform: rotate(45deg);
}

.faq-category-body {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-category-group.active .faq-category-body {
    grid-template-rows: 1fr;
}

.faq-category-items {
    overflow: hidden;
}

.faq-item {
    margin-top: clamp(10px, calc(0.96vw + 6.4px), 16px);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .faq-item:hover {
        background-color: rgba(255, 255, 255, 0.8);
    }
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: clamp(12px, calc(0.96vw + 8.4px), 18px) clamp(16px, calc(0.96vw + 12.4px), 22px);
    font-family: inherit;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
}

.faq-q-wrapper {
    display: flex;
    gap: clamp(0.8rem, calc(0.64vw + 0.56rem), 1.2rem);
    align-items: center;
}

.faq-q-num {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: clamp(2.6rem, calc(1.92vw + 1.88rem), 3.8rem);
    height: clamp(2.6rem, calc(1.92vw + 1.88rem), 3.8rem);
    font-family: var(--font-en);
    font-size: clamp(1rem, calc(0.64vw + 0.76rem), 1.4rem);
    font-weight: 700;
    color: #fff;
    background: var(--grad-magic-135);
    border-radius: var(--radius-max);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-q-text {
    font-size: clamp(1.4rem, calc(0.32vw + 1.28rem), 1.6rem);
    line-height: 1.4;
}

.faq-toggle-icon {
    position: relative;
    flex-shrink: 0;
    width: clamp(14px, calc(0.32vw + 12.8px), 16px);
    height: clamp(14px, calc(0.32vw + 12.8px), 16px);
    margin-left: clamp(10px, calc(0.96vw + 6.4px), 16px);
    transition: transform 0.3s ease;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    background-color: var(--color-text);
    transform: translate(-50%, -50%);
    transition: background-color 0.3s;
}

.faq-toggle-icon::before {
    width: 100%;
    height: 2px;
}

.faq-toggle-icon::after {
    width: 2px;
    height: 100%;
}

@media (hover: hover) and (pointer: fine) {

    .faq-question:hover .faq-toggle-icon::before,
    .faq-question:hover .faq-toggle-icon::after {
        background-color: var(--color-accent);
    }
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

.faq-answer-content {
    overflow: hidden;
}

.faq-answer-content p {
    padding: clamp(10px, calc(0.96vw + 6.4px), 16px) 0 clamp(12px, calc(0.96vw + 8.4px), 18px);
    margin: 0 clamp(16px, calc(0.96vw + 12.4px), 22px);
    font-size: clamp(1.4rem, calc(0.16vw + 1.34rem), 1.5rem);
    color: var(--color-text);
    text-align: left;
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
}

/* Base Active Status of FAQ */
.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

/* --------------------------------------------------------------------------
   13. Footer & Modals
   -------------------------------------------------------------------------- */
footer {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: clamp(40px, calc(8.96vw + 6.4px), 96px) clamp(13px, calc(3.04vw + 1.6px), 32px) 0;
    overflow: hidden;
    color: var(--color-text-light);
    background-color: #fff;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
        url('../images/bgs/landscape.webp');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}

.footer-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: clamp(36px, calc(13.44vw - 14.4px), 120px);
}

.footer-bottom {
    z-index: 100;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 0 clamp(32px, calc(6.93vw - 21.3px), 48px);
}

.copyright-text {
    width: max-content;
    padding: clamp(5px, calc(0.48vw + 3.2px), 8px) clamp(10px, calc(0.32vw + 8.8px), 12px);
    margin: 0;
    font-size: clamp(10px, calc(0.64vw + 7.6px), 14px);
    color: inherit;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-max);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

/* Vision Modal Overlay */
.vision-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9000;
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vision-modal-overlay.open {
    visibility: visible;
    opacity: 1;
}

.vision-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(100% - 30px);
    max-width: 576px;
    height: calc(100dvh - 30px);
    max-height: 736px;
    overflow: hidden;
    background-color: #fff;
    border-radius: clamp(16px, calc(0.64vw + 13.6px), 20px);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vision-modal-overlay.open .vision-modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: clamp(15px, calc(1.6vw + 9px), 25px);
    right: clamp(15px, calc(1.6vw + 9px), 25px);
    z-index: 2000;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

@media (hover: hover) and (pointer: fine) {
    .close-modal:hover {
        background-color: var(--color-accent);
        border-color: var(--color-accent);
        transform: rotate(90deg);
    }

    .close-modal:hover .btn-close-icon::before,
    .close-modal:hover .btn-close-icon::after {
        background-color: #fff;
    }
}

.close-modal:active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.close-modal:active .btn-close-icon::before,
.close-modal:active .btn-close-icon::after {
    background-color: #fff;
}

.vision-modal-header {
    display: flex;
    gap: 0.7em;
    align-items: center;
    padding: clamp(15px, calc(1.6vw + 9px), 25px) clamp(18px, calc(1.92vw + 10.8px), 30px);
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.05) 0%, rgba(217, 70, 239, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vision-modal-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #fff;
    border-radius: var(--radius-max);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vision-modal-title {
    flex-grow: 1;
}

.vision-modal-title h4 {
    display: inline-block;
    font-family: var(--font-en);
    font-size: clamp(1.5rem, calc(0.48vw + 1.32rem), 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
}

.vision-modal-title a {
    display: flex;
    gap: 0.3em;
    align-items: center;
    width: fit-content;
    font-family: var(--font-en);
    font-size: clamp(1.3rem, calc(0.32vw + 1.18rem), 1.5rem);
    font-weight: 700;
    color: var(--color-text-light);
    transition: color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
    .vision-modal-title a:hover {
        color: var(--color-accent);
    }
}

.x-icon-small {
    width: 14px;
    height: 14px;
    padding: 2px;
    background-color: var(--color-text-light);
    border-radius: 4px;
    fill: #fff;
    transition: background-color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
    .vision-modal-title a:hover .x-icon-small {
        background-color: var(--color-accent);
    }
}

.vision-modal-body {
    flex-grow: 1;
    padding: clamp(18px, calc(1.92vw + 10.8px), 30px);
    overflow-y: auto;
}

.vision-modal-body p {
    margin-bottom: 1.3em;
    font-size: clamp(1.3rem, calc(0.32vw + 1.18rem), 1.5rem);
    line-height: 1.8;
    text-align: left;
}

.vision-modal-body p:last-child {
    margin: 0;
}

.vision-modal-footer {
    padding: clamp(12px, calc(1.28vw + 7.2px), 20px) clamp(18px, calc(1.92vw + 10.8px), 30px);
    font-family: var(--font-main);
    font-size: clamp(1.2rem, calc(0.32vw + 1.08rem), 1.4rem);
    color: var(--color-text-light);
    text-align: right;
    background-color: rgba(0, 0, 0, 0.02);
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------------------------
   14. Funding Page Specific
   -------------------------------------------------------------------------- */
.funding-qr {
    box-sizing: content-box;
    width: clamp(96px, calc(5.12vw + 76.8px), 128px);
    height: clamp(96px, calc(5.12vw + 76.8px), 128px);
    padding: clamp(12px, calc(0.64vw + 9.6px), 16px);
    margin: clamp(19px, calc(2.08vw + 11.2px), 32px) auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.funding-qr img {
    display: block;
    width: 100%;
    height: 100%;
}

.address-box {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: clamp(10px, calc(0.96vw + 6.4px), 16px);
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.address-hash {
    font-family: var(--font-mono);
    font-size: clamp(12px, calc(0.48vw + 10.2px), 15px);
    line-height: 1.4;
    color: var(--color-text);
    text-align: left;
    word-break: break-all;
}

.copy-btn {
    flex-shrink: 0;
    padding: clamp(6px, calc(0.32vw + 4.8px), 8px) clamp(10px, calc(0.96vw + 6.4px), 16px);
    margin-left: auto;
    font-family: var(--font-en);
    font-size: clamp(12px, calc(0.32vw + 10.8px), 14px);
    color: #fff;
    background: var(--grad-magic-135);
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (hover: hover) and (pointer: fine) {
    .copy-btn:hover {
        opacity: 0.9;
    }
}

.token-list-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
}

.token-contract-item {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(8px, calc(0.64vw + 5.6px), 12px);
    text-align: left;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.token-contract-item.hot-token {
    border-color: var(--color-accent);
}

.token-contract-symbol {
    font-family: var(--font-en);
    font-size: clamp(14px, calc(0.16vw + 13.4px), 15px);
    font-weight: 700;
    color: var(--color-accent);
}

.token-contract-address {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-light);
    word-break: break-all;
}

.funding-subtitle {
    display: flex;
    gap: clamp(5px, calc(0.48vw + 3.2px), 8px);
    align-items: center;
    padding-bottom: 6px;
    margin: 2.6em 0 1.3em;
    font-size: clamp(1.6rem, calc(0.32vw + 1.48rem), 1.8rem);
    font-weight: 700;
    color: var(--color-text);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

.funding-subtitle::before {
    display: inline-block;
    width: 4px;
    height: 1em;
    content: '';
    background: linear-gradient(to bottom, var(--color-accent), var(--color-secondary));
    border-radius: 2px;
}

.token-title-wrapper {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.hot-badge {
    display: inline-block;
    padding: 3px 6px;
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.05em;
    background: var(--grad-magic-135);
    border-radius: 4px;
    animation: pulse-hot 2s infinite;
}

@keyframes pulse-hot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0.4);
    }

    70% {
        box-shadow: 0 0 0 4px rgba(255, 159, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 28, 0);
    }
}

.token-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.token-received {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100px;
    padding: 2px 10px;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text);
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.1) 0%, rgba(217, 70, 239, 0.1) 100%);
    border-radius: var(--radius-max);
}

.token-received::before {
    font-size: 10px;
    font-weight: 400;
    color: var(--color-text-light);
    content: '1 NFT =';
}

.rates-timestamp {
    margin: 0.8em 0 0;
    font-size: clamp(11px, calc(0.32vw + 9.8px), 13px);
    color: var(--color-text-light);
    text-align: right;
}

.funding-tips {
    position: relative;
    padding: clamp(16px, calc(0.64vw + 13.6px), 20px);
    margin-top: clamp(30px, calc(0.96vw + 26.4px), 36px);
    text-align: left;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 159, 28, 0.2);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.funding-tips-label {
    position: absolute;
    top: 0;
    left: clamp(16px, calc(0.96vw + 12.4px), 24px);
    display: flex;
    align-items: center;
    padding: 0.2em 0.8em;
    font-family: var(--font-en);
    font-size: clamp(12px, calc(0.16vw + 11.4px), 13px);
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    background-color: #fff;
    border: 1px solid rgba(255, 159, 28, 0.2);
    border-radius: var(--radius-max);
    transform: translateY(-50%);
}

.funding-tips ul {
    padding-left: clamp(16px, calc(0.32vw + 14.8px), 18px);
    margin: 0;
    font-size: clamp(1.2rem, calc(0.16vw + 1.14rem), 1.3rem);
    line-height: 1.6;
    color: var(--color-text-light);
}

.funding-tips li {
    margin-bottom: 0.6em;
}

.funding-tips li:last-child {
    margin-bottom: 0;
}

.funding-caution {
    padding: clamp(18px, calc(0.96vw + 14.4px), 24px);
    text-align: left;
    background-color: rgba(255, 255, 255, 0.6);
    border-left: 4px solid var(--color-attention);
    border-radius: 8px;
}

.funding-caution svg {
    flex-shrink: 0;
    width: clamp(1.8rem, calc(0.32vw + 1.68rem), 2rem);
    height: clamp(1.8rem, calc(0.32vw + 1.68rem), 2rem);
}

.funding-caution h3 {
    display: flex;
    gap: 0.4em;
    align-items: center;
    margin-block: 0 0.9em;
    font-size: clamp(1.4rem, calc(0.32vw + 1.28rem), 1.6rem);
    color: var(--color-attention);
}

.funding-caution ul {
    padding-left: clamp(16px, calc(0.32vw + 14.8px), 18px);
    margin: 0;
    font-size: clamp(1.3rem, calc(0.16vw + 1.24rem), 1.4rem);
    line-height: 1.6;
    color: var(--color-text-light);
}

.funding-caution li {
    margin-bottom: 0.6em;
}

.funding-caution li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Responsive UI Overview Start!!
   ========================================================================== */
/* --------------------------------------------------------------------------
   Vision Modal Mobile UI
   -------------------------------------------------------------------------- */
@media (max-width: 480px) and (orientation: portrait) {
    .vision-modal-content {
        max-width: none;
        max-height: none;
    }
}

/* --------------------------------------------------------------------------
   Wide Screen Side Texts (1600px+)
   -------------------------------------------------------------------------- */
@media (min-width: 1600px) {
    .side-margin-text {
        display: block;
    }

    .side-margin-text span {
        font-size: 20px;
    }

    .side-text-left {
        left: calc((100vw - var(--site-max-width) - 40px) / 4);
        transform: translate(-50%, -50%) rotate(-90deg);
    }

    .side-text-right {
        right: calc((100vw - var(--site-max-width) - 40px) / 4);
        transform: translate(50%, -50%) rotate(90deg);
    }
}

/* --------------------------------------------------------------------------
   Hide sun-moon motif on narrower PC screens
   -------------------------------------------------------------------------- */
@media (max-width: 1280px) {
    .sun-moon {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Mobile / Tablet Overrides (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

    /* Header / Nav (Mobile Bottom Navigation) */
    .global-nav-wrapper {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        z-index: 8500;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        height: 64px;
        pointer-events: auto;
        background-color: rgba(255, 255, 255, 0.95);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    #menuTrigger,
    #btnFundingTop,
    .nav-btn-float {
        position: static;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        margin: 0;
        transform: none !important;
    }

    @media (hover: hover) and (pointer: fine) {

        #menuTrigger:hover,
        #btnFundingTop:hover,
        .nav-btn-float:hover {
            transform: scale(1.03) !important;
        }
    }

    #menuTrigger:active,
    #btnFundingTop:active,
    .nav-btn-float:active {
        transform: scale(0.95) !important;
    }

    #menuTrigger {
        flex-shrink: 0;
        order: 3;
    }

    #menuTrigger .menu-circle {
        gap: 3px;
    }

    #menuTrigger.active .menu-circle span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    #menuTrigger.active .menu-circle span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    #menuTrigger .menu-circle span {
        width: 18px;
        height: 2px;
    }

    .nav-container {
        position: static;
        display: flex;
        flex-direction: row;
        gap: clamp(10px, calc(3.56vw - 3.4px), 24px);
        order: 2;
        width: auto;
    }

    .nav-btn-float .nav-circle {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .icon-home-img {
        width: 20px;
        height: 20px;
    }

    /* Labels Hidden (HOME, PREV, NEXT) */
    .nav-btn-float .nav-float-label {
        display: none;
    }

    /* Cat Icon (Funding) Label Right Config */
    #btnFundingTop {
        display: flex;
        flex-direction: row-reverse;
        gap: clamp(8px, calc(1.02vw + 4.2px), 12px);
        align-items: center;
        order: 1;
    }

    #btnFundingTop .funding-label {
        position: static;
        display: block;
        padding: 3px 6px 2px 8px;
        font-size: 11px;
        white-space: nowrap;
        opacity: 1;
        transform: none;
    }

    /* Disable Styles (Opacity instead of Hidden) */
    .nav-container.state-top .nav-home,
    .nav-container.state-top .nav-prev {
        visibility: visible;
        pointer-events: none;
        opacity: 0.3;
        transform: none;
    }

    /* Immersive Overlay Menu & Vision Modal (Mobile Adjustment) */
    #immersiveMenu {
        height: calc(100dvh - 64px);
    }

    /* Section Min-Height Adjustment for Bottom Nav */
    .hero-section,
    .concept-section,
    .gallery-section,
    .vision-section,
    .funding-section,
    .resonance-section,
    .roadmap-section,
    .team-section,
    .faq-section {
        min-height: calc(100dvh - 64px);
    }

    /* Resonance Section */
    .resonance-body {
        flex-direction: column;
        text-align: center;
    }

    .resonance-icon-wrapper {
        padding: 0;
        border-right: none;
    }

    /* Footer */
    footer {
        background-position: center calc(100% - 64px);
    }

    .footer-bottom {
        padding: 0 0 24px;
        margin: 0 0 64px;
    }
}

/* --------------------------------------------------------------------------
   Tablet Overrides (481px - 768px)
   -------------------------------------------------------------------------- */
@media (min-width: 481px) and (max-width: 768px) {
    #menuTrigger {
        display: flex;
        flex-direction: row;
        gap: clamp(8px, calc(1.02vw + 4.2px), 12px);
        align-items: center;
    }

    #menuTrigger .menu-label {
        position: static;
        display: block;
        padding: 3px 8px;
        font-size: 11px;
        font-weight: bold;
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   Mobile Overrides (Max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {

    /* Hide hover label on mobile bottom nav */
    #menuTrigger .menu-label {
        display: none;
    }

    /* Add simple bottom border instead */
    .concept-headline,
    .vision-headline,
    .funding-headline,
    .resonance-card h3 {
        padding: 0 0 8px;
        border-bottom: 1px dashed var(--color-accent);
    }

    /* Remove decorative borders from headlines */
    .concept-headline::before,
    .concept-headline::after,
    .vision-headline::before,
    .vision-headline::after,
    .funding-headline::before,
    .funding-headline::after,
    .resonance-card h3::before,
    .resonance-card h3::after {
        display: none;
    }

    /* Roadmap Section Mobile Layout */
    .resonance-list {
        gap: clamp(28px, calc(3.81vw + 13.7px), 32px);
    }

    /* Roadmap Section Mobile Layout */
    .roadmap-visual-box {
        flex-wrap: wrap;
    }

    .roadmap-avatar {
        order: 1;
    }

    .roadmap-visual-text {
        order: 2;
        width: 100%;
    }

    /* Team Section Mobile Layout */
    .team-list {
        gap: clamp(28px, calc(3.81vw + 13.7px), 32px);
    }

    .team-list-item {
        flex-direction: column;
        gap: clamp(14px, calc(1.9vw + 6.9px), 16px);
        align-items: center;
        padding: 0;
        background: none;
        border: none;
        box-shadow: none;
    }

    .item-left {
        flex: auto;
        flex-direction: row;
        gap: clamp(16px, calc(3.81vw + 1.7px), 20px);
        align-items: center;
        justify-content: center;
        padding: 0;
        border-right: none;
    }

    .team-avatar-large {
        margin-bottom: 0;
        border: 3px solid rgba(255, 255, 255, 0.8);
    }

    .team-info {
        align-items: flex-start;
        width: clamp(160px, calc(19.05vw + 88.6px), 180px);
        padding: 0 clamp(14px, calc(1.9vw + 6.9px), 16px);
        text-align: left;
        border-inline: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 10px;
    }

    .team-info h3 {
        font-size: clamp(1.5rem, calc(1.9vw + 0.79rem), 1.7rem);
        color: #fff;
    }

    .team-info a {
        font-size: clamp(14px, calc(1.9vw + 6.9px), 16px);
    }

    .item-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: clamp(16px, calc(3.81vw + 1.7px), 20px);
        background: var(--bg-cut-corner);
        border: none;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
    }
}

/* --------------------------------------------------------------------------
   Short Screen Overrides (Max-height: 674px)
   -------------------------------------------------------------------------- */
@media (max-height: 674px) {
    #immersiveMenu {
        width: 100%;
        padding: clamp(24px, calc(6.15dvh - 5.5px), 36px) clamp(24px, calc(1.92vw + 16.8px), 36px);
    }

    .immersive-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: clamp(14px, calc(0.32vw + 12.8px), 16px);
        column-gap: clamp(14px, calc(0.32vw + 12.8px), 16px);
    }

    #immersiveMenu li.menu-home,
    #immersiveMenu li.menu-close-item {
        grid-column: 1 / -1;
    }

    /* Add a border to FAQ items to match Funding items and balance the 2-column layout */
    #immersiveMenu li:nth-last-child(3) {
        padding-bottom: clamp(14px, calc(0.32vw + 12.8px), 16px);
        border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    }
}