* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
        }

        /* Inline wordmark: inherit color; small “15”; baseline row + slight lift so it reads superscript-like */
        .brand-15blue {
            display: inline-flex;
            align-items: baseline;
            flex-wrap: nowrap;
            gap: 0;
            line-height: inherit;
            font-weight: inherit;
            color: inherit;
            white-space: nowrap;
            vertical-align: baseline;
        }
        .brand-15blue .brand-15sup,
        .brand-15blue .brand-blue-part {
            font-weight: inherit;
            margin: 0;
            line-height: inherit;
        }
        .brand-15blue .brand-15sup {
            font-size: 0.625em;
            flex: 0 0 auto;
            margin-right: -0.055em;
            line-height: 1;
            position: relative;
            /* top em = .brand-15sup font-size (0.625× inherited text) → scales with paragraph size/weight; same stack everywhere ≈ same look */
            top: -0.42em;
        }
        .brand-15blue .brand-blue-part {
            flex: 0 0 auto;
            font-size: 1em;
        }
    
        html {
            background-color: #2C56B5; /* Bottom gradient color */
            height: 100%;
            overflow-x: hidden;
        }
    
        body {
            min-height: 100vh;
            position: relative;
            pointer-events: all;
            overscroll-behavior: none;
            -webkit-overflow-scrolling: touch;
        }
    
        body, .content-wrapper {
            min-height: 100vh;
            position: relative;
            pointer-events: all;
        }
    
        .gradient-backdrop, .background-image, canvas, .water-shimmer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
    
        .gradient-backdrop {
            background: linear-gradient(13.9deg, #1565C0, #0A1F4A);
            z-index: -2;
        }

        .water-shimmer {
            background: linear-gradient(
                135deg,
                transparent 0%,
                rgba(255, 255, 255, 0.03) 25%,
                transparent 50%,
                rgba(0, 0, 0, 0.05) 75%,
                transparent 100%
            );
            background-size: 200% 200%;
            animation: waterShimmer 15s ease-in-out infinite;
            z-index: -1;
            opacity: 0.6;
        }

        @keyframes waterShimmer {
            0% {
                background-position: 0% 0%;
            }
            25% {
                background-position: 100% 50%;
            }
            50% {
                background-position: 100% 100%;
            }
            75% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 0% 0%;
            }
        }
    
        .background-image {
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70%;
            max-width: 500px;
            min-width: 300px;
            aspect-ratio: 1;
            background: url('15Blue-backgr-2.png') center/contain no-repeat;
            opacity: 0.10;
            z-index: -1;
        }
    
        .content-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 1;
        }
    
        .logo-container {
            margin-top: 5vh;
            text-align: center;
        }
    
        .logo {
            height: 65px;
            width: auto;
            filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.6));
            opacity: 0;
            animation: fadeInWithBlur 1s ease forwards, pulse 4s ease-in-out infinite;
        }
    
        @keyframes fadeInWithBlur {
            0% { opacity: 0; filter: blur(10px) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.6)); transform: translateY(20px); }
            100% { opacity: 1; filter: blur(0) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.6)); transform: translateY(0); }
        }
    
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.01); }
        }
    
        .subtitle, .content-card h2, .content-card h3, .content-card-2 h2, .content-card-2 h3 {
            text-align: center;
            background: linear-gradient(135deg, #FFFFFF 0%, #E8F4F8 50%, #D0E8F0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
            letter-spacing: -0.02em;
            font-weight: 600;
        }

        .content-card h2, .content-card-2 h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            margin-top: 0;
        }

        .content-card h3, .content-card-2 h3 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            margin-top: 0.5rem;
            font-weight: 500;
        }

        .subtitle {
            margin-top: 2rem;
            font-size: 1.6rem;
            max-width: 900px;
            padding: 0 2rem;
            font-weight: 600;
            min-height: 0;
            line-height: 1.6;
        }

        .subtitle p {
            margin-top: 1.5rem;
            opacity: 0.9;
            text-align: center;
            color: rgba(255, 255, 255, 0.96);
            background: none;
            -webkit-background-clip: border-box;
            background-clip: border-box;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.96);
        }

        .whitepaper-link {
            text-align: center;
            margin: 2rem auto;
            max-width: 600px;
            padding: 0 2rem;
        }

        .whitepaper-link a {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            color: white;
            text-decoration: none;
            font-size: 1.15rem;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            letter-spacing: 0.01em;
        }

        /* Value Proposition Cards */
        .vp-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .vp-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px) saturate(180%);
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .vp-expand-cue {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            right: 0.95rem;
            bottom: 0.8rem;
            width: 1.1rem;
            height: 1.1rem;
            opacity: 1;
            z-index: 5;
            pointer-events: none;
            transition: opacity 0.2s ease;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }

        .vp-expand-cue::before {
            content: '';
            display: block;
            width: 0.7rem;
            height: 0.7rem;
            border-right: 2.4px solid rgba(255, 255, 255, 0.92);
            border-bottom: 2.4px solid rgba(255, 255, 255, 0.92);
            transform: rotate(45deg) translateZ(0);
            -webkit-transform: rotate(45deg) translateZ(0);
            transform-origin: center;
            -webkit-transform-origin: center;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .vp-card:hover .vp-expand-cue {
            opacity: 1;
        }

        .vp-card:hover .vp-expand-cue::before {
            border-right-color: rgba(255, 255, 255, 1);
            border-bottom-color: rgba(255, 255, 255, 1);
            transform: translateY(1px) rotate(45deg) translateZ(0);
            -webkit-transform: translateY(1px) rotate(45deg) translateZ(0);
        }

        .vp-card.active .vp-expand-cue::before {
            transform: rotate(-135deg) translateZ(0);
            -webkit-transform: rotate(-135deg) translateZ(0);
        }

        .vp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .vp-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3),
                        inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .vp-card:hover::before {
            opacity: 0.8;
        }

        .vp-number {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #FFFFFF 0%, #E8F4F8 50%, #D0E8F0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .vp-number.counting {
            animation: numberPulse 0.5s ease-in-out;
        }

        @keyframes numberPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .vp-icon {
            font-size: 4rem;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .vp-label {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .vp-detail {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            margin-top: 0.5rem;
        }

        /* Features Section */
        .features-section {
            margin: 3rem 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 2rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px) saturate(180%);
            border: 1.5px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .feature-item:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.12);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 0.75rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            letter-spacing: -0.01em;
        }

        .feature-description {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.5;
        }

        /* VP Card Click Handler */
        .vp-card {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .vp-card-wrapper {
            display: flex;
            flex-direction: column;
        }

        /* Dynamic Explanation Styles */
        .vp-explanation-section-desktop {
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .vp-explanation {
            display: none;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 2rem;
            margin-top: 1rem;
            animation: fadeInUp 0.4s ease-out;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out, margin 0.4s ease-out;
        }

        .vp-explanation.active {
            display: block;
            max-height: 2000px;
        }
        
        /* Override language visibility rules when explanation is active */
        body:not(.japanese) .vp-explanation.active[data-lang="en"] {
            display: block !important;
        }
        
        body.japanese .vp-explanation.active[data-lang="ja"] {
            display: block !important;
        }
        
        /* Ensure inactive explanations respect language rules - always hidden */
        body:not(.japanese) .vp-explanation[data-lang="ja"]:not(.active) {
            display: none !important;
        }
        
        body.japanese .vp-explanation[data-lang="en"]:not(.active) {
            display: none !important;
        }
        
        /* Critical: Hide inactive Japanese explanations even when body.japanese sets them to display */
        body.japanese .vp-explanation[data-lang="ja"]:not(.active) {
            display: none !important;
        }

        .vp-explanation p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 1rem 0;
        }

        .vp-explanation p:last-child {
            margin-bottom: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .vp-card.active {
            border-color: rgba(255, 255, 255, 0.5) !important;
            background: rgba(255, 255, 255, 0.15) !important;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3),
                        inset 0 1px 0 rgba(255, 255, 255, 0.5),
                        0 0 0 2px rgba(255, 255, 255, 0.2) !important;
            transform: translateY(-2px);
        }

        /* Desktop: Show explanations in separate section below */
        @media (min-width: 769px) {
            .vp-card-wrapper .vp-explanation {
                display: none !important;
            }

            .vp-explanation-section-desktop {
                display: block;
            }

            .vp-explanation-section-desktop .vp-explanation {
                display: none;
            }

            .vp-explanation-section-desktop .vp-explanation.active {
                display: block;
                max-height: none;
            }
            
            /* Override language visibility for active desktop explanations */
            body:not(.japanese) .vp-explanation-section-desktop .vp-explanation.active[data-lang="en"] {
                display: block !important;
            }
            
            body.japanese .vp-explanation-section-desktop .vp-explanation.active[data-lang="ja"] {
                display: block !important;
            }
            
            /* Ensure inactive desktop explanations respect language rules */
            body:not(.japanese) .vp-explanation-section-desktop .vp-explanation[data-lang="ja"]:not(.active) {
                display: none !important;
            }
            
            body.japanese .vp-explanation-section-desktop .vp-explanation[data-lang="en"]:not(.active) {
                display: none !important;
            }
            
            /* Critical: Hide inactive Japanese desktop explanations even when body.japanese sets them to display */
            body.japanese .vp-explanation-section-desktop .vp-explanation[data-lang="ja"]:not(.active) {
                display: none !important;
            }
        }

        /* Mobile: Show explanations directly under each card */
        @media (max-width: 768px) {
            .vp-explanation-section-desktop {
                display: none;
            }

            .vp-card-wrapper .vp-explanation {
                order: 2;
            }

            .vp-explanation.active {
                display: block;
                padding: 1.5rem;
                margin-top: 1rem;
            }
            
            /* Override language visibility for active mobile explanations */
            body:not(.japanese) .vp-card-wrapper .vp-explanation.active[data-lang="en"] {
                display: block !important;
            }
            
            body.japanese .vp-card-wrapper .vp-explanation.active[data-lang="ja"] {
                display: block !important;
            }
            
            /* Ensure inactive mobile explanations respect language rules */
            body:not(.japanese) .vp-card-wrapper .vp-explanation[data-lang="ja"]:not(.active) {
                display: none !important;
            }
            
            body.japanese .vp-card-wrapper .vp-explanation[data-lang="en"]:not(.active) {
                display: none !important;
            }
            
            /* Critical: Hide inactive Japanese mobile explanations even when body.japanese sets them to display */
            body.japanese .vp-card-wrapper .vp-explanation[data-lang="ja"]:not(.active) {
                display: none !important;
            }
        }

        @media (max-width: 768px) {
            .features-section {
                margin: 2rem 0;
                padding: 0 1.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                margin-top: 1.5rem;
            }

            .feature-item {
                padding: 1.5rem 1.25rem;
            }

            .feature-icon {
                font-size: 2.5rem;
                margin-bottom: 0.75rem;
            }

            .feature-title {
                font-size: 1.1rem;
            }

            .feature-description {
                font-size: 0.9rem;
            }

            .vp-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                margin: 2rem 0;
            }

            .vp-card {
                padding: 2rem 1.5rem;
            }

            .vp-number {
                font-size: 3.5rem;
            }

            .vp-icon {
                font-size: 3rem;
            }

            .vp-label {
                font-size: 1rem;
            }
        }

        .whitepaper-link a:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.45);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .whitepaper-link a::after {
            content: '→';
            font-size: 1.38rem;
            transition: transform 0.3s ease;
        }

        .whitepaper-link a:hover::after {
            transform: translateX(4px);
        }

        .cta-caption {
            text-align: center;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.75rem;
            letter-spacing: 0.01em;
            margin-top: 0.25rem;
        }

        .whitepaper-caption {
            text-align: center !important;
            margin: 0 0 0.8rem;
            color: rgba(255, 255, 255, 0.86);
            font-size: 0.98rem !important;
            line-height: 1.45;
        }

        /* Demo Button Styles */
        .demo-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            letter-spacing: 0.01em;
            margin: 0.5rem;
        }

        .demo-button:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.45);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.3);
            color: white;
        }

        .demo-button:active {
            transform: translateY(-1px) scale(0.98);
        }

        .policy-note-ja {
            margin: 1rem auto 0;
            max-width: 920px;
            padding: 1.5rem 1.6rem 1.35rem;
            border-radius: 16px;
            text-align: left;
            border: 1px solid rgba(0, 212, 255, 0.35);
            background: linear-gradient(135deg, rgba(7, 18, 43, 0.88), rgba(24, 48, 94, 0.82));
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
        }

        .policy-note-kicker {
            margin-bottom: 0.55rem;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #7fdcff;
        }

        .policy-note-ja h3 {
            margin: 0 0 0.8rem;
            font-size: 1.26rem;
            line-height: 1.5;
            font-weight: 700;
            color: #c9eeff;
            letter-spacing: 0.02em;
        }

        .policy-note-ja p {
            margin: 0;
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.94);
        }

        .policy-note-teaser {
            color: rgba(255, 255, 255, 0.96);
        }

        .policy-note-details {
            margin-top: 1rem;
            padding-top: 0.95rem;
            border-top: 1px solid rgba(255, 255, 255, 0.16);
        }

        .policy-note-details summary {
            list-style: none;
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            font-size: 0.96rem;
            font-weight: 700;
            color: #8ee7ff;
            user-select: none;
        }

        .policy-note-details summary::-webkit-details-marker {
            display: none;
        }

        .policy-note-readmore-open {
            display: none;
        }

        .policy-note-details[open] .policy-note-readmore-closed {
            display: none;
        }

        .policy-note-details[open] .policy-note-readmore-open {
            display: inline;
        }

        .policy-note-body {
            margin-top: 1rem;
            display: grid;
            gap: 0.95rem;
        }

        .policy-note-body p {
            font-size: 0.98rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.93);
        }

        .policy-note-body strong {
            color: #ffffff;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .policy-note-ja {
                padding: 1.2rem 1.15rem 1.1rem;
            }

            .policy-note-ja h3 {
                font-size: 1.08rem;
                line-height: 1.55;
            }

            .policy-note-ja p,
            .policy-note-body p {
                font-size: 0.95rem;
                line-height: 1.85;
            }
        }

        .subtitle h3 {
            display: inline-block;
            font-size: 1.7rem;
            background: linear-gradient(135deg, #FFFFFF 0%, #E8F4F8 50%, #D0E8F0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            text-align: center;
            letter-spacing: -0.02em;
            font-weight: 600;
            line-height: 1.6;
        }
        
        .content-section {
            margin-top: 2.2rem;
            width: 100%;
            max-width: 1200px;
            padding: 0 2rem;
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }
        
        @media (max-width: 900px) {
            .content-section {
                margin-top: 2.4rem;
            }
        }
    
        .content-card, .content-card-2 {
            background-color: rgba(255, 255, 255, 0.02);
            -webkit-backdrop-filter: blur(30px) saturate(150%);
            backdrop-filter: blur(30px) saturate(150%);
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            color: white;
            overflow: hidden;
            z-index: 2;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            position: relative;
            isolation: isolate;
        }

        .content-card::before, .content-card-2::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 250%;
            height: 250%;
            transform: translate(-50%, -50%);
            background: radial-gradient(
                circle,
                rgba(173, 216, 255, 0.06) 0%,
                rgba(255, 255, 255, 0.12) 15%,
                rgba(173, 216, 255, 0.05) 25%,
                rgba(173, 216, 255, 0.02) 40%,
                transparent 70%
            );
            animation: shimmerRadial 6s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
            border-radius: 50%;
            filter: blur(40px);
            -webkit-filter: blur(40px);
        }

        @keyframes shimmerRadial {
            0% {
                transform: translate(-50%, -50%) scale(0.7);
                opacity: 0.2;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.5;
            }
            100% {
                transform: translate(-50%, -50%) scale(0.7);
                opacity: 0.2;
            }
        }


        .content-card:hover, .content-card-2:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10), 
                        inset 0 1px 0 rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.18);
        }

          /* Apply initial state to content cards */
        .content-card, .content-card-2 {
            transform: translateY(50px);
            transition: transform 0.6s ease-out;
        }

          /* When the element is in view, make it fully visible and reset the transform */
        .content-card.in-view, .content-card-2.in-view {
            transform: translateY(0);
        }

        @keyframes subtleEaseIn {
            0% { transform: translateY(0); }
            100% { transform: translateY(-6px); }
        }

        /* Define a subtle upward translation with a smooth transition */
        .content-card.ease,
        .content-card-2.ease {
        transition: transform 0.3s ease-out;
        transform: translateY(-2px);
        }

        .content-card-2 {
            padding: 3.5rem;
        }
    
        .content-card p, .content-card-2 p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
            line-height: 1.75;
            padding: 0.75rem 0;
            letter-spacing: 0.01em;
            text-align: left;
        }
    
        .content-card a, .content-card-2 a {
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
            z-index: 3;
        }
    
        .content-card a:hover, .content-card-2 a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
    
        .content-card .card-image, .content-card-2 .card-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            display: block;
            margin: 2rem auto;
        }

        .vision-video {
            margin: 2rem auto 0;
            width: 100%;
            max-width: 552px;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
        }

        @media (min-width: 900px) {
            .vision-video {
                max-width: 745px;
            }
        }

        .vision-video iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* Match .screenshot-wrapper sizing inside .product-screenshots-slider */
        .product-features-intro-video {
            margin: 0.75rem auto 2.75rem;
            max-width: 1200px;
            width: 100%;
            box-sizing: border-box;
            padding: 0 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .product-features-intro-video .vision-video {
            margin: 0;
            width: 100%;
            max-width: 552px;
            aspect-ratio: 16 / 9;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
        }

        /* Safari-stable embed sizing for the Bedrock walkthrough video */
        .product-features-intro-video .bedrock-video-embed {
            position: relative;
            width: 100%;
            max-width: 552px;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
        }

        .product-features-intro-video .bedrock-video-embed iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        @media (min-width: 900px) {
            .product-features-intro-video .vision-video {
                max-width: 745px;
            }
            .product-features-intro-video .bedrock-video-embed {
                max-width: 745px;
            }
        }

        @media (max-width: 768px) {
            .product-features-intro-video {
                padding: 0 0.25rem;
            }

            .product-features-intro-video .vision-video {
                max-width: 95vw;
                aspect-ratio: 16 / 9;
            }
            .product-features-intro-video .bedrock-video-embed {
                max-width: 95vw;
            }
        }


        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50%;
            width: 56px;
            height: 56px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        /* Testimonials slider styling */
        .testimonials-slider {
            position: relative;
            max-width: 1200px;
            margin: 3rem auto;
            overflow: hidden;
            border-radius: 24px;
            padding: 0 60px;
            width: 100%;
            box-sizing: border-box;
        }

        .testimonials-container {
            display: flex;
            align-items: flex-start;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            border-radius: 24px;
            will-change: transform;
        }


        .testimonial-slide {
            width: 100%;
            min-width: 100%;
            padding: 0 1.5rem;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            flex-shrink: 0;
        }

        @media (min-width: 900px) {
            .testimonial-slide {
                width: 50%;
                min-width: 50%;
                padding: 0 1rem;
            }
        }

        .testimonial-content {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px) saturate(150%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            width: 100%;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            min-height: auto;
            text-align: left;
        }

        .testimonial-quote {
            font-size: 1.1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            text-align: left;
        }

        .testimonial-quote::before {
            content: '"';
            font-size: 3rem;
            position: absolute;
            top: -0.5rem;
            left: -1rem;
            color: rgba(255, 255, 255, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-quote::after {
            content: '"';
            font-size: 3rem;
            position: absolute;
            bottom: -1.5rem;
            right: -0.5rem;
            color: rgba(255, 255, 255, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-author {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            gap: 1rem;
            width: 100%;
            max-width: 100%;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 0.5rem;
        }

        .testimonial-author img {
            width: 84px;
            height: 84px;
            min-width: 84px;
            min-height: 84px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            filter: grayscale(60%) saturate(40%);
            display: block;
            flex-shrink: 0;
            transition: filter 0.3s ease, transform 0.3s ease;
        }

        .testimonial-author a {
            display: inline-block;
            cursor: pointer;
        }

        .testimonial-author a:hover img {
            filter: grayscale(20%) saturate(80%);
            transform: scale(1.05);
        }

        .testimonial-author-info {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            text-align: left;
            flex-grow: 1;
        }

        .testimonial-author-name {
            font-size: 1rem;
            font-weight: 600;
            color: white;
        }

        .testimonial-author-role {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.3;
        }

        .slider-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
        }

        .slider-nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            order: 2;
            width: 100%;
            padding: 1rem 0 0.5rem 0;
        }

        .testimonials-container {
            order: 1;
            width: 100%;
            margin-bottom: 0;
        }

        .slider-nav {
            position: static;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: white;
            font-size: 1.5rem;
            line-height: 1;
            flex-shrink: 0;
            margin: 0;
            padding: 0;
        }

        .slider-nav:hover:not(:disabled) {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }

        .slider-nav:active:not(:disabled) {
            transform: scale(0.95);
        }

        .slider-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: none;
        }

        .slider-nav#prevBtn,
        .slider-nav#nextBtn {
            position: static;
        }

        .slider-position-container {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 2px;
            margin-top: 1rem;
            overflow: hidden;
            position: relative;
            cursor: default;
            order: 3;
        }

        .slider-position-bar {
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 2px;
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            width: 0%;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .testimonials-slider {
                margin: 2rem auto;
                padding: 0 1rem;
            }

            .testimonial-slide {
                padding: 0 0.25rem;
                width: 100%;
                min-width: 100%;
            }

            .testimonial-content {
                padding: 1.5rem 1rem;
                width: 100%;
                max-width: 100%;
                margin: 0 auto;
            }

            .testimonial-quote {
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 1.25rem;
                padding: 0 0.25rem;
            }

            .testimonial-quote::before {
                font-size: 2.5rem;
                top: -0.3rem;
                left: -0.5rem;
            }

            .testimonial-quote::after {
                font-size: 2.5rem;
                bottom: -1rem;
                right: -0.3rem;
            }

            .testimonial-author {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 0.75rem;
                padding-top: 1rem;
                margin-top: 0.5rem;
            }

            .testimonial-author img {
                width: 96px;
                height: 96px;
                min-width: 96px;
                min-height: 96px;
                margin: 0 auto;
            }

            .testimonial-author-info {
                text-align: center;
                align-items: center;
            }

            .testimonial-author-name {
                font-size: 0.95rem;
            }

            .testimonial-author-role {
                font-size: 0.85rem;
                line-height: 1.3;
            }

            .slider-nav {
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }

            .slider-position-container {
                margin-top: 0.75rem;
            }
        }

        /* Product screenshots slider */
        .product-screenshots-slider {
            position: relative;
            max-width: 1200px;
            margin: 3rem auto;
            overflow: hidden;
            border-radius: 24px;
            width: 100%;
            box-sizing: border-box;
            --screenshot-crop-top: 18px;
        }

        .screenshots-wrapper {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
        }

        .screenshots-nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            order: 2;
            width: 100%;
            padding: 1rem 0 0.5rem 0;
        }

        .screenshots-container {
            order: 1;
            width: 100%;
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .screenshot-slide {
            width: 100%;
            min-width: 100%;
            padding: 0 1rem;
            box-sizing: border-box;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 0;
            position: relative;
        }

        .screenshot-wrapper {
            position: relative;
            width: 100%;
            max-width: 552px;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
            background: rgba(0, 0, 0, 0.1);
            cursor: zoom-in;
        }

        .screenshot-wrapper::after {
            content: "";
            position: absolute;
            inset: -2px;
            pointer-events: none;
            z-index: 3;
            opacity: 0.08;
            mix-blend-mode: soft-light;
            background-image:
                radial-gradient(circle at 22% 34%, rgba(255, 255, 255, 0.12) 0 0.5px, transparent 1px),
                radial-gradient(circle at 68% 58%, rgba(0, 0, 0, 0.14) 0 0.6px, transparent 1px),
                radial-gradient(circle at 47% 76%, rgba(255, 255, 255, 0.1) 0 0.45px, transparent 1px),
                radial-gradient(circle at 38% 24%, rgba(0, 0, 0, 0.12) 0 0.55px, transparent 1px);
            background-size: 180px 180px, 220px 220px, 160px 160px, 200px 200px;
            animation: filmGrainDrift 2.8s steps(16, end) infinite;
        }

        @keyframes filmGrainDrift {
            0% {
                transform: translate3d(0, 0, 0);
                opacity: 0.06;
            }
            20% {
                transform: translate3d(-2px, 1px, 0);
                opacity: 0.09;
            }
            45% {
                transform: translate3d(1px, -2px, 0);
                opacity: 0.07;
            }
            70% {
                transform: translate3d(-1px, 2px, 0);
                opacity: 0.1;
            }
            100% {
                transform: translate3d(2px, -1px, 0);
                opacity: 0.05;
            }
        }

        @media (min-width: 900px) {
            .screenshot-wrapper {
                max-width: 745px;
            }
        }

        .screenshot-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center calc(50% - var(--screenshot-crop-top));
            display: block;
            transition: transform 0.3s ease-out, cursor 0.3s ease;
            user-select: none;
            z-index: 1;
        }

        .screenshot-image.auto-zoom {
            transform-origin: var(--zoom-origin-x, 50%) var(--zoom-origin-y, 50%);
            animation: screenshotKenBurns var(--zoom-duration, 14000ms) linear forwards;
        }

        @keyframes screenshotKenBurns {
            from {
                transform: translate(var(--pan-x-start, 0%), var(--pan-y-start, 0%)) scale(var(--zoom-start, 1.14));
                filter: brightness(0.5) contrast(1.06);
            }
            to {
                transform: translate(var(--pan-x-end, 0%), var(--pan-y-end, 0%)) scale(var(--zoom-end, 1));
                filter: brightness(1) contrast(1);
            }
        }

        .screenshot-caption {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: calc(100% - 3rem);
            max-width: 640px;
            text-align: center;
            font-size: 1.5rem;
            line-height: 1.35;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.98);
            opacity: 0;
            pointer-events: none;
            z-index: 4;
            text-shadow: 0 3px 16px rgba(0, 0, 0, 0.58), 0 0 3px rgba(0, 0, 0, 0.42);
            animation: none;
        }

        .screenshot-slide.active .screenshot-caption {
            opacity: 1;
        }

        .screenshot-caption.cursor-visible::after,
        .vision-item.cursor-visible::after {
            content: " |";
            animation: cursorBlink 1s steps(1, end) infinite;
        }

        @keyframes cursorBlink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }

        .screenshot-wrapper.zoomed .screenshot-image {
            cursor: zoom-out;
            animation: none !important;
        }

        .screenshot-wrapper.zoomed {
            cursor: zoom-out;
            overflow: auto;
        }

        .screenshots-nav {
            position: static;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: white;
            font-size: 1.5rem;
            line-height: 1;
            flex-shrink: 0;
            margin: 0;
            padding: 0;
        }

        .screenshots-nav:hover:not(:disabled) {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }

        .screenshots-nav:active:not(:disabled) {
            transform: scale(0.95);
        }

        .screenshots-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: none;
        }

        .screenshots-position-container {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 2px;
            margin-top: 1rem;
            overflow: hidden;
            position: relative;
            cursor: default;
            order: 3;
        }

        .screenshots-position-bar {
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 2px;
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            width: 0%;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .product-screenshots-slider {
                margin: 2rem auto;
                padding: 0 0.25rem;
            }

            .screenshot-slide {
                padding: 0;
                opacity: 0.22;
                transition: opacity 0.45s ease;
            }

            .screenshot-slide.active {
                opacity: 1;
            }

            .screenshot-wrapper {
                max-width: 95vw;
                aspect-ratio: 9 / 16;
            }

            .screenshot-wrapper::before {
                content: "";
                position: absolute;
                inset: 0;
                pointer-events: none;
                z-index: 2;
                background: rgba(0, 0, 0, 0.22);
            }

            .screenshots-nav {
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
            }

            .screenshots-position-container {
                margin-top: 0.75rem;
            }

            .screenshot-caption {
                width: calc(100% - 2.6rem);
                padding: 0 0.65rem;
                font-size: 1.34rem;
            }
        }

        /* Vision image with overlaid items */
        .vision-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .vision-image-container img {
            animation: visionPulse 4s ease-in-out infinite;
        }

        @keyframes visionPulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.0025);
                opacity: 0.85;
            }
        }

        .vision-items-overlay {
            position: absolute;
            top: 43%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 350px;
            z-index: 2;
        }

        .vision-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 0;
            background: linear-gradient(90deg, #FFFFFF 0%, #E8F4F8 25%, #D0E8F0 50%, #E8F4F8 75%, #FFFFFF 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            border: none;
            border-radius: 0;
            text-align: center;
            font-size: 1.6rem;
            font-weight: 700;
            text-shadow: none;
            box-shadow: none;
            opacity: 0;
            animation: fadeInOut 12s infinite, gradientShift 8s ease-in-out infinite;
            white-space: normal;
            line-height: 1.5;
            transform-origin: center center;
        }

        /* Stagger the animations for each item - overlapping transitions */
        .vision-item:nth-child(1) {
            animation-delay: 0s;
        }

        .vision-item:nth-child(2) {
            animation-delay: 2s;
        }

        .vision-item:nth-child(3) {
            animation-delay: 4s;
        }

        .vision-item:nth-child(4) {
            animation-delay: 6s;
        }

        .vision-item:nth-child(5) {
            animation-delay: 8s;
        }

        .vision-item:nth-child(6) {
            animation-delay: 10s;
        }

        @keyframes fadeInOut {
            0% {
                opacity: 0;
                transform: translateY(0) scale(0.97);
            }
            0.5% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            14% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            16% {
                opacity: 0;
                transform: translateY(0) scale(1);
            }
            16.01%, 100% {
                opacity: 0;
                transform: translateY(0) scale(0.97);
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Language visibility for vision items */
        .vision-items-overlay[data-lang="ja"] {
            display: none !important;
        }

        body.japanese .vision-items-overlay[data-lang="en"] {
            display: none !important;
        }

        body.japanese .vision-items-overlay[data-lang="ja"] {
            display: block !important;
        }

        /* Slower pacing for Japanese vision captions */
        .vision-items-overlay[data-lang="ja"] .vision-item {
            animation-duration: 18s, 8s;
        }

        .vision-items-overlay[data-lang="ja"] .vision-item:nth-child(1) {
            animation-delay: 0s, 0s;
        }

        .vision-items-overlay[data-lang="ja"] .vision-item:nth-child(2) {
            animation-delay: 3s, 0s;
        }

        .vision-items-overlay[data-lang="ja"] .vision-item:nth-child(3) {
            animation-delay: 6s, 0s;
        }

        .vision-items-overlay[data-lang="ja"] .vision-item:nth-child(4) {
            animation-delay: 9s, 0s;
        }

        .vision-items-overlay[data-lang="ja"] .vision-item:nth-child(5) {
            animation-delay: 12s, 0s;
        }

        .vision-items-overlay[data-lang="ja"] .vision-item:nth-child(6) {
            animation-delay: 15s, 0s;
        }

        /* New styling for the partner section */
        .partner-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            justify-items: center;
            align-items: start;
            gap: 2rem;
            margin-top: 2rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 1rem;
        }

        .partner {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 280px;
            text-align: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 1.5rem 1rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-sizing: border-box;
        }

        /* Updated styling for partner description text */
        .partner p {
            display: -webkit-box;
            -webkit-line-clamp: 3;       /* Allow up to 3 lines for better readability */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.5;
            margin: 0;
            width: 100%;
            max-width: 100%;
            word-wrap: break-word;
            padding: 0;
        }

        .partner:hover {
            transform: translateY(-6px) scale(1.03);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .partner img {
            width: 128px;
            height: 128px;
            max-width: 128px;
            margin-bottom: 1rem;
            padding: 0.75rem;
            border-radius: 50%;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.06);
            object-fit: contain;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
            transition: filter 0.3s ease, transform 0.3s ease;
        }

        .partner:hover img {
            filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
            transform: scale(1.05);
        }

        .partner img.partner-logo-tai {
            /* Keep bubble size identical; shrink only the logo content area */
            padding: 1.05rem;
        }
    
        .back-to-top:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.35);
        }
    
        .back-to-top.visible {
            display: flex;
        }
    
        .arrow-up {
            border: solid white;
            border-width: 0 3px 3px 0;
            display: inline-block;
            padding: 6px;
            transform: rotate(-135deg);
        }
    
        @media (max-width: 768px) {
            .vision-item {
                padding: 0;
                font-size: 1.38rem;
                font-weight: 700;
            }

            .vision-items-overlay {
                top: 43%;
                width: 85%;
                max-width: 300px;
            }

            .background-image {
                top: 35%;
                transform: translate(-50%, -50%);
                width: 85%;
                opacity: 0.2;
            }
            .subtitle { 
                font-size: 1.3rem; 
                min-height: 0;
            }
            .subtitle h3 {
                font-size: 1.3rem;
            }
            .subtitle p {
                font-size: 1rem;
                margin-top: 1rem;
            }
            .logo { width: clamp(200px, 62vw, 320px); height: auto; }
            .language-selector { 
                top: auto;
                bottom: calc(env(safe-area-inset-bottom, 0px) + 0.9rem);
                left: 0.9rem;
                transform: scale(0.82);
                transform-origin: bottom left;
                padding: 0.4rem 0.75rem;
                min-height: 36px;
                z-index: 1100;
            }
            .language-selector:hover {
                transform: scale(0.82);
                transform-origin: bottom left;
            }
            .language-selector:active,
            .language-selector:focus {
                transform: scale(0.82);
                transform-origin: bottom left;
                outline: none;
            }
            .usecase-selector-container {
                transform: none;
                margin: 1.2rem auto 1.6rem;
            }
            .usecase-option {
                font-size: 0.72rem;
                padding: 0.4rem 0.5rem;
            }
            .whitepaper-link a {
                font-size: 1rem;
                padding: 0.875rem 1.5rem;
            }
            .cta-caption {
                font-size: 1.66rem;
            }
            .whitepaper-caption {
                font-size: 0.9rem !important;
            }
            .content-card, .content-card-2 {
                padding: 2rem 1.5rem;
                border-radius: 20px;
            }
            .content-card h2, .content-card-2 h2 {
                font-size: 2rem;
            }
            .content-card h3, .content-card-2 h3 {
                font-size: 1.5rem;
            }
            .partner-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 1.5rem;
                padding: 0 0.5rem;
            }
            .partner {
                max-width: 100%;
                padding: 1.25rem 0.875rem;
            }
            .partner p {
                -webkit-line-clamp: 4;
                font-size: 0.95rem;
            }
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.4rem;
            margin: 1.5rem 0 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-grid > div,
        .video-grid > div > div {
            width: 100%;
        }

        @media (max-width: 900px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 1.1rem;
            }
        }

        .usecase-brief {
            max-width: 920px;
            margin: 1.2rem auto 0.9rem;
            padding: 1.25rem 1.4rem;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.16);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
        }

        .usecase-brief p {
            margin: 0.35rem 0;
            text-align: left;
            font-size: 1.02rem;
            line-height: 1.65;
        }

        .venture-studio-brief {
            margin-top: 0.5rem;
        }

        .venture-studio-video {
            margin: 1.5rem auto 2rem;
        }

        .academic-explainer-video {
            margin: 1.5rem auto 2rem;
        }

        .venture-studio-outcomes {
            margin-top: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .venture-studio-impact {
            margin-top: 0.25rem;
        }
    
        .info-table, .info-table-single, .team-table {
            width: 100%;
            max-width: 900px;
            margin: 2rem auto;
            border-collapse: separate;
            border-spacing: 0;
            font-size: 1.15rem;
            line-height: 1.75;
        }
    
        .info-table td, .info-table-single td, .team-table td {
            padding: 1rem 1.25rem;
            vertical-align: top;
        }

        .info-table-single td {
            padding: 1.5rem 0;
        }
    
        .info-table td:first-child, .info-table-single td:first-child {
            text-align: right;
            width: 8%;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }
    
        .info-table td:last-child, .info-table-single td:last-child {
            text-align: left;
            width: 92%;
            padding-left: 1.5rem;
        }
    
        /* .bullet-list {
            list-style-position: outside;
            font-size: 1.1rem;
            line-height: 2rem;
            padding-left: 0; 
            margin: 0 auto; 
            max-width: 800px; 
        }

        .bullet-list li {
            padding-left: 25px; 
            margin-bottom: 10px;
            text-align: left; 
        } 
       */

       .bullet-list {
            list-style: none;
            font-size: 1.2rem;
            line-height: 1.8;
            padding-left: 0;
            margin: 1.5rem auto;
            max-width: 800px;
        }

        .bullet-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            text-align: left;
            transition: transform 0.2s ease, padding-left 0.2s ease;
        }

        .bullet-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: rgba(255, 255, 255, 0.8);
            font-weight: bold;
            font-size: 1.3rem;
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .bullet-list li:hover {
            transform: translateX(4px);
            padding-left: 2.2rem;
        }

        .bullet-list li:hover::before {
            transform: translateX(4px);
            color: rgba(255, 255, 255, 1);
        }

    
        .linkedin-container {
            text-align: center;
            margin-top: 10px;
        }
    
        .linkedin-container img {
            max-width: 30px;
            animation: linkedinPulse 2s ease-in-out infinite;
            transition: transform 0.3s ease;
        }
    
        .linkedin-container img:hover {
            transform: scale(1.2);
            animation: none;
        }
    
        canvas {
            z-index: -1;
            opacity: 0.1;
        }
    
        .team-table {
            width: 100%;
            max-width: 900px;
            margin: 2rem auto;
            border-collapse: separate;
            border-spacing: 1.5rem;
        }

        .team-table tr {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .team-table td {
            flex: 1 1 250px;
            max-width: 300px;
            padding: 1.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .team-table td p {
            text-align: center;
        }
    
        .team-image {
            max-width: 132px;
            width: 100%;
            height: auto;
            margin-bottom: 1rem;
            border-radius: 50%;
            filter: grayscale(100%);
            transition: filter 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .team-table td a {
            display: inline-block;
            cursor: pointer;
        }

        .team-table td a:hover .team-image {
            filter: grayscale(40%);
            transform: scale(1.08);
        }

        .team-table td:hover .team-image {
            filter: grayscale(60%);
            transform: scale(1.05);
        }
    
        @media (max-width: 480px) {
            .team-table { max-width: 100%; }
            .team-table td { padding: 10px; }
            .team-image { max-width: 88px; }
        }

        @media (max-width: 480px) {
            .content-card p, .content-card-2 p, .card-text p {
                font-size: 1rem; /* Smaller font size for mobile */
                line-height: 1.4; /* Adjust line height for tighter spacing */
                padding: 8px 0;
            }

            .bullet-list {
                font-size: 1rem;
            }

            .info-table, .info-table-single, .team-table {
                font-size: 1rem;
            }

            .card-text {
                font-size: 1rem;
            }

            /* Optionally adjust the heading sizes too */
            .content-card h2, .content-card-2 h2 {
            font-size: 1.5rem;
            }
            .content-card h3, .content-card-2 h3 {
            font-size: 1rem;
            }
        }
    
        .job-title {
            font-size: 0.9rem;
            font-style: italic;
            display: block;
        }


        .card-text {
            max-width: 900px;
            margin: 0 auto;
            padding: 0;
            font-size: 1.15rem;
            line-height: 1.75;
        }

        .card-text ul {
            list-style: none;
            padding-left: 0;
            margin: 1.5rem 0;
        }

        .card-text ul li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            line-height: 1.75;
        }

        .card-text ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: rgba(255, 255, 255, 0.8);
            font-weight: bold;
            font-size: 1.3rem;
        }

        /* Language selector styles */
        .language-selector {
            position: fixed;
            top: 1.5rem;
            left: 1.5rem;
            z-index: 1001;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 24px;
            padding: 0.5rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: white;
            font-weight: 600;
            min-height: 40px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            letter-spacing: 0.01em;
        }

        .language-selector .flag-en + span {
            margin-left: 0; /* Remove gap when flag is hidden */
        }

        .language-selector:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.35);
        }

        body.language-switch-disabled .language-selector {
            display: none !important;
        }

        @media (max-width: 768px) {
            .language-selector {
                top: 0.75rem !important;
                right: 0.75rem !important;
                bottom: auto !important;
                left: auto !important;
                width: auto !important;
                height: 34px !important;
                min-height: 34px !important;
                max-height: 34px !important;
                padding: 0.35rem 0.7rem !important;
                transform: none !important;
                transform-origin: top right !important;
                z-index: 1100;
            }

            .language-selector:hover,
            .language-selector:active,
            .language-selector:focus {
                transform: none !important;
                outline: none;
            }
        }

        .usecase-selector-container {
            position: static;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            margin: 12rem auto 0.35rem !important;
        }

        .usecase-selector-caption {
            margin: 0;
            padding-right: 0;
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.72rem;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
        }

        .usecase-selector {
            display: inline-flex;
            gap: 0.35rem;
            padding: 0.35rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .usecase-option {
            border: 0;
            border-radius: 16px;
            background: transparent;
            color: rgba(255, 255, 255, 0.85);
            padding: 0.45rem 0.75rem;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .usecase-option.active {
            background: rgba(255, 255, 255, 0.22);
            color: #ffffff;
        }

        .vision-industry-brief {
            max-width: 820px;
            margin: 0.25rem auto 1.5rem;
            text-align: left;
        }

        .partner p {
            text-align: center;
        }

        .content-card p.tech-stack-note,
        .content-card-2 p.tech-stack-note {
            font-size: 0.9rem;
            font-style: italic;
            opacity: 0.92;
        }

        .site-footer {
            margin-top: 1.25rem;
            padding: 1rem 1rem 1.4rem;
            color: rgba(255, 255, 255, 0.92);
            font-size: 0.9rem;
            line-height: 1.55;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.16);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
            display: block !important;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .footer-inner {
            max-width: 920px;
            margin: 0 auto;
            display: block;
        }

        .footer-topline {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.65rem;
            flex-wrap: wrap;
            margin-bottom: 0.55rem;
            font-weight: 600;
        }

        .footer-topline a,
        .site-footer a {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .footer-inner p {
            margin: 0.22rem 0;
        }

        .footer-disclaimer {
            margin-top: 0.65rem !important;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            font-size: 0.78rem;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.72);
        }

        /* Safari/mobile-safe language visibility for footer blocks */
        body:not(.japanese) .site-footer .footer-inner[data-lang="en"] {
            display: block !important;
        }

        body:not(.japanese) .site-footer .footer-inner[data-lang="ja"] {
            display: none !important;
        }

        body.japanese .site-footer .footer-inner[data-lang="en"] {
            display: none !important;
        }

        body.japanese .site-footer .footer-inner[data-lang="ja"] {
            display: block !important;
        }

        @media (max-width: 768px) {
            .site-footer {
                font-size: 0.84rem;
                line-height: 1.45;
                padding: 0.9rem 0.8rem 1.2rem;
            }
            .footer-topline {
                gap: 0.5rem;
                margin-bottom: 0.45rem;
            }
            .footer-inner p {
                margin: 0.18rem 0;
            }
        }

        [data-usecase="npo"],
        [data-usecase="industry"] {
            display: none !important;
        }

        body.usecase-academic [data-usecase="academic"] {
            display: block !important;
        }

        body.usecase-academic [data-usecase="npo"],
        body.usecase-academic [data-usecase="industry"] {
            display: none !important;
        }

        body.usecase-npo [data-usecase="academic"] {
            display: none !important;
        }

        body.usecase-npo [data-usecase="npo"] {
            display: block !important;
        }

        body.usecase-npo [data-usecase="industry"] {
            display: none !important;
        }

        body.usecase-industry [data-usecase="academic"],
        body.usecase-industry [data-usecase="npo"] {
            display: none !important;
        }

        body.usecase-industry [data-usecase="industry"] {
            display: block !important;
        }

        body:not(.japanese).usecase-academic a[data-usecase="academic"][data-lang="en"],
        body:not(.japanese).usecase-npo a[data-usecase="npo"][data-lang="en"],
        body:not(.japanese).usecase-industry a[data-usecase="industry"][data-lang="en"],
        body.japanese.usecase-academic a[data-usecase="academic"][data-lang="ja"],
        body.japanese.usecase-npo a[data-usecase="npo"][data-lang="ja"],
        body.japanese.usecase-industry a[data-usecase="industry"][data-lang="ja"] {
            display: inline-flex !important;
        }

        body.usecase-npo .usecase-option[data-usecase-option="academic"],
        body.usecase-npo .usecase-option[data-usecase-option="industry"],
        body.usecase-industry .usecase-option[data-usecase-option="academic"],
        body.usecase-industry .usecase-option[data-usecase-option="npo"] {
            background: transparent;
            color: rgba(255, 255, 255, 0.85);
        }

        body.usecase-npo .usecase-option[data-usecase-option="npo"],
        body.usecase-industry .usecase-option[data-usecase-option="industry"] {
            background: rgba(255, 255, 255, 0.22);
            color: #ffffff;
        }

        @media (max-width: 900px) {
            .usecase-selector-container {
                position: static;
                transform: none;
                align-items: center;
                /* Push selector below the hero image area on narrow screens. */
                margin: 9rem auto 0.35rem !important;
                padding: 0 1rem;
            }

            .usecase-selector-caption {
                font-size: 0.64rem;
                padding-right: 0;
            }

            .usecase-selector {
                transform: none;
            }
        }

        @media (max-width: 480px) {
            .usecase-selector-container {
                margin: 7.5rem auto 0.35rem !important;
            }
        }

        .language-flag {
            width: 17px;
            height: 17px;
            border-radius: 50%;
            display: inline-block;
        }

        .flag-jp {
            background: linear-gradient(to right, white 100%);
            position: relative;
        }

        .flag-jp::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            background: #BC002D;
            border-radius: 50%;
        }

        .flag-en {
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MCAzMCIgd2lkdGg9IjE3IiBoZWlnaHQ9IjE3Ij4KICA8Y2xpcFBhdGggaWQ9InQiPgogICAgPHBhdGggZD0iTTAsMCB2MzAgaDYwIHYtMzAgeiIvPgogIDwvY2xpcFBhdGg+CiAgPGNsaXBQYXRoIGlkPSJzIj4KICAgIDxwYXRoIGQ9Ik0wLDAgdjMwIGg2MCB2LTMwIHoiIGNsaXAtcGF0aD0idXJsKCN0KSIvPgogIDwvY2xpcFBhdGg+CiAgPGcgY2xpcC1wYXRoPSJ1cmwoI3MpIj4KICAgIDxwYXRoIGQ9Ik0wLDAgdjMwIGg2MCB2LTMwIHoiIGZpbGw9IiMwMTIxNjkiLz4KICAgIDxwYXRoIGQ9Ik0wLDAgTDYwLDMwIE02MCwwIEwwLDMwIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iNiIvPgogICAgPHBhdGggZD0iTTAsMCBMNjAsMzAgTTYwLDAgTDAsMzAiIHN0cm9rZT0iI2M4MTAyZSIgc3Ryb2tlLXdpZHRoPSI0Ii8+CiAgICA8cGF0aCBkPSJNMzAsMCB2MzAgTTAsMTUgaDYwIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMTAiLz4KICAgIDxwYXRoIGQ9Ik0zMCwwIHYzMCBNMCwxNSBoNjAiIHN0cm9rZT0iI2M4MTAyZSIgc3Ryb2tlLXdpZHRoPSI2Ii8+CiAgPC9nPgo8L3N2Zz4K') center/contain no-repeat;
            transform: scaleY(1.5);
        }

        /* Hidden content for language switching */
        [data-lang="ja"] {
            display: none !important;
        }

        body:not(.japanese) [data-lang="ja"] {
            display: none !important;
        }

        body.japanese [data-lang="en"] {
            display: none !important;
        }

        body.japanese [data-lang="ja"] {
            display: block !important;
        }

        body.japanese [data-lang="ja"].inline {
            display: inline !important;
        }

        body.japanese.usecase-academic [data-usecase="npo"],
        body.japanese.usecase-academic [data-usecase="industry"],
        body.japanese.usecase-npo [data-usecase="academic"],
        body.japanese.usecase-npo [data-usecase="industry"],
        body.japanese.usecase-industry [data-usecase="academic"],
        body.japanese.usecase-industry [data-usecase="npo"] {
            display: none !important;
        }

        body.japanese.usecase-academic a[data-usecase="academic"][data-lang="ja"],
        body.japanese.usecase-npo a[data-usecase="npo"][data-lang="ja"],
        body.japanese.usecase-industry a[data-usecase="industry"][data-lang="ja"] {
            display: inline-flex !important;
        }

        /* Specific rules for heading elements */
        body.japanese h1[data-lang="ja"],
        body.japanese h2[data-lang="ja"],
        body.japanese h3[data-lang="ja"] {
            display: block !important;
        }

        /* Ensure English headings are hidden in Japanese mode */
        body.japanese h1[data-lang="en"],
        body.japanese h2[data-lang="en"],
        body.japanese h3[data-lang="en"] {
            display: none !important;
        }

        /* Ensure Japanese headings are hidden in English mode */
        h1[data-lang="ja"],
        h2[data-lang="ja"],
        h3[data-lang="ja"] {
            display: none !important;
        }

        body.japanese.usecase-academic [data-usecase="npo"],
        body.japanese.usecase-academic [data-usecase="industry"],
        body.japanese.usecase-npo [data-usecase="academic"],
        body.japanese.usecase-npo [data-usecase="industry"],
        body.japanese.usecase-industry [data-usecase="academic"],
        body.japanese.usecase-industry [data-usecase="npo"] {
            display: none !important;
        }

        /* =========================
           Shared styles: Privacy Policy page
           Scoped to avoid impacting the homepage.
           ========================= */
        body.privacy-policy-page {
            font-family: Arial, sans-serif;
            margin: 40px;
            padding: 0;
            line-height: 1.6;
            background-color: #f4f4f4;
            color: #333;
            min-height: auto;
            position: static;
            pointer-events: auto;
            overscroll-behavior: auto;
            -webkit-overflow-scrolling: auto;
        }

        body.privacy-policy-page .container {
            max-width: 800px;
            margin: auto;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        body.privacy-policy-page h1,
        body.privacy-policy-page h2 {
            color: #2C56B5;
        }

        body.privacy-policy-page a {
            color: #2C56B5;
            text-decoration: none;
        }

        body.privacy-policy-page a:hover {
            text-decoration: underline;
        }

        body.privacy-policy-page .language-selector {
            top: 2rem;
            right: 2rem;
            left: auto;
            background: rgba(44, 86, 181, 0.9);
            border-radius: 25px;
            padding: 8px 16px;
            gap: 8px;
            color: white;
            font-weight: 500;
            min-height: 40px;
        }

        body.privacy-policy-page .language-selector:hover {
            background: rgba(44, 86, 181, 1);
            transform: translateY(-2px);
        }

        body.privacy-policy-page .language-flag {
            width: 20px;
            height: 20px;
        }

        body.privacy-policy-page .flag-jp::after {
            width: 12px;
            height: 12px;
        }

        body.privacy-policy-page .container h1 {
            font-size: 2rem;
            margin-bottom: 0.6rem;
        }

        body.privacy-policy-page .container h2 {
            font-size: 1.25rem;
            margin-top: 1.35rem;
            margin-bottom: 0.4rem;
            color: #1c3f86;
        }

        body.privacy-policy-page .container p {
            margin-bottom: 0.65rem;
        }

        body.privacy-policy-page .container ul {
            margin: 0.35rem 0 0.85rem 1.2rem;
        }

        body.privacy-policy-page .container li {
            margin-bottom: 0.35rem;
        }

        @media (max-width: 768px) {
            body.privacy-policy-page {
                margin: 16px;
            }

            body.privacy-policy-page .container {
                padding: 18px 16px;
                border-radius: 10px;
            }

            body.privacy-policy-page .container h1 {
                font-size: 1.6rem;
            }

            body.privacy-policy-page .container h2 {
                font-size: 1.1rem;
                margin-top: 1.1rem;
            }
        }
