@charset "utf-8";

/* ===================================================================
   REDESIGN.CSS
   Top header + Full-screen Hero + Scroll Animations
   Loads AFTER main.css to override sidebar layout
   =================================================================== */

/* --- Variables --- */
:root {
    --color-primary: #0054A7;
    --color-dark: #1B2658;
    --color-accent: #00B4D8;
    --color-text: #1a1a2e;
    --color-text-light: #64748b;
    --color-bg: #F8FAFA;
    --color-white: #ffffff;
    --color-black: #000000;

    --header-height: 80px;
    --header-height-mobile: 64px;

    --font-display: 'Syne', sans-serif;
    --font-body: 'Noto Sans JP', 'Avenir Next', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}


/* ===================================================================
   1. LAYOUT OVERRIDE — Remove left sidebar, enable top header
   =================================================================== */
@media only screen and (min-width: 992px) {
    div#page {
        margin: 0 !important;
        min-width: 0 !important;
    }
    header#header {
        display: none !important;
    }
}

/* Hide old SP/PC toggle headers */
.pc > header#header,
.sp > header#header-sp {
    display: none !important;
}
.sp > .openbtn2 {
    display: none !important;
}

/* Add padding for fixed header on non-front pages */
div#page {
    margin: 0 !important;
    padding-top: var(--header-height);
}
body.home div#page {
    padding-top: 0;
}


/* ===================================================================
   2. TOP HEADER
   =================================================================== */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
    display: flex;
    align-items: center;
}

/* Transparent header (front page before scroll) */
#site-header.header-transparent {
    background-color: transparent;
}
#site-header.header-transparent .header-logo img {
    /* Same as sub pages — no invert filter */
}
#site-header.header-transparent .header-nav a {
    color: var(--color-white);
}
#site-header.header-transparent .header-cta {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}
#site-header.header-transparent .header-cta:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}
#site-header.header-transparent .header-hamburger span {
    background-color: var(--color-white);
}

/* Solid header (scrolled or non-front pages) */
#site-header.header-scrolled,
#site-header:not(.header-transparent) {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
/* When scrolled on front page, switch nav text to dark */
#site-header.header-transparent.header-scrolled .header-nav a {
    color: var(--color-text);
}
#site-header.header-transparent.header-scrolled .header-cta {
    color: var(--color-dark);
    border-color: var(--color-dark);
}
#site-header.header-transparent.header-scrolled .header-cta:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}
#site-header.header-transparent.header-scrolled .header-hamburger span {
    background-color: var(--color-black);
}

/* Header inner */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.header-logo img {
    height: 64px;
    width: auto;
    transition: filter 0.4s ease;
}

/* Desktop Nav */
.header-nav {
    display: none;
}
@media only screen and (min-width: 992px) {
    .header-nav {
        display: flex;
        align-items: center;
        gap: 0;
    }
}
.header-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
}
.header-nav li {
    margin: 0;
}
.header-nav li a {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
    white-space: nowrap;
}
.header-nav li a:hover {
    opacity: 0.6;
}
.header-nav li a span {
    display: none;
}

/* Header CTA Button */
.header-cta {
    display: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-dark);
    text-decoration: none;
    padding: 10px 24px;
    border: 1.5px solid var(--color-dark);
    border-radius: 100px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
@media only screen and (min-width: 992px) {
    .header-cta {
        display: inline-flex;
        align-items: center;
    }
}
.header-cta:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* Hamburger Button */
.header-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
    position: relative;
    z-index: 1001;
}
@media only screen and (min-width: 992px) {
    .header-hamburger {
        display: none;
    }
}
.header-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-black);
    transition: all 0.35s var(--ease-out-expo);
    transform-origin: center;
}
.header-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.header-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.header-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease-out-expo);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 120px 30px 60px;
}
#mobile-menu.is-open {
    transform: translateY(0);
}
#mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#mobile-menu li {
    margin-bottom: 4px;
}
#mobile-menu li a {
    display: block;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s ease;
}
#mobile-menu li a span {
    display: block;
    font-size: 10px;
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 2px;
}
#mobile-menu li a:hover {
    color: var(--color-primary);
}
.mobile-menu-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-menu-contact p {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 8px;
    font-family: var(--font-body);
}
.mobile-menu-contact .tel {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-display);
    letter-spacing: 1px;
}
body.menu-open {
    overflow: hidden;
}

@media only screen and (max-width: 991px) {
    #site-header {
        height: var(--header-height-mobile);
    }
    .header-inner {
        padding: 0 20px;
    }
    .header-logo img {
        height: 30px;
    }
    div#page {
        padding-top: var(--header-height-mobile);
    }
    body.home div#page {
        padding-top: 0;
    }
}


/* ===================================================================
   3. HERO — Full-screen First View
   =================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--color-dark);
}

/* Slider background */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}
.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}
/* Ken Burns: zoom in while slide is active */
.hero-slide.slick-active img {
    animation: kenburns 6s ease-out forwards;
}
@keyframes kenburns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

/* Dark gradient overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(27, 38, 88, 0.3) 0%,
        rgba(27, 38, 88, 0.2) 30%,
        rgba(27, 38, 88, 0.5) 70%,
        rgba(27, 38, 88, 0.75) 100%
    );
}

/* Subtle grain texture */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

/* Hero content */
.hero-content {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

/* Hero label */
.hero-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

/* Hero title */
.hero-title {
    margin-bottom: 24px;
}
.hero-title-line {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: var(--color-white);
    overflow: hidden;
}

/* Hero subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 500;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.06em;
    margin-bottom: 48px;
    max-width: 600px;
}

/* Hero CTA buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: var(--color-white);
    color: var(--color-dark);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    transition: all 0.35s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: var(--color-dark);
}
.hero-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background-color: transparent;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.35s var(--ease-out-expo);
}
.hero-cta .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    color: var(--color-white);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hero-scroll-indicator span {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    animation: scrollPulse 2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}
@keyframes scrollPulse {
    0% { top: -100%; }
    40% { top: 0; }
    100% { top: 100%; }
}

/* Hero responsive */
@media only screen and (max-width: 991px) {
    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }
    .hero-slide {
        min-height: 100vh;
        min-height: 100svh;
    }
    .hero-content {
        padding: 0 24px;
        justify-content: flex-end;
        padding-bottom: 140px;
    }
    .hero-label {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }
    .hero-title-line {
        font-size: clamp(28px, 8vw, 44px);
    }
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        text-align: center;
        justify-content: center;
        padding: 14px 28px;
        font-size: 13px;
    }
    .hero-scroll-indicator {
        bottom: 24px;
    }
}


/* ===================================================================
   4. HERO ANIMATIONS — Fast, precise reveals
   =================================================================== */

/* Clip-path reveal (wipe up) */
.anim-reveal {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
}
.anim-reveal.is-animated {
    animation: clipReveal 0.6s var(--ease-out-expo) forwards;
}
@keyframes clipReveal {
    0% {
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

/* Fade up (for CTAs and smaller elements) */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
}
.anim-fade-up.is-animated {
    animation: fadeUp 0.6s var(--ease-out-expo) forwards;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide old loading screen */
#loading-logo {
    display: none !important;
}

/* ---- Splash Screen ---- */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

/* Exit: wipe up */
#splash-screen.splash-exit {
    animation: splashExit 0.6s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
@keyframes splashExit {
    0% {
        clip-path: inset(0 0 0 0);
    }
    100% {
        clip-path: inset(0 0 100% 0);
    }
}

.splash-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo: scale up + fade in */
.splash-logo {
    opacity: 0;
    transform: scale(0.85);
    animation: splashLogoIn 0.7s var(--ease-out-expo) 0.1s forwards;
}
.splash-logo img {
    width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
}
@keyframes splashLogoIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Tagline: slide up + fade */
.splash-tagline {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(12px);
    animation: splashTagIn 0.5s var(--ease-out-expo) 0.4s forwards;
}
@keyframes splashTagIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress bar: sweeps left to right */
.splash-progress {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 32px;
    overflow: hidden;
    opacity: 0;
    animation: splashProgressFadeIn 0.3s ease 0.6s forwards;
}
@keyframes splashProgressFadeIn {
    to { opacity: 1; }
}
.splash-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 2px;
    animation: splashProgressSweep 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}
@keyframes splashProgressSweep {
    0% { width: 0%; }
    100% { width: 100%; }
}

@media only screen and (max-width: 991px) {
    .splash-logo img {
        width: 120px;
    }
    .splash-tagline {
        font-size: 9px;
        letter-spacing: 3px;
    }
    .splash-progress {
        width: 80px;
    }
}


/* ===================================================================
   5. SCROLL ANIMATIONS — Intersection Observer driven
   =================================================================== */
.scroll-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.55s ease, transform 0.55s var(--ease-out-expo);
}
.scroll-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.scroll-stagger > .scroll-anim:nth-child(1) { transition-delay: 0s; }
.scroll-stagger > .scroll-anim:nth-child(2) { transition-delay: 0.08s; }
.scroll-stagger > .scroll-anim:nth-child(3) { transition-delay: 0.16s; }
.scroll-stagger > .scroll-anim:nth-child(4) { transition-delay: 0.24s; }
.scroll-stagger > .scroll-anim:nth-child(5) { transition-delay: 0.32s; }
.scroll-stagger > .scroll-anim:nth-child(6) { transition-delay: 0.40s; }

/* Scale up variant */
.scroll-anim-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.55s ease, transform 0.55s var(--ease-out-expo);
}
.scroll-anim-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide from left */
.scroll-anim-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.55s ease, transform 0.55s var(--ease-out-expo);
}
.scroll-anim-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.scroll-anim-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.55s ease, transform 0.55s var(--ease-out-expo);
}
.scroll-anim-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* ===================================================================
   6. TYPOGRAPHY OVERRIDE
   =================================================================== */
h1, h2, h3, h4, h5, p, a, li {
    font-family: var(--font-body);
}

/* Section titles */
h2.top-sec-tittle02 {
    font-family: var(--font-body);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.06em;
    line-height: 1.3;
    margin-bottom: 6px;
}
h3.top-sec-sub-tittle02 {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    margin-bottom: 50px;
}
.bold-text {
    font-family: var(--font-body);
}


/* ===================================================================
   7. SECTION STYLES — Top content area
   =================================================================== */
.top-content-area {
    background-color: var(--color-white);
    padding-bottom: 0;
}

/* Mission */
#top-mission {
    padding: 100px 70px 80px;
    margin-top: 0;
    background-color: var(--color-white);
}
@media only screen and (max-width: 991px) {
    #top-mission {
        padding: 60px 20px 50px;
    }
}

/* Innovation Gate */
#top-innovation-gate {
    position: relative;
    overflow: hidden;
}
#top-innovation-gate::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 84, 167, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.ig-visual {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ig-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Background / Timeline */
#top-background {
    padding: 100px 70px 120px;
    background-color: var(--color-bg);
}
@media only screen and (max-width: 991px) {
    #top-background {
        padding: 60px 20px 80px;
    }
}

/* Strategy Section (replaces Vision & Mission) */
#top-strategy {
    padding: 100px 70px 80px;
    background-color: var(--color-white);
}
.strategy-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.strategy-heading {
    font-family: var(--font-body);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin-bottom: 8px;
}
.strategy-heading strong {
    color: var(--color-primary);
}
.strategy-subheading {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.strategy-lead {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Strategy Cards */
.strategy-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}
.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 84, 167, 0.1);
}
.strategy-card-num {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}
.strategy-num-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-text-light);
}
.strategy-num-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.strategy-card-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.strategy-card-divider {
    width: 32px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-bottom: 16px;
}
.strategy-card-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: 16px;
}
.strategy-card-text {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.9;
}
@media only screen and (max-width: 991px) {
    #top-strategy {
        padding: 60px 20px 50px;
    }
}

/* Pickup */
#top-pickup {
    margin-top: 0;
}
h2.pickup-tittle,
h2.pickup-tittle span {
    color: #fff !important;
    background-color: transparent !important;
}

/* Startup Report */
#top-startup-report {
    position: relative;
    overflow: hidden;
}
.report-cover {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: inline-block;
    transform: rotate(-2deg);
    transition: transform 0.5s var(--ease-out-expo);
}
.report-cover:hover {
    transform: rotate(0deg) scale(1.02);
}
.report-cover-inner {
    width: 280px;
    height: 396px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-dark) 60%, var(--color-black) 100%);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}
.report-cover-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 20px 20px;
}
/* Report cover image link */
.report-cover-link {
    display: inline-block;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}
.report-cover-link:hover {
    transform: translateY(-6px);
}
.report-cover-link img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

@media only screen and (max-width: 991px) {
    .report-cover {
        transform: rotate(0deg);
    }
    .report-cover-inner {
        width: 220px;
        height: 311px;
    }
    .report-cover-link img {
        max-width: 240px;
    }
}

/* External Links */
.link-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}
.link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.link-card-header {
    padding: 32px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.link-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}
.link-card-header img {
    width: 56px;
    height: 56px;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}
.link-card-header p {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 3px;
    margin: 0;
    font-weight: 700;
}
.link-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.link-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.link-card-body p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 24px;
    flex: 1;
}
.link-card-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    text-decoration: none;
    border: 1.5px solid var(--color-primary);
    border-radius: 100px;
    transition: all 0.3s ease;
}
.link-card-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* COMPASS News */
.compass-news-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.compass-news-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    position: relative;
}
.compass-news-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-primary);
}
.press-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
}
.press-item:last-child {
    border-bottom: none;
}
.press-item:hover {
    background-color: rgba(0, 0, 0, 0.01);
}
.press-item-img {
    width: 160px;
    min-width: 160px;
    height: 100px;
    background: var(--color-bg);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.press-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.press-item-date {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 4px;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}
.press-item-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.5;
    margin-bottom: 4px;
}
.press-item-excerpt {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* City news sidebar */
.city-news-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.city-news-item:last-child {
    border-bottom: none;
}
.city-news-item a {
    font-size: 14px;
    color: var(--color-dark);
    text-decoration: none;
    line-height: 1.5;
    display: block;
    transition: color 0.2s ease;
}
.city-news-item a:hover {
    color: var(--color-primary);
}
.city-news-date {
    font-size: 11px;
    color: var(--color-text-light);
    margin-bottom: 4px;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}
.news-more-link {
    display: inline-block;
    font-size: 13px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
    margin-top: 20px;
}
.news-more-link:hover {
    opacity: 0.6;
}

/* News02 tabs enhancement */
#top-news02 {
    padding: 100px 70px 120px;
    background-color: var(--color-white);
}
@media only screen and (max-width: 991px) {
    #top-news02 {
        padding: 60px 20px 80px;
    }
}
.news-tab-btn {
    transition: all 0.25s ease !important;
}

/* News meta row */
#top-news02 .news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

/* News category badge */
#top-news02 .news-cat-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    background-color: rgba(0, 84, 167, 0.08);
    padding: 4px 12px;
    border-radius: 100px;
    line-height: 1.4;
}

/* Hide old news-category (from main.css) */
#top-news02 span.news-category {
    display: none !important;
}

/* Section common padding */
.section-padding {
    padding: 100px 0 120px;
}
@media only screen and (max-width: 991px) {
    .section-padding {
        padding: 60px 0 80px;
    }
}


/* ===================================================================
   8. BUTTON OVERRIDES
   =================================================================== */
a.top-support-menu-btn {
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

/* Report buttons */
.report-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 100px;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}
.report-btn-primary:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}
.report-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 100px;
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}
.report-btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}


/* ===================================================================
   9. FOOTER ADJUSTMENT
   =================================================================== */
footer {
    position: relative;
    z-index: 1;
}
