:root {
    --bg-dark: #050a15;
    --bg-black: #080808;
    --accent-orange: #ff5722;
    --accent-navy: #1a237e;
    --accent-blue: #2196f3;
    --text-white: #ffffff;
    --text-muted: #888;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.8;
}

/* --- Layout --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Loader --- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.2em;
    font-family: var(--font-heading);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.3s;
    opacity: 0.6;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--accent-orange);
}

/* --- Hamburger Menu & Responsive Nav --- */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-btn span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        visibility: hidden;
    }

    .nav.active {
        transform: translateY(0);
        visibility: visible;
    }

    .nav-link {
        font-size: 1.5rem;
        opacity: 0.7;
    }

    /* Hamburger Animation to X */
    .menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Header & Logo */
    .logo-img {
        height: 22px !important;
        width: auto !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    /* Mobile Text & Titles */
    .large-title {
        font-size: 2.0rem !important;
        line-height: 1.4 !important;
        text-align: center;
        margin-bottom: 30px;
    }

    .section-label {
        text-align: center;
        display: block;
        margin-bottom: 20px;
    }

    /* Grid Layouts: Force vertical stacking */
    .split-axis-grid,
    .benefit-grid,
    .reason-grid,
    .pain-grid,
    .service-nav-grid,
    .ceo-grid,
    .voice-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .axis-card {
        height: auto !important;
        min-height: 400px;
        padding: 40px 20px;
    }

    .axis-bg,
    .benefit-img,
    .company-hero-visual img {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }

    .benefit-img {
        height: 200px !important;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
    }

    body {
        text-align: center;
    }
}

/* --- Sections --- */
.section {
    padding: 160px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--accent-orange);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.large-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 50px;
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 1;
    /* Default to 1 for safety */
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* --- News --- */
.news-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #fff;
    transition: background 0.3s;
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.news-date {
    width: 140px;
    color: var(--accent-orange);
    font-family: var(--font-heading);
}

.news-title {
    flex: 1;
    font-weight: 300;
}

/* --- CEO Section --- */
.ceo-section {
    background: #050505;
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.ceo-photo-container {
    height: 750px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.ceo-photo-container img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    filter: contrast(1.1);
    transform: translateY(-10%);
}

.ceo-message h2 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

.ceo-message p {
    margin-bottom: 30px;
    font-weight: 300;
    color: #ccc;
}

/* --- Service Cards --- */
.service-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 100px;
}

.nav-card {
    height: 600px;
    background: #0c0f17;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 40px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.nav-card:hover {
    transform: translateY(-20px);
    border-color: var(--accent-color);
}

.nav-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(25deg);
    transition: none;
}

.nav-card:hover::after {
    left: 140%;
    transition: left 0.7s ease-in-out;
}

.nav-card h3 {
    font-size: 2rem;
    color: #fff;
    margin-top: 15px;
}

.nav-card.orange {
    --accent-color: var(--accent-orange);
}

.nav-card.blue {
    --accent-color: var(--accent-blue);
}

.nav-card.white {
    --accent-color: #ffffff;
}

/* --- SportsLink Tabs --- */
.sl-tabs-nav {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    justify-content: center;
}

.sl-tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    transition: 0.3s;
}

.sl-tab-btn.active {
    border-color: var(--accent-blue);
    color: #fff;
    background: var(--accent-blue);
}

.sl-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.sl-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
.footer {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Contact Form --- */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #0c101a;
    padding: 80px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.form-group {
    margin-bottom: 40px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.form-input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    font-size: 1.1rem;
    transition: 0.3s;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--accent-orange);
}

.btn-submit {
    width: 100%;
    padding: 25px;
    background: var(--accent-orange);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    cursor: pointer;
    transition: 0.4s;
}

.btn-submit:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 87, 34, 0.4);
}

/* --- New Design Utils --- */
.strike-text {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 0.8em;
}

.accent-glow {
    color: var(--accent-orange);
    text-shadow: 0 0 15px rgba(255, 87, 34, 0.4);
    font-weight: 700;
}

.coming-soon {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(1);
    position: relative;
}

.coming-soon::after {
    content: 'COMING SOON';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    background: var(--accent-orange);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    border-radius: 4px;
    z-index: 10;
    opacity: 1;
}

.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    gap: 15px;
}

.cta-note {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 0.05em;
}

.btn-primary-glow {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--accent-orange), #ff7e54);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.2em;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3);
    transition: 0.4s;
}

.btn-primary-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    transition: 0.3s;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: block;
}

.benefit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

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

    .service-nav-grid {
        grid-template-columns: 1fr;
    }

    .ceo-photo-container {
        height: 500px;
    }
}