:root {
    --bg: #050505;
    --panel: #101012;
    --panel2: #17171a;
    --text: #f7f7f5;
    --muted: #b6b4ac;
    --dim: #807c72;
    --orange: #ff8a00;
    --yellow: #ffc400;
    --red: #ff2626;
    --line: rgba(255, 255, 255, .14);
    --line-strong: rgba(255, 255, 255, .24);
    --shadow: 0 26px 90px rgba(0, 0, 0, .62);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background: var(--bg)
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Arial, "Helvetica Neue", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 1.72;
    overflow-x: hidden
}

body.menu-open {
    overflow: hidden
}

img {
    max-width: 100%;
    display: block
}

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

button {
    font: inherit
}

.site-header {
    position: fixed;
    z-index: 70;
    top: 0;
    left: 0;
    right: 0;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(18px, 4vw, 64px);
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
    background: linear-gradient(180deg, rgba(0, 0, 0, .48), transparent);
    pointer-events: none
}

.site-header.is-scrolled, .site-header.menu-open {
    background: rgba(0, 0, 0, .86);
    border-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.header-logo {
    width: min(360px, 48vw);
    line-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none
}

.header-logo img {
    width: 100%;
    height: auto
}

.site-header.is-scrolled .header-logo, .site-header.menu-open .header-logo {
    opacity: 1;
    transform: none;
    pointer-events: auto
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 44px);
    font-size: 15px;
    letter-spacing: .11em;
    font-weight: 900;
    color: #f2f2f2;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none
}

.site-header.is-scrolled .site-nav {
    opacity: 1;
    transform: none;
    pointer-events: auto
}

.site-nav a {
    position: relative;
    opacity: .82
}

.site-nav a:hover {
    opacity: 1;
    color: var(--orange)
}

.site-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: var(--orange);
    transition: right .24s
}

.site-nav a:hover:after {
    right: 0
}

.menu-toggle {
    display: none;
    position: relative;
    z-index: 90;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(0, 0, 0, .62);
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    pointer-events: auto
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform .24s, opacity .24s
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #000
}

.hero-slideshow {
    position: absolute;
    inset: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 30s infinite;
    transform: scale(1.02);
    filter: contrast(1.08) saturate(1.08)
}

.slide-1 {
    background-image: url('img/hero-01.webp');
    animation-delay: 0s
}

.slide-2 {
    background-image: url('img/hero-02.webp');
    animation-delay: 6s
}

.slide-3 {
    background-image: url('img/hero-03.webp');
    animation-delay: 12s
}

.slide-4 {
    background-image: url('img/hero-04.webp');
    animation-delay: 18s
}

.slide-5 {
    background-image: url('img/hero-05.webp');
    animation-delay: 24s
}

@keyframes heroFade {
    0%, 16% {
        opacity: 1;
        transform: scale(1.02)
    }
    20%, 96% {
        opacity: 0;
        transform: scale(1.075)
    }
    100% {
        opacity: 1;
        transform: scale(1.02)
    }
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 42%, transparent 0 38%, rgba(0, 0, 0, .22) 62%, rgba(0, 0, 0, .68) 100%), linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .04) 42%, #050505 96%);
    pointer-events: none
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, 92vw);
    padding-top: 72px;
    text-align: center;
    display: grid;
    justify-items: center
}

.hero-logo {
    width: min(780px, 94vw);
    margin-bottom: 20px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 1)) drop-shadow(0 0 30px rgba(0, 0, 0, 1))
}

.hero-copy {
    margin-top: clamp(18px, 3vw, 36px);
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1)
}

.hero-kicker {
    margin: 0 0 8px;
    font-size: clamp(12px, 1.5vw, 16px);
    letter-spacing: .42em;
    font-weight: 1000;
    color: #fff
}

.hero h1 {
    margin: 0;
    font-size: clamp(54px, 9vw, 132px);
    line-height: .88;
    letter-spacing: -.08em;
    font-weight: 1000;
    color: #fff
}

.hero-copy p:last-child {
    margin: 24px auto 0;
    font-size: clamp(15px, 2vw, 22px);
    font-weight: 800;
    color: #f2f2f2
}

.hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 30px
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 6px 18px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(0, 0, 0, .68);
    backdrop-filter: blur(4px);
    font-size: 13px;
    letter-spacing: .13em;
    font-weight: 1000
}

.hero-meta span:first-child {
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    color: #0a0a0a;
    border-color: transparent
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 1000;
    letter-spacing: .1em
}

.btn-primary {
    background: var(--orange);
    color: #050505;
    box-shadow: 0 10px 42px rgba(255, 138, 0, .32)
}

.btn-primary:hover {
    filter: brightness(1.05)
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(0, 0, 0, .52);
    backdrop-filter: blur(4px)
}

.section {
    padding: clamp(40px, 4.5vw, 70px) clamp(18px, 4vw, 64px);
    position: relative
}

.section-head {
    width: min(1210px, 100%);
    margin: 0 auto 48px
}

.section-head.narrow {
    width: min(1210px, 100%);
    text-align: center
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 1000;
    letter-spacing: .24em;
    text-transform: uppercase
}

.section h2 {
    margin: 0;
    color: #fff;
    line-height: 1.02;
    font-size: clamp(42px, 6.4vw, 92px);
    font-weight: 1000;
    letter-spacing: -.06em
}

.section-head p:not(.eyebrow), .showroom-copy p, .store-section p {
    font-size: clamp(15px, 1.55vw, 18px);
    color: var(--muted);
    margin-top: 22px
}

.intro {
    background: radial-gradient(circle at 18% 10%, rgba(255, 138, 0, .13), transparent 28%), linear-gradient(180deg, #050505, #090909)
}

.feature-grid {
    width: min(1120px, 100%);
    margin: 48px auto 0;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 1px;
    background: var(--line)
}

.feature-grid article {
    min-height: 140px;
    padding: 28px;
    background: #0d0d0f;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.feature-grid strong {
    display: block;
    color: #fff;
    font-size: clamp(26px, 3.5vw, 45px);
    line-height: .95;
    letter-spacing: -.05em;
    font-weight: 1000
}

.feature-grid span {
    display: block;
    color: var(--muted);
    font-weight: 750
}

.pricing-section {
    background: linear-gradient(180deg, #090909, #050505)
}

.pricing-grid {
    width: min(1210px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns:1.25fr 1fr 1fr;
    gap: 12px
}

.price-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
    box-shadow: 0 14px 44px rgba(0, 0, 0, .28)
}

.price-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: rgba(255, 138, 0, .72)
}

.price-card p {
    margin: 0 0 18px;
    color: var(--orange);
    font-size: 24px;
    font-weight: 1000;
    letter-spacing: .18em
}

.price-card strong {
    display: block;
    margin-bottom: 16px;
    font-size: clamp(28px, 3.8vw, 52px);
    line-height: .98;
    font-weight: 1000;
    letter-spacing: -.06em;
    color: #fff
}

.price-card span {
    color: var(--muted);
    font-weight: 750
}

.primary-price {
    background: linear-gradient(145deg, rgba(255, 138, 0, .28), rgba(255, 255, 255, .04))
}

.primary-price strong {
    color: var(--yellow)
}

.open-banner {
    width: min(1210px, 100%);
    margin: 18px auto 0;
    display: grid;
    grid-template-columns:auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    background: #fff;
    color: #090909
}

.open-banner span {
    font-size: 24px;
    letter-spacing: .22em;
    font-weight: 1000;
    color: var(--orange)
}

.open-banner strong {
    font-size: clamp(28px, 4.2vw, 64px);
    line-height: 1;
    font-weight: 1000;
    letter-spacing: -.07em
}

.open-banner p {
    font-size: 24px;
    font-weight: 900;
    color: #171717
}

.store-marquee {
    overflow: hidden;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 66s linear infinite
}

.store-marquee img {
    width: 450px;
    height: 300px;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.06)
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }
    to {
        transform: translateX(-50%)
    }
}

.system-section {
    background: radial-gradient(circle at 18% 8%, rgba(255, 138, 0, .18), transparent 28%), linear-gradient(180deg, #050505, #0b0b0d 42%, #050505)
}

.system-head {
    display: grid;
    grid-template-columns:minmax(0, .95fr) minmax(320px, .82fr);
    gap: clamp(24px, 5vw, 76px);
    align-items: end
}

.system-head p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 700
}

.system-grid {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 16px
}

.system-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(380px, .92fr) minmax(0, 1.08fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
    box-shadow: 0 18px 70px rgba(0, 0, 0, .38)
}

.system-media {
    position: relative;
    display: block;
    aspect-ratio: 1/1;
    padding: 0;
    border: 0;
    background: #000;
    overflow: hidden;
    cursor: pointer
}

.system-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 65% 42%, transparent 0 36%, rgba(0, 0, 0, .28) 78%), linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .42));
    pointer-events: none
}

.system-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.07) saturate(1.08);
}

.movie-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(0, 0, 0, .7);
    color: #fff;
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: .16em
}

.movie-badge:before {
    content: "";
    width: 0;
    height: 0;
    margin-right: 8px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid var(--orange)
}

.system-card:hover .movie-badge {
    background: var(--orange);
    color: #050505;
    border-color: transparent
}

.system-card:hover .movie-badge:before {
    border-left-color: #050505
}

.system-copy {
    position: relative;
    padding: clamp(26px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.system-card-accent .system-copy {
    background: linear-gradient(145deg, rgba(255, 138, 0, .13), transparent)
}

.system-no {
    margin: 0 0 12px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .18em
}

.system-copy h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3.4vw, 54px);
    line-height: .98;
    font-weight: 1000;
    letter-spacing: -.06em
}

.system-copy p:not(.system-no) {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 15.5px;
    font-weight: 730
}

.system-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px
}

.system-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #f4f4f2;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em
}

.system-tags span:first-child {
    color: #0b0b0b;
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    border-color: transparent
}

.cockpit-section {
    background: linear-gradient(180deg, #050505, #0d0d0f)
}

.cockpit-list {
    width: min(1320px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 32px
}

.cockpit-card {
    position: relative;
    display: grid;
    grid-template-columns:minmax(380px, .92fr) minmax(0, 1.08fr);
    gap: 0;
    min-height: 560px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .062), rgba(255, 255, 255, .026));
    border: 1px solid var(--line);
    box-shadow: 0 18px 70px rgba(0, 0, 0, .4);
    overflow: hidden
}

.cockpit-card:nth-child(even) {
    grid-template-columns:minmax(0, 1.08fr) minmax(380px, .92fr)
}

.cockpit-card:nth-child(even) .cockpit-visual {
    order: 2
}

.cockpit-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 55%, rgba(255, 138, 0, .11) 55% 55.4%, transparent 55.4%), radial-gradient(circle at 20% 25%, rgba(255, 138, 0, .16), transparent 24%);
    pointer-events: none
}

.cockpit-visual {
    position: relative;
    display: grid;
    place-items: center;
    padding: 30px;
    min-height: 560px;
    background: linear-gradient(160deg, #070708, #1b1b1f)
}

.cockpit-visual:after {
    content: "";
    position: absolute;
    left: 11%;
    right: 11%;
    bottom: 64px;
    height: 18px;
    background: rgba(255, 138, 0, .68);
    filter: blur(26px);
    border-radius: 999px
}

.machine-no {
    position: absolute;
    left: 22px;
    top: 18px;
    color: rgba(255, 255, 255, .08);
    font-size: clamp(94px, 12vw, 180px);
    font-weight: 1000;
    line-height: .8;
    letter-spacing: -.09em
}

.cockpit-main {
    position: relative;
    z-index: 1;
    width: min(112%, 920px);
    max-width: none;
    filter: drop-shadow(0 36px 34px rgba(0, 0, 0, .62));
    transform: scale(1.08)
}

.cockpit-profile {
    position: relative;
    padding: clamp(30px, 4vw, 60px);
    align-self: center
}

.cockpit-profile h3 {
    margin: 0 0 18px;
    font-size: clamp(32px, 4.3vw, 62px);
    line-height: .96;
    font-weight: 1000;
    letter-spacing: -.058em
}

.cockpit-profile h3 span {
    display: block;
    color: var(--dim);
    font-size: .46em;
    letter-spacing: .05em;
    margin-bottom: 7px
}

.machine-note {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 138, 0, .34);
    background: rgba(255, 138, 0, .08);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em
}

.spec-list {
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0 0 28px;
    background: var(--line)
}

.spec-row {
    background: #101012;
    padding: 14px 16px;
    min-height: 88px
}

.spec-row dt {
    margin: 0 0 6px;
    color: var(--orange);
    font-size: 11px;
    line-height: 1.1;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase
}

.spec-row dd {
    margin: 0;
    color: #f4f4f2;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 760
}

.thumb-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 9px
}

.thumb {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, .15);
    background: #080808;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1/1;
    border-radius: 0
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.16);
    transition: transform .35s ease, opacity .35s ease, filter .35s ease;
    filter: contrast(1.08) saturate(1.06)
}

.thumb:hover img {
    transform: scale(1.28);
    opacity: .88
}

.showroom-section {
    background: radial-gradient(circle at 78% 20%, rgba(255, 138, 0, .12), transparent 28%), #080808
}

.showroom-layout {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 0;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #0d0d0f;
    box-shadow: var(--shadow)
}

.showroom-photo {
    min-height: 620px;
    overflow: hidden;
    position: relative
}

.showroom-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 55%, rgba(0, 0, 0, .25))
}

.showroom-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.08) saturate(1.08)
}

.showroom-copy {
    padding: clamp(34px, 5vw, 68px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 138, 0, .12), rgba(255, 255, 255, .035))
}

.showroom-copy h2 {
    font-size: clamp(42px, 5.6vw, 86px);
    line-height: .95;
    margin: 0;
    color: #fff;
    font-weight: 1000;
    letter-spacing: -.07em
}

.brand-strip {
    width: min(1240px, 100%);
    margin: 18px auto 0;
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 8px
}

.brand-logo {
    min-height: 78px;
    display: grid;
    place-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
    color: #f6f6f5;
    font-size: clamp(16px, 2.1vw, 28px);
    line-height: 1;
    font-family: Arial Black, Impact, Arial, sans-serif;
    font-weight: 1000;
    letter-spacing: -.03em;
    text-align: center
}

.brand-simagic, .brand-moza, .brand-dele {
    color: var(--orange)
}

.brand-fanatec, .brand-simcube {
    letter-spacing: .06em
}

.brand-zenkairacing {
    font-size: clamp(13px, 1.6vw, 22px);
    letter-spacing: -.06em
}

.store-section {
    background: linear-gradient(180deg, #080808, #050505)
}

.store-layout {
    width: min(1240px, 100%);
    margin: 46px auto 0;
    display: grid;
    grid-template-columns:1.22fr .78fr;
    gap: 14px
}

.store-left {
    display: grid;
    grid-template-rows:1fr 1fr;
    gap: 14px
}

.store-layout img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .12);
    filter: contrast(1.06) saturate(1.06)
}

.store-left img {
    min-height: 330px
}

.store-square {
    aspect-ratio: 1/1;
    min-height: 674px
}

.access-section {
    position: relative;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .66)), url('img/access-bg.webp');
    background-size: cover;
    background-position: center
}

.access-wrap {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns:.88fr 1.12fr;
    gap: 28px;
    align-items: start
}

.access-copy {
    padding: clamp(28px, 4.8vw, 58px);
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(0, 0, 0, .66);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow)
}

.access-copy h2 {
    font-size: clamp(46px, 6.5vw, 88px);
    line-height: .96;
    margin: 0;
    color: #fff;
    font-weight: 1000;
    letter-spacing: -.07em
}

.address {
    color: #eee;
    font-size: 18px;
    font-weight: 760
}

.shop-info {
    display: grid;
    gap: 1px;
    margin: 26px 0 0;
    background: var(--line)
}

.shop-info div {
    display: grid;
    grid-template-columns:112px 1fr;
    gap: 16px;
    align-items: start;
    background: #101012;
    padding: 16px
}

.shop-info dt {
    color: var(--orange);
    font-weight: 1000
}

.shop-info dd {
    margin: 0;
    color: #fff;
    font-weight: 820
}

.map-stack {
    position: relative;
    height: 100%;
    display: grid;
    gap: 14px
}

.schematic-map {
    position: relative;
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: radial-gradient(circle at 46% 52%, rgba(255, 138, 0, .18), transparent 18%), linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px), #0b0c0f;
    background-size: auto, 42px 42px, 42px 42px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.schematic-map:after {
    content: "YOKOHAMA AREA";
    position: absolute;
    right: 20px;
    bottom: 12px;
    color: rgba(255, 255, 255, .08);
    font-size: 54px;
    font-weight: 1000;
    letter-spacing: -.07em
}

.road {
    position: absolute;
    height: 8px;
    background: rgba(255, 255, 255, .18);
    border-radius: 999px;
    box-shadow: 0 0 22px rgba(255, 138, 0, .15)
}

.road-a {
    left: 8%;
    right: 7%;
    top: 50%;
    transform: rotate(-18deg)
}

.road-b {
    left: 12%;
    right: 20%;
    top: 68%;
    transform: rotate(8deg);
    background: rgba(255, 138, 0, .26)
}

.road-c {
    left: 42%;
    right: 12%;
    top: 28%;
    transform: rotate(45deg)
}

.marker {
    position: absolute;
    display: grid;
    gap: 2px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(0, 0, 0, .78);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .46);
    font-size: 12px;
    line-height: 1.25;
    z-index: 2
}

.marker:before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    width: 13px;
    height: 13px;
    transform: translateY(-50%) rotate(45deg);
    background: var(--orange)
}

.marker b {
    font-size: 13px;
    color: #fff
}

.marker small {
    color: var(--orange);
    font-weight: 900
}

.marker-mg {
    left: 42%;
    top: 48%;
    border-color: rgba(255, 138, 0, .75);
    transform: scale(1.08)
}

.marker-mm {
    left: 66%;
    top: 26%
}

.marker-daikoku {
    right: 9%;
    bottom: 18%
}

.marker-china {
    left: 57%;
    bottom: 23%
}

.marker-yokohama {
    left: 22%;
    top: 17%
}

.google-map {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid rgba(255, 255, 255, .14);
    overflow: hidden;
    background: #111
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(.9) contrast(.82) saturate(.45)
}

.site-footer {
    padding: 40px clamp(18px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-wordmark {
    width: min(360px, 62vw);
    height: auto
}

.powered {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.powered img {
    height: 30px;
    width: auto
}

.modal {
    position: fixed;
    z-index: 120;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, .9);
    padding: 28px
}

.modal.is-open {
    display: grid
}

.modal img {
    max-width: min(1280px, 94vw);
    max-height: 86svh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .82)
}

.modal video {
    display: none;
    width: min(1280px, 94vw);
    max-height: 86svh;
    background: #000;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .82)
}

.modal.is-video img {
    display: none
}

.modal.is-video video {
    display: block
}

.modal-close {
    position: fixed;
    right: 22px;
    top: 18px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(0, 0, 0, .62);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer
}

.modal-close:hover {
    background: var(--orange);
    color: #000
}

@media (max-width: 1100px) {
    .system-head {
        grid-template-columns:1fr
    }

    .system-grid {
        grid-template-columns:1fr
    }

    .system-card-wide {
        grid-template-columns:1fr
    }

    .system-card-wide .system-media {
        min-height: auto;
        aspect-ratio: 16/9
    }

    .pricing-grid {
        grid-template-columns:1fr 1fr
    }

    .showroom-layout, .access-wrap {
        grid-template-columns:1fr
    }

    .showroom-photo {
        min-height: 440px
    }

    .brand-strip {
        grid-template-columns:repeat(3, 1fr)
    }

    .store-layout {
        grid-template-columns:1fr
    }

    .store-square {
        min-height: 420px;
        aspect-ratio: auto
    }

    .feature-grid {
        grid-template-columns:1fr
    }

    .cockpit-card, .cockpit-card:nth-child(even) {
        grid-template-columns:1fr
    }

    .cockpit-card:nth-child(even) .cockpit-visual {
        order: 0
    }

    .cockpit-visual {
        min-height: 430px
    }

    .cockpit-main {
        width: min(100%, 780px);
        transform: scale(1.05)
    }
}

@media (max-width: 820px) {
    .system-copy {
        padding: 26px 20px
    }

    .system-copy h3 {
        font-size: clamp(30px, 9vw, 48px)
    }

    .system-media {
        aspect-ratio: 4/3
    }

    .system-card-wide .system-media {
        aspect-ratio: 4/3
    }

    .site-header {
        height: 74px;
        padding: 0 18px;
        pointer-events: auto
    }

    .menu-toggle {
        display: flex
    }

    .site-nav {
        position: fixed;
        left: 14px;
        right: 14px;
        top: 82px;
        display: grid;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, .14);
        background: rgba(0, 0, 0, .94);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        pointer-events: none
    }

    .site-header.menu-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto
    }

    .site-nav a {
        padding: 18px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        font-size: 16px
    }

    .site-nav a:last-child {
        border-bottom: 0
    }

    .site-header.is-scrolled .site-nav {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        pointer-events: none
    }

    .site-header.menu-open.is-scrolled .site-nav {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto
    }

    .hero-inner {
        padding-top: 58px
    }

    .hero-logo {
        width: min(860px, 108vw)
    }

    .hero h1 {
        font-size: clamp(50px, 15vw, 96px)
    }

    .hero-meta span {
        width: 100%
    }

    .hero-actions {
        width: 100%
    }

    .btn {
        width: 100%
    }

    .section {
        padding: 72px 18px
    }

    .section h2 {
        font-size: clamp(38px, 12vw, 74px)
    }

    .pricing-grid {
        grid-template-columns:1fr
    }

    .open-banner {
        display: block;
        padding: 24px
    }

    .open-banner strong, .open-banner small {
        display: block;
        margin-top: 10px
    }

    .store-marquee img {
        width: 450px;
        height: 300px;
    }

    .spec-list {
        grid-template-columns:1fr
    }

    .thumb-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .brand-strip {
        grid-template-columns:repeat(2, 1fr)
    }

    .store-left img {
        min-height: 240px
    }

    .shop-info div {
        grid-template-columns:1fr;
        gap: 4px
    }

    .schematic-map {
        min-height: 380px
    }

    .marker-mm {
        left: 60%;
        top: 19%
    }

    .marker-yokohama {
        left: 12%;
        top: 13%
    }

    .marker-daikoku {
        right: 4%;
        bottom: 10%
    }

    .marker-china {
        left: 48%;
        bottom: 22%
    }

    .google-map {
        height: 300px
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start
    }

    .powered {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 520px) {
    .header-logo {
        width: 260px
    }

    .hero-logo {
        width: 118vw;
        max-width: none
    }

    .hero-copy p:last-child {
        font-size: 15px
    }

    .cockpit-visual {
        min-height: 360px;
        padding: 18px
    }

    .cockpit-profile {
        padding: 28px 18px
    }

    .machine-no {
        font-size: 86px
    }

    .brand-logo {
        min-height: 64px;
        font-size: 17px
    }

    .schematic-map:after {
        font-size: 34px
    }

    .marker {
        font-size: 10px;
        padding: 7px 9px
    }

    .marker b {
        font-size: 11px
    }

    .marker-mg {
        left: 34%;
        top: 46%
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto
    }

    .hero-slide, .marquee-track {
        animation: none
    }

    .hero-slide {
        opacity: 0
    }

    .slide-1 {
        opacity: 1
    }
}


/* Store system feature movies */
.system-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 18% 12%, rgba(255, 138, 0, .18), transparent 24%), radial-gradient(circle at 88% 62%, rgba(255, 38, 38, .12), transparent 24%), linear-gradient(180deg, #080808, #111113 54%, #060606)
}

.system-section:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 78px 78px;
    mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent)
}

.system-head {
    position: relative;
    width: min(1240px, 100%);
    margin: 0 auto 42px;
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: clamp(24px, 4vw, 72px);
    align-items: end
}

.system-head h2 {
    margin-bottom: 0
}

.system-head > p {
    margin: 0;
    color: #ddd;
    font-size: clamp(16px, 1.55vw, 20px);
    font-weight: 760;
    line-height: 1.9;
    border-left: 4px solid var(--orange);
    padding: 4px 0 4px 22px;
    background: linear-gradient(90deg, rgba(255, 138, 0, .08), transparent)
}

.system-grid {
    position: relative;
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 16px
}

.system-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
    box-shadow: var(--shadow)
}

.system-card-main {
    display: grid;
    grid-template-rows:auto 1fr
}

.system-card-side {
    display: grid;
    grid-template-columns:210px minmax(0, 1fr);
    min-height: 318px
}

.system-media {
    position: relative;
    overflow: hidden;
    background: #000
}

.system-media:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, .0) 48%, rgba(0, 0, 0, .72)), linear-gradient(90deg, rgba(255, 138, 0, .15), transparent 34%);
    mix-blend-mode: normal
}

.system-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: contrast(1.08) saturate(1.05)
}

.system-media-wide {
    aspect-ratio: 16/9
}

.system-media-vertical {
    height: 100%;
    min-height: 318px;
    aspect-ratio: 9/16
}

.system-tag {
    position: absolute;
    z-index: 2;
    left: 16px;
    top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 138, 0, .52);
    background: rgba(0, 0, 0, .72);
    color: var(--orange);
    font-size: 11px;
    line-height: 1;
    font-weight: 1000;
    letter-spacing: .14em
}

.system-tag:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--orange);
    box-shadow: 0 0 18px var(--orange)
}

.system-copy {
    position: relative;
    padding: clamp(24px, 3.6vw, 48px)
}

.system-card-side .system-copy {
    padding: 26px 28px
}

.system-no {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .18);
    font-size: clamp(42px, 5vw, 72px);
    line-height: .75;
    font-family: Arial Black, Impact, Arial, sans-serif;
    font-weight: 1000;
    letter-spacing: -.08em
}

.system-card-side .system-no {
    font-size: 44px
}

.system-copy h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(25px, 2.8vw, 44px);
    line-height: 1.02;
    font-weight: 1000;
    letter-spacing: -.055em
}

.system-card-side .system-copy h3 {
    font-size: clamp(24px, 2.1vw, 34px)
}

.system-copy p:not(.system-no) {
    margin: 0;
    color: #d7d6d1;
    font-size: 15px;
    line-height: 1.85;
    font-weight: 700
}

.system-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px
}

.system-points span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(0, 0, 0, .32);
    color: #fff;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .08em
}

@media (max-width: 1100px) {
    .system-head, .system-grid {
        grid-template-columns:1fr
    }

    .system-card-side {
        grid-template-columns:280px 1fr
    }

    .system-media-vertical {
        min-height: 420px
    }
}

@media (max-width: 720px) {
    .system-head > p {
        padding-left: 16px
    }

    .system-card-side {
        grid-template-columns:1fr
    }

    .system-media-vertical {
        height: auto;
        min-height: auto;
        aspect-ratio: 9/16
    }

    .system-card-side .system-copy {
        padding: 24px 22px
    }

    .system-copy h3, .system-card-side .system-copy h3 {
        font-size: clamp(27px, 8vw, 42px)
    }
}

@media (max-width: 820px) {
    .system-media-wide {
        aspect-ratio: 16/9
    }

    .system-media-vertical {
        aspect-ratio: 9/16
    }

    .system-card-side {
        grid-template-columns:1fr
    }

    .system-media-vertical {
        height: auto;
        min-height: auto
    }
}

/* ---------------------------------------------------------
   v5 responsive corrections + brand logo image grid
   --------------------------------------------------------- */
html,
body {
    max-width: 100%;
}

body {
    overflow-x: clip;
}

@supports not (overflow-x: clip) {
    body {
        overflow-x: hidden;
    }
}

.hero-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 3.4vw, 42px);
    line-height: 1.28;
    font-weight: 1000;
    letter-spacing: -.035em;
    text-shadow: 0 6px 34px rgba(0, 0, 0, .92), 0 1px 0 rgba(0, 0, 0, .72);
}

.site-header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.system-section,
.cockpit-section,
.showroom-section,
.store-section,
.access-section,
.pricing-section,
.intro {
    overflow-x: clip;
}

.system-head {
    grid-template-columns: 1fr;
}

.system-card,
.system-card.system-card-main,
.system-card-main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    grid-template-rows: auto;
}

.system-card:nth-child(even) .system-media {
    order: 2;
}

.system-card:nth-child(even) .system-copy {
    order: 1;
}

.system-media,
.system-card-main .system-media,
.system-card-wide .system-media {
    width: 100%;
    min-width: 0;
    aspect-ratio: 16 / 9;
}

.system-media video {
    width: 100%;
    height: 100%;
}

.system-copy,
.cockpit-profile,
.showroom-copy,
.access-copy {
    min-width: 0;
}

.map-stack {
    height: auto;
    min-height: clamp(360px, 42vw, 560px);
}

.google-map {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: clamp(360px, 42vw, 636px);
}

.google-map iframe {
    display: block;
}

.brand-strip.brand-strip-logos {
    width: min(1240px, 100%);
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.brand-strip-logos .brand-logo {
    min-height: 94px;
    display: grid;
    place-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .024)),
    radial-gradient(circle at 50% 0, rgba(255, 138, 0, .10), transparent 55%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 14px 38px rgba(0, 0, 0, .24);
}

.brand-strip-logos .brand-logo img {
    display: block;
    width: auto;
    max-width: 92%;
    height: auto;
    max-height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .48));
}

.brand-strip-logos .brand-vnm img,
.brand-strip-logos .brand-ggear img,
.brand-strip-logos .brand-omen img,
.brand-strip-logos .brand-tsk img {
    max-height: 70px;
}

.brand-strip-logos .brand-tsk img {
    max-height: 76px;
}

.brand-strip-logos .brand-fanatec img,
.brand-strip-logos .brand-zenkairacing img {
    max-height: 42px;
}

.brand-strip-logos .brand-logo:hover {
    border-color: rgba(255, 138, 0, .42);
    background: linear-gradient(145deg, rgba(255, 138, 0, .12), rgba(255, 255, 255, .035)),
    radial-gradient(circle at 50% 0, rgba(255, 138, 0, .16), transparent 58%);
}

@media (max-width: 1100px) {
    .brand-strip.brand-strip-logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .showroom-layout,
    .access-wrap {
        grid-template-columns: 1fr;
    }

    .google-map,
    .map-stack {
        min-height: 440px;
    }
}

@media (max-width: 820px) {
    .site-header {
        height: 74px;
        padding: 0 14px;
    }

    .header-logo {
        width: min(238px, calc(100vw - 92px));
    }

    .site-nav {
        left: 12px;
        right: 12px;
        top: 80px;
        max-width: calc(100vw - 24px);
    }

    .hero {
        min-height: 100svh;
    }

    .hero-inner {
        width: min(100% - 32px, 1180px);
        padding-top: 54px;
    }

    .hero-logo {
        width: min(96vw, 680px);
        max-width: 100%;
    }

    .hero-copy {
        margin-top: 20px;
    }

    .hero-copy h2 {
        font-size: clamp(20px, 5.8vw, 30px);
        line-height: 1.36;
    }

    .hero-meta {
        width: 100%;
        margin: 20px 0 22px;
    }

    .hero-meta span {
        width: 100%;
        min-height: 40px;
        padding: 5px 12px;
        font-size: 12px;
        letter-spacing: .08em;
    }

    .system-card,
    .system-card.system-card-main,
    .system-card-main {
        grid-template-columns: 1fr;
    }

    .system-card:nth-child(even) .system-media,
    .system-card:nth-child(even) .system-copy {
        order: initial;
    }

    .system-media,
    .system-card-main .system-media,
    .system-card-wide .system-media {
        aspect-ratio: 16 / 10;
    }

    .system-copy p:not(.system-no) {
        font-size: 14px;
        line-height: 1.78;
    }

    .cockpit-card,
    .cockpit-card:nth-child(even) {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .cockpit-card:nth-child(even) .cockpit-visual {
        order: initial;
    }

    .cockpit-visual {
        min-height: clamp(310px, 80vw, 470px);
        padding: 16px;
    }

    .cockpit-main {
        width: min(116%, 650px);
        transform: scale(1.04);
    }

    .spec-list {
        grid-template-columns: 1fr;
    }

    .thumb-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showroom-layout {
        display: flex;
        flex-direction: column;
    }

    .showroom-photo {
        min-height: 320px;
        aspect-ratio: 16 / 10;
    }

    .brand-strip.brand-strip-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .brand-strip-logos .brand-logo {
        min-height: 82px;
        padding: 14px 12px;
    }

    .brand-strip-logos .brand-logo img {
        max-height: 48px;
    }

    .brand-strip-logos .brand-vnm img,
    .brand-strip-logos .brand-ggear img,
    .brand-strip-logos .brand-omen img,
    .brand-strip-logos .brand-tsk img {
        max-height: 62px;
    }

    .store-layout {
        grid-template-columns: 1fr;
    }

    .store-square {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .map-stack,
    .google-map {
        min-height: 360px;
    }

    .google-map {
        height: auto;
    }

    .google-map iframe {
        min-height: 360px;
    }
}

@media (max-width: 560px) {
    .section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-head {
        margin-bottom: 34px;
    }

    .eyebrow {
        font-size: 18px;
        letter-spacing: .18em;
    }

    .header-logo {
        width: min(214px, calc(100vw - 86px));
    }

    .menu-toggle {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
    }

    .brand-strip.brand-strip-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-strip-logos .brand-logo {
        min-height: 72px;
        padding: 12px 10px;
    }

    .brand-strip-logos .brand-logo img {
        max-width: 94%;
        max-height: 42px;
    }

    .brand-strip-logos .brand-vnm img,
    .brand-strip-logos .brand-ggear img,
    .brand-strip-logos .brand-omen img,
    .brand-strip-logos .brand-tsk img {
        max-height: 54px;
    }

    .store-marquee img {
        width: 78vw;
        height: 52vw;
        max-height: 300px;
    }

    .price-card {
        min-height: 0;
    }

    .shop-info div {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .header-logo {
        width: min(190px, calc(100vw - 82px));
    }

    .hero-inner {
        width: min(100% - 24px, 1180px);
    }

    .hero-logo {
        width: 94vw;
    }

    .brand-strip-logos .brand-logo {
        min-height: 66px;
    }
}


/* ---------------------------------------------------------
   v6 requested layout refinements
   --------------------------------------------------------- */
@media (min-width: 821px) {
    .system-card,
    .system-card.system-card-main,
    .system-card-main,
    .system-card-side {
        display: grid;
        grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
        grid-template-rows: auto;
        align-items: stretch;
    }

    .system-card .system-media,
    .system-card.system-card-main .system-media,
    .system-card-main .system-media,
    .system-card-wide .system-media,
    .system-media-wide,
    .system-media-vertical {
        order: 0;
        width: 100%;
        min-width: 0;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .system-card .system-copy,
    .system-card.system-card-main .system-copy,
    .system-card-main .system-copy,
    .system-card-side .system-copy {
        order: 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: clamp(30px, 4.2vw, 64px);
    }

    .system-card:nth-child(even) .system-media,
    .system-card:nth-child(even) .system-copy {
        order: 0;
    }
}

@media (max-width: 820px) {
    .system-card,
    .system-card.system-card-main,
    .system-card-main,
    .system-card-side {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .system-card .system-media,
    .system-card.system-card-main .system-media,
    .system-card-main .system-media,
    .system-card-wide .system-media,
    .system-media-wide,
    .system-media-vertical {
        order: 0;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .system-card .system-copy,
    .system-card.system-card-main .system-copy,
    .system-card-main .system-copy,
    .system-card-side .system-copy {
        order: 0;
    }

    .system-media video {
        object-position: top center;
    }
}

.brand-strip.brand-strip-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
}

.brand-strip-logos .brand-logo {
    flex: 0 1 calc((100% - 40px) / 5);
    max-width: calc((100% - 40px) / 5);
}

@media (max-width: 1100px) {
    .brand-strip-logos .brand-logo {
        flex-basis: calc((100% - 30px) / 4);
        max-width: calc((100% - 30px) / 4);
    }
}

@media (max-width: 820px) {
    .brand-strip-logos .brand-logo {
        flex-basis: calc((100% - 16px) / 3);
        max-width: calc((100% - 16px) / 3);
    }
}

@media (max-width: 560px) {
    .brand-strip-logos .brand-logo {
        flex-basis: calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
    }
}

.site-footer {
    justify-content: center;
    text-align: center;
}

.site-footer .powered {
    justify-content: center;
}

@media (max-width: 820px) {
    .site-footer,
    .site-footer .powered {
        align-items: center;
        text-align: center;
    }
}

/* ---------------------------------------------------------
   v7 typography + mobile polish
   --------------------------------------------------------- */
:root {
    --font-main: "M PLUS U", "M PLUS 1p", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
    --soft-line: rgba(255, 255, 255, .105);
    --glass: rgba(8, 8, 9, .72);
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-optical-sizing: auto;
    font-weight: 560;
    line-break: strict;
    word-break: auto-phrase;
    overflow-wrap: break-word;
    text-rendering: geometricPrecision;
    letter-spacing: .01em;
}

body,
p,
li,
dd,
span {
    text-wrap: pretty;
}

h1,
h2,
h3,
.eyebrow,
.btn,
.site-nav a,
.hero-meta span,
.price-card p,
.price-card strong,
.open-banner,
.feature-grid strong,
.system-copy h3,
.cockpit-profile h3,
.shop-info dt,
.shop-info dd {
    word-break: auto-phrase;
    text-wrap: balance;
    overflow-wrap: normal;
}

@supports not (word-break: auto-phrase) {
    h1,
    h2,
    h3,
    .btn,
    .hero-meta span,
    .site-nav a,
    .feature-grid strong,
    .system-copy h3,
    .cockpit-profile h3 {
        word-break: keep-all;
        overflow-wrap: anywhere;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
}

section[id] {
    scroll-margin-top: 92px;
}

.site-header {
    height: 88px;
}

.site-header.is-scrolled,
.site-header.menu-open {
    background: rgba(0, 0, 0, .88);
    border-bottom-color: rgba(255, 255, 255, .09);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .36);
}

.site-nav {
    font-size: clamp(15px, 1.05vw, 18px);
    letter-spacing: .075em;
}

.hero-vignette {
    background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, .03) 0 33%, rgba(0, 0, 0, .35) 68%, rgba(0, 0, 0, .78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .03) 42%, #050505 97%);
}

.hero-inner {
    width: min(1240px, 92vw);
}

.hero-logo {
    width: min(820px, 94vw);
    filter: drop-shadow(0 26px 42px rgba(0, 0, 0, .95)) drop-shadow(0 0 16px rgba(0, 0, 0, .9));
}

.hero-copy {
    margin-top: clamp(18px, 3vw, 32px);
}

.hero-copy h1 {
    margin: 0;
    display: inline-block;
    padding: .14em .42em .18em;
    color: #090909;
    font-size: clamp(34px, 5.6vw, 76px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.035em;
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    box-shadow: 0 20px 58px rgba(0, 0, 0, .52), 0 0 40px rgba(255, 138, 0, .16);
    text-shadow: none;
}

.hero-copy p {
    margin: 16px auto 0;
    max-width: 38em;
    color: #fff;
    font-size: clamp(15px, 1.8vw, 22px);
    line-height: 1.55;
    font-weight: 760;
    letter-spacing: .055em;
    text-shadow: 0 8px 28px rgba(0, 0, 0, .96), 0 1px 0 rgba(0, 0, 0, .9);
}

.hero-meta {
    gap: 9px;
}

.hero-meta span {
    min-height: 43px;
    border-color: rgba(255, 255, 255, .24);
    background: rgba(0, 0, 0, .72);
    font-weight: 850;
    letter-spacing: .065em;
    white-space: nowrap;
}

.btn {
    font-weight: 850;
    letter-spacing: .065em;
    transition: transform .22s ease, filter .22s ease, border-color .22s ease, background .22s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.section {
    padding-top: clamp(58px, 6vw, 92px);
    padding-bottom: clamp(58px, 6vw, 92px);
}

.section-head {
    margin-bottom: clamp(34px, 4vw, 56px);
}

.eyebrow {
    font-size: clamp(15px, 1.55vw, 22px);
    letter-spacing: .16em;
    font-weight: 900;
}

.section h2,
.showroom-copy h2,
.access-copy h2 {
    font-weight: 900;
    letter-spacing: -.043em;
}

.section-head p:not(.eyebrow),
.showroom-copy p,
.store-section p,
.system-head p:not(.eyebrow),
.system-copy p:not(.system-no),
.price-card span,
.feature-grid span {
    line-height: 1.88;
    font-weight: 620;
}

.feature-grid {
    gap: 8px;
    background: transparent;
}

.feature-grid article,
.price-card,
.system-card,
.cockpit-card,
.showroom-layout,
.access-copy,
.schematic-map,
.google-map,
.store-layout img {
    border-color: var(--soft-line);
}

.feature-grid article {
    background: linear-gradient(145deg, rgba(255, 255, 255, .064), rgba(255, 255, 255, .026)),
    #0b0b0d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
}

.price-card {
    min-height: 220px;
    background: radial-gradient(circle at 85% 12%, rgba(255, 138, 0, .13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .063), rgba(255, 255, 255, .022));
}

.open-banner {
    box-shadow: 0 18px 54px rgba(0, 0, 0, .32);
}

.store-marquee img,
.store-layout img,
.showroom-photo img,
.cockpit-main,
.system-media video {
    will-change: transform;
}

.system-grid {
    gap: 18px;
}

.system-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .026)),
    radial-gradient(circle at 96% 0, rgba(255, 138, 0, .11), transparent 32%);
}

.system-copy h3 {
    letter-spacing: -.04em;
}

.system-no {
    letter-spacing: .14em;
}

.system-media video {
    object-position: top center;
}

.cockpit-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .058), rgba(255, 255, 255, .022)),
    #09090a;
}

.cockpit-visual {
    background: radial-gradient(circle at 50% 62%, rgba(255, 138, 0, .16), transparent 38%),
    linear-gradient(160deg, #070708, #18181b);
}

.cockpit-profile h3 {
    letter-spacing: -.04em;
}

.spec-row {
    min-width: 0;
    background: rgba(16, 16, 18, .92);
}

.spec-row dd {
    overflow-wrap: anywhere;
    word-break: normal;
}

.thumb,
.brand-strip-logos .brand-logo {
    transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.thumb:hover,
.brand-strip-logos .brand-logo:hover {
    transform: translateY(-1px);
}

.showroom-layout {
    overflow: hidden;
}

.brand-strip.brand-strip-logos {
    justify-content: center;
    align-content: center;
}

.brand-strip-logos .brand-logo {
    min-height: 92px;
}

.store-layout {
    gap: 16px;
}

.store-left {
    gap: 16px;
}

.powered {
    font-weight: 720;
}

@media (min-width: 821px) {
    .system-card,
    .system-card.system-card-main,
    .system-card-main,
    .system-card-side {
        grid-template-columns: minmax(270px, 1fr) minmax(0, 2fr);
    }

    .system-media,
    .system-card-main .system-media,
    .system-card-wide .system-media {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 820px) {
    body {
        font-size: 15px;
        line-height: 1.78;
        letter-spacing: 0;
    }

    .site-header {
        height: 68px;
        padding: 0 14px;
        background: linear-gradient(180deg, rgba(0, 0, 0, .54), rgba(0, 0, 0, .12));
    }

    .site-header.is-scrolled,
    .site-header.menu-open {
        background: rgba(0, 0, 0, .9);
    }

    .header-logo {
        width: min(222px, calc(100vw - 86px));
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .site-nav {
        top: 76px;
        left: 12px;
        right: 12px;
        padding: 8px;
        gap: 0;
        border-color: rgba(255, 255, 255, .12);
        background: rgba(0, 0, 0, .955);
    }

    .site-nav a {
        padding: 15px 12px;
        font-size: 15px;
        letter-spacing: .045em;
        line-height: 1.25;
    }

    .hero-inner {
        width: min(100% - 28px, 1180px);
        padding-top: 48px;
    }

    .hero-logo {
        width: min(98vw, 680px);
    }

    .hero-copy {
        margin-top: 18px;
    }

    .hero-copy h1 {
        font-size: clamp(30px, 9.6vw, 44px);
        line-height: 1.08;
        padding: .16em .36em .2em;
        letter-spacing: -.028em;
    }

    .hero-copy p {
        margin-top: 13px;
        max-width: 22em;
        font-size: 14px;
        line-height: 1.58;
        letter-spacing: .02em;
    }

    .hero-meta {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 330px);
        margin: 19px 0 22px;
        gap: 8px;
    }

    .hero-meta span {
        width: 100%;
        min-height: 38px;
        padding: 6px 10px;
        font-size: 12px;
        letter-spacing: .035em;
    }

    .hero-actions {
        width: min(100%, 330px);
        gap: 9px;
    }

    .btn {
        min-height: 48px;
        padding: 0 18px;
        font-size: 13px;
        letter-spacing: .035em;
    }

    .section {
        padding: 62px 16px;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .eyebrow {
        margin-bottom: 10px;
        font-size: 13px;
        letter-spacing: .12em;
    }

    .section h2,
    .showroom-copy h2,
    .access-copy h2 {
        font-size: clamp(31px, 10.2vw, 48px);
        line-height: 1.08;
        letter-spacing: -.03em;
    }

    .section-head p:not(.eyebrow),
    .showroom-copy p,
    .store-section p,
    .system-head p:not(.eyebrow),
    .system-copy p:not(.system-no),
    .price-card span,
    .feature-grid span {
        font-size: 14.5px;
        line-height: 1.82;
    }

    .section-head p br,
    .system-copy p br,
    .store-section p br {
        display: none;
    }

    .feature-grid {
        margin-top: 32px;
        gap: 8px;
    }

    .feature-grid article {
        min-height: 108px;
        padding: 22px;
    }

    .feature-grid strong {
        font-size: clamp(24px, 8.6vw, 36px);
        line-height: 1;
        letter-spacing: -.035em;
    }

    .pricing-grid {
        gap: 10px;
    }

    .price-card {
        min-height: 0;
        padding: 23px 20px 24px;
    }

    .price-card p {
        margin-bottom: 12px;
        font-size: 15px;
        letter-spacing: .09em;
    }

    .price-card strong {
        margin-bottom: 10px;
        font-size: clamp(26px, 9.2vw, 38px);
        line-height: 1.1;
        letter-spacing: -.028em;
    }

    .open-banner {
        padding: 22px 20px;
    }

    .open-banner span {
        font-size: 16px;
        letter-spacing: .14em;
    }

    .open-banner strong {
        font-size: clamp(30px, 9.6vw, 42px);
        line-height: 1.14;
        letter-spacing: -.035em;
    }

    .open-banner p {
        margin: 10px 0 0;
        font-size: 15px;
        line-height: 1.5;
    }

    .store-marquee img {
        width: min(78vw, 340px);
        height: min(52vw, 230px);
    }

    .system-head {
        gap: 14px;
        margin-bottom: 26px;
    }

    .system-grid {
        gap: 14px;
    }

    .system-card,
    .system-card.system-card-main,
    .system-card-main {
        grid-template-columns: 1fr;
    }

    .system-media,
    .system-card-main .system-media,
    .system-card-wide .system-media {
        aspect-ratio: 16 / 9;
    }

    .system-media video {
        object-position: top center;
    }

    .system-copy,
    .system-card .system-copy,
    .system-card.system-card-main .system-copy,
    .system-card-main .system-copy,
    .system-card-side .system-copy {
        padding: 23px 18px 26px;
    }

    .system-copy h3 {
        font-size: clamp(25px, 8.4vw, 38px);
        line-height: 1.08;
        letter-spacing: -.03em;
    }

    .system-copy p:not(.system-no) {
        margin-top: 13px;
    }

    .cockpit-list {
        gap: 22px;
    }

    .cockpit-card,
    .cockpit-card:nth-child(even) {
        min-height: 0;
    }

    .cockpit-visual {
        min-height: clamp(300px, 78vw, 440px);
        padding: 14px;
    }

    .machine-no {
        left: 16px;
        top: 14px;
        font-size: clamp(76px, 24vw, 112px);
    }

    .cockpit-main {
        width: min(122%, 650px);
        transform: scale(1.03);
    }

    .cockpit-profile {
        padding: 26px 18px 28px;
    }

    .cockpit-profile h3 {
        margin-bottom: 14px;
        font-size: clamp(28px, 9.4vw, 43px);
        line-height: 1.04;
        letter-spacing: -.026em;
    }

    .cockpit-profile h3 span {
        margin-bottom: 5px;
        letter-spacing: .04em;
    }

    .machine-note {
        font-size: 11px;
        line-height: 1.45;
        letter-spacing: .04em;
    }

    .spec-list {
        margin-bottom: 20px;
    }

    .spec-row {
        min-height: 0;
        padding: 13px 14px;
    }

    .spec-row dt {
        font-size: 10.5px;
        letter-spacing: .08em;
    }

    .spec-row dd {
        font-size: 13.5px;
        line-height: 1.48;
    }

    .thumb-grid {
        gap: 8px;
    }

    .showroom-layout {
        border-width: 1px;
    }

    .showroom-photo {
        min-height: 280px;
        aspect-ratio: 16 / 10;
    }

    .showroom-copy {
        padding: 28px 18px 30px;
    }

    .showroom-copy p {
        margin-top: 16px;
    }

    .brand-strip.brand-strip-logos {
        width: 100%;
        margin-top: 14px;
        gap: 8px;
        justify-content: center;
    }

    .brand-strip-logos .brand-logo {
        flex: 0 1 calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
        min-height: 70px;
        padding: 10px 12px;
    }

    .brand-strip-logos .brand-logo img {
        max-height: 38px;
        max-width: 96%;
    }

    .brand-strip-logos .brand-vnm img,
    .brand-strip-logos .brand-ggear img,
    .brand-strip-logos .brand-omen img,
    .brand-strip-logos .brand-tsk img {
        max-height: 50px;
    }

    .brand-strip-logos .brand-tsk img {
        max-height: 54px;
    }

    .brand-strip-logos .brand-fanatec img,
    .brand-strip-logos .brand-zenkairacing img {
        max-height: 32px;
    }

    .store-layout,
    .store-left {
        gap: 10px;
    }

    .store-left img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .store-square {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .access-copy {
        padding: 28px 18px;
    }

    .address {
        font-size: 15px;
        line-height: 1.75;
    }

    .shop-info {
        margin-top: 20px;
    }

    .shop-info div {
        padding: 14px;
    }

    .shop-info dt,
    .shop-info dd {
        font-size: 14px;
        line-height: 1.55;
    }

    .map-stack,
    .google-map {
        min-height: 340px;
    }

    .google-map iframe {
        min-height: 340px;
    }

    .site-footer {
        padding: 34px 16px;
    }

    .powered {
        gap: 10px;
        letter-spacing: .05em;
    }

    .powered img {
        height: 26px;
    }
}

@media (max-width: 430px) {
    .hero-copy h1 {
        font-size: clamp(28px, 9.2vw, 39px);
    }

    .hero-copy p {
        font-size: 13.5px;
    }

    .section h2,
    .showroom-copy h2,
    .access-copy h2 {
        font-size: clamp(30px, 9.6vw, 42px);
    }

    .brand-strip-logos .brand-logo {
        min-height: 66px;
    }
}

@media (max-width: 360px) {
    .hero-copy h1 {
        font-size: 27px;
    }

    .hero-meta span {
        font-size: 11.5px;
    }

    .btn {
        font-size: 12.5px;
    }
}


/* ---------------------------------------------------------
   v8 BattleGear lineup + hero scale refinement
   --------------------------------------------------------- */
.hero-copy h1 {
    font-size: clamp(24px, 3.2vw, 44px);
    letter-spacing: .02em;
    padding: .20em .58em .24em;
    border-radius: 2px;
}

.hero-logo {
    margin-bottom: clamp(8px, 1.4vw, 18px);
}

.pricing-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
}

.bg4-card .cockpit-visual {
    background: radial-gradient(circle at 50% 54%, rgba(255, 38, 38, .20), transparent 34%),
    radial-gradient(circle at 50% 70%, rgba(255, 138, 0, .16), transparent 42%),
    linear-gradient(160deg, #070708, #171112 72%, #090909);
}

.bg4-card .cockpit-main,
.cockpit-main.bg4-main {
    width: min(118%, 780px);
    max-width: none;
    transform: translateY(3%) scale(1.12);
    filter: drop-shadow(0 30px 55px rgba(0, 0, 0, .78)) drop-shadow(0 0 24px rgba(255, 44, 30, .18));
}

.bg4-card .machine-note {
    color: #fff;
}

.bg4-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0 26px;
}

.bg4-highlights span {
    min-height: 74px;
    display: grid;
    place-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(255, 138, 0, .34);
    background: linear-gradient(145deg, rgba(255, 138, 0, .18), rgba(255, 255, 255, .035)),
    rgba(0, 0, 0, .24);
    color: #fff;
    font-size: clamp(15px, 1.35vw, 21px);
    line-height: 1.25;
    font-weight: 900;
    text-align: center;
    text-wrap: balance;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.bg4-thumbs {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .hero-copy h1 {
        font-size: clamp(20px, 6vw, 30px);
        line-height: 1.12;
        padding: .18em .48em .22em;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .bg4-card .cockpit-main,
    .cockpit-main.bg4-main {
        width: min(122%, 620px);
        transform: translateY(3%) scale(1.08);
    }

    .bg4-highlights {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 18px 0 22px;
    }

    .bg4-highlights span {
        min-height: 52px;
        font-size: 15px;
    }

    .bg4-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .hero-copy h1 {
        font-size: clamp(19px, 5.7vw, 26px);
        letter-spacing: .01em;
    }

    .hero-meta span {
        white-space: normal;
    }

    .bg4-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* v8.1 final tuning */
.bg4-card .cockpit-main,
.cockpit-main.bg4-main {
    width: auto;
    height: min(94%, 700px);
    max-height: 700px;
    object-fit: contain;
    transform: translateY(2%) scale(1.10);
}

@media (max-width: 820px) {
    .bg4-card .cockpit-main,
    .cockpit-main.bg4-main {
        width: auto;
        height: min(90%, 440px);
        max-height: 440px;
        transform: translateY(2%) scale(1.10);
    }
}

@media (max-width: 430px) {
    .bg4-card .cockpit-main,
    .cockpit-main.bg4-main {
        height: min(88%, 390px);
        max-height: 390px;
    }
}

/* ---------------------------------------------------------
   v9 SNS links + news section
   --------------------------------------------------------- */
.site-nav {
    gap: clamp(14px, 1.65vw, 32px);
}

.nav-social,
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav-social {
    margin-left: clamp(4px, 1.2vw, 16px);
    padding-left: clamp(10px, 1.6vw, 22px);
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.nav-social a,
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .86);
    font-size: 12px;
    line-height: 1;
    letter-spacing: .08em;
    transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.nav-social a:hover,
.footer-social a:hover {
    color: #111;
    border-color: var(--orange);
    background: var(--orange);
    transform: translateY(-1px);
}

.news-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 16%, rgba(255, 138, 0, .16), transparent 28%),
        linear-gradient(180deg, #070707, #0f0f11 46%, #070707);
}

.news-section:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: radial-gradient(circle at 72% 20%, #000 0, transparent 62%);
    opacity: .25;
}

.news-head {
    position: relative;
    z-index: 1;
}

.news-list {
    position: relative;
    z-index: 1;
    width: min(1180px, 92vw);
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.news-card {
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    box-shadow: 0 20px 48px rgba(0, 0, 0, .32);
    overflow: hidden;
}

.news-trigger {
    appearance: none;
    width: 100%;
    border: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    display: grid;
    grid-template-columns: minmax(118px, 180px) minmax(0, 1fr) auto;
    align-items: stretch;
    gap: clamp(16px, 2vw, 30px);
    text-align: left;
    cursor: pointer;
}

.news-card.is-text-only .news-trigger {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-left: clamp(18px, 2vw, 30px);
}

.news-thumb {
    position: relative;
    min-height: 136px;
    background: #141414;
    overflow: hidden;
}

.news-thumb:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .34));
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    transition: transform .35s ease;
}

.news-trigger:hover .news-thumb img {
    transform: scale(1.095);
}

.news-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: clamp(18px, 2vw, 26px) 0;
}

.news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--orange);
    font-size: 12px;
    line-height: 1.15;
    letter-spacing: .12em;
    font-weight: 900;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 138, 0, .13);
    color: #ffd28a;
}

.news-title {
    display: block;
    color: #fff;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.28;
    font-weight: 900;
    letter-spacing: .035em;
    word-break: auto-phrase;
    text-wrap: balance;
}

.news-summary {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.8;
    letter-spacing: .02em;
    word-break: auto-phrase;
    text-wrap: pretty;
}

.news-more {
    align-self: center;
    margin-right: clamp(18px, 2vw, 28px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 138, 0, .5);
    color: var(--orange);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .12em;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.news-trigger:hover .news-more {
    background: var(--orange);
    border-color: var(--orange);
    color: #111;
}

.modal.is-news {
    place-items: center;
    padding: clamp(16px, 3vw, 34px);
    overflow-y: auto;
}

.modal.is-news > img,
.modal.is-news > video,
.modal.is-news .modal > img,
.modal.is-news .modal > video {
    display: none;
}

.news-detail {
    display: none;
}

.modal.is-news .news-detail {
    display: block;
    width: min(1120px, 94vw);
    max-height: min(86svh, 920px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: clamp(22px, 2.6vw, 34px);
    background:
        radial-gradient(circle at 86% 0%, rgba(255, 138, 0, .18), transparent 30%),
        linear-gradient(145deg, rgba(21, 21, 24, .98), rgba(5, 5, 5, .98));
    box-shadow: 0 34px 110px rgba(0, 0, 0, .86);
    padding: clamp(22px, 3.4vw, 46px);
}

.news-detail-head {
    margin-bottom: clamp(18px, 2.2vw, 30px);
    padding-bottom: clamp(16px, 2vw, 22px);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.news-detail-head h2 {
    margin: 4px 0 8px;
    color: #fff;
    font-size: clamp(26px, 4vw, 54px);
    line-height: 1.15;
    letter-spacing: .04em;
    word-break: auto-phrase;
    text-wrap: balance;
}

.news-detail-head time {
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    letter-spacing: .12em;
    font-weight: 800;
}

.news-detail-layout.has-image {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
    gap: clamp(20px, 3vw, 42px);
    align-items: start;
}

.news-detail-layout.no-image {
    display: block;
}

.news-detail-image {
    display: block;
    position: sticky;
    top: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #090909;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .44);
}

.modal.is-news .news-detail-image img {
    width: 100%;
    max-width: none;
    max-height: min(66svh, 720px);
    height: auto;
    object-fit: contain;
    box-shadow: none;
}

.news-detail-image span {
    display: block;
    padding: 10px 12px 12px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    letter-spacing: .06em;
}

.news-detail-text {
    color: rgba(255, 255, 255, .84);
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 2;
    letter-spacing: .03em;
}

.news-detail-text p {
    margin: 0 0 1.15em;
}

.site-footer {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.footer-social a {
    min-width: 104px;
}

@media (max-width: 1180px) {
    .site-nav {
        gap: 14px;
        font-size: 14px;
    }

    .nav-social {
        gap: 6px;
        padding-left: 12px;
    }

    .nav-social a {
        padding: 0 10px;
    }
}

@media (max-width: 920px) {
    .site-nav {
        align-items: stretch;
    }

    .nav-social {
        margin: 10px 0 0;
        padding: 12px 0 2px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .1);
        justify-content: stretch;
    }

    .nav-social a {
        flex: 1 1 0;
        min-height: 44px;
        padding: 0 12px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .site-nav a:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .news-trigger {
        grid-template-columns: 128px minmax(0, 1fr);
        gap: 16px;
    }

    .news-more {
        display: none;
    }

    .news-card.is-text-only .news-trigger {
        grid-template-columns: minmax(0, 1fr);
        padding-left: 0;
    }

    .news-card.is-text-only .news-card-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .news-detail-layout.has-image {
        grid-template-columns: 1fr;
    }

    .news-detail-image {
        position: relative;
    }
}

@media (max-width: 560px) {
    .news-section .section-head {
        margin-bottom: 22px;
    }

    .news-list {
        width: min(100% - 28px, 520px);
        gap: 12px;
    }

    .news-trigger {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
    }

    .news-thumb {
        min-height: 116px;
    }

    .news-card-body {
        padding: 14px 14px 14px 0;
        gap: 6px;
    }

    .news-meta {
        font-size: 10px;
        letter-spacing: .07em;
        gap: 6px;
    }

    .news-title {
        font-size: 17px;
        line-height: 1.35;
        letter-spacing: .025em;
    }

    .news-summary {
        font-size: 12.5px;
        line-height: 1.68;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .news-card.is-text-only .news-card-body {
        padding: 16px;
    }

    .modal.is-news {
        align-items: start;
        padding: 72px 12px 18px;
    }

    .modal.is-news .news-detail {
        width: 100%;
        max-height: none;
        padding: 18px;
        border-radius: 20px;
    }

    .news-detail-head h2 {
        font-size: 24px;
        line-height: 1.24;
    }

    .news-detail-text {
        font-size: 14px;
        line-height: 1.9;
    }

    .modal.is-news .news-detail-image img {
        max-height: 62svh;
    }

    .footer-social {
        width: 100%;
    }

    .footer-social a {
        flex: 1 1 0;
        min-width: 0;
    }
}

.nav-social a:after,
.footer-social a:after {
    display: none;
}


/* ---------------------------------------------------------
   v10 SNS icon refinement
   --------------------------------------------------------- */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.social-links {
    gap: 10px;
}

.nav-social a.social-icon,
.footer-social a.social-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 999px;
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(0, 0, 0, .34);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.nav-social a.social-icon svg,
.footer-social a.social-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 auto;
}

.social-icon-x svg {
    fill: currentColor;
}

.social-icon-instagram svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-social a.social-icon:hover,
.footer-social a.social-icon:hover {
    color: #fff;
    border-color: rgba(255, 138, 0, .95);
    background: rgba(255, 138, 0, .18);
    transform: translateY(-1px);
}

.footer-social a.social-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
}

@media (max-width: 920px) {
    .nav-social a.social-icon {
        flex: 0 0 46px;
        width: 46px;
        min-width: 46px;
        height: 46px;
        min-height: 46px;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .nav-social {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .footer-social {
        width: auto;
    }

    .footer-social a.social-icon {
        flex: 0 0 46px;
        width: 46px;
        min-width: 46px;
        height: 46px;
        min-height: 46px;
    }
}
