:root {
    --bg: #11263f;
    --bg-alt: #163454;
    --surface: rgba(255, 255, 255, 0.12);
    --surface-strong: rgba(255, 255, 255, 0.18);
    --accent: #ffbe55;
    --accent-2: #e48c3b;
    --text: #f7f3ea;
    --text-strong: #fff9ee;
    --text-body: rgba(247, 244, 238, 0.9);
    --gradient-night: radial-gradient(circle at 45% -20%, rgba(116, 160, 224, 0.32), transparent 55%), linear-gradient(180deg, #143054 0%, #1a3f68 55%, #103150 100%);
    --gradient-ember: radial-gradient(circle at 12% 18%, rgba(104, 148, 214, 0.28), transparent 50%), linear-gradient(140deg, #15365c 0%, #1b4774 65%, #12345a 100%);
    --gradient-rust: radial-gradient(circle at 80% 10%, rgba(120, 164, 230, 0.26), transparent 52%), linear-gradient(135deg, #16365c 0%, #24558a 60%, #123456 100%);
    --gradient-ink: radial-gradient(circle at 85% -10%, rgba(132, 172, 236, 0.32), transparent 40%), linear-gradient(150deg, #16365c 0%, #24558a 70%, #123456 100%);
    --panel-amber: linear-gradient(145deg, rgba(106, 146, 210, 0.3), rgba(24, 42, 70, 0.9));
    --panel-rust: linear-gradient(145deg, rgba(118, 158, 222, 0.26), rgba(22, 34, 56, 0.9));
    --panel-ink: linear-gradient(145deg, rgba(136, 176, 234, 0.24), rgba(18, 28, 46, 0.9));
    --panel-soft: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(12, 18, 30, 0.8));
    --border-glow: rgba(126, 166, 226, 0.4);
    --page-gutter: clamp(24px, 6vw, 60px);
    --muted: #d2c9b9;
    --border: rgba(255, 255, 255, 0.16);
    --container: 1180px;
    --font-sans: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: radial-gradient(circle at 12% 12%, rgba(132, 172, 236, 0.16), transparent 45%), var(--bg);
    color: var(--text);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Intersection-based animations */
.scroll-target {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    scroll-margin-top: 110px;
}

.scroll-target.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-stat {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-stat:nth-child(1) {
    transition-delay: 0.15s;
}

.hero-stat:nth-child(2) {
    transition-delay: 0.25s;
}

.hero-stat:nth-child(3) {
    transition-delay: 0.35s;
}

.hero .hero-stat {
    opacity: 1;
    transform: none;
}

.overview-grid article,
.market-grid article,
.event-grid article,
.differentiation-card,
.financial-card,
.cta-splash-inner {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-target.is-visible .overview-grid article,
.scroll-target.is-visible .market-grid article,
.scroll-target.is-visible .event-grid article,
.scroll-target.is-visible .differentiation-card,
.scroll-target.is-visible .financial-card,
.scroll-target.is-visible .cta-splash-inner {
    opacity: 1;
    transform: translateY(0);
}

.scroll-target.is-visible .overview-grid article:nth-child(2),
.scroll-target.is-visible .market-grid article:nth-child(2),
.scroll-target.is-visible .event-grid article:nth-child(2),
.scroll-target.is-visible .differentiation-card:nth-child(2) {
    transition-delay: 0.08s;
}

.scroll-target.is-visible .overview-grid article:nth-child(3),
.scroll-target.is-visible .market-grid article:nth-child(3),
.scroll-target.is-visible .event-grid article:nth-child(3),
.scroll-target.is-visible .differentiation-card:nth-child(3) {
    transition-delay: 0.16s;
}

.scroll-target.is-visible .overview-grid article:nth-child(4),
.scroll-target.is-visible .market-grid article:nth-child(4),
.scroll-target.is-visible .event-grid article:nth-child(4),
.scroll-target.is-visible .differentiation-card:nth-child(4) {
    transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {

    .scroll-target,
    .hero-stat,
    .overview-grid article,
    .market-grid article,
    .event-grid article,
    .differentiation-card,
    .financial-card,
    .cta-splash-inner {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

p {
    margin: 0 0 20px;
    line-height: 1.85;
    font-size: 16px;
    word-break: normal;
    overflow-wrap: break-word;
    color: var(--text-body);
}

p strong,
p b {
    color: var(--text);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 32px;
}

.note {
    margin: 24px 0 0;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    line-height: 1.7;
}

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

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

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.site-header {
    position: relative;
    z-index: 100;
    background: rgba(18, 40, 70, 1);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* ハンバーガーメニュー（モバイル用・固定表示） */
.hamburger {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1100;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: rgba(18, 40, 70, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(30, 55, 90, 0.95);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* モバイルナビゲーション */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: rgba(10, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 8px;
    padding: 80px 24px 40px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--accent);
}

.mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 16px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #e6a800);
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(255, 193, 7, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255, 193, 7, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 14px var(--page-gutter);
    gap: 18px;
    max-width: var(--container);
    margin: 0 auto;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    flex-shrink: 0;
}

.brand-logo {
    width: clamp(180px, 22vw, 320px);
    height: auto;
    display: block;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.brand-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.brand-reading {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: none;
    font-weight: 700;
    display: inline-flex;
    gap: 6px;
    align-items: baseline;
    line-height: 1.2;
}

.brand-eyebrow {
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
}

.brand-title {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #1f1f1f;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-nav {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.header-nav .section-nav-buttons {
    justify-content: flex-start;
}

.section-nav-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    align-items: center;
    overflow-x: visible;
    padding: 2px 0;
    white-space: nowrap;
}

.nav-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 5px;
    font-size: 12px;
    color: var(--text-strong);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-chip:hover {
    color: var(--accent);
}

.nav-chip:active {
    color: var(--accent-2);
}

.site-header .nav-chip {
    color: rgba(255, 255, 255, 0.85);
}

.site-header .nav-chip:hover {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
    position: relative;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

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

.btn-primary {
    background: linear-gradient(140deg, var(--accent), var(--accent-2));
    color: #211507;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border);
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: clamp(500px, 85vh, 760px);
    display: flex;
    align-items: flex-end;
    background: #0a1019;
    overflow: hidden;
    padding: 60px 0 120px;
    color: #f7f3ea;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    transform-origin: center;
    animation: heroZoom 28s ease-in-out infinite;
    filter: saturate(1.05);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(48, 118, 214, 0.25), transparent 38%),
        radial-gradient(circle at 80% 10%, rgba(255, 190, 85, 0.12), transparent 42%),
        linear-gradient(120deg, rgba(5, 8, 14, 0.45) 0%, rgba(8, 12, 20, 0.38) 45%, rgba(6, 10, 16, 0.25) 100%),
        linear-gradient(to bottom, rgba(6, 10, 16, 0.25) 0%, rgba(6, 10, 16, 0.48) 55%, rgba(6, 10, 16, 0.65) 100%);
}

.hero-motion {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-motion span {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 190, 85, 0.16) 0%, rgba(255, 190, 85, 0.08) 35%, rgba(0, 0, 0, 0) 70%);
    filter: blur(10px);
    animation: heroGlow 18s ease-in-out infinite;
    mix-blend-mode: screen;
}

.hero-motion span:nth-child(1) {
    top: 12%;
    left: 8%;
    animation-duration: 22s;
}

.hero-motion span:nth-child(2) {
    bottom: 8%;
    right: 12%;
    animation-duration: 20s;
}

.hero-motion span:nth-child(3) {
    top: 30%;
    right: 36%;
    animation-duration: 26s;
}

@media (max-width: 1024px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .header-nav,
    .site-header .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        padding: 12px var(--page-gutter);
    }

    .brand {
        gap: 8px;
        align-items: flex-start;
    }

    .brand-logo {
        width: 140px;
    }

    .brand-title {
        font-size: 13px;
    }

    .brand-eyebrow {
        font-size: 10px;
        letter-spacing: 0.25em;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 90px 0 140px;
    }

    .hero-media img {
        animation: none;
        object-position: center 35%;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    min-height: auto;
}

.hero-copy {
    max-width: 1100px;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--accent);
    background: rgba(255, 190, 85, 0.1);
    border-radius: 4px;
    letter-spacing: 0.1em;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(255, 190, 85, 0.15);
    text-shadow: 0 0 10px rgba(255, 190, 85, 0.4);
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    line-height: 1.4;
    margin: 0 0 24px;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: auto;
    color: var(--text-strong);
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

h1 {
    font-size: clamp(34px, 4.5vw, 60px);
    font-weight: 700;
    letter-spacing: 0.01em;
}

h2 {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: 0.01em;
}

h3 {
    font-size: clamp(19px, 2.2vw, 26px);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Headings */
.section-header {
    max-width: 860px;
    margin: 0 auto 56px;
    text-align: center;
}

.eyebrow {
    letter-spacing: 0.5em;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    font-weight: 600;
    display: block;
}

.section-header h2 {
    display: inline-block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    position: relative;
    z-index: 0;
    line-height: 1.4;
    letter-spacing: 0.01em;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    overflow: visible;
    margin-bottom: 20px;
    max-width: 100%;
}

.section-header h2::before,
.section-header h2::after {
    display: none;
}

h3 {
    position: relative;
    padding-left: 24px;
    text-transform: none;
    letter-spacing: 0.03em;
}

h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-2), transparent);
    box-shadow: 0 0 14px rgba(44, 84, 168, 0.8);
}

.hero h1 {
    font-size: clamp(38px, 4.6vw, 56px);
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.35;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 18px 36px rgba(0, 0, 0, 0.55);
}

.hero-lead {
    font-size: 17px;
    margin-bottom: 16px;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.9;
    color: rgba(247, 244, 238, 0.9);
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.hero-tagline {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* .hero-sub-copy removed */

.hero-campaign-banner {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg, #c39738 0%, #deb761 20%, #c39738 40%, #deb761 60%, #c39738 80%, #deb761 100%);
    background-size: 200% auto;
    padding: 4px;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(222, 183, 97, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
    transform: skewX(-10deg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: shine 4s linear infinite;
    position: relative;
    overflow: hidden;
}

@keyframes shine {}

.hero-campaign-banner>* {
    transform: skewX(10deg);
}

/* Override skew for badge to match container */
.hero-campaign-banner .campaign-badge {
    transform: none;
    /* Inherit -10deg skew from parent */
}

.campaign-badge {
    background: linear-gradient(to bottom, #a00020, #600010);
    color: #fff;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 18px;
    /* clip-path removed to rely on skew */
    margin-right: -12px;
    z-index: 2;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-text {
    display: inline-block;
    transform: skewX(10deg);
    /* Upright text */
}

.campaign-content {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 6px 24px 6px 28px;
    color: #211507;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.content-label {
    font-size: 16px;
    color: #3e2723;
    font-weight: 700;
}

.content-price {
    font-size: 30px;
    color: #8b0000;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
}

.price-minus {
    font-size: 0.8em;
    margin-right: 2px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .hero-campaign-banner {
        flex-direction: column;
        transform: none;
        padding: 6px;
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 6px;
    }

    .hero-campaign-banner>* {
        transform: none;
    }

    .campaign-badge {
        clip-path: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 6px;
        text-align: center;
        border-radius: 4px;
        padding: 6px 12px;
    }

    .campaign-content {
        padding: 8px;
        justify-content: center;
        width: 100%;
    }
}

.hero p {
    color: rgba(247, 244, 238, 0.9);
}

.hero .hero-copy h1,
.hero .hero-copy p,
.hero .hero-copy .hero-label,
.hero .hero-data .hero-stat-label,
.hero .hero-data .hero-stat-value,
.hero .hero-data p {
    text-shadow: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.hero-stat {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 24px;
    background: rgba(20, 30, 50, 0.6);
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(20, 30, 50, 0.8);
}

.hero-stat-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
    white-space: nowrap;
}

.hero-stat-value small {
    font-size: 16px;
}

.hero-stat p {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--muted);
}

.hero-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    max-width: 980px;
    margin: 10px auto 0;
    width: 100%;
}

.hero-box {
    background: rgba(10, 16, 28, 0.6);
    border-radius: 14px;
    padding: 16px 14px;
    color: #f5f5f5;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 110px;
}

.hero-box .box-label {
    display: block;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 6px;
    text-transform: none;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-box .box-value {
    display: block;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-cta-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: linear-gradient(90deg, rgba(255, 190, 85, 0.95), rgba(228, 140, 59, 0.95));
    padding: 16px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.cta-bar-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.cta-bar-eyebrow {
    margin: 0;
    letter-spacing: 0.06em;
    font-size: 12px;
    text-transform: none;
    color: #1a1a1a;
    font-weight: 600;
}

.cta-bar-main {
    margin: 0;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 800;
}

.cta-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-top: -30px;
    /* Pop out effect */
    border: 4px solid rgba(255, 190, 85, 0.95);
    position: relative;
    z-index: 2;
}

.cta-badge span {
    font-size: 11px;
    color: #555;
    line-height: 1;
    margin-bottom: 2px;
}

.cta-badge strong {
    font-size: 22px;
    line-height: 1;
    color: #d32f2f;
}

.cta-bar-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-bar-label {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-cta {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.4);
}

.btn-cta:active {
    transform: translateY(0);
}


.section {
    --section-bg: var(--gradient-night);
    --section-glow:
        radial-gradient(circle at 20% 20%, rgba(68, 112, 191, 0.2), transparent 42%),
        radial-gradient(circle at 78% 0%, rgba(44, 86, 168, 0.22), transparent 48%);
    padding: 120px 0;
    background: var(--section-bg);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section::after {
    content: '';
    position: absolute;
    inset: -20% -10%;
    background: var(--section-glow);
    opacity: 0.4;
    z-index: -2;
    pointer-events: none;
}

.section:nth-of-type(even) {
    --section-bg: var(--gradient-ember);
    --section-glow:
        radial-gradient(circle at 85% 15%, rgba(68, 112, 191, 0.16), transparent 38%),
        radial-gradient(circle at 10% 60%, rgba(32, 70, 140, 0.25), transparent 55%);
}

.section>* {
    position: relative;
    z-index: 1;
}

.tone-dark {
    --section-bg: var(--gradient-ink);
    --section-glow:
        radial-gradient(circle at 80% -10%, rgba(80, 96, 135, 0.16), transparent 38%),
        radial-gradient(circle at 12% 90%, rgba(72, 114, 194, 0.12), transparent 60%);
}

.concept {
    --section-bg: linear-gradient(135deg, rgba(60, 104, 190, 0.16), rgba(16, 28, 48, 0.92));
    --section-glow:
        radial-gradient(circle at 15% 20%, rgba(72, 114, 194, 0.2), transparent 45%),
        radial-gradient(circle at 85% 10%, rgba(44, 84, 168, 0.22), transparent 40%);
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 40px;
    align-items: start;
}

.concept-card {
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    background: var(--surface);
    overflow: hidden;
}

.concept-card h3 {
    margin-bottom: 20px;
}


.concept-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.concept-numbers div {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface-strong);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.concept-numbers strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin: 4px 0;
    color: var(--accent);
}

.concept-numbers span {
    word-break: normal;
    overflow-wrap: break-word;
}

.small-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 12px;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}

.full-photo {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 var(--page-gutter);
}

.full-photo img {
    width: 100%;
    height: min(70vh, 640px);
    object-fit: cover;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.full-photo-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(16, 26, 46, 0.7);
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 0.08em;
}

.overview-grid,
.market-grid,
.event-grid,
.financial-grid {
    display: grid;
    gap: 24px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.brand-grid > article:not(.differentiation-card) {
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 32px;
    background: var(--panel-rust);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.brand-grid > article:not(.differentiation-card) h3 {
    margin-bottom: 20px;
}

.brand-grid > article:not(.differentiation-card) p {
    margin-bottom: 0;
}

.differentiation {
    --section-bg: radial-gradient(circle at 15% 15%, rgba(108, 150, 214, 0.16), transparent 55%), linear-gradient(145deg, #0d1b2f, #183559 65%, #0c1f38 100%);
    --section-glow:
        radial-gradient(circle at 82% 10%, rgba(78, 124, 196, 0.22), transparent 48%),
        radial-gradient(circle at 12% 88%, rgba(96, 140, 210, 0.14), transparent 52%);
}

.differentiation-lead {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 48px;
}

.differentiation-lead h3 {
    margin: 0 0 20px;
    color: var(--accent);
    letter-spacing: 0.01em;
    padding-left: 0;
}

.differentiation-lead h3::before {
    display: none;
}

.differentiation-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(30, 52, 86, 0.75), rgba(20, 36, 62, 0.85));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.differentiation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 190, 85, 0.3);
}

.differentiation-card .card-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.differentiation-card .card-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease, filter 0.3s ease;
    filter: brightness(0.95);
}

.differentiation-card:hover .card-image img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.differentiation-card .card-content {
    padding: 20px 22px 26px;
    display: block;
    text-align: center;
}

.differentiation-card .card-content h3 {
    margin: 0;
    line-height: 1.6;
    padding-left: 0;
    font-size: clamp(16px, 2.2vw, 22px);
    color: var(--text-strong);
}

.differentiation-card .card-content h3::before {
    display: none;
}

.differentiation-conclusion {
    margin-top: 32px;
}

.conclusion-cta {
    border: 1px solid rgba(255, 190, 85, 0.35);
    border-radius: 20px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(10, 16, 28, 0.78), rgba(16, 26, 44, 0.88));
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.conclusion-cta h3 {
    margin: 0 0 18px;
    text-align: center;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.conclusion-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 190, 85, 0.14), transparent 50%),
        radial-gradient(circle at 80% 10%, rgba(112, 154, 220, 0.16), transparent 48%);
    pointer-events: none;
    z-index: 0;
}

.conclusion-cta>* {
    position: relative;
    z-index: 1;
}

.conclusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 14px;
}

.conclusion-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.conclusion-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #ffe8c4, #f0b14c);
    color: #1a1a1a;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    background: #101522;
    color: #f7f3ea;
}

.conclusion-label {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.conclusion-item h4 {
    margin: 2px 0;
    font-size: 18px;
    color: var(--text-strong);
}

.conclusion-note {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.conclusion-footer {
    margin-top: 18px;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 190, 85, 0.3);
    text-align: center;
    display: grid;
    gap: 12px;
}

.conclusion-footer p {
    margin: 0;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
}

.conclusion-footer .btn-cta {
    justify-self: center;
    min-width: 240px;
    padding: 13px 28px;
    font-size: 16px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(23, 88, 197, 0.24);
}

.conclusion-text {
    margin: 0;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
}

.conclusion-text.highlight {
    text-align: center;
    margin: 30px auto 40px;
    font-size: clamp(18px, 3vw, 24px);
    padding: 30px 40px;
    border-radius: 12px;
    background: #fff;
    border: 2px solid var(--accent);
    color: #0c192c;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
    position: relative;
    max-width: 900px;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.15);
}

.conclusion-text.highlight::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #fff;
    border-top: none;
    z-index: 1;
}

.conclusion-text.highlight::before {
    content: '';
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 22px solid var(--accent);
    border-top: none;
    z-index: 0;
}

.brand-strength {
    --section-bg: radial-gradient(circle at 20% 20%, rgba(108, 150, 214, 0.14), transparent 55%), linear-gradient(135deg, #0d1b2f, #1b355c 70%, #0c1f38 100%);
    --section-glow:
        radial-gradient(circle at 75% 10%, rgba(78, 124, 196, 0.22), transparent 48%),
        radial-gradient(circle at 10% 80%, rgba(40, 86, 158, 0.28), transparent 55%);
}

.overview {
    --section-bg: radial-gradient(circle at 12% 8%, rgba(104, 148, 214, 0.16), transparent 58%), linear-gradient(140deg, #0c192c, #183459 65%, #0c1f36 100%);
    --section-glow:
        radial-gradient(circle at 82% 12%, rgba(78, 124, 196, 0.2), transparent 48%),
        radial-gradient(circle at 18% 88%, rgba(96, 140, 210, 0.14), transparent 52%);
}

.market-section {
    position: relative;
    --section-bg: linear-gradient(135deg, rgba(8, 12, 18, 0.28), rgba(12, 18, 28, 0.16));
    --section-glow:
        radial-gradient(circle at 12% 25%, rgba(108, 150, 214, 0.12), transparent 40%),
        radial-gradient(circle at 88% 15%, rgba(86, 118, 178, 0.16), transparent 42%);
    overflow: hidden;
}

.market-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/pattern.jpg') center/cover;
    opacity: 0.45;
    filter: saturate(1.05);
    z-index: -1;
}

.market-section>.container {
    position: relative;
}

.data-source {
    font-size: 12px;
    color: var(--muted);
}

.overview-grid article,
.market-grid article,
.event-grid article,
.model-card,
.support-grid article,
.financial-card {
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 32px;
    background: linear-gradient(150deg, rgba(26, 48, 80, 0.9), rgba(18, 32, 54, 0.86));
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.35);
    overflow: visible;
}

.event-grid article p {
    max-width: 280px;
}

.overview-grid article h3,
.market-grid article h3,
.event-grid article h3 {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Reason headings use .reason-badge instead */

.overview-grid article h3 span {
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.5;
    padding-left: 0;
}

#reasons .overview-grid {
    padding-top: 0;
    gap: 30px;
}

#reasons .overview-grid article.reason-card {
    background: linear-gradient(150deg, rgba(26, 48, 80, 0.95), rgba(18, 32, 54, 0.9));
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

#reasons .overview-grid article.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.card-image {
    position: relative;
    width: 100%;
    height: clamp(180px, 20vw, 240px);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#reasons .overview-grid article.reason-card:hover .card-image img {
    transform: scale(1.05);
}

/* Badge hanging on the right - Larger size */
#reasons .overview-grid article .reason-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    left: auto;
    width: 70px;
    height: 100px;
    background: linear-gradient(135deg, #2c54a8, #1a3a7a);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 10;
    padding-bottom: 15px;
}

/* Badge fold effect */
#reasons .overview-grid article .reason-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 10px;
    background: #0f2450;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: -1;
}

.badge-label {
    font-size: 13px;
    letter-spacing: 0.05em;
    font-family: var(--font-serif);
    margin-bottom: 4px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.95);
}

.badge-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-serif);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reason-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    line-height: 1.4;
    display: block;
}

.reason-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px !important;
    flex: 1;
}

.highlight-text {
    background: none;
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid var(--accent);
}

.reason-tag {
    background: var(--accent);
    color: #0d1b2f;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    margin-top: auto;
    border: none;
    letter-spacing: 0.02em;
}

.overview-grid article p {
    line-height: 1.9;
    margin-bottom: 0;
}

.event-grid article h3 {
    white-space: normal;
    font-size: clamp(15px, 1.6vw, 21px);
}

.overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: 32px;
}

.market-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 28px;
}

.event-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 28px;
}

.financial-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 28px;
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.style-card {
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 36px;
    background: linear-gradient(150deg, rgba(22, 34, 56, 0.92), rgba(12, 18, 30, 0.86));
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.style-card h3 {
    margin-bottom: 18px;
}

.style-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.style-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.style-meta dt {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.style-meta dd {
    margin: 6px 0 0;
    font-weight: 600;
    word-break: normal;
    overflow-wrap: break-word;
}

.style-note {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 16px;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 32px;
}

.plan-card {
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 32px;
    background: linear-gradient(150deg, rgba(18, 28, 48, 0.92), rgba(12, 18, 30, 0.86));
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(68, 112, 191, 0.2), rgba(18, 30, 64, 0.05));
    opacity: 0.6;
    pointer-events: none;
}

.plan-card>* {
    position: relative;
    z-index: 1;
}

.plan-badge {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(12, 24, 52, 0.8);
    border: 1px solid var(--border-glow);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 13px;
}

.plan-card>p {
    line-height: 1.85;
    margin-bottom: 0;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.plan-list li {
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.8;
}

.plan-list li::before {
    content: '・';
    margin-right: 8px;
    color: var(--accent);
    font-size: 18px;
}

.photo-strip {
    background: radial-gradient(circle at 18% 0%, rgba(104, 148, 214, 0.18), transparent 55%), linear-gradient(140deg, #0c1b2f, #153357 60%, #0c1a30 100%);
    padding: 70px var(--page-gutter) 40px;
    position: relative;
    overflow: hidden;
}

.photo-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(112, 154, 220, 0.24), transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(32, 66, 126, 0.48), transparent 45%);
    opacity: 0.45;
}

.photo-strip-head {
    position: relative;
    text-align: center;
    margin-bottom: 48px;
    z-index: 1;
}

.photo-strip-head h2 {
    display: inline-flex;
    padding: 14px 36px;
    border-radius: 999px;
    background: rgba(16, 28, 48, 0.72);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    font-size: clamp(26px, 3.5vw, 44px);
}

.photo-strip-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 8px;
}

.photo-strip-grid figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.photo-strip-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.15);
    transition: transform 0.8s ease,
        filter 0.6s ease;
}

.photo-strip-grid figure:hover img {
    transform: scale(1.05);
    filter: saturate(1.25);
}

.photo-strip-grid figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(16, 28, 48, 0.72);
    font-size: 13px;
    letter-spacing: 0.05em;
}


.support-matrix {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.support-card {
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 32px;
    background: linear-gradient(150deg, rgba(18, 28, 46, 0.9), rgba(12, 18, 30, 0.84));
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.support-card h3 {
    margin-bottom: 20px;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    gap: 12px;
}

.support-list li {
    position: relative;
    padding-left: 20px;
    line-height: 1.8;
    word-break: normal;
    overflow-wrap: break-word;
}

.support-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 18px;
}

.support-note {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 16px;
}

.cta-splash {
    position: relative;
    padding: 120px var(--page-gutter);
    overflow: hidden;
    text-align: center;
}

.cta-splash::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 12, 18, 0.35), rgba(8, 12, 18, 0.12)), url('../images/red-ale.jpg') center/cover;
    filter: saturate(1.1);
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.cta-splash-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    z-index: 1;
}

.cta-splash-inner h2 {
    margin: 16px 0 24px;
    line-height: 1.5;
}

.cta-splash-inner p {
    font-size: 17px;
    line-height: 1.9;
}

.cta-splash-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 32px;
}

#models {
    --section-bg: radial-gradient(circle at 10% 20%, rgba(112, 154, 220, 0.12), transparent 55%), linear-gradient(160deg, #0c1a2c, #183459 70%);
    --section-glow:
        radial-gradient(circle at 85% 15%, rgba(112, 154, 220, 0.2), transparent 45%),
        radial-gradient(circle at 12% 85%, rgba(70, 108, 178, 0.26), transparent 52%);
}

#about {
    --section-bg:
        linear-gradient(120deg, rgba(6, 10, 16, 0.82), rgba(6, 10, 16, 0.65)),
        url('../images/interior-2.jpg') center/cover;
    --section-glow:
        radial-gradient(circle at 78% 12%, rgba(112, 154, 220, 0.18), transparent 42%),
        radial-gradient(circle at 12% 78%, rgba(255, 190, 85, 0.16), transparent 50%);
}

#privileges {
    --section-bg: linear-gradient(145deg, #0d1c2e, #1a3558 65%, #0d1f36 100%);
    --section-glow:
        radial-gradient(circle at 75% 15%, rgba(112, 154, 220, 0.18), transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(60, 100, 172, 0.26), transparent 52%);
}

#financials {
    --section-bg: linear-gradient(140deg, #0c192c, #183459 65%, #0c1f36 100%);
    --section-glow:
        radial-gradient(circle at 80% 10%, rgba(112, 154, 220, 0.18), transparent 48%),
        radial-gradient(circle at 12% 85%, rgba(70, 108, 178, 0.26), transparent 55%);
}

#process {
    --section-bg: linear-gradient(150deg, #0c192c, #1b355c 60%, #0c1f36 100%);
    --section-glow:
        radial-gradient(circle at 78% 12%, rgba(94, 122, 180, 0.2), transparent 45%),
        radial-gradient(circle at 12% 88%, rgba(108, 150, 214, 0.14), transparent 52%);
}

#faq {
    --section-bg: radial-gradient(circle at 15% 20%, rgba(112, 154, 220, 0.16), transparent 48%), linear-gradient(145deg, #0d1c2f, #1a355c 65%, #0c1f36 100%);
    --section-glow:
        radial-gradient(circle at 86% 14%, rgba(78, 124, 196, 0.2), transparent 45%),
        radial-gradient(circle at 10% 88%, rgba(56, 94, 166, 0.26), transparent 58%);
}

#company {
    --section-bg: linear-gradient(135deg, #0c1a2c, #1a3356 65%, #0c1f36 100%);
    --section-glow:
        radial-gradient(circle at 80% 0%, rgba(112, 154, 220, 0.15), transparent 45%),
        radial-gradient(circle at 15% 90%, rgba(116, 152, 214, 0.22), transparent 50%);
}

#support {
    --section-bg: linear-gradient(150deg, #0c1a2c, #1b3358 65%, #0c1f36 100%);
    --section-glow:
        radial-gradient(circle at 80% 20%, rgba(112, 154, 220, 0.14), transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(94, 120, 170, 0.24), transparent 50%);
}

.social-proof {
    --section-bg: linear-gradient(140deg, #0c1a2c, #1a3256 70%, #0c1f36 100%);
    --section-glow:
        radial-gradient(circle at 80% 0%, rgba(124, 164, 228, 0.22), transparent 45%),
        radial-gradient(circle at 10% 85%, rgba(100, 126, 180, 0.2), transparent 48%);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.stat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.stat-list li {
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 20px;
    background: var(--panel-soft);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.32);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    display: block;
    line-height: 1.7;
    word-break: normal;
    overflow-wrap: break-word;
}

.mid-cta,
.mid-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.2));
    border-radius: 24px;
    border: 1px solid var(--border);
}

.mid-cta-section {
    margin-top: 60px;
    margin-bottom: 0;
    padding: 64px 48px;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 190, 85, 0.2), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(228, 140, 59, 0.15), transparent 55%),
        linear-gradient(135deg, rgba(20, 35, 60, 0.95), rgba(15, 25, 45, 0.98));
    border: 3px solid var(--accent);
    border-radius: 28px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 190, 85, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mid-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
    box-shadow: 0 0 20px rgba(255, 190, 85, 0.5);
}

.mid-cta-section::after {
    content: '';
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle at center, rgba(255, 190, 85, 0.08), transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaGlow {

    0%,
    100% {
        transform: translate(-20%, -20%) scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: translate(20%, 20%) scale(1.2);
        opacity: 0.6;
    }
}

.mid-cta-section>* {
    position: relative;
    z-index: 1;
}

.mid-cta-section h3 {
    margin: 0 0 40px;
    padding: 0 12px;
    font-size: clamp(22px, 4vw, 32px);
    line-height: 1.6;
    color: var(--text-strong);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mid-cta-section h3::before {
    display: none;
}

.mid-cta-section .btn {
    min-width: 320px;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.mid-cta-section .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.mid-cta-section .btn:hover::before {
    width: 300px;
    height: 300px;
}

.mid-cta-section .btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 190, 85, 0.4);
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    min-height: 420px;
    padding: 0 40px;
    max-width: var(--container);
    margin: 0 auto;
}

.split-media {
    overflow: hidden;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.split-content {
    background: linear-gradient(145deg, rgba(16, 26, 44, 0.92), rgba(26, 42, 70, 0.86));
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(68, 112, 191, 0.12);
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.35);
}

.split-content h2 {
    margin-bottom: 24px;
    line-height: 1.5;
}

.split-content p {
    margin-bottom: 16px;
}

.privileges .split-content {
    background: var(--panel-rust);
    border-left: 1px solid var(--border-glow);
}

#value {
    position: relative;
    isolation: isolate;
    background: var(--gradient-ink);
    overflow: hidden;
}

#value::after {
    content: '';
    position: absolute;
    inset: -20% -10%;
    background:
        radial-gradient(circle at 80% 10%, rgba(80, 110, 170, 0.2), transparent 50%),
        radial-gradient(circle at 10% 85%, rgba(68, 112, 191, 0.12), transparent 55%);
    opacity: 0.5;
    pointer-events: none;
}

#value>* {
    position: relative;
    z-index: 1;
}

#value .split-content {
    background: linear-gradient(145deg, rgba(16, 24, 40, 0.92), rgba(26, 42, 70, 0.84));
    border-left: 1px solid rgba(96, 124, 190, 0.25);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 14px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    word-break: normal;
    overflow-wrap: break-word;
    line-height: 1.8;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.events {
    --section-bg: linear-gradient(145deg, rgba(14, 24, 40, 0.92), rgba(28, 48, 84, 0.82));
    --section-glow:
        radial-gradient(circle at 80% 20%, rgba(112, 154, 220, 0.18), transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(56, 100, 168, 0.3), transparent 50%);
    border-top: 1px solid rgba(68, 112, 191, 0.15);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 6px;
    width: 100%;
    background: radial-gradient(circle at 15% 10%, rgba(112, 154, 220, 0.18), transparent 50%), linear-gradient(120deg, #0c1a2c, #17345c 60%, #0c1a2c 100%);
    position: relative;
    overflow: hidden;
    padding: 0 var(--page-gutter) 24px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
    transition: transform 0.8s ease,
        filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: saturate(1.2) brightness(1.05);
}

.smart-portal {
    --section-bg: linear-gradient(135deg, #0c1a2c, #183152 55%, #0c1c30);
    --section-glow:
        radial-gradient(circle at 78% 12%, rgba(112, 154, 220, 0.14), transparent 45%),
        radial-gradient(circle at 12% 85%, rgba(94, 122, 176, 0.24), transparent 50%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.smart-portal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

.portal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.portal-list li {
    border: 1px solid var(--border-glow);
    border-radius: 22px;
    padding: 20px 22px;
    background: linear-gradient(150deg, rgba(18, 28, 46, 0.9), rgba(12, 18, 32, 0.88));
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.35);
    height: 100%;
}

.portal-list h3 {
    margin-bottom: 8px;
    font-family: var(--font-serif);
}

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

@media (max-width: 720px) {
    .portal-list {
        grid-template-columns: 1fr;
    }
}

.model-card ul {
    padding-left: 18px;
}

.financial-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.financial-model-card.compact {
    background: linear-gradient(145deg, rgba(18, 28, 46, 0.92), rgba(12, 20, 34, 0.88));
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.financial-model-card.compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.4);
}

.model-title {
    text-align: center;
    font-size: clamp(16px, 2.2vw, 20px);
    margin: 0 0 24px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #1a1a1a;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.model-title.limited {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    position: relative;
    overflow: hidden;
}

.model-title.limited::after {
    content: '限定';
    position: absolute;
    top: 4px;
    right: 8px;
    font-size: 10px;
    background: #fff;
    color: #ff6b6b;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.key-metrics {
    display: grid;
    gap: 12px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric.highlight {
    background: rgba(255, 190, 85, 0.08);
    border-color: rgba(255, 190, 85, 0.25);
}

.metric-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.metric-value {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 800;
    color: var(--text-strong);
}

.metric-value.profit {
    color: var(--accent);
    font-size: clamp(20px, 3vw, 28px);
}

.metric-value.blurred,
.metric-value.profit.blurred {
    color: transparent !important;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.9);
    filter: blur(1.2px);
}

.blurred {
    color: transparent;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    user-select: none;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 2px 8px;
    display: inline-block;
}

/* Sales metric with merihari styling */
.sales-metric {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
}

.sales-label {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.sales-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.sales-value .num {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
}

.sales-value .unit {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-serif);
}

.financial-callout {
    margin-top: 36px;
    padding: 28px;
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    background: linear-gradient(140deg, rgba(18, 28, 46, 0.9), rgba(12, 20, 34, 0.86));
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.financial-callout p {
    margin: 0;
    font-size: 16px;
    color: var(--text);
}

.callout-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.financial-callout .btn {
    min-width: 200px;
}

.process-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.process-list li {
    counter-increment: step;
    border: 1px solid rgba(68, 112, 191, 0.18);
    border-left: 3px solid var(--accent);
    padding: 12px 16px;
    background: linear-gradient(120deg, rgba(26, 40, 70, 0.78), rgba(14, 24, 40, 0.88));
}

.process-list li::before {
    content: counter(step, decimal-leading-zero);
    font-weight: 600;
    color: var(--accent);
    margin-right: 12px;
}

.faq-list details {
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 18px 20px;
    background: linear-gradient(145deg, rgba(18, 28, 46, 0.85), rgba(12, 20, 34, 0.88));
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.32);
}

.faq-list details+details {
    margin-top: 16px;
}

.faq-list summary {
    font-weight: 600;
    cursor: pointer;
}

.company {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.company-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.company-list span {
    display: inline-block;
    width: 110px;
    color: var(--muted);
}

.cta-panel {
    border: 1px solid var(--accent);
    border-radius: 28px;
    padding: 40px;
    background: linear-gradient(150deg, rgba(20, 35, 60, 0.95), rgba(10, 20, 35, 0.95));
    box-shadow: 0 0 40px rgba(255, 190, 85, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.bottom-cta {
    position: relative;
    padding: 80px 0 !important;
    background:
        linear-gradient(rgba(15, 36, 80, 0.9), rgba(26, 58, 122, 0.9)),
        url('../images/pattern.jpg');
    background-size: cover;
    background-attachment: fixed;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    color: #fff;
    overflow: hidden;
}

/* Decorative glow */
.bottom-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.bottom-cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.bottom-cta h2 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 40px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding-left: 0;
    line-height: 1.5;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.bottom-cta h2 em {
    color: transparent;
    background: linear-gradient(to bottom, #fff 0%, #e6cd9c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    padding: 0 4px;
    font-style: normal;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.bottom-cta h2 em::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(197, 160, 89, 0.6);
    z-index: -1;
    transform: skewX(-15deg);
}

.cta-checklist {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 50px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.cta-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-checklist li {
    margin: 0 0 20px;
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 500;
    color: #fff;
    position: relative;
    padding-left: 44px;
    text-align: left;
    line-height: 1.6;
}

.cta-checklist li:last-child {
    margin-bottom: 0;
}

.cta-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 900;
    color: #0f2450;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-checklist li em {
    color: #ffd700;
    font-style: normal;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.5);
    padding-bottom: 2px;
    white-space: nowrap;
}

/* Sleek Callout Box */
.cta-callout-box {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cta-callout-box::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #fff;
    filter: drop-shadow(0 -4px 4px rgba(0, 0, 0, 0.1));
}

.cta-callout-box::after {
    display: none;
}

.cta-callout-box p {
    margin: 0;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    color: #0f2450;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.cta-callout-box a {
    display: inline-block;
    margin-top: 8px;
    color: #c2410c;
    text-decoration: none;
    font-weight: 900;
    border-bottom: 3px solid #c2410c;
    transition: all 0.3s ease;
}

.cta-callout-box a:hover {
    color: #ea580c;
    border-color: #ea580c;
    transform: translateY(-2px);
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form label {
    font-size: 14px;
    display: grid;
    gap: 6px;
}

.contact-fieldset {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px 18px 8px;
    margin: 0;
}

.contact-fieldset legend {
    padding: 0 8px;
    font-size: 14px;
    text-transform: none;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.contact-form .option-pill {
    position: relative;
    display: inline-flex;
    font-size: 13px;
}

.contact-form .option-pill input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.contact-form .option-pill span {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(16, 26, 44, 0.65);
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.contact-form .option-pill input:checked+span {
    border-color: var(--border-glow);
    background: rgba(32, 56, 102, 0.6);
    color: var(--text-strong);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.contact-tip {
    font-size: 12px;
    color: var(--muted);
    margin: 12px 0 0;
}

.contact-schedule {
    border: 1px dashed rgba(68, 112, 191, 0.4);
    border-radius: 16px;
    padding: 18px;
    background: rgba(16, 26, 44, 0.55);
    transition: opacity 0.3s ease;
}

.contact-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.contact-grid label input,
.contact-grid label select,
.contact-grid label textarea,
.contact-schedule-grid label input {
    width: 100%;
}

.form-full {
    grid-column: 1 / -1;
}

.required {
    color: var(--accent);
    font-size: 11px;
    margin-left: 4px;
}

input,
select,
textarea {
    background: rgba(18, 26, 44, 0.9);
    border: 1px solid rgba(68, 112, 191, 0.2);
    color: var(--text);
    border-radius: 12px;
    padding: 10px 12px;
    font-family: inherit;
}

textarea {
    resize: vertical;
}

.site-footer {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 28px 0;
    font-size: 14px;
    color: var(--muted);
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--accent), #ffdba0);
    color: #2a1a06;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    box-shadow: 0 20px 32px rgba(0, 0, 0, 0.32);
    transform: translateY(-2px);
}

.back-to-top:active {
    transform: translateY(0);
}

@media (max-width: 960px) {
    .hero {
        min-height: auto;
        padding: 110px 0 140px;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .hero-content {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-copy {
        padding: 24px 0 10px;
        max-width: 100%;
    }

    .hero-boxes {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .hero-boxes .hero-box:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .hero-box {
        min-height: 90px;
        padding: 14px 12px;
    }

    .hero-box .box-label {
        font-size: 12px;
    }

    .hero-box .box-value {
        font-size: 28px;
    }

    .hero-cta-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cta-bar-title,
    .cta-bar-action {
        align-items: center;
        text-align: center;
    }

    .cta-badge {
        order: -1;
        margin: 0 auto;
    }

    .photo-strip-grid,
    .gallery,
    .style-grid,
    .plan-grid,
    .support-matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive visibility */
.sp-only {
    display: none;
}

.pc-only {
    display: block;
}

.sp_br {
    display: none;
}

@media (max-width: 640px) {
    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }

    .sp_br {
        display: inline;
    }

    .scroll-target {
        scroll-margin-top: 90px;
    }

    /* Container padding for mobile */
    .container {
        padding: 0 24px;
    }

    /* Section padding */
    .section {
        padding: 60px 0;
    }

    /* Typography */
    h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    h2 {
        font-size: 24px;
        line-height: 1.5;
    }

    h3 {
        font-size: 18px;
    }

    /* Hero section */
    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-label {
        font-size: 11px;
    }

    .hero-lead {
        font-size: 14px;
    }

    .hero-tagline {
        font-size: 13px;
    }


    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-data {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-stat-value {
        font-size: 32px;
    }

    .hero-cta-bar {
        position: relative;
        margin-top: 24px;
        gap: 16px;
        padding: 18px 20px;
    }

    .cta-badge {
        margin-top: 0;
    }

    /* Grids */
    .overview-grid,
    .market-grid,
    .event-grid,
    .brand-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .overview-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 6px 12px;
    }

    .overview-grid > article {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
    }

    .event-grid article p {
        max-width: 100%;
    }

    .event-grid article h3 {
        white-space: normal;
    }

    /* Photo strips */
    .photo-strip-grid,
    .gallery {
        grid-template-columns: 1fr;
    }

    /* Split sections */
    .split {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .split-media {
        height: 250px;
    }

    .split-content {
        padding: 32px 24px;
    }

    .split-content h2 {
        word-break: normal;
        overflow-wrap: anywhere;
    }

    /* Style and plan grids */
    .style-grid,
    .plan-grid {
        grid-template-columns: 1fr;
    }

    /* Support matrix */
    .support-matrix {
        grid-template-columns: 1fr;
    }

    /* Portal grid */
    .smart-portal-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Social grid */
    .social-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Financial grid */
    .financial-grid {
        grid-template-columns: 1fr;
    }

    /* Concept grid */
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Company section */
    .company {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Buttons */
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Header nav */
    .header-nav {
        justify-content: flex-start;
        width: 100%;
        order: 3;
    }

    .section-nav-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 2px;
    }

    .nav-chip {
        font-size: 12px;
        padding: 8px 2px;
    }

    .brand-reading {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .brand-reading rt {
        font-size: 10px;
    }

    /* CTA splash */
    .cta-splash {
        padding: 60px var(--page-gutter);
    }

    .cta-splash-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .cta-splash-actions .btn {
        width: 100%;
    }

    /* Mid CTA */
    .mid-cta,
    .mid-cta-section {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 40px 28px;
    }

    .mid-cta .btn,
    .mid-cta-section .btn {
        width: 100%;
        min-width: auto;
        padding: 16px 32px;
        font-size: 16px;
    }

    .mid-cta-section h3 {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 24px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 8px;
        text-align: center;
        box-sizing: border-box;
    }



    /* Cards */
    .style-card,
    .plan-card,
    .support-card,
    .concept-card {
        padding: 24px;
    }

    /* Process list */
    .process-list {
        padding-left: 24px;
    }

    /* FAQ */
    details summary {
        font-size: 16px;
        padding: 16px;
    }

    /* ハンバーガーメニュー表示 */
    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .header-nav,
    .header-cta {
        display: none;
    }

    /* Contact form */
    .contact-form label {
        font-size: 14px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-schedule-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-fieldset {
        padding: 16px 14px 8px;
    }

    .contact-options {
        flex-direction: column;
        gap: 8px;
    }

    .contact-form .option-pill {
        width: 100%;
    }

    .contact-form .option-pill span {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .contact-schedule {
        padding: 14px;
    }

    .cta-panel {
        padding: 32px 20px;
    }

    .cta-panel h3 {
        font-size: 20px;
    }

    input,
    select,
    textarea {
        padding: 12px 14px;
        font-size: 16px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }

    /* Financial Models */
    .financial-models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .financial-model-card.compact {
        padding: 24px 20px;
    }

    .model-title {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 10px 14px;
    }

    .metric {
        padding: 12px 14px;
    }

    .metric-label {
        font-size: 11px;
    }

    .metric-value {
        font-size: 18px;
    }

    .metric-value.profit {
        font-size: 22px;
    }

    .company-list {
        gap: 12px;
    }

    .company-list li {
        display: flex;
        flex-direction: column;
        gap: 4px;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .company-list span {
        width: auto;
        font-size: 12px;
    }

    .cta-checklist {
        padding: 20px 18px;
        margin-bottom: 36px;
    }

    .cta-checklist li {
        font-size: 14px;
        padding-left: 36px;
        line-height: 1.7;
    }

    .cta-checklist li::before {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .conclusion-text.highlight {
        width: 100%;
        padding: 20px 16px;
        margin: 24px auto 32px;
        font-size: 16px;
        letter-spacing: 0.03em;
    }

    .conclusion-footer .btn-cta {
        min-width: auto;
        width: 100%;
    }
}

.concept-numbers span:last-of-type {
    color: var(--muted);
    line-height: 1.6;
}

.nowrap {
    white-space: nowrap;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {

    /* Grids: Ensure 2 columns on tablet instead of squeezing 3 or stacking to 1 */
    .overview-grid,
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .financial-models-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        justify-content: center;
    }

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

    /* Split layout - force stack earlier if needed, or adjust padding */
    .split {
        padding: 0 40px;
    }

    .split-content {
        padding: 48px 40px;
    }

    /* Hero adjustments */
    .hero-boxes {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        font-size: clamp(32px, 5vw, 48px);
    }

    /* Hero CTA Bar - adjust for tablet */
    .hero-cta-bar {
        gap: 24px;
        padding: 14px 32px;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .cta-bar-title {
        flex: 0 0 auto;
    }

    .cta-bar-action {
        flex: 1 1 auto;
        justify-content: flex-end;
    }

    .cta-badge {
        margin-top: -25px;
    }

    /* Campaign banner adjustments for tablet */
    .hero-campaign-banner {
        max-width: 400px;
    }

    /* Mid-CTA section - adjust padding for tablets */
    .mid-cta-section {
        padding: 48px 32px;
    }

    .mid-cta-section .btn {
        min-width: 260px;
        padding: 16px 40px;
        font-size: 16px;
    }
}


@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }

    .split-media {
        height: 300px;
    }

    .hero-boxes {
        grid-template-columns: repeat(2, 1fr);
        /* 2 on top, 1 below */
    }

    .hero-boxes .hero-box:last-child {
        grid-column: span 2;
        width: 100%;
        /* Make last item full width or centered */
        max-width: 50%;
        margin: 0 auto;
    }

    .brand-grid,
    .overview-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .financial-models-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-boxes .hero-box:last-child {
        grid-column: auto;
        max-width: 100%;
        width: auto;
    }

    .hero-boxes {
        grid-template-columns: 1fr;
    }

    /* 768px用の追加調整 */
    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .overview-grid,
    .brand-grid {
        grid-template-columns: 1fr;
    }

    .split-content {
        padding: 40px 32px;
    }

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

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

/* 小型スマートフォン用 (480px以下) */
@media (max-width: 480px) {
    /* より小さなコンテナパディング */
    .container {
        padding: 0 16px;
    }

    /* セクションパディングをさらに縮小 */
    .section {
        padding: 48px 0;
    }

    /* 見出しをさらに小さく */
    h1 {
        font-size: 24px;
        line-height: 1.45;
    }

    h2 {
        font-size: 20px;
        line-height: 1.5;
    }

    h3 {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 26px;
    }

    /* ヒーローセクションの調整 */
    .hero {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 32px;
    }

    .hero-label {
        font-size: 10px;
        padding: 6px 14px;
    }

    .hero-lead {
        font-size: 13px;
    }

    .hero-box .box-value {
        font-size: 24px;
    }

    .hero-box .box-label {
        font-size: 11px;
    }

    .hero-box {
        min-height: 80px;
        padding: 12px 10px;
    }

    /* キャンペーンバナー */
    .hero-campaign-banner {
        max-width: 100%;
        padding: 4px;
    }

    .campaign-badge {
        font-size: 14px;
        padding: 5px 10px;
    }

    .content-price {
        font-size: 24px;
    }

    .content-label {
        font-size: 13px;
    }

    /* CTAバーの調整 */
    .hero-cta-bar {
        padding: 14px 16px;
        gap: 12px;
    }

    .cta-bar-main {
        font-size: 14px;
    }

    .cta-bar-eyebrow {
        font-size: 10px;
    }

    .cta-badge {
        width: 64px;
        height: 64px;
    }

    .cta-badge span {
        font-size: 9px;
    }

    .cta-badge strong {
        font-size: 18px;
    }

    .btn-cta {
        padding: 10px 24px;
        font-size: 13px;
    }

    /* モバイルナビゲーション */
    .mobile-nav-inner {
        padding: 70px 16px 32px;
        gap: 4px;
    }

    .mobile-nav-link {
        font-size: 15px;
        padding: 12px 24px;
    }

    .mobile-nav-cta {
        font-size: 14px;
        padding: 14px 28px;
    }

    /* カード系 */
    .style-card,
    .plan-card,
    .support-card,
    .concept-card {
        padding: 20px;
    }

    .card-content {
        padding: 20px;
    }

    .card-image {
        height: 180px;
    }

    .reason-title {
        font-size: 17px;
    }

    .reason-desc {
        font-size: 13px;
    }

    /* グリッドアイテム */
    .overview-grid article,
    .market-grid article,
    .event-grid article,
    .financial-card {
        padding: 24px 20px;
    }

    /* スプリットセクション */
    .split {
        padding: 0 16px;
    }

    .split-content {
        padding: 24px 16px;
    }

    .split-media {
        height: 200px;
    }

    /* 差別化カード */
    .differentiation-card .card-content {
        padding: 16px;
    }

    .differentiation-card .card-content h3 {
        font-size: 15px;
    }

    /* 結論セクション */
    .conclusion-cta {
        padding: 24px 16px;
    }

    .conclusion-item {
        padding: 12px;
        gap: 10px;
    }

    .conclusion-icon {
        width: 44px;
        height: 44px;
    }

    .icon-circle {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .conclusion-item h4 {
        font-size: 15px;
    }

    .conclusion-text.highlight {
        font-size: 14px;
        padding: 16px 12px;
    }

    /* Mid CTA */
    .mid-cta,
    .mid-cta-section {
        padding: 32px 20px;
    }

    .mid-cta-section h3 {
        font-size: 16px;
        padding: 0;
    }

    /* ボタン */
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    /* フォーム */
    .contact-fieldset {
        padding: 14px 12px 6px;
    }

    input,
    select,
    textarea {
        padding: 10px 12px;
        font-size: 16px;
    }

    .cta-panel {
        padding: 24px 16px;
    }

    .cta-panel h3 {
        font-size: 18px;
    }

    /* フィナンシャルモデル */
    .financial-model-card.compact {
        padding: 20px 16px;
    }

    .model-title {
        font-size: 14px;
        padding: 8px 12px;
    }

    .metric-value {
        font-size: 16px;
    }

    .metric-value.profit {
        font-size: 20px;
    }

    /* フッター */
    .back-to-top {
        width: 40px;
        height: 40px;
        right: 12px;
        bottom: 12px;
    }

    /* ブランドロゴ */
    .brand-logo {
        width: 120px;
    }

    .brand-eyebrow {
        font-size: 9px;
    }

    .brand-reading {
        font-size: 10px;
    }

    /* ハンバーガーメニュー */
    .hamburger {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        padding: 10px;
    }
}
