/* =============================================
       Reset & Base
    ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.sp-br {
    display: none;
}
.sp-block {
    display: inline;
}
html {
    scroll-behavior: auto;
    overflow-x: hidden;
}
.sec-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    pointer-events: none;
}
.sec-particles + .container {
    position: relative;
    z-index: 1;
}
body {
    font-family:
        "Noto Sans JP",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    color: #ffffff;
    background: #070709;
    line-height: 1.85;
    overflow-x: hidden;
}

/* =============================================
       Aurora Background
    ============================================= */
.aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    animation: aurora-drift 16s ease-in-out infinite alternate;
}
.aurora-blob:nth-child(1) {
    width: 70vw;
    height: 60vh;
    background: radial-gradient(circle, #b3ffc8 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation-duration: 14s;
}
.aurora-blob:nth-child(2) {
    width: 50vw;
    height: 70vh;
    background: radial-gradient(circle, #ff6ef7 0%, transparent 70%);
    top: 20%;
    right: -15%;
    animation-duration: 18s;
    animation-delay: -6s;
}
.aurora-blob:nth-child(3) {
    width: 55vw;
    height: 55vh;
    background: radial-gradient(circle, #5eadff 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-duration: 20s;
    animation-delay: -3s;
}
@keyframes aurora-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(6vw, -4vh) scale(1.08);
    }
    66% {
        transform: translate(-4vw, 5vh) scale(0.95);
    }
    100% {
        transform: translate(3vw, 2vh) scale(1.05);
    }
}
.noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.045;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}
img {
    display: block;
    width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
ul,
ol {
    list-style: none;
}
button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* 言語切替（全ページ共通）— margin はナビ内でメディアクエリ側に任せる */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.lang-switch__link {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s ease;
}
.lang-switch__link:hover,
.lang-switch__link--active {
    color: #ffffff;
}
.lang-switch__sep {
    color: rgba(255, 255, 255, 0.25);
    user-select: none;
}

/* =============================================
       Animation Base States
    ============================================= */
.anim-fade,
.anim-up,
.anim-left,
.anim-right {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-fade {
    transform: none;
}
.anim-up {
    transform: translateY(36px);
}
.anim-left {
    transform: translateX(36px);
}
.anim-right {
    transform: translateX(-36px);
}

.d1 {
    transition-delay: 0.08s;
}
.d2 {
    transition-delay: 0.16s;
}
.d3 {
    transition-delay: 0.24s;
}
.d4 {
    transition-delay: 0.32s;
}
.d5 {
    transition-delay: 0.4s;
}
.d6 {
    transition-delay: 0.48s;
}
.d7 {
    transition-delay: 0.56s;
}
.d8 {
    transition-delay: 0.64s;
}

.anim-fade.is-visible,
.anim-up.is-visible,
.anim-left.is-visible,
.anim-right.is-visible {
    opacity: 1;
    transform: none;
}

/* Step clip-reveal animation */
.anim-clip-reveal {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.anim-clip-reveal.d1 {
    transition-delay: 0.1s;
}
.anim-clip-reveal.d2 {
    transition-delay: 0.2s;
}
.anim-clip-reveal.d3 {
    transition-delay: 0.1s;
}
.anim-clip-reveal.d4 {
    transition-delay: 0.2s;
}
.anim-clip-reveal.d5 {
    transition-delay: 0.1s;
}
.anim-clip-reveal.is-visible {
    clip-path: inset(0 0 0% 0);
}

/* Hero title — blur-in + scale */
.hero-title.anim-up,
.hero-bg-logo.anim-fade {
    opacity: 0;
    filter: blur(16px);
    transform: scale(1.04) translateY(12px);
    transition-property: opacity, filter, transform;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-title.anim-up.is-visible {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1) translateY(0);
}
.hero-bg-logo.anim-fade.is-visible {
    opacity: 0.08;
    filter: blur(0px);
    transform: scale(1) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .anim-fade,
    .anim-up,
    .anim-left,
    .anim-right {
        transition: opacity 0.2s ease;
        transform: none;
    }
}

/* Final CTA — 背景画像の上に黒いガウス（均一な黒＋ぼかし） */
.final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
@media (prefers-reduced-motion: reduce) {
    .final-cta::after {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* =============================================
       PC Styles (768px+)
    ============================================= */
@media (min-width: 768px) {
    .container {
        max-width: 1160px;
        margin: 0 auto 0 auto;
    }

    /* --- Nav --- */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 72px;
        background: transparent;
        z-index: 1000;
        transform: translateY(-100%);
        transition:
            transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            background 0.3s ease,
            backdrop-filter 0.3s ease;
    }
    .nav.scrolled {
        transform: translateY(0);
        background: rgba(7, 7, 9, 0.15);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-inner {
        box-sizing: border-box;
        max-width: none;
        width: 100%;
        margin: 0 0 0 0;
        padding: 0 calc(32px + env(safe-area-inset-right, 0px)) 0
            calc(32px + env(safe-area-inset-left, 0px));
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    .nav-logo {
        display: flex;
        align-items: center;
        order: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .nav-logo-img {
        height: 32px;
        width: auto;
        display: block;
    }
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 32px;
        flex: 1 1 auto;
        justify-content: flex-end;
        width: auto;
        min-width: 0;
        order: 0;
        flex-direction: row;
        padding: 0 0 0 0;
        margin: 0 48px 0 16px;
    }
    .nav-inner > .lang-switch {
        flex-shrink: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .nav-link {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        transition: color 0.2s ease;
    }
    .nav-link:hover {
        color: #ffffff;
    }
    .nav-cta {
        display: inline-block;
        padding: 10px 24px 10px 24px;
        background: #0e6fff;
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        border-radius: 8px;
        transition: background 0.2s ease;
    }
    .nav-cta:hover {
        background: #0054cc;
    }
    .nav-hamburger {
        display: none;
    }
    #features .sec-title {
        white-space: nowrap;
    }
    #problems .sec-title {
        white-space: nowrap;
    }

    /* --- Hero --- */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 120px 0 80px 0;
        overflow: visible;
        background: #070709;
    }
    .hero > .container {
        position: relative;
        z-index: 2;
        width: 100%;
    }
    .hero-bg-logo {
        position: absolute;
        right: -4%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        width: 55%;
        pointer-events: none;
        opacity: 0.08;
        filter: brightness(1.4);
    }
    .hero-bg-logo img {
        width: 100%;
        display: block;
    }
    .hero-canvas-wrap {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
    }
    #canvas-webgl {
        display: block;
        width: 100%;
        height: 100%;
    }
    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(
            to right,
            rgba(7, 7, 9, 0.75) 0%,
            rgba(7, 7, 9, 0.3) 50%,
            rgba(7, 7, 9, 0.6) 100%
        );
        pointer-events: none;
    }
    #mission,
    #localize-alt {
        overflow: visible;
    }
    .dxinno-bg-logo {
        position: absolute;
        top: 0;
        left: 0%;
        transform: translateY(-50%) translateZ(0);
        z-index: 10;
        width: 40%;
        pointer-events: none;
        opacity: 0.06;
    }
    .dxinno-bg-logo img {
        width: 100%;
        display: block;
        filter: invert(1);
    }
    .about-bg-logo {
        position: absolute;
        top: 0;
        right: -4%;
        transform: translateY(-50%) translateZ(0);
        z-index: 10;
        width: 50%;
        pointer-events: none;
        opacity: 0.04;
    }
    .about-bg-logo img {
        width: 100%;
        display: block;
    }
    .hero-scroll-hint {
        position: absolute;
        bottom: -40px;
        left: 0;
        right: 0;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.65);
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 780px;
        text-align: left;
    }
    .hero-title {
        font-size: 64px;
        color: #ffffff;
        letter-spacing: 0em;
        line-height: 1.45;
        margin: 0 0 32px 0;
    }
    .hero-title em {
        font-style: normal;
        background: linear-gradient(135deg, #4da3ff 0%, #a78bff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .hero-subtitle {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.62);
        line-height: 1.85;
        margin: 0 0 48px 0;
    }
    .hero-buttons {
        display: flex;
        gap: 16px;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin: 0 0 56px 0;
    }
    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 15px 32px 15px 32px;
        background: rgba(255, 255, 255, 0.07);
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition:
            background 0.2s ease,
            border-color 0.2s ease,
            transform 0.2s ease;
        backdrop-filter: blur(8px);
        letter-spacing: 0.02em;
    }
    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.13);
        border-color: rgba(255, 255, 255, 0.45);
        transform: translateY(-2px);
    }
    @keyframes arrowBounce {
        0%,
        100% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(6px);
        }
    }
    .btn-arrow {
        display: inline-block;
        animation: arrowBounce 2.4s ease-in-out infinite;
    }
    .btn-secondary:hover .btn-arrow {
        animation-play-state: paused;
        transform: translateX(6px);
    }
    .hero-scroll-dots {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .scroll-dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.7);
        animation: dotFlow 1.4s ease-in-out infinite;
    }
    .scroll-dot:nth-child(1) {
        animation-delay: 0s;
    }
    .scroll-dot:nth-child(2) {
        animation-delay: 0.2s;
    }
    .scroll-dot:nth-child(3) {
        animation-delay: 0.4s;
    }
    .scroll-dot:nth-child(4) {
        animation-delay: 0.6s;
    }
    @keyframes dotFlow {
        0% {
            opacity: 0.12;
            transform: translateY(-3px);
        }
        40% {
            opacity: 1;
            transform: translateY(0);
        }
        100% {
            opacity: 0.12;
            transform: translateY(3px);
        }
    }

    /* --- Typing cursor --- */
    .sec-title.is-typing::after {
        content: "|";
        color: #0e6fff;
        animation: cursorBlink 0.6s step-end infinite;
        margin-left: 2px;
    }
    @keyframes cursorBlink {
        0%,
        100% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
    }

    /* --- Common Section --- */
    .sec {
        padding: 120px 0 120px 0;
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }
    .sec--alt {
        background: #f7faff;
    }
    .sec-head {
        margin: 0 0 36px 0;
    }
    .sec-head--c {
        text-align: center;
    }
    .sec-tag {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        color: #0e6fff;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin: 0 0 72px 0;
    }
    .sec-title {
        font-size: 40px;
        font-weight: 900;
        color: #767676;
        letter-spacing: 0.02em;
        line-height: 1.25;
        margin: 0 0 16px 0;
    }
    .title-accent {
        color: #ffffff;
    }
    .title-grad {
        background: linear-gradient(135deg, #4da3ff 0%, #a78bff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .sec-desc {
        font-size: 17px;
        color: #5c6b8a;
        line-height: 1.8;
        margin: 0 0 0 0;
        white-space: nowrap;
    }
    .sec-desc--sub {
        text-align: center;
        margin: 16px 0 0 0;
        white-space: normal;
    }

    /* --- Stats Bar --- */
    .stats-bar {
        background: #070709;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 56px 0 48px 0;
        position: relative;
        z-index: 1;
    }
    .stats-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
    }
    .stat-item {
        flex: 1;
        text-align: center;
        padding: 0 32px 0 32px;
    }
    .stat-num {
        display: block;
        font-size: 44px;
        font-weight: 900;
        color: #ffffff;
        letter-spacing: -0.03em;
        line-height: 1;
        margin: 0 0 8px 0;
    }
    .stat-unit {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0;
        color: rgba(255, 255, 255, 0.6);
    }
    .stat-label {
        display: block;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 500;
        letter-spacing: 0.04em;
    }
    .stat-divider {
        width: 1px;
        height: 48px;
        background: rgba(255, 255, 255, 0.12);
        flex-shrink: 0;
    }

    /* --- Problems --- */
    .problems-list {
        display: flex;
        flex-direction: column;
        border-top: 1px solid rgba(14, 111, 255, 0.2);
    }
    .problem-row {
        display: grid;
        grid-template-columns: 72px 1fr 1.4fr;
        gap: 48px;
        padding: 52px 0 52px 0;
        border-bottom: 1px solid rgba(14, 111, 255, 0.2);
        align-items: start;
    }
    .prob-num {
        font-size: 52px;
        font-weight: 800;
        line-height: 1;
        color: #f4f4f4;
        letter-spacing: -2px;
        font-variant-numeric: tabular-nums;
        align-self: center;
    }
    .prob-title {
        font-size: 32px;
        font-weight: 700;
        color: #0d1a3d;
        line-height: 1.5;
        align-self: center;
    }
    .prob-text {
        font-size: 14px;
        color: #5c6b8a;
        line-height: 1.9;
        padding-top: 4px;
    }

    /* --- AI Process --- */
    #ai-process {
        background: #000000;
    }
    .ai-process-img {
        max-width: 960px;
        margin: 0 auto 0 auto;
    }
    .ai-process-img img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

    /* --- About --- */
    .about-child {
        opacity: 0;
        transform: translateY(20px);
        transition:
            opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .about-body.is-visible .about-child:nth-child(1) {
        opacity: 1;
        transform: none;
        transition-delay: 0.05s;
    }
    .about-body.is-visible .about-child:nth-child(2) {
        opacity: 1;
        transform: none;
        transition-delay: 0.18s;
    }
    .about-body.is-visible .about-child:nth-child(3) {
        opacity: 1;
        transform: none;
        transition-delay: 0.31s;
    }
    .about-body.is-visible .about-child:nth-child(4) {
        opacity: 1;
        transform: none;
        transition-delay: 0.44s;
    }
    .about-body.is-visible .about-tags .about-child:nth-child(1) {
        opacity: 1;
        transform: none;
        transition-delay: 0.55s;
    }
    .about-body.is-visible .about-tags .about-child:nth-child(2) {
        opacity: 1;
        transform: none;
        transition-delay: 0.65s;
    }
    .about-body.is-visible .about-tags .about-child:nth-child(3) {
        opacity: 1;
        transform: none;
        transition-delay: 0.75s;
    }
    .about-body.is-visible .about-tags .about-child:nth-child(4) {
        opacity: 1;
        transform: none;
        transition-delay: 0.85s;
    }
    .about-body.is-visible .about-tags .about-child:nth-child(5) {
        opacity: 1;
        transform: none;
        transition-delay: 0.95s;
    }
    .about-body.is-visible .about-tags .about-child:nth-child(6) {
        opacity: 1;
        transform: none;
        transition-delay: 1.05s;
    }
    .about-body .sec-title {
        margin: 0 0 16px 0;
    }
    .about-body p {
        font-size: 15px;
        color: #5c6b8a;
        line-height: 1.9;
        margin: 0 0 20px 0;
    }
    .about-tags {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 28px;
    }
    .about-tag {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 24px 20px 24px;
        background: rgb(233 233 233 / 6%);
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        border-radius: 12px;
        border: 1px solid rgb(100 100 100 / 89%);
        letter-spacing: 0.02em;
        text-align: center;
    }

    /* --- Mission --- */
    .mission-sec {
        padding: 120px 0 120px 0;
        background: linear-gradient(135deg, #0d1a3d 0%, #0e3578 100%);
        position: relative;
        overflow: hidden;
    }
    .mission-sec::before {
        content: "";
        position: absolute;
        top: -40%;
        right: -10%;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: rgba(14, 111, 255, 0.12);
        pointer-events: none;
    }
    .mission-inner {
        max-width: 1160px;
        margin: 0 auto 0 auto;
        padding: 0 40px 0 40px;
    }
    .mission-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }
    .mission-block .sec-tag {
        color: rgba(255, 255, 255, 0.5);
    }
    .mission-block .sec-title {
        color: #ffffff;
        margin: 0 0 16px 0;
    }
    .mission-block p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.9;
    }

    /* --- Dark Particle Sections (Mission / Localize / Strengths) --- */
    .sec--dark-particle {
        background: rgb(8 9 10 / 36%);
        padding: 120px 0 120px 0;
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    .mission-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto 0 auto;
        text-align: center;
    }
    #mission .sec-title {
        box-sizing: border-box;
        width: 100%;
        white-space: nowrap;
    }
    #mission .sec-title .title-accent {
        font-size: 80px;
        color: #5c5c5c7a;
    }
    .mission-label {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.2em;
        color: #0e6fff;
        text-transform: uppercase;
        margin: 0 0 32px 0;
    }
    .sec--dark-particle .sec-title {
        font-size: 48px;
        white-space: normal;
        margin: 0 0 32px 0;
    }
    .mission-quote {
        box-sizing: border-box;
        width: 100%;
        max-width: 920px;
        font-size: 40px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.75;
        margin: 0 auto 0 auto;
        white-space: normal;
        text-align: center;
    }
    .mission-sub {
        box-sizing: border-box;
        width: 100%;
        max-width: 920px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.85;
        margin: 24px auto 0 auto;
        text-align: center;
    }

    /* --- Localize --- */
    .localize-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
    .localize-left .sec-title {
        white-space: normal;
        margin: 0 0 24px 0;
    }
    .localize-lead {
        font-size: 15px;
        color: #5c6b8a;
        line-height: 1.9;
        margin: 0 0 0 0;
    }
    .localize-list {
        list-style: none;
        padding: 0 0 0 0;
        margin: 0 0 0 0;
    }
    .localize-list li {
        position: relative;
        padding: 16px 0 16px 28px;
        border-bottom: 1px solid #e5ebf4;
        font-size: 14px;
        color: #3a4a6b;
        line-height: 1.75;
    }
    .localize-list li:first-child {
        border-top: 1px solid #e5ebf4;
    }
    .localize-list li::before {
        content: "→";
        position: absolute;
        left: 0;
        top: 16px;
        color: #0e6fff;
        font-weight: 700;
    }
    .localize-list li strong {
        color: #0d1a3d;
    }

    /* --- Strengths --- */
    .strengths-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .strength-card.anim-up {
        transition-duration: 1.2s;
    }
    .strength-card.d1 {
        transition-delay: 0.15s;
    }
    .strength-card.d2 {
        transition-delay: 0.4s;
    }
    .strength-card.d3 {
        transition-delay: 0.65s;
    }
    .strength-card {
        background: #ffffff;
        border-radius: 8px;
        padding: 40px 32px 40px 32px;
        border: 1px solid #e5ebf4;
    }
    .strength-num {
        display: block;
        font-size: 64px;
        font-weight: 900;
        color: #ffffff;
        opacity: 0.12;
        line-height: 1;
        margin: 0 0 24px 0;
    }
    .strength-title {
        font-size: 18px;
        font-weight: 700;
        color: #0d1a3d;
        line-height: 1.4;
        margin: 0 0 24px 0;
        min-height: 51px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .strength-text {
        font-size: 14px;
        color: #5c6b8a;
        line-height: 1.85;
        margin: 0 0 0 0;
    }

    /* --- Mission Alt --- */
    .mission-alt-grid {
        display: grid;
        grid-template-columns: 180px 1fr;
        gap: 80px;
        align-items: center;
    }
    .mission-alt-left {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .mission-alt-mark {
        font-size: 220px;
        font-weight: 900;
        color: #0e6fff;
        opacity: 0.1;
        line-height: 0.8;
        font-family: Georgia, serif;
        user-select: none;
    }
    .mission-alt-right .mission-label {
        margin: 0 0 24px 0;
    }
    #mission-alt .sec-title {
        white-space: normal;
        margin: 0 0 24px 0;
    }
    .mission-alt-quote {
        font-size: 20px;
        font-weight: 700;
        color: #0d1a3d;
        line-height: 1.75;
        border-left: 3px solid #0e6fff;
        padding: 0 0 0 24px;
        margin: 0 0 16px 0;
    }
    .mission-alt-sub {
        font-size: 15px;
        color: #5c6b8a;
        line-height: 1.85;
        padding: 0 0 0 24px;
        margin: 0 0 0 0;
    }

    /* --- Localize Alt --- */
    #localize-alt .sec-head {
        margin: 0 0 48px 0;
    }
    .compare-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .compare-card {
        border-radius: 8px;
        padding: 40px 40px 40px 40px;
    }
    .compare-card--before {
        background: #f4f5f7;
        border: 1px solid #e0e4ea;
    }
    .compare-card--after {
        background: #edf4ff;
        border: 2px solid #0e6fff;
    }
    .compare-card-head {
        margin: 0 0 24px 0;
    }
    .compare-badge {
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        padding: 6px 16px 6px 16px;
        border-radius: 8px;
        letter-spacing: 0.04em;
    }
    .compare-badge--no {
        background: #e0e4ea;
        color: #6b7280;
    }
    .compare-badge--yes {
        background: #0e6fff;
        color: #ffffff;
    }
    .compare-list {
        list-style: none;
        padding: 0 0 0 0;
        margin: 0 0 0 0;
    }
    .compare-card--before .compare-list li {
        padding: 12px 0 12px 0;
        border-bottom: 1px solid #e0e4ea;
        font-size: 14px;
        color: #9ca3af;
        line-height: 1.7;
        text-decoration: line-through;
    }
    .compare-card--before .compare-list li:last-child {
        border-bottom: none;
    }
    .compare-card--before .compare-list li::before {
        content: none;
    }
    .compare-card--after .compare-list li {
        padding: 12px 0 12px 0;
        border-bottom: 1px solid rgba(14, 111, 255, 0.12);
        font-size: 17px;
        color: #1e3a6e;
        line-height: 1.7;
    }
    .compare-card--after .compare-list li:last-child {
        border-bottom: none;
    }
    .compare-card--after .compare-list li::before {
        content: none;
    }

    /* --- Strengths Alt --- */
    .str-rows {
        border-top: 1px solid #e5ebf4;
    }
    .str-row {
        display: grid;
        grid-template-columns: 160px 1fr;
        gap: 64px;
        align-items: center;
        padding: 48px 0 48px 0;
        border-bottom: 1px solid #e5ebf4;
    }
    .str-row-num {
        font-size: 80px;
        font-weight: 900;
        color: #0e6fff;
        opacity: 0.15;
        line-height: 1;
    }
    .str-row-title {
        font-size: 22px;
        font-weight: 700;
        color: #0d1a3d;
        line-height: 1.3;
        margin: 0 0 12px 0;
    }
    .str-row-text {
        font-size: 15px;
        color: #5c6b8a;
        line-height: 1.85;
        margin: 0 0 0 0;
    }

    /* --- Features --- */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .feat-card {
        position: relative;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
        height: 350px;
        border-radius: 8px;
        color: #ffffff;
    }
    .feat-card-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 110%;
        object-fit: cover;
        object-position: center center;
        transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
        pointer-events: none;
    }
    .feat-card::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 200%;
        pointer-events: none;
        background-image: linear-gradient(
            to bottom,
            hsla(0, 0%, 0%, 0.3) 0%,
            hsla(0, 0%, 0%, 0.35) 11.7%,
            hsla(0, 0%, 0%, 0.4) 22.1%,
            hsla(0, 0%, 0%, 0.46) 31.2%,
            hsla(0, 0%, 0%, 0.52) 39.4%,
            hsla(0, 0%, 0%, 0.58) 46.6%,
            hsla(0, 0%, 0%, 0.64) 53.1%,
            hsla(0, 0%, 0%, 0.7) 58.9%,
            hsla(0, 0%, 0%, 0.75) 64.3%,
            hsla(0, 0%, 0%, 0.8) 69.3%,
            hsla(0, 0%, 0%, 0.84) 74.1%,
            hsla(0, 0%, 0%, 0.87) 78.8%,
            hsla(0, 0%, 0%, 0.9) 83.6%,
            hsla(0, 0%, 0%, 0.92) 88.7%,
            hsla(0, 0%, 0%, 0.93) 94.1%,
            hsla(0, 0%, 0%, 0.94) 100%
        );
        transform: translateY(-50%);
        transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
    }
    .feat-card-inner {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 24px 24px 24px 24px;
        transform: translateY(calc(100% - 72px));
        transition: transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
    }
    .feat-title {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.4;
        margin: 0 0 16px 0;
    }
    .feat-text {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.8;
        margin: 0 0 0 0;
        opacity: 0;
        transform: translateY(16px);
        transition:
            opacity 700ms ease,
            transform 700ms ease;
        transition-delay: 88ms;
    }
    @media (hover: hover) {
        .feat-card:hover .feat-card-img {
            transform: translateY(-4%);
        }
        .feat-card:hover::after {
            transform: translateY(0);
        }
        .feat-card:hover .feat-card-inner {
            transform: translateY(0);
        }
        .feat-card:hover .feat-text {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* --- Demo Section --- */
    .demo-tabs {
        display: flex;
        justify-content: center;
        gap: 0;
        margin: 0 0 40px 0;
        background: #f0f4fa;
        border-radius: 12px;
        padding: 6px 6px 6px 6px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .demo-tab {
        padding: 10px 28px 10px 28px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 600;
        color: #5c6b8a;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
        position: relative;
    }
    .demo-tab.active {
        background: #0e6fff;
        color: #ffffff;
        box-shadow: 0 2px 8px rgba(14, 111, 255, 0.3);
    }
    .demo-tab:not(.active):not(.coming-soon):hover {
        color: #0d1a3d;
    }
    .demo-tab.coming-soon {
        color: #9eb0c8;
        cursor: default;
    }
    .demo-tab.coming-soon::after {
        content: "Coming Soon";
        position: absolute;
        top: -22px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 10px;
        font-weight: 700;
        color: #ffffff;
        background: linear-gradient(90deg, #b259f7, #5eadff);
        padding: 2px 8px 2px 8px;
        border-radius: 20px;
        white-space: nowrap;
        letter-spacing: 0.04em;
    }
    .demo-panel {
        background: #ffffff;
        border: 1px solid #e0ecff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 32px rgba(14, 111, 255, 0.06);
    }
    .demo-pane {
        display: none;
        padding: 32px 32px 32px 32px;
    }
    .demo-pane.active {
        display: block;
    }

    /* Company List */
    .demo-list-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 0 24px 0;
        flex-wrap: wrap;
        gap: 12px;
    }
    .demo-count {
        font-size: 14px;
        color: #5c6b8a;
    }
    .demo-pagination-info {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #5c6b8a;
    }
    .demo-per-page {
        padding: 4px 8px 4px 8px;
        border: 1px solid #d0dcf0;
        border-radius: 6px;
        font-size: 13px;
        color: #0d1a3d;
        background: #ffffff;
    }
    .demo-pages {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .demo-page-btn {
        width: 32px;
        height: 32px;
        border-radius: 6px;
        border: 1px solid #d0dcf0;
        background: #ffffff;
        font-size: 13px;
        font-weight: 600;
        color: #5c6b8a;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.15s ease;
    }
    .demo-page-btn.active {
        background: #0e6fff;
        color: #ffffff;
        border-color: #0e6fff;
    }
    .demo-page-btn:disabled {
        opacity: 0.4;
        cursor: default;
    }
    .demo-company-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .demo-company-card {
        border: 1px solid #e0ecff;
        border-radius: 12px;
        padding: 20px 20px 20px 20px;
        position: relative;
        transition: box-shadow 0.2s ease;
        background: #ffffff;
    }
    .demo-company-card.premium {
        overflow: hidden;
    }
    .demo-company-card.premium::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #b259f7, #5eadff, #3ef7a8);
    }
    .demo-card-badges {
        display: flex;
        align-items: center;
        gap: 6px;
        margin: 0 0 14px 0;
    }
    .badge {
        font-size: 11px;
        font-weight: 700;
        padding: 3px 10px 3px 10px;
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    .badge-certified {
        background: #e8f9ee;
        color: #16a34a;
        border: 1px solid #86efac;
    }
    .badge-premium {
        background: linear-gradient(90deg, #f3e8ff, #ede9fe);
        color: #7c3aed;
        border: 1px solid #ddd6fe;
    }
    .badge-certified-grey {
        background: #f3f4f6;
        color: #9ca3af;
        border: 1px solid #e5e7eb;
    }
    .badge-premium-grey {
        background: #f3f4f6;
        color: #9ca3af;
        border: 1px solid #e5e7eb;
    }
    .demo-card-actions {
        margin-left: auto;
        display: flex;
        gap: 6px;
    }
    .demo-card-btn {
        width: 32px;
        height: 32px;
        border: 1px solid #e0ecff;
        border-radius: 6px;
        background: #ffffff;
        color: #5c6b8a;
        font-size: 13px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.15s ease;
    }
    .demo-card-btn:hover {
        border-color: #0e6fff;
        color: #0e6fff;
    }
    .demo-card-company {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0 0 12px 0;
    }
    .demo-company-icon {
        width: 40px;
        height: 40px;
        background: #f0f4fa;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }
    .demo-company-name {
        font-size: 16px;
        font-weight: 700;
        color: #0d1a3d;
    }
    .demo-company-founded {
        font-size: 12px;
        color: #9eb0c8;
        margin-top: 2px;
    }
    .demo-company-meta {
        display: flex;
        gap: 16px;
        font-size: 13px;
        color: #5c6b8a;
        margin: 0 0 14px 0;
    }
    .demo-company-section {
        margin: 0 0 12px 0;
    }
    .demo-section-label {
        font-size: 11px;
        font-weight: 700;
        color: #9eb0c8;
        margin: 0 0 4px 0;
        letter-spacing: 0.04em;
    }
    .demo-section-text {
        font-size: 13px;
        color: #3d4f6e;
        line-height: 1.6;
    }
    .demo-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .demo-tag {
        font-size: 12px;
        font-weight: 600;
        padding: 3px 10px 3px 10px;
        border-radius: 20px;
    }
    .demo-tag-pink {
        background: #fff0f5;
        color: #db2777;
        border: 1px solid #fbcfe8;
    }
    .demo-tag-green {
        background: #f0fdf4;
        color: #16a34a;
        border: 1px solid #bbf7d0;
    }
    .demo-card-footer {
        display: flex;
        gap: 10px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #f0f4fa;
    }
    .demo-btn-detail {
        flex: 1;
        padding: 10px 10px 10px 10px;
        background: #0e6fff;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.15s ease;
    }
    .demo-btn-detail:hover {
        background: #0057d6;
    }
    .demo-btn-message {
        flex: 1;
        padding: 10px 10px 10px 10px;
        background: #ffffff;
        color: #16a34a;
        border: 1.5px solid #86efac;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.15s ease;
    }
    .demo-btn-message:hover {
        background: #f0fdf4;
    }

    /* Coming Soon Pane */
    .demo-coming-soon {
        text-align: center;
        padding: 80px 20px 80px 20px;
    }
    .demo-cs-icon {
        font-size: 56px;
        margin: 0 0 20px 0;
    }
    .demo-coming-soon h3 {
        font-size: 28px;
        font-weight: 900;
        margin: 0 0 12px 0;
        background: linear-gradient(90deg, #b259f7, #5eadff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .demo-coming-soon p {
        font-size: 15px;
        line-height: 1.8;
        color: #5c6b8a;
    }

    /* Message Pane */
    .demo-message-layout {
        display: grid;
        grid-template-columns: 240px 1fr;
        height: 480px;
        border: 1px solid #e0ecff;
        border-radius: 12px;
        overflow: hidden;
    }
    .demo-msg-sidebar {
        border-right: 1px solid #e0ecff;
        background: #f7faff;
        overflow-y: auto;
    }
    .demo-msg-sidebar-header {
        padding: 16px 16px 16px 16px;
        border-bottom: 1px solid #e0ecff;
        font-size: 14px;
        font-weight: 700;
        color: #0d1a3d;
    }
    .demo-msg-item {
        padding: 14px 16px 14px 16px;
        border-bottom: 1px solid #e0ecff;
        cursor: pointer;
        transition: background 0.15s;
    }
    .demo-msg-item.active {
        background: #eef4ff;
    }
    .demo-msg-item:hover:not(.active) {
        background: #f0f4fa;
    }
    .demo-msg-item-name {
        font-size: 13px;
        font-weight: 700;
        color: #0d1a3d;
        margin: 0 0 3px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .demo-msg-item-time {
        font-size: 11px;
        color: #9eb0c8;
        font-weight: 400;
    }
    .demo-msg-item-preview {
        font-size: 12px;
        color: #5c6b8a;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .demo-msg-unread {
        display: inline-block;
        width: 7px;
        height: 7px;
        background: #0e6fff;
        border-radius: 50%;
        flex-shrink: 0;
    }
    .demo-msg-main {
        display: flex;
        flex-direction: column;
        background: #ffffff;
    }
    .demo-msg-main-header {
        padding: 14px 20px 14px 20px;
        border-bottom: 1px solid #e0ecff;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .demo-msg-avatar {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #b259f7, #5eadff);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        font-weight: 700;
        flex-shrink: 0;
    }
    .demo-msg-name {
        font-size: 14px;
        font-weight: 700;
        color: #0d1a3d;
    }
    .demo-msg-status {
        font-size: 11px;
        color: #16a34a;
        margin-top: 1px;
    }
    .demo-msg-nda {
        margin-left: auto;
        font-size: 11px;
        font-weight: 700;
        color: #7c3aed;
        background: linear-gradient(90deg, #f3e8ff, #ede9fe);
        border: 1px solid #ddd6fe;
        padding: 4px 12px 4px 12px;
        border-radius: 20px;
    }
    .demo-msg-body {
        flex: 1;
        overflow-y: auto;
        padding: 20px 20px 20px 20px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .demo-bubble {
        max-width: 68%;
        padding: 10px 14px 10px 14px;
        border-radius: 12px;
        font-size: 13px;
        line-height: 1.7;
        color: #3d4f6e;
    }
    .demo-bubble-recv {
        background: #f0f4fa;
        border-radius: 4px 12px 12px 12px;
        align-self: flex-start;
    }
    .demo-bubble-sent {
        background: #0e6fff;
        color: #ffffff;
        border-radius: 12px 4px 12px 12px;
        align-self: flex-end;
    }
    .demo-bubble-time {
        font-size: 10px;
        color: #9eb0c8;
        margin-top: 3px;
    }
    .demo-bubble-time.right {
        text-align: right;
    }
    .demo-msg-input-area {
        padding: 12px 20px 12px 20px;
        border-top: 1px solid #e0ecff;
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .demo-msg-input {
        flex: 1;
        padding: 10px 14px 10px 14px;
        border: 1px solid #d0dcf0;
        border-radius: 8px;
        font-size: 13px;
        color: #0d1a3d;
        background: #f7faff;
        outline: none;
    }
    .demo-msg-send {
        padding: 10px 18px 10px 18px;
        background: #0e6fff;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
    }

    /* --- Steps --- */
    .steps-list {
        display: flex;
        flex-direction: column;
    }
    .step-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        padding: 48px 0 48px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        align-items: start;
    }
    .step-row:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .step-num {
        display: block;
        font-size: 144px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.15);
        letter-spacing: 0.12em;
        margin: -56px 0 -72px 0;
    }
    .step-title {
        font-size: 32px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.02em;
        line-height: 1.3;
        margin: 0 0 8px 64px;
    }
    .step-sub {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.6;
        margin: 0 0 0 64px;
    }
    .step-right {
        padding: 0 0 0 0;
    }
    .step-desc {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.85;
        margin: 0 0 24px 0;
    }
    .step-bullets {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 0 0 32px 0;
    }
    .step-bullet {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.6;
        padding: 0 0 0 20px;
        position: relative;
        opacity: 0;
        transform: translateY(10px);
        transition:
            opacity 0.45s ease,
            transform 0.45s ease;
    }
    .step-bullet::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #0e6fff;
        font-weight: 700;
        font-size: 13px;
    }
    .step-row.is-visible .step-bullet:nth-child(1) {
        opacity: 1;
        transform: none;
        transition-delay: 0.15s;
    }
    .step-row.is-visible .step-bullet:nth-child(2) {
        opacity: 1;
        transform: none;
        transition-delay: 0.3s;
    }
    .step-row.is-visible .step-bullet:nth-child(3) {
        opacity: 1;
        transform: none;
        transition-delay: 0.45s;
    }
    .step-row.is-visible .step-bullet:nth-child(4) {
        opacity: 1;
        transform: none;
        transition-delay: 0.6s;
    }
    .step-cta {
        display: inline-block;
        padding: 12px 28px 12px 28px;
        background: transparent;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        transition:
            border-color 0.2s ease,
            background 0.2s ease;
    }
    .step-cta:hover {
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
    }

    /* --- Pricing --- */
    .sec-head--pricing-compare {
        margin: 96px 0 0 0;
    }
    /* Plan Cards */
    .plan-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        overflow: visible;
    }
    .plan-card {
        position: relative;
        border: 1.5px solid #e0eaf8;
        border-radius: 8px;
        padding: 32px 32px 32px 32px;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        transition:
            background-color 0.3s ease,
            border-color 0.3s ease,
            transform 0.25s ease,
            box-shadow 0.3s ease;
        cursor: pointer;
    }
    .plan-card .plan-name,
    .plan-card .plan-tagline,
    .plan-card .plan-price,
    .plan-card .plan-price span,
    .plan-card .plan-features li strong,
    .plan-card .plan-features li span,
    .plan-card .plan-features li::before {
        transition:
            color 0.3s ease,
            background-color 0.3s ease;
    }
    .plan-card .plan-btn {
        transition:
            background 0.3s ease,
            border-color 0.3s ease,
            color 0.3s ease;
    }
    .plan-card:not(.plan-card--featured):hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(14, 111, 255, 0.35);
    }
    .plan-card--featured {
        background: #0e6fff;
        border-color: #0e6fff;
        transition:
            transform 0.2s ease,
            box-shadow 0.2s ease;
    }
    .plan-card--featured:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(14, 111, 255, 0.35);
    }
    .plan-badge {
        position: absolute;
        top: -16px;
        right: 24px;
        background: #ffffff;
        color: #0e6fff;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 16px 4px 16px;
        border-radius: 8px;
        border: 1.5px solid #0e6fff;
    }
    .plan-card-head {
        margin: 0 0 32px 0;
    }
    .plan-name {
        display: block;
        font-size: 24px;
        font-weight: 800;
        color: #ffffff;
        margin: 0 0 4px 0;
    }
    .plan-card--featured .plan-name {
        font-size: 48px;
        background: linear-gradient(135deg, #8B6914 0%, #F5D27A 40%, #D4A017 60%, #F5E09A 80%, #9A7020 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter:
            drop-shadow(1px 1px 0 #6b4800)
            drop-shadow(2px 2px 0 #4d3400)
            drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.7));
    }
    .plan-tagline {
        display: block;
        font-size: 12px;
        color: #8a9ab8;
        margin: 0 0 20px 0;
    }
    .plan-card--featured .plan-tagline {
        color: rgba(255, 255, 255, 0.7);
    }
    .plan-price {
        font-size: 48px;
        font-weight: 900;
        color: #ffffff;
        letter-spacing: -0.03em;
        line-height: 1;
    }
    .plan-price span {
        font-size: 12px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        margin: 0 0 0 4px;
    }
    .plan-features {
        list-style: none;
        margin: 0 0 32px 0;
        padding: 0 0 0 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 1;
    }
    .plan-features li {
        display: flex;
        align-items: flex-start;
        padding: 0 0 0 16px;
        position: relative;
    }
    .plan-features li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #0e6fff;
        flex-shrink: 0;
    }
    .plan-card--featured .plan-features li::before {
        background: #ffffff;
    }
    .plan-features li div {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .plan-features li strong {
        font-size: 16px;
        font-weight: 700;
        color: #0d1a3d;
    }
    .plan-card--featured .plan-features li strong {
        color: #ffffff;
    }
    .plan-features li span {
        font-size: 12px;
        color: #8a9ab8;
        line-height: 1.6;
    }
    .plan-card--featured .plan-features li span {
        color: rgba(255, 255, 255, 0.7);
    }
    .plan-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px 0 16px 0;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 700;
        background: transparent;
        border: 2px solid #5e5e5e;
        color: #5e5e5e;
        transition:
            background 0.2s ease,
            color 0.2s ease,
            border-color 0.2s ease;
        box-sizing: border-box;
    }
    .plan-btn:hover {
        background: #0e6fff;
        border-color: #0e6fff;
        color: #ffffff;
    }
    .plan-btn--fill {
        border-color: #5e5e5e;
        color: #5e5e5e;
    }
    .plan-btn--fill:hover {
        background: #ffffff;
        border-color: #ffffff;
        color: #0e6fff;
    }

    /* Comparison Table */
    .price-tbl-wrap {
        overflow-x: auto;
    }
    .price-tbl {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    .price-tbl thead th {
        padding: 16px 16px 16px 16px;
        font-size: 24px;
        font-weight: 700;
        color: #0d1a3d;
        border-bottom: 2px solid #e8eff8;
        text-align: center;
    }
    .price-tbl thead th.ptbl-col-feat,
    .price-tbl tbody td.ptbl-col-feat {
        text-align: center;
        width: 18%;
    }
    .price-tbl thead th.ptbl-col-desc,
    .price-tbl tbody td.ptbl-col-desc {
        text-align: center;
        width: 36%;
    }
    .price-tbl tbody tr:nth-child(odd) {
        background: #f7faff;
    }
    .price-tbl tbody tr:nth-child(even) {
        background: #ffffff;
    }
    .price-tbl td {
        padding: 16px 16px 16px 16px;
        font-size: 16px;
        color: #0d1a3d;
        border-bottom: 1px solid #e8eff8;
        text-align: center;
        vertical-align: middle;
    }
    .price-tbl tbody td.ptbl-col-desc {
        color: #8a9ab8;
        font-weight: 400;
    }
    .price-tbl tbody td.ptbl-col-desc br {
        display: none;
    }
    .price-tbl thead th.col-featured {
        background: rgba(14, 111, 255, 0.12);
        color: #0e6fff;
        font-size: 28px;
        font-weight: 800;
        letter-spacing: 0.02em;
    }
    .price-tbl tbody td.col-featured {
        background: rgba(14, 111, 255, 0.12);
        padding: 24px 16px 24px 16px;
    }
    .price-tbl td.ptd-ok {
        color: #0e6fff;
        font-weight: 700;
        font-size: 20px;
    }
    .price-tbl td.col-featured.ptd-ok {
        font-size: 28px;
    }
    .price-tbl td.ptd-no {
        color: #c8d4e4;
        font-size: 16px;
    }
    .price-tbl td.ptd-dash {
        color: #c8d4e4;
        font-size: 16px;
    }
    .ptd-badge {
        display: inline-block;
        padding: 4px 8px 4px 8px;
        border-radius: 0;
        font-size: 12px;
        font-weight: 600;
    }
    .col-featured .ptd-badge {
        padding: 8px 16px 8px 16px;
        font-size: 16px;
        font-weight: 700;
    }
    .ptd-badge--green {
        background: transparent;
        color: #0e6fff;
    }
    .ptd-badge--gray {
        background: transparent;
        color: #8a9ab8;
    }
    .ptd-badge--blue {
        background: transparent;
        color: #0e6fff;
    }
    .ptd-badge--lightblue {
        background: transparent;
        color: #0e6fff;
    }

    /* --- Utility --- */
    .tbl-note {
        display: block;
        color: #8a9ab8;
        font-size: 12px;
        margin: 4px 0 0 0;
    }
    .company-mail {
        color: #0e6fff;
    }

    /* --- Coming Soon --- */
    .coming-soon-sec {
        padding: 176px 0 176px 0;
        background: #0a1432;
        text-align: center;
    }
    .cs-content {
        text-align: center;
    }
    .cs-title {
        font-size: 96px;
        font-weight: 900;
        color: #ffffff;
        letter-spacing: 0.04em;
        margin: 0 0 0 0;
        line-height: 1;
    }

    /* --- News & Partners --- */
    .news-sec {
        padding: 120px 0 120px 0;
        background: transparent;
        position: relative;
        z-index: 2;
    }
    .news-list {
        margin-top: 48px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .news-row.anim-up {
        transition-duration: 1s;
    }
    .news-row.d1 {
        transition-delay: 0.1s;
    }
    .news-row.d2 {
        transition-delay: 0.4s;
    }
    .news-row.d3 {
        transition-delay: 0.7s;
    }
    .news-row {
        display: flex;
        align-items: flex-start;
        gap: 48px;
        padding: 36px 12px 36px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .news-row-left {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        width: 140px;
    }
    .news-category {
        font-size: 22px;
        font-weight: 900;
        letter-spacing: 0.04em;
        line-height: 1;
        white-space: nowrap;
    }
    .news-category--partner {
        background: linear-gradient(135deg, #4da3ff 0%, #a78bff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .news-category--news {
        color: #ffffff;
    }
    .news-row-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1;
    }
    .news-title {
        font-size: 18px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.5;
        margin: 0;
    }
    .news-desc {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.85;
    }
    .news-links {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 4px;
    }
    .news-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 13px;
        font-weight: 600;
        color: #0e6fff;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }
    .news-link:hover {
        opacity: 0.7;
    }
    .news-more-wrap {
        display: flex;
        justify-content: center;
        margin: 56px 0 0 0;
    }
    .news-more-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px 16px 32px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.16);
        text-decoration: none;
        transition:
            background 0.2s ease,
            border-color 0.2s ease,
            transform 0.2s ease;
    }
    .news-more-link:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.32);
        transform: translateY(-1px);
    }
    .news-more-link i {
        font-size: 14px;
        transition: transform 0.2s ease;
    }
    .news-more-link:hover i {
        transform: translateX(4px);
    }

    /* --- Cases (Case Studies) --- */
    .cases-sec {
        position: relative;
        z-index: 2;
        padding: 120px 0 120px 0;
        background: transparent;
    }
    .cases-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin: 48px 0 0 0;
    }
    .case-card {
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease, border-color 0.3s ease,
            background 0.3s ease, box-shadow 0.3s ease;
    }
    a.case-card:hover {
        transform: translateY(-4px);
        border-color: rgba(162, 107, 255, 0.4);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: 0 24px 48px -24px rgba(99, 102, 241, 0.6);
    }
    .case-card-thumb {
        position: relative;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: #0e0e14;
    }
    .case-card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }
    a.case-card:hover .case-card-thumb img {
        transform: scale(1.05);
    }
    .case-card-body {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 24px 24px 24px 24px;
        flex: 1;
    }
    .case-card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .case-tag {
        display: inline-block;
        padding: 4px 10px 4px 10px;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.7);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .case-card-title {
        font-size: 17px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.45;
        letter-spacing: 0.01em;
        margin: 4px 0 0 0;
    }
    .case-card-sub {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.5);
        margin: 0 0 0 0;
    }
    .case-card-desc {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.8;
        margin: 0 0 0 0;
    }
    .case-card-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin: auto 0 0 0;
        padding: 8px 0 0 0;
        font-size: 13px;
        font-weight: 700;
        color: #0e6fff;
        letter-spacing: 0.04em;
    }
    .case-card-more i {
        font-size: 14px;
        transition: transform 0.2s ease;
    }
    a.case-card:hover .case-card-more i {
        transform: translateX(4px);
    }
    .case-card--coming {
        opacity: 0.78;
    }
    .case-card--coming .case-card-thumb {
        flex: 1;
        aspect-ratio: auto;
        height: 100%;
    }
    .case-card--coming .case-card-thumb img {
        filter: grayscale(80%);
    }
    .case-card-coming-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(8, 8, 15, 0.7);
        color: rgba(255, 255, 255, 0.92);
        font-size: 24px;
        font-weight: 800;
        letter-spacing: 0.2em;
    }
    /* --- FAQ --- */
    .faq-list {
        display: flex;
        flex-direction: column;
    }
    .faq-item {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        background: transparent;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 0 0 0 0;
    }
    .faq-item:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .faq-item:hover {
        background: transparent;
        border-color: rgba(255, 255, 255, 0.1);
    }
    .faq-item.open {
        background: transparent;
        box-shadow: none;
    }
    .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 28px 0 28px 0;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        transition: color 0.2s ease;
        text-align: left;
        width: 100%;
        gap: 24px;
        background: transparent;
        border: none;
    }
    .faq-q::before {
        display: none;
    }
    .faq-q:hover {
        color: #ffffff;
    }
    .faq-icon {
        position: relative;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        transition: transform 0.35s ease;
    }
    .faq-icon::before,
    .faq-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background: rgba(255, 255, 255, 0.55);
        transition:
            background 0.3s ease,
            opacity 0.2s ease;
    }
    .faq-icon::before {
        width: 14px;
        height: 1.5px;
        transform: translate(-50%, -50%);
    }
    .faq-icon::after {
        width: 1.5px;
        height: 14px;
        transform: translate(-50%, -50%);
    }
    .faq-item.open .faq-icon {
        transform: rotate(90deg);
    }
    .faq-item.open .faq-icon::before {
        background: #0e6fff;
    }
    .faq-item.open .faq-icon::after {
        background: #0e6fff;
        opacity: 0;
    }
    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .faq-item.open .faq-a {
        max-height: 400px;
    }
    .faq-a p {
        padding: 0 40px 28px 0;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.9;
    }

    /* --- Company --- */
    .company-sec {
        padding: 120px 0 120px 0;
        background: #ffffff;
    }
    .company-mv {
        margin: 0 0 28px 0;
    }
    .company-mv-label {
        font-size: 12px;
        font-weight: 700;
        color: #0e6fff;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        display: block;
        margin: 0 0 8px 0;
    }
    .company-mv-heading {
        font-size: 15px;
        font-weight: 600;
        color: #0d1a3d;
        line-height: 1.7;
        margin: 0 0 20px 0;
    }
    .company-mv-text {
        font-size: 15px;
        color: #5c6b8a;
        line-height: 1.9;
        margin: 0 0 0 0;
    }
    .company-body {
        max-width: 100%;
        margin: 0 0 48px 0;
    }
    .company-body .sec-title {
        margin: 0 0 16px 0;
    }
    .company-body p {
        font-size: 15px;
        color: #5c6b8a;
        line-height: 1.9;
    }
    .company-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 8px;
    }
    .company-table tr {
        border-bottom: 1px solid #e0ecff;
    }
    .company-table th {
        padding: 14px 20px 14px 20px;
        font-size: 15px;
        font-weight: 600;
        color: #8a9ab8;
        text-align: left;
        white-space: nowrap;
        width: 28%;
        vertical-align: top;
    }
    .company-table td {
        padding: 14px 0 14px 0;
        font-size: 16px;
        color: #0d1a3d;
        line-height: 1.7;
    }
    .company-map {
        border-radius: 8px;
        overflow: hidden;
    }
    .company-map iframe {
        display: block;
        width: 100%;
        height: 360px;
        filter: grayscale(100%);
        border: 0;
    }

    /* --- Final CTA --- */
    .final-cta {
        padding: 120px 0 120px 0;
        background: url("img/CTA.png") center / cover no-repeat;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-inner {
        position: relative;
        z-index: 1;
    }
    .cta-title {
        font-size: 44px;
        color: #ffffff;
        letter-spacing: -0.025em;
        line-height: 1.3;
        margin: 0 0 20px 0;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    }
    .cta-desc {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.8);
        margin: 0 0 48px 0;
        line-height: 1.8;
    }
    /* SP 用改行を PC では無効化（1行表示） */
    .cta-desc-br-sp {
        display: none;
    }
    .cta-btns {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn-white {
        display: inline-block;
        padding: 18px 40px 18px 40px;
        background: #ffffff;
        color: #0e6fff;
        font-size: 16px;
        font-weight: 700;
        border-radius: 8px;
        transition:
            transform 0.15s ease,
            box-shadow 0.15s ease;
    }
    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    /* Final CTA 専用：シアン系ピルボタン */
    .final-cta .btn-cta {
        display: inline-block;
        padding: 18px 40px;
        background: linear-gradient(180deg, #2ecbff 0%, #0eb0e8 100%);
        color: #ffffff;
        font-size: 16px;
        font-weight: 700;
        border-radius: 999px;
        text-decoration: none;
        transition:
            transform 0.15s ease,
            box-shadow 0.15s ease,
            filter 0.15s ease;
        box-shadow: 0 4px 20px rgba(14, 176, 232, 0.45);
    }
    .final-cta .btn-cta:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
        box-shadow: 0 8px 28px rgba(14, 176, 232, 0.55);
    }
    .btn-white-ol {
        display: inline-block;
        padding: 16px 40px 16px 40px;
        background: transparent;
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        border: 2px solid rgba(255, 255, 255, 0.6);
        border-radius: 8px;
        transition:
            border-color 0.2s ease,
            background 0.2s ease;
    }
    .btn-white-ol:hover {
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.08);
    }

    /* --- Footer --- */
    .footer {
        background: #060d1f;
        padding: 80px 0 40px 0;
        position: relative;
        overflow: hidden;
    }
    .footer-canvas-wrap {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .footer-canvas-wrap canvas {
        display: block;
        width: 100%;
        height: 100%;
    }
    .footer .container {
        position: relative;
        z-index: 1;
    }
    .footer-top {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 80px;
        margin: 0 0 64px 0;
    }
    .footer-logo-img {
        height: 56px;
        width: auto;
        display: block;
        margin: 0 0 24px 0;
    }
    .footer-tagline {
        font-size: 13px;
        color: #ffffff;
        line-height: 1.8;
        margin: 0 0 64px 0;
    }
    .footer-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
    .footer-grp-ttl {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin: 0 0 12px 0;
    }
    .footer-link-list {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }
    .footer-link {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        transition: color 0.2s ease;
    }
    .footer-link::before {
        content: "- ";
    }
    .footer-link:hover {
        color: #ffffff;
    }
    .footer-contact {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        margin: 16px 0 0 0;
    }
    .footer-contact-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .footer-contact-mail {
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        transition: color 0.2s ease;
    }
    .footer-contact-mail:hover {
        color: rgba(255, 255, 255, 0.7);
    }
    .footer-contact-hours {
        font-size: 13px;
        color: #ffffff;
    }
    .footer-sns {
        display: flex;
        gap: 12px;
        flex-shrink: 0;
    }
    .footer-sns-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font-size: 24px;
        transition:
            background 0.2s ease,
            color 0.2s ease;
    }
    .footer-sns-link:hover {
        background: #ffffff;
        color: #000000;
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer-copy {
        font-size: 13px;
        color: #ffffff;
    }
    .footer-legal {
        display: flex;
        gap: 24px;
    }
    .footer-legal-a {
        font-size: 13px;
        color: #ffffff;
        transition: color 0.2s ease;
    }
    .footer-legal-a:hover {
        color: rgba(255, 255, 255, 0.6);
    }

    /* --- Dark Theme: Section Overrides --- */
    .sec {
        background: transparent;
        position: relative;
        z-index: 2;
    }
    .sec--alt {
        background: rgba(255, 255, 255, 0.025);
    }

    .sec-title {
        color: #767676;
    }
    .title-accent {
        color: #ffffff;
    }
    .title-grad {
        background: linear-gradient(135deg, #4da3ff 0%, #a78bff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .about-body .sec-title {
        color: #767676;
    }
    .sec-desc {
        color: rgba(255, 255, 255, 0.65);
        padding: 0 0 24px 0;
    }
    .text-white {
        color: #ffffff;
        font-weight: 700;
    }
    .text-highlight {
        color: #ffffff;
        font-weight: 700;
    }

    .hero {
        z-index: 2;
    }
    .mission-sec {
        z-index: 2;
    }
    .coming-soon-sec {
        background: #545454;
        z-index: 2;
    }
    .company-sec {
        background: transparent;
        z-index: 2;
    }
    .final-cta {
        z-index: 2;
    }

    .problems-list {
        border-top-color: rgba(255, 255, 255, 0.1);
    }
    .problem-row {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    .prob-num {
        color: #f4f4f4;
    }
    .prob-title {
        color: #ffffff;
    }
    .prob-text {
        color: rgba(255, 255, 255, 0.65);
    }

    .sec--dark-particle {
        background: rgb(8 9 10 / 36%);
    }
    .mission-quote {
        color: #ffffff;
    }
    .localize-lead {
        color: rgba(255, 255, 255, 0.55);
    }
    .localize-list li {
        border-bottom-color: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.65);
    }
    .localize-list li:first-child {
        border-top-color: rgba(255, 255, 255, 0.08);
    }
    .localize-list li strong {
        color: #ffffff;
    }
    .strength-card {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.08);
    }
    .strength-title {
        color: #ffffff;
    }
    .strength-text {
        color: rgba(255, 255, 255, 0.6);
    }

    .mission-alt-quote {
        color: #ffffff;
    }
    .mission-alt-sub {
        color: rgba(255, 255, 255, 0.55);
    }
    .compare-card--before {
        background: rgba(231, 231, 231, 0.21);
        border-color: rgba(255, 255, 255, 0.45);
    }
    .compare-card--after {
        background: rgba(14, 111, 255, 0.1);
        border-color: #0e6fff;
    }
    .compare-badge--no {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
    }
    .compare-card--before .compare-list li {
        color: rgba(255, 255, 255, 0.85);
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }
    .compare-card--before .compare-list li::before {
        color: rgba(255, 255, 255, 0.2);
    }
    .compare-card--after .compare-list li {
        color: rgba(255, 255, 255, 0.8);
        border-bottom-color: rgba(14, 111, 255, 0.2);
    }
    .str-rows {
        border-top-color: rgba(255, 255, 255, 0.08);
    }
    .str-row {
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }
    .str-row-title {
        color: #ffffff;
    }
    .str-row-text {
        color: rgba(255, 255, 255, 0.6);
    }

    .plan-card {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.1);
    }
    /* .plan-card--featured { border-color: #0E6FFF; } */
    .plan-name {
        color: #ffffff;
    }
    .plan-tagline {
        color: rgba(255, 255, 255, 0.45);
    }
    .plan-price {
        color: #ffffff;
    }
    .plan-features li strong {
        color: #ffffff;
    }
    .plan-features li span {
        color: rgba(255, 255, 255, 0.5);
    }
    .price-tbl thead th {
        color: rgba(255, 255, 255, 0.8);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    .price-tbl td {
        color: rgba(255, 255, 255, 0.65);
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }
    .price-tbl tbody td.ptbl-col-feat {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
    }
    .price-tbl tbody td.ptbl-col-desc {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 400;
    }
    .price-tbl tbody tr:nth-child(odd) {
        background: rgba(255, 255, 255, 0.04);
    }
    .price-tbl tbody tr:nth-child(even) {
        background: transparent;
    }
    .price-tbl thead th.col-featured {
        background: rgba(14, 111, 255, 0.25);
        color: #93c5fd;
    }
    .price-tbl tbody td.col-featured {
        background: rgba(14, 111, 255, 0.12);
    }
    .price-tbl td.ptd-dash {
        color: rgba(255, 255, 255, 0.2);
    }
    .ptd-badge--green {
        background: transparent;
        color: #ffffff;
    }
    .ptd-badge--gray {
        background: transparent;
        color: rgba(255, 255, 255, 0.65);
    }
    .ptd-badge--blue {
        background: transparent;
        color: #ffffff;
    }
    .ptd-badge--lightblue {
        background: transparent;
        color: rgba(255, 255, 255, 0.65);
    }
    .tbl-note {
        color: rgba(255, 255, 255, 0.4);
    }

    .company-mv-heading {
        color: #ffffff;
    }
    .company-mv-text {
        color: rgba(255, 255, 255, 0.65);
    }
    .company-body p {
        color: rgba(255, 255, 255, 0.65);
    }
    .company-table tr {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    .company-table th {
        color: rgba(255, 255, 255, 0.45);
    }
    .company-table td {
        color: #ffffff;
    }
    .company-map {
        outline: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about-body p {
        color: rgba(255, 255, 255, 0.65);
    }
} /* end @media (min-width: 768px) */

/* =============================================
       SP Styles (767px and below)
    ============================================= */
@media (max-width: 767px) {
    /* --- Base --- */
    .container {
        max-width: 100%;
        margin: 0 auto 0 auto;
        padding: 0 20px 0 20px;
    }

    /* --- Nav --- */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        z-index: 1000;
        transition:
            background 0.5s ease,
            backdrop-filter 0.5s ease;
    }
    .nav.scrolled {
        background: rgba(7, 7, 9, 0.15);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav.nav-open {
        background: rgba(7, 7, 9, 0.15);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-inner {
        box-sizing: border-box;
        width: 100%;
        padding: 0 calc(16px + env(safe-area-inset-right, 0px)) 0
            calc(16px + env(safe-area-inset-left, 0px));
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        align-content: flex-start;
    }
    .nav-logo {
        display: flex;
        align-items: center;
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
        height: 60px;
        margin-left: 0;
    }
    .nav-logo-img {
        height: 24px;
        width: auto;
        display: block;
    }
    .nav-inner > .lang-switch {
        order: 2;
        margin: 0 16px 0 0;
        height: 60px;
        align-items: center;
    }
    .nav-menu {
        display: none;
        order: 4;
        width: 100%;
    }
    .nav-menu.is-open,
    .nav-menu.is-closing {
        display: flex;
        flex-direction: column;
        padding: 16px 20px 24px 20px;
        gap: 4px;
    }
    @keyframes navItemIn {
        from {
            opacity: 0;
            transform: translateY(-14px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    @keyframes navItemOut {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(-10px);
        }
    }
    .nav-menu.is-open li {
        opacity: 0;
        animation: navItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .nav-menu.is-open li:nth-child(1) {
        animation-delay: 0.08s;
    }
    .nav-menu.is-open li:nth-child(2) {
        animation-delay: 0.2s;
    }
    .nav-menu.is-open li:nth-child(3) {
        animation-delay: 0.32s;
    }
    .nav-menu.is-open li:nth-child(4) {
        animation-delay: 0.44s;
    }
    .nav-menu.is-open li:nth-child(5) {
        animation-delay: 0.56s;
    }
    .nav-menu.is-open li:nth-child(6) {
        animation-delay: 0.68s;
    }
    .nav-menu.is-closing li {
        animation: navItemOut 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .nav-menu.is-closing li:nth-child(6) {
        animation-delay: 0s;
    }
    .nav-menu.is-closing li:nth-child(5) {
        animation-delay: 0.08s;
    }
    .nav-menu.is-closing li:nth-child(4) {
        animation-delay: 0.16s;
    }
    .nav-menu.is-closing li:nth-child(3) {
        animation-delay: 0.24s;
    }
    .nav-menu.is-closing li:nth-child(2) {
        animation-delay: 0.32s;
    }
    .nav-menu.is-closing li:nth-child(1) {
        animation-delay: 0.4s;
    }
    .nav-link {
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        padding: 12px 0 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: block;
    }
    .nav-cta {
        display: block;
        padding: 14px 0 14px 0;
        background: #0e6fff;
        color: #ffffff;
        font-size: 15px;
        font-weight: 700;
        border-radius: 8px;
        text-align: center;
        margin-top: 8px;
    }
    .nav-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 32px;
        height: 60px;
        order: 3;
    }
    .ham-line {
        display: block;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    /* --- Hero --- */
    .hero {
        position: relative;
        z-index: 2;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        padding: 100px 0 60px 0;
        background: #070709;
        overflow-x: clip;
        overflow-y: visible;
    }
    .hero-canvas-wrap {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
    }
    #canvas-webgl {
        display: block;
        width: 100%;
        height: 100%;
    }
    .hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to bottom, rgba(7, 7, 9, 0.6) 0%, rgba(7, 7, 9, 0.3) 100%);
        pointer-events: none;
    }
    .hero-bg-logo {
        position: absolute;
        right: -10%;
        top: 77%;
        transform: translateY(-50%);
        z-index: 1;
        width: 90%;
        pointer-events: none;
        opacity: 0.05;
    }
    .hero-bg-logo img {
        width: 100%;
        display: block;
    }
    .hero > .container {
        position: relative;
        z-index: 2;
        width: 100%;
    }
    .hero-content {
        position: relative;
        z-index: 2;
    }
    .hero-title {
        font-size: 36px;
        font-weight: 900;
        color: #ffffff;
        letter-spacing: 0em;
        line-height: 1.2;
        margin: 0 0 40px 0;
    }
    .hero-title em {
        font-size: 31px;
        font-style: normal;
        background: linear-gradient(135deg, #4da3ff 0%, #a78bff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .hero-subtitle {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.62);
        line-height: 1.85;
        margin: 0 0 40px 0;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 0 0 40px 0;
    }
    .btn-secondary {
        display: block;
        padding: 14px 24px 14px 24px;
        background: rgba(255, 255, 255, 0.07);
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        backdrop-filter: blur(8px);
    }
    .hero-scroll-hint {
        position: absolute;
        bottom: -38px;
        left: 0;
        right: 0;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: 9px;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }
    .hero-scroll-dots {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .scroll-dot {
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        animation: dotFlow 1.4s ease-in-out infinite;
    }
    .scroll-dot:nth-child(1) {
        animation-delay: 0s;
    }
    .scroll-dot:nth-child(2) {
        animation-delay: 0.2s;
    }
    .scroll-dot:nth-child(3) {
        animation-delay: 0.4s;
    }
    .scroll-dot:nth-child(4) {
        animation-delay: 0.6s;
    }
    @keyframes dotFlow {
        0% {
            opacity: 0.12;
            transform: translateY(-3px);
        }
        40% {
            opacity: 1;
            transform: translateY(0);
        }
        100% {
            opacity: 0.12;
            transform: translateY(3px);
        }
    }
    .hero-scroll-hint.anim-up {
        transform: none;
    }
    .hero-scroll-hint.anim-up.is-visible {
        transform: none;
        opacity: 1;
    }

    /* --- Stats Bar --- */
    .stats-bar {
        background: #070709;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 40px 0 40px 0;
    }
    .stats-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        padding: 0 0 0 0;
        text-align: center;
    }
    .stat-num {
        display: block;
        font-size: 32px;
        font-weight: 900;
        color: #ffffff;
        letter-spacing: -0.03em;
        line-height: 1;
        margin: 0 0 6px 0;
    }
    .stat-unit {
        font-size: 14px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.6);
    }
    .stat-label {
        display: block;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.45);
        letter-spacing: 0.04em;
    }

    /* --- Common Section --- */
    .sec {
        padding: 72px 0 72px 0;
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }
    .sec--alt {
        background: #f7faff;
    }
    .sec-head {
        margin: 0 0 40px 0;
    }
    .sec-head--c {
        text-align: center;
    }
    .sec-title {
        font-size: 32px;
        font-weight: 900;
        color: #767676;
        letter-spacing: 0.02em;
        line-height: 1.3;
        margin: 0 0 24px 0;
        white-space: normal;
    }
    .title-accent {
        color: #ffffff;
    }
    .title-grad {
        background: linear-gradient(135deg, #4da3ff 0%, #a78bff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .sec-desc {
        font-size: 14px;
        color: #5c6b8a;
        line-height: 1.8;
        white-space: normal;
    }

    /* --- Problems --- */
    .problems-list {
        display: flex;
        flex-direction: column;
        border-top: 1px solid rgba(14, 111, 255, 0.2);
    }
    .problem-row {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 32px 0 32px 0;
        border-bottom: 1px solid rgba(14, 111, 255, 0.2);
        overflow: hidden;
    }
    .prob-num {
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 128px;
        font-weight: 800;
        line-height: 1;
        color: rgba(255, 255, 255, 0.05);
        letter-spacing: -4px;
        z-index: 0;
        pointer-events: none;
    }
    .prob-title {
        font-size: 15px;
        font-weight: 700;
        line-height: 1.5;
        margin: 0 0 0 0;
        position: relative;
        z-index: 1;
    }
    .prob-text {
        font-size: 13px;
        line-height: 1.8;
        position: relative;
        z-index: 1;
    }

    /* --- AI Process --- */
    #ai-process {
        background: #000000;
    }
    #ai-process .sec-title {
        font-size: 29px;
    }
    .ai-process-img {
        max-width: 100%;
        margin: 0 auto 0 auto;
    }

    /* --- About --- */
    #mission,
    #localize-alt {
        overflow: visible;
    }
    .dxinno-bg-logo {
        width: 70%;
        left: -8%;
    }
    .about-bg-logo {
        position: absolute;
        top: 0;
        right: -4%;
        transform: translateY(-50%) translateZ(0);
        z-index: 10;
        width: 80%;
        pointer-events: none;
        opacity: 0.04;
    }
    .about-bg-logo img {
        width: 100%;
        display: block;
    }
    .about-body .sec-title {
        margin: 0 0 16px 0;
    }
    .about-body p {
        font-size: 14px;
        color: #5c6b8a;
        line-height: 1.9;
        margin: 0 0 16px 0;
    }
    .about-tags {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 20px;
    }
    .about-tag {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 14px 12px 14px;
        background: rgb(233 233 233 / 6%);
        color: #ffffff;
        font-size: 12px;
        font-weight: 600;
        border-radius: 12px;
        border: 1px solid rgb(100 100 100 / 89%);
        letter-spacing: 0.02em;
        text-align: center;
    }

    /* --- Mission New --- */
    .sec--dark-particle {
        background: rgb(8 9 10 / 36%);
        padding: 72px 0 72px 0;
    }
    .sec--dark-particle .sec-title {
        font-size: 28px;
        white-space: normal;
    }
    #mission .sec-title {
        white-space: normal;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mission-label {
        margin: 0 0 24px 0;
    }
    .mission-quote {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        font-size: 22px;
        margin: 0 auto 16px auto;
        white-space: normal;
        text-align: center;
    }
    .mission-sub {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.55);
        margin: 16px auto 0 auto;
        text-align: center;
    }

    /* --- Localize --- */
    .localize-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .localize-left .sec-title {
        font-size: 28px;
    }
    .localize-list li {
        font-size: 13px;
        padding: 12px 0 12px 24px;
    }
    .localize-list li::before {
        top: 12px;
    }

    .sp-br {
        display: block;
    }
    .sp-block {
        display: block;
    }

    /* --- Strengths --- */
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .strength-card {
        padding: 32px 24px 32px 24px;
        margin-bottom: 40px;
    }
    .strength-card:last-child {
        margin-bottom: 0;
    }
    .strength-num {
        font-size: 48px;
    }
    .strength-title {
        font-size: 16px;
    }

    /* --- Mission Alt --- */
    .mission-alt-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .mission-alt-left {
        display: none;
    }
    #mission-alt .sec-title {
        font-size: 28px;
        white-space: normal;
    }
    .mission-alt-quote {
        font-size: 16px;
        margin: 0 0 16px 0;
    }
    .mission-alt-sub {
        font-size: 14px;
    }

    /* --- Localize Alt --- */
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .compare-card {
        padding: 24px 24px 24px 24px;
    }

    /* --- Strengths Alt --- */
    .str-row {
        grid-template-columns: 80px 1fr;
        gap: 24px;
        padding: 32px 0 32px 0;
    }
    .str-row-num {
        font-size: 56px;
    }
    .str-row-title {
        font-size: 18px;
    }
    .str-row-text {
        font-size: 14px;
    }

    /* --- Features --- */
    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .feat-card {
        position: relative;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
        height: 200px;
        border-radius: 8px;
        color: #ffffff;
    }
    .feat-card-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }
    .feat-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 60%);
        pointer-events: none;
    }
    .feat-card-inner {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 14px 14px 14px 14px;
    }
    .feat-title {
        font-size: 13px;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 0 0;
        line-height: 1.4;
    }
    .feat-text {
        display: none;
    }

    /* --- Demo --- */
    .demo-panel {
        background: #ffffff;
        border: 1px solid #e0ecff;
        border-radius: 12px;
        overflow: hidden;
    }
    .demo-screen-img {
        display: block;
        width: 100%;
        height: auto;
    }
    .demo-tabs {
        gap: 4px;
        padding: 4px 4px 4px 4px;
        overflow-x: auto;
    }
    .demo-tab {
        padding: 9px 14px 9px 14px;
        font-size: 13px;
        white-space: nowrap;
    }
    .demo-tab.coming-soon::after {
        font-size: 9px;
        top: -20px;
        padding: 1px 6px 1px 6px;
    }
    .demo-pane {
        padding: 16px 16px 16px 16px;
    }
    .demo-list-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .demo-pagination-info {
        flex-wrap: wrap;
    }
    .demo-company-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .demo-message-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    .demo-msg-sidebar {
        border-right: none;
        border-bottom: 1px solid #e0ecff;
    }
    .demo-msg-body {
        min-height: 200px;
    }

    /* --- Steps --- */
    .steps-list {
        display: flex;
        flex-direction: column;
    }
    .step-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 32px 0 32px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .step-row:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .step-num {
        display: block;
        font-size: 96px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.15);
        letter-spacing: 0.08em;
        line-height: 1;
        margin: 0 0 -48px 0;
        text-align: right;
    }
    .step-title {
        font-size: 22px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.02em;
        line-height: 1.3;
        margin: 0 0 4px 0;
    }
    .step-sub {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.6;
    }
    .step-desc {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.85;
        margin: 0 0 16px 0;
    }
    .step-bullets {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 0 0 20px 0;
    }
    .step-bullet {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.6;
        padding: 0 0 0 20px;
        position: relative;
        opacity: 0;
        transform: translateY(10px);
        transition:
            opacity 0.45s ease,
            transform 0.45s ease;
    }
    .step-bullet::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #0e6fff;
        font-weight: 700;
        font-size: 12px;
    }
    .step-row.is-visible .step-bullet:nth-child(1) {
        opacity: 1;
        transform: none;
        transition-delay: 0.15s;
    }
    .step-row.is-visible .step-bullet:nth-child(2) {
        opacity: 1;
        transform: none;
        transition-delay: 0.3s;
    }
    .step-row.is-visible .step-bullet:nth-child(3) {
        opacity: 1;
        transform: none;
        transition-delay: 0.45s;
    }
    .step-row.is-visible .step-bullet:nth-child(4) {
        opacity: 1;
        transform: none;
        transition-delay: 0.6s;
    }
    .step-cta {
        display: inline-block;
        padding: 12px 24px 12px 24px;
        background: transparent;
        color: #ffffff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        border: 1.5px solid rgba(255, 255, 255, 0.35);
    }

    /* --- Pricing --- */
    .sec-head--pricing-compare {
        margin: 64px 0 0 0;
    }
    .sec-head--pricing-compare .sec-desc {
        font-size: 13px;
        margin: 0 0 16px 0;
    }
    .plan-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .plan-card {
        padding: 24px 24px 24px 24px;
    }
    .plan-card--featured {
        margin-top: 24px;
    }
    .plan-badge {
        position: static;
        display: inline-block;
        margin: 0 0 16px 0;
        font-size: 13px;
        padding: 6px 16px 6px 16px;
        background: #0e6fff;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-weight: 700;
    }
    .plan-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 24px;
        padding: 16px 0 16px 0;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 700;
        background: transparent;
        color: rgba(255, 255, 255, 0.8);
        border: 1.5px solid rgba(255, 255, 255, 0.4);
    }
    .plan-btn--fill {
        background: #0e6fff;
        color: #ffffff;
        border-color: #0e6fff;
    }
    .plan-price {
        font-size: 40px;
    }
    .price-tbl-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .price-tbl {
        min-width: 600px;
        font-size: 18px;
    }
    .price-tbl thead th {
        padding: 12px 12px 12px 12px;
        font-size: 18px;
        text-align: center;
    }
    .price-tbl td {
        padding: 12px 8px 12px 8px;
        font-size: 12px;
        text-align: center;
    }
    .ptd-badge {
        font-size: 11px;
        padding: 3px 8px 3px 8px;
        border-radius: 0;
    }

    /* --- Company --- */
    .company-sec {
        padding: 72px 0 72px 0;
        background: #ffffff;
    }
    .company-body {
        margin: 0 0 32px 0;
        text-align: center;
    }
    .company-body p {
        font-size: 14px;
        color: #5c6b8a;
        line-height: 1.9;
        margin: 0 0 16px 0;
    }
    .company-mv {
        margin: 0 0 24px 0;
    }
    .company-mv-label {
        font-size: 16px;
        font-weight: 700;
        color: #0e6fff;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        display: block;
        margin: 0 0 6px 0;
        text-align: left;
    }
    .company-mv-heading {
        font-size: 14px;
        font-weight: 600;
        color: #0d1a3d;
        line-height: 1.7;
        margin: 0 0 16px 0;
    }
    .company-mv-text {
        font-size: 14px;
        color: #5c6b8a;
        line-height: 1.9;
    }
    .company-table {
        width: 100%;
        border-collapse: collapse;
        margin: 0 auto 0 auto;
        text-align: center;
    }
    .company-table tr {
        border-bottom: 1px solid #e0ecff;
    }
    .company-table th {
        padding: 12px 12px 12px 0;
        font-size: 12px;
        font-weight: 600;
        color: #8a9ab8;
        text-align: center;
        white-space: nowrap;
        width: 36%;
        vertical-align: top;
    }
    .company-table td {
        padding: 12px 0 12px 0;
        font-size: 13px;
        color: #0d1a3d;
        line-height: 1.7;
        text-align: center;
    }
    .company-map {
        border-radius: 8px;
        overflow: hidden;
        margin-top: 24px;
    }
    .company-map iframe {
        display: block;
        width: 100%;
        height: 240px;
        filter: grayscale(100%);
        border: 0;
    }
    .company-mail {
        color: #0e6fff;
    }

    /* --- Coming Soon --- */
    .coming-soon-sec {
        padding: 72px 0 72px 0;
        background: #0a1432;
        text-align: center;
    }
    .cs-content {
        text-align: center;
    }
    .cs-title {
        font-size: 48px;
        font-weight: 900;
        color: #ffffff;
        letter-spacing: 0.04em;
        line-height: 1;
    }

    /* --- News & Partners SP --- */
    .news-sec {
        padding: 72px 0 72px 0;
        background: transparent;
    }
    .news-list {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .news-row {
        flex-direction: column;
        gap: 12px;
        padding: 28px 0 28px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .news-row-left {
        width: auto;
    }
    .news-category {
        font-size: 24px;
    }
    .news-category--partner {
        background: linear-gradient(135deg, #4da3ff 0%, #a78bff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .news-category--news {
        color: #ffffff;
    }
    .news-title {
        font-size: 16px;
    }
    .news-link {
        color: #0e6fff;
    }
    .news-more-wrap {
        display: flex;
        justify-content: center;
        margin: 32px 0 0 0;
    }
    .news-more-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 24px 14px 24px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.06em;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.16);
        text-decoration: none;
    }
    .news-more-link i {
        font-size: 13px;
    }

    /* --- Cases (SP) --- */
    .cases-sec {
        position: relative;
        z-index: 2;
        padding: 72px 0 72px 0;
        background: transparent;
    }
    .cases-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 32px 0 0 0;
    }
    .case-card {
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
    }
    .case-card-thumb {
        position: relative;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: #0e0e14;
    }
    .case-card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .case-card-body {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px 20px 20px 20px;
        flex: 1;
    }
    .case-card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .case-tag {
        display: inline-block;
        padding: 3px 8px 3px 8px;
        border-radius: 8px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.7);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .case-card-title {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.45;
        letter-spacing: 0.01em;
        margin: 4px 0 0 0;
    }
    .case-card-sub {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.5);
        margin: 0 0 0 0;
    }
    .case-card-desc {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.8;
        margin: 0 0 0 0;
    }
    .case-card-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin: auto 0 0 0;
        padding: 4px 0 0 0;
        font-size: 12px;
        font-weight: 700;
        color: #0e6fff;
        letter-spacing: 0.04em;
    }
    .case-card-more i {
        font-size: 13px;
    }
    .case-card--coming {
        opacity: 0.78;
    }
    .case-card--coming .case-card-thumb {
        flex: 1;
        aspect-ratio: auto;
        height: 100%;
        min-height: 220px;
    }
    .case-card--coming .case-card-thumb img {
        filter: grayscale(80%);
    }
    .case-card-coming-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(8, 8, 15, 0.7);
        color: rgba(255, 255, 255, 0.92);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.16em;
    }
    /* --- FAQ --- */
    .faq-item {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        background: transparent;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 0 0 0 0;
    }
    .faq-item:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 22px 0 22px 0;
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        text-align: left;
        width: 100%;
        gap: 16px;
        background: transparent;
        border: none;
        outline: none;
        -webkit-tap-highlight-color: transparent;
    }
    .faq-icon {
        position: relative;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        transition: transform 0.35s ease;
    }
    .faq-icon::before,
    .faq-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background: rgba(255, 255, 255, 0.55);
        transition:
            background 0.3s ease,
            opacity 0.2s ease;
    }
    .faq-icon::before {
        width: 14px;
        height: 1.5px;
        transform: translate(-50%, -50%);
    }
    .faq-icon::after {
        width: 1.5px;
        height: 14px;
        transform: translate(-50%, -50%);
    }
    .faq-item.open .faq-icon {
        transform: rotate(90deg);
    }
    .faq-item.open .faq-icon::before {
        background: #0e6fff;
    }
    .faq-item.open .faq-icon::after {
        background: #0e6fff;
        opacity: 0;
    }
    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .faq-item.open .faq-a {
        max-height: 400px;
    }
    .faq-a p {
        padding: 0 28px 22px 0;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.9;
    }

    /* --- Final CTA --- */
    .final-cta {
        padding: 80px 0 80px 0;
        background: url("img/CTA.png") center / cover no-repeat;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-inner {
        position: relative;
        z-index: 1;
    }
    .cta-title {
        font-size: 28px;
        font-weight: 900;
        color: #ffffff;
        letter-spacing: -0.02em;
        line-height: 1.35;
        margin: 0 0 16px 0;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    }
    .cta-desc {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.88);
        margin: 0 0 24px 0;
        line-height: 1.8;
    }
    .cta-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 320px;
        margin: 0 auto 0 auto;
    }
    .final-cta .btn-cta {
        display: block;
        padding: 16px 24px;
        background: linear-gradient(180deg, #2ecbff 0%, #0eb0e8 100%);
        color: #ffffff;
        font-size: 15px;
        font-weight: 700;
        border-radius: 999px;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 4px 18px rgba(14, 176, 232, 0.4);
    }
    .btn-white-ol {
        display: block;
        padding: 14px 24px 14px 24px;
        background: transparent;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        border: 2px solid rgba(255, 255, 255, 0.6);
        border-radius: 8px;
        text-align: center;
    }

    /* --- Footer --- */
    .footer {
        background: #060d1f;
        padding: 56px 0 32px 0;
        position: relative;
        overflow: hidden;
    }
    .footer-canvas-wrap {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .footer-canvas-wrap canvas {
        display: block;
        width: 100%;
        height: 100%;
    }
    .footer .container {
        position: relative;
        z-index: 1;
    }
    .footer-top {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin: 0 0 48px 0;
    }
    .footer-brand-area {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-logo-img {
        height: 64px;
        width: auto;
        display: block;
        margin: 0 0 16px 0;
    }
    .footer-tagline {
        font-size: 13px;
        color: #ffffff;
        line-height: 1.8;
        margin: 0 0 24px 0;
    }
    .footer-contact {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 20px;
    }
    .footer-contact-mail {
        font-size: 12px;
        font-weight: 600;
        color: #ffffff;
    }
    .footer-contact-hours {
        font-size: 12px;
        color: #ffffff;
    }
    .footer-links {
        order: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        justify-items: center;
        text-align: center;
    }
    .footer-grp-ttl {
        font-size: 16px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin: 0 0 12px 0;
    }
    .footer-link-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .footer-link {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
    }
    .footer-link::before {
        content: "- ";
    }
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
    .footer-copy {
        font-size: 12px;
        color: #ffffff;
    }
    .footer-legal {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
    .footer-legal-a {
        font-size: 12px;
        color: #ffffff;
    }
    .tbl-note {
        display: block;
        color: #8a9ab8;
        font-size: 12px;
        margin-top: 4px;
    }

    /* --- Dark Theme Overrides --- */
    .sec {
        background: transparent;
        position: relative;
        z-index: 2;
    }
    .sec--alt {
        background: rgba(255, 255, 255, 0.025);
    }

    .sec-title {
        color: #767676;
    }
    .title-accent {
        color: #ffffff;
    }
    .about-body .sec-title {
        color: #767676;
    }
    .sec-desc {
        color: rgba(255, 255, 255, 0.65);
    }
    #demo .sec-title {
        font-size: 30px;
    }
    .text-white {
        color: #ffffff;
        font-weight: 700;
    }
    .text-highlight {
        color: #ffffff;
        font-weight: 700;
    }
    .sp-highlight {
        color: #ffffff;
        font-weight: 700;
    }
    .hero {
        z-index: 2;
    }
    .mission-sec {
        z-index: 2;
    }
    .coming-soon-sec {
        background: #545454;
        z-index: 2;
    }
    .company-sec {
        background: transparent;
        z-index: 2;
    }
    .final-cta {
        z-index: 2;
    }
    .problems-list {
        border-top-color: rgba(255, 255, 255, 0.1);
    }
    .problem-row {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    .prob-num {
        color: rgba(255, 255, 255, 0.05);
    }
    .prob-title {
        color: #ffffff;
    }
    .prob-text {
        color: rgba(255, 255, 255, 0.65);
    }

    .sec--dark-particle {
        background: rgb(8 9 10 / 36%);
    }
    .mission-quote {
        color: #ffffff;
    }
    .localize-lead {
        color: rgba(255, 255, 255, 0.55);
    }
    .localize-list li {
        border-bottom-color: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.65);
    }
    .localize-list li:first-child {
        border-top-color: rgba(255, 255, 255, 0.08);
    }
    .localize-list li strong {
        color: #ffffff;
    }
    .strength-card {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.22);
    }
    .strength-title {
        color: #ffffff;
    }
    .strength-text {
        color: rgba(255, 255, 255, 0.6);
    }

    .mission-alt-quote {
        color: #ffffff;
    }
    .mission-alt-sub {
        color: rgba(255, 255, 255, 0.55);
    }
    .compare-card--before {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.08);
    }
    .compare-card--after {
        background: rgba(14, 111, 255, 0.1);
        border-color: #0e6fff;
    }
    .compare-badge--no {
        font-size: 24px;
        color: rgba(255, 255, 255, 0.5);
    }
    .compare-badge--yes {
        font-size: 24px;
    }
    .compare-card--before .compare-list li {
        color: rgba(255, 255, 255, 0.3);
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }
    .compare-card--before .compare-list li::before {
        color: rgba(255, 255, 255, 0.2);
    }
    .compare-card--after .compare-list li {
        color: rgba(255, 255, 255, 0.8);
        border-bottom-color: rgba(14, 111, 255, 0.2);
    }
    .compare-list li::before {
        content: "・";
    }
    .str-rows {
        border-top-color: rgba(255, 255, 255, 0.08);
    }
    .str-row {
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }
    .str-row-title {
        color: #ffffff;
    }
    .str-row-text {
        color: rgba(255, 255, 255, 0.6);
    }

    .plan-card {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.1);
    }
    .plan-card--featured {
        border-color: #0e6fff;
    }
    .plan-name {
        color: #ffffff;
    }
    .plan-tagline {
        color: rgba(255, 255, 255, 0.45);
    }
    .plan-price {
        color: #ffffff;
    }
    .plan-features li strong {
        color: #ffffff;
    }
    .plan-features li span {
        color: rgba(255, 255, 255, 0.5);
    }
    .price-tbl thead th {
        color: rgba(255, 255, 255, 0.8);
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    .price-tbl td {
        color: rgba(255, 255, 255, 0.65);
        border-bottom-color: rgba(255, 255, 255, 0.08);
    }
    .price-tbl tbody td.ptbl-col-feat {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
    }
    .price-tbl tbody td.ptbl-col-desc {
        color: rgba(255, 255, 255, 0.4);
        font-weight: 400;
    }
    .price-tbl tbody tr:nth-child(odd) {
        background: rgba(255, 255, 255, 0.04);
    }
    .price-tbl tbody tr:nth-child(even) {
        background: transparent;
    }
    .price-tbl thead th.col-featured {
        background: rgba(14, 111, 255, 0.25);
        color: #93c5fd;
    }
    .price-tbl tbody td.col-featured {
        background: rgba(14, 111, 255, 0.12);
    }
    .ptd-badge--green {
        background: transparent;
        color: #ffffff;
    }
    .ptd-badge--gray {
        background: transparent;
        color: rgba(255, 255, 255, 0.65);
    }
    .ptd-badge--blue {
        background: transparent;
        color: #ffffff;
    }
    .ptd-badge--lightblue {
        background: transparent;
        color: rgba(255, 255, 255, 0.65);
    }
    .tbl-note {
        color: rgba(255, 255, 255, 0.4);
    }
    .company-mv-heading {
        color: #ffffff;
    }
    .company-mv-text {
        color: rgba(255, 255, 255, 0.65);
    }
    .company-body p {
        color: rgba(255, 255, 255, 0.65);
    }
    .company-table tr {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    .company-table th {
        color: rgba(255, 255, 255, 0.45);
    }
    .company-table td {
        color: #ffffff;
    }
    .company-map {
        outline: 1px solid rgba(255, 255, 255, 0.08);
    }
    .about-body p {
        color: rgba(255, 255, 255, 0.65);
    }
} /* end @media (max-width: 767px) */
