/* =========================================================
   U.P. – JAPAN INVESTMENT MEET 2026
   COMPLETE LANDING PAGE CSS
   ========================================================= */
/* =========================================================
   GLOBAL
   ========================================================= */
:root {
    --indigo-950: #0E1A3C;
    --indigo-850: #152352;
    --indigo-700: #243876;
    --vermillion: #BD3A26;
    --vermillion-dim: #8f2c1c;
    --gold: #C9A24B;
    --gold-soft: #E6D6A8;
    --ivory: #FAF6EC;
    --ivory-dim: #F1EBDC;
    --ink: #1A1A1A;
    --ink-soft: #5B5B5B;
    --line: rgba(14, 26, 60, 0.12);
    --radius: 2px;
    --display: 'Fraunces', serif;
    --body: 'Inter', sans-serif;
    --mono: 'IBM Plex Mono', monospace;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

    .wrap.wide {
        max-width: 1320px;
    }

h1,
h2,
h3 {
    font-family: var(--display);
    margin: 0;
    letter-spacing: .01em;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgb(46, 63, 112, 0.90);
    padding: 18px 0;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), backdrop-filter .35s ease;
}

    .header.solid {
        background: rgba(14, 26, 60, .94);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 12px 0;
        box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
    }

.header-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGOS
   ========================================================= */

.logos {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .35s var(--ease-out);
}

    .logos:hover {
        transform: translateY(-2px);
    }

    .logos img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    .logos span {
        width: 1px;
        height: 26px;
        background: rgba(255, 255, 255, .35);
    }


/* =========================================================
   NAVIGATION
   ========================================================= */

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

    nav a {
        position: relative;
        font-family: var(--mono);
        font-size: 11.5px;
        letter-spacing: .14em;
        color: var(--ivory);
        opacity: .85;
        padding-bottom: 5px;
        border-bottom: 1px solid transparent;
        transition: opacity .25s ease, color .25s ease, transform .25s ease;
    }

        nav a::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -1px;
            width: 0;
            height: 2px;
            background: var(--gold);
            transform: translateX(-50%);
            transition: width .35s var(--ease-out);
        }

        nav a:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

            nav a:hover::after,
            nav a.active::after {
                width: 100%;
            }


        /* CTA */

        nav a.cta {
            opacity: 1;
            border: 1px solid var(--gold);
            padding: 9px 18px;
            color: var(--gold-soft);
            overflow: hidden;
        }

            nav a.cta::after {
                display: none;
            }

            nav a.cta:hover {
                background: var(--gold);
                color: var(--indigo-950);
                transform: translateY(-2px);
            }


/* =========================================================
   MOBILE HAMBURGER
   ========================================================= */

.hamb {
    display: none;
    position: relative;
    z-index: 120;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px;
}

    .hamb i {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ivory);
        margin: 5px 0;
        transition: transform .3s var(--ease-out), opacity .25s ease;
    }

    .hamb.active i:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamb.active i:nth-child(2) {
        opacity: 0;
    }

    .hamb.active i:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    background: rgba(250, 246, 236, 0.98);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 150px 0 70px;
}

.hero-img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 
       Important:
       Background ke mountain / Japan graphics bottom me rahenge.
    */
    object-position: center bottom;
    z-index: 1;
    pointer-events: none;
}


/* Atmospheric glow */

.hero::before {
    content: '';
    position: absolute;
    width: 650px;
    height: 650px;
    left: -350px;
    top: -280px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(255, 190, 100, .12), transparent 70% );
    animation: atmosphericGlow 10s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    bottom: -280px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(80, 130, 255, .10), transparent 70% );
    animation: atmosphericGlow2 13s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes atmosphericGlow {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 70px) scale(1.15);
    }
}

@keyframes atmosphericGlow2 {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-90px, -70px) scale(1.18);
    }
}


/* =========================================================
   SUN
   ========================================================= */

.sun-disc {
    position: absolute;
    top: -22vw;
    right: -14vw;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: var(--vermillion);
    opacity: .9;
    animation: sunFloat 7s ease-in-out infinite alternate;
    transition: transform .25s ease-out;
}

    .sun-disc::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
    }

@keyframes sunFloat {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-12px, 14px) scale(1.025);
    }
}


/* =========================================================
   HERO RINGS
   ========================================================= */

.hero-rings {
    position: absolute;
    top: 8%;
    right: 6%;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(201, 162, 75, .35);
    border-radius: 50%;
    animation: ringRotate 35s linear infinite;
    transition: transform .4s ease-out;
}

    .hero-rings::before {
        content: '';
        position: absolute;
        inset: 34px;
        border: 1px solid rgba(201, 162, 75, .22);
        border-radius: 50%;
    }

    .hero-rings::after {
        content: '';
        position: absolute;
        inset: 80px;
        border: 1px dashed rgba(201, 162, 75, .18);
        border-radius: 50%;
    }

@keyframes ringRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   CLICKABLE VENUE LOCATION
========================================================= */

.itin-location {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--event-red);
    text-decoration: none;
    cursor: pointer;
    transition: color .25s ease, transform .25s var(--ease-out);
}

    .itin-location i {
        color: var(--gold);
        font-size: 12px;
        transition: transform .3s var(--ease-out), color .25s ease;
    }

    .itin-location:hover {
        color: var(--indigo-950);
        transform: translateY(-2px);
    }

        .itin-location:hover i {
            color: var(--vermillion);
            transform: scale(1.2) translateY(-2px);
        }


/* =========================================================
   LOCATION TOOLTIP
========================================================= */

.location-tooltip {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    background: var(--indigo-950);
    color: var(--ivory);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .05em;
    white-space: nowrap;
    padding: 8px 11px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity .25s ease, transform .25s var(--ease-out), visibility .25s ease;
    z-index: 20;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}


    /* Small tooltip arrow */

    .location-tooltip::after {
        content: '';
        position: absolute;
        left: 16px;
        top: 100%;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid var(--indigo-950);
    }


/* Show tooltip */

.itin-location:hover .location-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-inner {
    transform: translateY(-50px);
    position: relative;
    z-index: 5;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}


    /* Hero sequential entrance */

    .hero-inner > * {
        opacity: 0;
        animation: heroItemIn .9s var(--ease-out) forwards;
    }

    .hero-inner .eyebrow {
        animation-delay: .15s;
    }

    .hero-inner .japan-main-title {
        animation-delay: .30s;
    }

    .hero-inner .japan-sub-title {
        animation-delay: .48s;
    }

    .hero-inner .japan-highlight-title {
        animation-delay: .60s;
    }

    .hero-inner .itinerary {
        animation-delay: .78s;
    }

    .hero-inner .japan-register-btn {
        animation-delay: .95s;
    }

@keyframes heroItemIn {

    0% {
        opacity: 0;
        transform: translateY(35px);
        filter: blur(7px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


/* =========================================================
   EYEBROW
   ========================================================= */

.eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .22em;
    color: var(--event-red) !important;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

    .eyebrow::before {
        content: '';
        width: 34px;
        height: 1px;
        background: var(--gold);
        transform-origin: left;
        animation: eyebrowLine 1s var(--ease-out) .4s both;
    }

@keyframes eyebrowLine {

    from {
        width: 0;
    }

    to {
        width: 34px;
    }
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.japan-main-title {
    font-size: clamp(38px, 5.4vw, 68px);
    color: var(--event-red) !important;
    line-height: 1.05;
    font-weight: 600;
    max-width: 820px;
    letter-spacing: .02em;
    margin-bottom: 14px;
}

.japan-sub-title {
    font-family: var(--body);
    color: var(--event-red) !important;
    font-size: 16px;
    margin: 22px 0 4px;
    max-width: 480px;
    line-height: 1.6;
}

.japan-highlight-title {
    position: relative;
    font-size: clamp(20px, 2.4vw, 28px);
    color: var(--event-red) !important;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 46px;
}

    .japan-highlight-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 0;
        height: 2px;
        background: var(--gold);
        animation: highlightLine 1s var(--ease-out) 1.15s forwards;
    }

@keyframes highlightLine {

    to {
        width: 70%;
    }
}


/* =========================================================
   ITINERARY
   ========================================================= */

.itinerary {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 640px;
    margin-bottom: 48px;
    border-top: 1px solid rgba(250, 246, 236, .18);
    border-bottom: 1px solid rgba(250, 246, 236, .18);
    position: relative;
}

.itin-stop {
    padding: 22px 26px 22px 0;
    flex: 1;
    position: relative;
    transition: transform .35s var(--ease-out);
}

    .itin-stop:first-child {
        padding-left: 0;
    }

    .itin-stop:hover {
        transform: translateY(-5px);
    }

    .itin-stop .n {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .12em;
        color: var(--event-red) !important;
    }

    .itin-stop .d {
        font-family: var(--display);
        font-size: 26px;
        color: var(--event-red) !important;
        margin: 6px 0 4px;
    }

    .itin-stop .v {
        display: flex;
        align-items: center;
        gap: 7px;
    }

        .itin-stop .v i {
            color: var(--gold);
            font-size: 12px;
            transition: transform .3s var(--ease-out);
        }

    .itin-stop:hover .v i {
        transform: translateY(-2px) scale(1.15);
    }


/* Route */

.itin-track {
    width: 60px;
    height: 1px;
    background: repeating-linear-gradient( 90deg, var(--gold) 0 6px, transparent 6px 12px );
    position: relative;
    right: 92px;
    flex-shrink: 0;
    overflow: visible;
}

    .itin-track::after {
        content: '→';
        color: var(--gold);
        position: absolute;
        top: -9px;
        right: -4px;
        font-size: 14px;
        animation: arrowPulse 1.8s ease-in-out infinite;
    }

    .itin-track::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -20px;
        width: 20px;
        height: 3px;
        background: linear-gradient( 90deg, transparent, var(--gold), transparent );
        animation: routeLight 2.4s linear infinite;
    }

@keyframes routeLight {

    0% {
        transform: translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateX(80px);
        opacity: 0;
    }
}

@keyframes arrowPulse {

    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}


/* =========================================================
   REGISTER BUTTON
   ========================================================= */

.japan-register-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--indigo-950);
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .14em;
    padding: 16px 30px;
    border: 1px solid var(--gold);
    overflow: hidden;
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

    .japan-register-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -130%;
        width: 70%;
        height: 100%;
        background: linear-gradient( 100deg, transparent, rgba(255, 255, 255, .45), transparent );
        transform: skewX(-20deg);
        animation: buttonShine 3.5s ease-in-out infinite;
    }

    .japan-register-btn span {
        position: relative;
        z-index: 2;
        transition: transform .25s var(--ease-out);
    }

.japan-register-btn {
    z-index: 1;
}

    .japan-register-btn:hover {
        background: transparent;
        color: var(--gold-soft);
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
    }

        .japan-register-btn:hover span {
            transform: translateX(5px);
        }

@keyframes buttonShine {

    0%, 55% {
        left: -130%;
    }

    100% {
        left: 150%;
    }
}


/* =========================================================
   SCROLL INDICATOR
   ========================================================= */

.down {
    position: absolute;
    bottom: 34px;
    left: 32px;
    z-index: 2;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .18em;
    color: rgba(250, 246, 236, .55);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: scrollIndicator 2s ease-in-out infinite;
}

    .down::after {
        content: '';
        width: 1px;
        height: 34px;
        background: linear-gradient( rgba(201, 162, 75, .9), transparent );
    }

@keyframes scrollIndicator {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


/* =========================================================
   SEAL
   ========================================================= */

.seal {
    position: absolute;
    right: 70px;
    bottom: 60px;
    z-index: 2;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    color: var(--gold-soft);
    font-size: 12px;
    letter-spacing: .05em;
    text-align: center;
    transform: rotate(-8deg);
    animation: sealFloat 5s ease-in-out infinite;
}

    .seal::before {
        content: '';
        position: absolute;
        inset: 6px;
        border: 1px dashed rgba(201, 162, 75, .4);
        border-radius: 50%;
    }

@keyframes sealFloat {

    0%, 100% {
        transform: rotate(-8deg) translateY(0);
    }

    50% {
        transform: rotate(-5deg) translateY(-9px);
    }
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
    position: relative;
    padding: 125px 0 110px;
    background: radial-gradient( circle at 85% 20%, rgba(201, 162, 75, .10), transparent 28% ), var(--ivory);
    overflow: hidden;
}

    /* Decorative background line */

    .about::before {
        content: '';
        position: absolute;
        top: 0;
        right: 8%;
        width: 1px;
        height: 100%;
        background: linear-gradient( transparent, rgba(201, 162, 75, .25), transparent );
        pointer-events: none;
    }

/* =========================================================
HEADING
========================================================= */

.about-heading {
    position: relative;
    margin-bottom: 70px;
}

.about-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .20em;
    color: var(--vermillion);
    margin-bottom: 18px;
}

    .about-kicker span {
        width: 38px;
        height: 1px;
        background: var(--gold);
        display: block;
    }

.about-heading h2 {
    font-size: clamp(46px, 6vw, 78px);
    line-height: .95;
    color: var(--indigo-950);
    font-weight: 500;
    letter-spacing: -.02em;
}

    .about-heading h2 em {
        color: var(--vermillion);
        font-weight: 400;
    }

.about-date {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

    .about-date strong {
        color: var(--indigo-950);
        font-size: 11px;
    }

    .about-date i {
        color: var(--gold);
        font-style: normal;
        font-size: 18px;
    }

/* =========================================================
MAIN GRID
========================================================= */

.about-modern-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: center;
}

.title-small {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .2em;
    color: var(--vermillion);
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .title-small::before {
        content: '';
        width: 26px;
        height: 1px;
        background: var(--vermillion);
    }

.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: start;
}


/* Image */

.about-pic {
    position: relative;
    overflow: visible;
}

    .about-pic img {
        width: 100%;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        border: 1px solid var(--line);
        transition: transform .8s var(--ease-out), filter .6s ease;
    }

    .about-pic:hover img {
        transform: scale(1.025);
        filter: brightness(1.04) saturate(1.05);
    }

    .about-pic .frame {
        position: absolute;
        top: 22px;
        left: 22px;
        right: -22px;
        bottom: -22px;
        border: 1px solid var(--gold);
        z-index: 0;
        transition: transform .7s var(--ease-out);
    }

    .about-pic:hover .frame {
        transform: translate(8px, 8px);
    }


/* About text */

.about-text {
    position: relative;
    max-width: 760px;
}

.about-lead {
    font-family: var(--display);
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.35;
    color: var(--indigo-950);
    margin-bottom: 30px;
}

    .about-lead strong {
        color: var(--vermillion);
        font-weight: 500;
    }

.about-divider {
    width: 75px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 30px;
    position: relative;
}

    .about-divider::after {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        width: 35px;
        height: 1px;
        background: var(--vermillion);
    }

.about-text h2 {
    font-size: clamp(30px, 3.4vw, 42px);
    color: var(--indigo-950);
    margin-bottom: 8px;
}

.event-date {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--ink-soft);
    margin-bottom: 28px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--ink-soft);
    margin: 0 0 22px;
    max-width: 68ch;
}

    .about-text p strong {
        color: var(--indigo-950);
        font-weight: 600;
    }

    .about-text p:last-of-type {
        border-left: 2px solid var(--gold);
        padding-left: 18px;
        color: var(--ink);
        font-style: italic;
    }

/* =========================================================
   ROUND IMAGE — CENTERED
   ========================================================= */
.about-image-visual {
    position: relative;
    width: min(500px, 100%);
    aspect-ratio: 1 / 1;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    overflow: visible;
    transform: translateY(-8px);
    transition: transform .7s var(--ease-out), box-shadow .6s ease;
}


/* Main round image */

.about-event-image {
    position: relative;
    z-index: 3;
    width: 78%;
    height: 78%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 5px solid var(--ivory);
    outline: 1px solid var(--gold);
    box-shadow: 0 25px 55px rgba(14, 26, 60, .22), 0 0 0 10px rgba(201, 162, 75, .08);
    transition: transform .8s var(--ease-out), box-shadow .6s ease, filter .6s ease;
}


/* Large decorative circular frame */

.about-image-frame {
    position: absolute;
    width: 86%;
    height: 86%;
    top: 7%;
    left: 7%;
    border: 1px solid var(--gold);
    border-radius: 50%;
    z-index: 1;
    transition: transform .8s var(--ease-out), border-color .4s ease;
}


/* Second subtle ring */

.about-image-visual::before {
    content: '';
    position: absolute;
    width: 94%;
    height: 94%;
    top: 3%;
    left: 3%;
    border: 1px dashed rgba(201, 162, 75, .30);
    border-radius: 50%;
    z-index: 0;
    animation: aboutImageRing 18s linear infinite;
}


/* Soft glow behind image */

.about-image-visual::after {
    content: '';
    position: absolute;
    width: 72%;
    height: 72%;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(189, 58, 38, .16), transparent 68% );
    z-index: 0;
    filter: blur(10px);
}


/* =========================================================
   HOVER
   ========================================================= */

.about-image-visual:hover {
    transform: translateY(-15px);
}

    .about-image-visual:hover .about-event-image {
        transform: scale(1.035);
        box-shadow: 0 35px 75px rgba(14, 26, 60, .30), 0 0 0 12px rgba(201, 162, 75, .10);
        filter: saturate(1.08) contrast(1.03);
    }

    .about-image-visual:hover .about-image-frame {
        transform: scale(1.04);
        border-color: var(--vermillion);
    }


/* =========================================================
   ROTATING OUTER RING
   ========================================================= */

@keyframes aboutImageRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   BADGE
   ========================================================= */

.about-image-badge {
    position: absolute;
    right: 2%;
    bottom: 15%;
    z-index: 6;
    display: flex;
    flex-direction: column;
    padding: 13px 17px;
    background: var(--indigo-950);
    border-left: 3px solid var(--gold);
    box-shadow: 0 12px 30px rgba(14, 26, 60, .25);
    transition: transform .4s var(--ease-out), box-shadow .4s ease;
}

    .about-image-badge span {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: .18em;
        color: var(--gold-soft);
    }

    .about-image-badge small {
        margin-top: 5px;
        font-family: var(--mono);
        font-size: 7.5px;
        letter-spacing: .12em;
        color: rgba(250, 246, 236, .55);
    }

.about-image-visual:hover .about-image-badge {
    transform: translateX(-7px);
}


/* =========================================================
   DECORATIVE CORNERS
   ========================================================= */

.about-image-corner {
    position: absolute;
    width: 35px;
    height: 35px;
    z-index: 5;
    pointer-events: none;
}

    .about-image-corner.top-left {
        top: 4%;
        left: 5%;
        border-top: 2px solid var(--vermillion);
        border-left: 2px solid var(--vermillion);
    }

    .about-image-corner.bottom-right {
        right: 5%;
        bottom: 4%;
        border-right: 2px solid var(--gold);
        border-bottom: 2px solid var(--gold);
    }


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .about-image-visual {
        width: min(390px, 100%);
        margin: 30px auto 0;
    }

    .about-event-image {
        width: 78%;
        height: 78%;
    }

    .about-image-frame {
        width: 86%;
        height: 86%;
        top: 7%;
        left: 7%;
    }

    .about-image-badge {
        right: 0;
        bottom: 12%;
        padding: 10px 12px;
    }

    .about-image-corner {
        width: 25px;
        height: 25px;
    }
}

/* =========================================================
HIGHLIGHTS
========================================================= */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 85px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-highlight {
    position: relative;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid var(--line);
    transition: background .3s ease, transform .3s var(--ease-out);
}

.about-highlight {
    border-right: 0;
}

.about-highlight {
    background: rgba(201, 162, 75, .07);
    transform: translateY(-4px);
}

    .about-highlight strong {
        font-family: var(--display);
        font-size: 34px;
        font-weight: 500;
        color: var(--vermillion);
    }

    .about-highlight span {
        font-family: var(--mono);
        font-size: 9.5px;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--ink-soft);
    }

/* =========================================================
DESTINATIONS
========================================================= */

.about-destinations {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 45px;
}

.destination-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .18em;
    color: var(--vermillion);
    white-space: nowrap;
}

.destination-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--display);
    font-size: 17px;
    color: var(--indigo-950);
}

    .destination-list i {
        color: var(--gold);
        font-style: normal;
        font-family: var(--mono);
    }


/* =========================================================
   DELEGATES
   ========================================================= */

.delegates {
    padding: 100px 0 120px;
    background: var(--indigo-950);
    position: relative;
    overflow: hidden;
}

    .delegates::before {
        content: '';
        position: absolute;
        left: -10%;
        bottom: -30%;
        width: 44vw;
        height: 44vw;
        border-radius: 50%;
        border: 1px solid rgba(201, 162, 75, .14);
        animation: delegateRing 20s linear infinite;
    }

    .delegates::after {
        content: '';
        position: absolute;
        right: -15%;
        top: -25%;
        width: 35vw;
        height: 35vw;
        border-radius: 50%;
        border: 1px solid rgba(201, 162, 75, .08);
    }

@keyframes delegateRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* Section heading */

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

    .section-head h2 {
        color: var(--ivory);
        font-size: clamp(28px, 3vw, 38px);
    }

    .section-head > div {
        display: flex;
        gap: 10px;
    }


/* Carousel buttons */

.prev,
.next {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(250, 246, 236, .3);
    background: transparent;
    color: var(--ivory);
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s var(--ease-out), box-shadow .3s ease;
}

    .prev:hover,
    .next:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--indigo-950);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    }


/* Cards */

.cards {
    display: flex;
    gap: 148px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    position: relative;
    z-index: 1;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

    .cards::-webkit-scrollbar {
        display: none;
    }

    .cards article {
        scroll-snap-align: start;
        flex: 0 0 300px;
        background: var(--indigo-850);
        border: 1px solid rgba(201, 162, 75, .2);
        position: relative;
        overflow: hidden;
        transition: transform .5s var(--ease-out), box-shadow .5s ease, border-color .4s ease;
    }

        .cards article::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 2;
            pointer-events: none;
            background: linear-gradient( 135deg, rgba(255, 255, 255, .12), transparent 45% );
            opacity: 0;
            transition: opacity .4s ease;
        }

        .cards article:hover {
            transform: translateY(-12px);
            border-color: rgba(201, 162, 75, .55);
            box-shadow: 0 25px 55px rgba(0, 0, 0, .25);
        }

            .cards article:hover::before {
                opacity: 1;
            }

        .cards article img {
            width: 100%;
            aspect-ratio: 3 / 3.2;
            object-fit: cover;
            filter: grayscale(.15);
            transition: transform .7s var(--ease-out), filter .6s ease;
        }

        .cards article:hover img {
            transform: scale(1.06);
            filter: grayscale(0) saturate(1.08);
        }

        .cards article h3 {
            color: var(--ivory);
            font-size: 20px;
            padding: 22px 22px 4px;
            transition: transform .35s var(--ease-out);
        }

        .cards article:hover h3 {
            transform: translateX(4px);
        }

        .cards article p {
            color: var(--gold-soft);
            font-size: 12.5px;
            margin: 0;
            padding: 0 22px;
            letter-spacing: .02em;
        }

        .cards article span {
            display: block;
            color: rgba(250, 246, 236, .5);
            font-family: var(--mono);
            font-size: 10.5px;
            letter-spacing: .1em;
            padding: 10px 22px 22px;
        }


/* =========================================================
   AGENDA
   ========================================================= */

.agenda {
    padding: 120px 0;
    background: var(--ivory);
}

.agenda-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 44px;
}

    .agenda-top h2 {
        font-size: clamp(28px, 3vw, 38px);
        color: var(--indigo-950);
    }

    .agenda-top a {
        font-family: var(--mono);
        font-size: 11.5px;
        letter-spacing: .1em;
        color: var(--vermillion);
        border-bottom: 1px solid var(--vermillion);
        padding-bottom: 2px;
        transition: transform .3s var(--ease-out), opacity .25s ease;
    }

        .agenda-top a:hover {
            transform: translateX(5px);
            opacity: .75;
        }


/* Tabs */

.tabs {
    display: flex;
    gap: 2px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 6px;
    flex-wrap: wrap;
}

    .tabs button {
        position: relative;
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: .08em;
        background: none;
        border: 0;
        cursor: pointer;
        padding: 14px 22px;
        color: var(--ink-soft);
        border-bottom: 2px solid transparent;
        margin-bottom: -1px;
        transition: color .25s ease, transform .25s ease;
    }

        .tabs button::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--vermillion);
            transform: translateX(-50%);
            transition: width .35s var(--ease-out);
        }

        .tabs button:hover {
            color: var(--vermillion);
            transform: translateY(-2px);
        }

            .tabs button:hover::after,
            .tabs button.active::after {
                width: 80%;
            }

        .tabs button.active {
            color: var(--vermillion);
            border-color: var(--vermillion);
        }


/* Tab panel */

.tab-panel {
    display: none;
    padding-top: 26px;
}

    .tab-panel.active {
        display: block;
    }


/* Agenda rows */

.agenda-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 32px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateX(-25px);
    transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), padding-left .3s ease;
}

.tab-panel.active .agenda-row {
    opacity: 1;
    transform: translateX(0);
}

    .tab-panel.active .agenda-row:nth-child(1) {
        transition-delay: .05s;
    }

    .tab-panel.active .agenda-row:nth-child(2) {
        transition-delay: .12s;
    }

    .tab-panel.active .agenda-row:nth-child(3) {
        transition-delay: .19s;
    }

    .tab-panel.active .agenda-row:nth-child(4) {
        transition-delay: .26s;
    }

    .tab-panel.active .agenda-row:nth-child(5) {
        transition-delay: .33s;
    }

.agenda-row:hover {
    padding-left: 10px;
}

.agenda-row time {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--indigo-950);
    font-weight: 600;
}

.agenda-row small {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .14em;
    color: var(--vermillion);
}

.agenda-row h3 {
    font-size: 19px;
    color: var(--indigo-950);
    margin: 8px 0 6px;
}

.agenda-row p {
    font-size: 14.5px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.6;
    max-width: 60ch;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background: var(--indigo-950);
    padding: 80px 0 26px;
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        right: -200px;
        top: -200px;
        border: 1px solid rgba(255, 255, 255, .07);
        border-radius: 50%;
        animation: footerRing 18s linear infinite;
    }

@keyframes footerRing {

    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.08);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(250, 246, 236, .14);
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

    .footer-logo img {
        height: 100px;
        opacity: .9;
    }

footer h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .16em;
    color: var(--gold);
    margin-bottom: 16px;
}

footer p,
footer a {
    display: block;
    color: rgba(250, 246, 236, .65);
    font-size: 14px;
    margin-bottom: 8px;
    transition: color .2s ease, transform .2s ease;
}

    footer a:hover {
        color: var(--gold-soft);
        transform: translateX(4px);
    }

.copy {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(250, 246, 236, .4);
    padding-top: 22px;
    letter-spacing: .04em;
    position: relative;
    z-index: 1;
}


/* =========================================================
   BUTTON RIPPLE
   ========================================================= */

.button-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    transform: scale(0);
    animation: buttonRipple .6s ease-out;
    pointer-events: none;
    z-index: 5;
}

@keyframes buttonRipple {

    to {
        transform: scale(3);
        opacity: 0;
    }
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-pic {
        max-width: 360px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .seal {
        right: 24px;
        bottom: 24px;
        width: 76px;
        height: 76px;
        font-size: 10.5px;
    }

    .hero-rings {
        width: 260px;
        height: 260px;
        right: 2%;
    }

    .cards {
        gap: 70px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .wrap {
        padding: 0 20px;
    }

    .header {
        padding: 14px 0;
    }

        .header.solid {
            padding: 10px 0;
        }

    .header-wrap {
        padding: 0 20px;
    }

    .logos {
        gap: 9px;
    }

        .logos img {
            height: 32px;
        }

        .logos span {
            height: 21px;
        }


    /* Mobile navigation */

    nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: var(--indigo-950);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 26px;
        padding: 0 40px;
        transform: translateX(100%);
        transition: transform .4s var(--ease-out);
        box-shadow: -20px 0 50px rgba(0, 0, 0, .2);
    }

        nav.open {
            transform: translateX(0);
        }

        nav a {
            font-size: 13px;
            opacity: 1;
        }

            nav a.cta {
                margin-top: 10px;
            }

    .hamb {
        display: block;
    }


    /* Hero */

    .hero {
        min-height: 100svh;
        padding: 130px 0 70px;
    }

    .hero-inner {
        padding: 0 20px;
    }

    .hero-rings {
        width: 220px;
        height: 220px;
        top: 7%;
        right: -40px;
    }

    .sun-disc {
        top: -18vw;
        right: -35vw;
        width: 85vw;
        height: 85vw;
    }

    .eyebrow {
        font-size: 9.5px;
        letter-spacing: .15em;
        margin-bottom: 20px;
    }

    .japan-main-title {
        font-size: clamp(36px, 10vw, 54px);
    }

    .japan-sub-title {
        font-size: 14px;
        max-width: 360px;
    }

    .japan-highlight-title {
        font-size: 20px;
        margin-bottom: 32px;
    }


    /* Itinerary */

    .itinerary {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        margin-bottom: 34px;
    }

    .itin-track {
        display: none;
    }

    .itin-stop {
        padding: 16px 0 !important;
        width: 100%;
        border-bottom: 1px dashed rgba(250, 246, 236, .15);
    }

        .itin-stop:last-child {
            border-bottom: 0;
        }

        .itin-stop .d {
            font-size: 23px;
        }

        .itin-stop .v {
            font-size: 12.5px;
        }


    /* Register */

    .japan-register-btn {
        padding: 14px 22px;
    }


    /* Scroll indicator */

    .down {
        left: 20px;
        bottom: 22px;
    }


    /* Seal */

    .seal {
        display: none;
    }


    /* About */

    .about {
        padding: 80px 0;
    }

    .title-small {
        margin-bottom: 36px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-text p {
        font-size: 14.5px;
    }


    /* Delegates */

    .delegates {
        padding: 80px 0 90px;
    }

    .section-head {
        margin-bottom: 34px;
    }

    .cards {
        gap: 24px;
        padding-right: 20px;
    }

        .cards article {
            flex-basis: min(78vw, 300px);
        }


    /* Agenda */

    .agenda {
        padding: 80px 0;
    }

    .agenda-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

        .tabs::-webkit-scrollbar {
            display: none;
        }

        .tabs button {
            white-space: nowrap;
            padding: 13px 14px;
        }

    .agenda-row {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 22px 0;
    }

        .agenda-row:hover {
            padding-left: 0;
        }


    /* Footer */

    footer {
        padding: 65px 0 24px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   HERO — RIGHT PARTNERSHIP VISUAL
   Does NOT affect About section
========================================================= */

.hero-partnership-visual {
    position: absolute;
    z-index: 4;
    left: 71%;
    top: 50%;
    transform: translateY(-58%);
    width: min(380px, 32vw);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient( circle at center, rgba(189, 58, 38, .13), transparent 62% ), rgba(14, 26, 60, .96);
    box-shadow: 0 35px 80px rgba(14, 26, 60, .20), inset 0 0 70px rgba(201, 162, 75, .04);
    overflow: hidden;
    animation: heroVisualEntrance 1.1s var(--ease-out) .55s both, heroVisualFloat 7s ease-in-out 1.7s infinite;
}


/* =========================================================
   ORBITS
========================================================= */

.hero-partnership-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orbit-one {
    width: 72%;
    height: 72%;
    border: 1px solid rgba(201, 162, 75, .38);
    animation: heroOrbitRotate 18s linear infinite;
}

.hero-orbit-two {
    width: 54%;
    height: 54%;
    border: 1px dashed rgba(201, 162, 75, .22);
    animation: heroOrbitRotateReverse 14s linear infinite;
}

.hero-orbit-three {
    width: 88%;
    height: 88%;
    border: 1px solid rgba(250, 246, 236, .08);
    animation: heroOrbitRotate 26s linear infinite;
}


/* =========================================================
   PARTNERSHIP CONTENT
========================================================= */

.hero-partnership-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* Japan */

.hero-jp {
    font-family: serif;
    font-size: clamp(58px, 5vw, 76px);
    line-height: 1;
    color: var(--vermillion);
    text-shadow: 0 0 35px rgba(189, 58, 38, .25);
    animation: heroTextFloat 5s ease-in-out infinite;
}


/* Cross */

.hero-cross {
    font-family: var(--display);
    font-size: 30px;
    line-height: 1;
    color: var(--gold);
    margin: 5px 0;
}


/* UP */

.hero-up {
    font-family: var(--display);
    font-size: clamp(45px, 4vw, 60px);
    line-height: 1;
    color: var(--ivory);
    letter-spacing: .08em;
}


/* Line */

.hero-partnership-line {
    width: 78px;
    height: 1px;
    background: var(--gold);
    margin: 20px 0 13px;
    position: relative;
}

    .hero-partnership-line::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 25px;
        height: 1px;
        background: var(--vermillion);
        animation: heroLinePulse 2.5s ease-in-out infinite;
    }


/* Main label */

.hero-partnership-content > span {
    font-family: var(--mono);
    font-size: 8.5px;
    letter-spacing: .23em;
    color: var(--gold-soft);
}


/* Sub label */

.hero-partnership-content > small {
    font-family: var(--mono);
    font-size: 7.5px;
    letter-spacing: .14em;
    color: rgba(250, 246, 236, .45);
    margin-top: 8px;
}


/* =========================================================
   HERO VISUAL ANIMATIONS
========================================================= */

@keyframes heroVisualEntrance {

    0% {
        opacity: 0;
        transform: translateY(-48%) translateX(80px) scale(.82);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(-58%) translateX(0) scale(1);
        filter: blur(0);
    }
}


@keyframes heroVisualFloat {

    0%, 100% {
        transform: translateY(-58%) rotate(0deg);
    }

    50% {
        transform: translateY(-61%) rotate(1deg);
    }
}


@keyframes heroTextFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


@keyframes heroOrbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes heroOrbitRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


@keyframes heroLinePulse {

    0%, 100% {
        width: 25px;
        opacity: .7;
    }

    50% {
        width: 65px;
        opacity: 1;
    }
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.hero-partnership-visual {
    transition: box-shadow .5s ease, filter .5s ease;
}

    .hero-partnership-visual:hover {
        box-shadow: 0 45px 100px rgba(14, 26, 60, .30), 0 0 50px rgba(201, 162, 75, .08);
        filter: brightness(1.04);
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-partnership-visual {
        right: 3%;
        width: 330px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .hero-partnership-visual {
        position: relative;
        right: auto;
        top: auto;
        width: min(300px, 78vw);
        margin: 35px auto 0;
        transform: none;
        animation: heroMobileVisualEntrance 1s var(--ease-out) .8s both, heroMobileVisualFloat 7s ease-in-out 1.8s infinite;
    }

    @keyframes heroMobileVisualEntrance {

        0% {
            opacity: 0;
            transform: translateY(30px) scale(.85);
            filter: blur(8px);
        }

        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }
    }

    @keyframes heroMobileVisualFloat {

        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-7px);
        }
    }

    .hero-jp {
        font-size: 58px;
    }

    .hero-up {
        font-size: 46px;
    }

    .hero-partnership-content > span {
        font-size: 7.5px;
    }
}
/* =========================================================
   FINAL MOBILE RESPONSIVE FIX
   U.P. – JAPAN INVESTMENT MEET 2026
   ========================================================= */

@media (max-width: 760px) {

    /* -----------------------------------------
       GLOBAL MOBILE
       ----------------------------------------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 14px;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .wrap,
    .wrap.wide {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        margin-left: auto;
        margin-right: auto;
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .header {
        width: 100%;
        padding: 10px 0;
    }

    .header.solid {
        padding: 8px 0;
    }

    .header-wrap {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        min-height: 54px;
    }

    .logos {
        display: flex;
        align-items: center;
        gap: 7px;
        min-width: 0;
    }

    .logos img {
        height: 30px;
        width: auto;
        max-width: 125px;
        object-fit: contain;
    }

    .logos span {
        height: 20px;
    }

    .hamb {
        display: block;
        flex-shrink: 0;
        padding: 7px;
        margin-left: auto;
    }

    .hamb i {
        width: 24px;
        height: 2px;
    }


    /* -----------------------------------------
       MOBILE NAVIGATION
       ----------------------------------------- */

    nav {
        position: fixed;
        top: 0;
        right: 0;

        width: min(82vw, 320px);
        height: 100dvh;

        padding:
            calc(80px + env(safe-area-inset-top))
            28px
            30px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        gap: 22px;

        background: rgba(14, 26, 60, .98);

        transform: translateX(105%);
        transition: transform .4s var(--ease-out);

        overflow-y: auto;
        z-index: 110;

        box-shadow: -20px 0 50px rgba(0, 0, 0, .25);
    }

    nav.open {
        transform: translateX(0);
    }

    nav a {
        width: 100%;
        font-size: 12px;
        padding: 10px 0;
        letter-spacing: .12em;
    }

    nav a.cta {
        width: auto;
        margin-top: 8px;
        padding: 11px 18px;
    }


    /* -----------------------------------------
       HERO
       ----------------------------------------- */

    .hero {
        width: 100%;
        min-height: 100svh;
        min-height: 100dvh;

        padding:
            calc(90px + env(safe-area-inset-top))
            0
            55px;

        display: flex;
        align-items: flex-start;

        overflow: hidden;
    }

    .hero-inner {
        width: 100%;
        max-width: 100%;
        padding: 30px 18px 0;
        margin: 0;
        transform: none;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
    }

    /* Reduce decorative elements */
    .hero::before {
        width: 380px;
        height: 380px;
        left: -220px;
        top: -180px;
    }

    .hero::after {
        width: 320px;
        height: 320px;
        right: -180px;
        bottom: -180px;
    }

    .sun-disc {
        top: -20vw;
        right: -38vw;
        width: 90vw;
        height: 90vw;
    }

    .hero-rings {
        width: 190px;
        height: 190px;
        top: 5%;
        right: -70px;
        opacity: .65;
    }

    .hero-rings::before {
        inset: 25px;
    }

    .hero-rings::after {
        inset: 55px;
    }


    /* -----------------------------------------
       HERO TEXT
       ----------------------------------------- */

    .eyebrow {
        font-size: 8.5px;
        line-height: 1.5;
        letter-spacing: .12em;
        margin-bottom: 15px;
        gap: 8px;
    }

    .eyebrow::before {
        width: 24px;
    }

    .japan-main-title {
        width: 100%;
        max-width: 100%;
        font-size: clamp(32px, 10vw, 48px);
        line-height: 1.08;
        margin-bottom: 10px;
        overflow-wrap: break-word;
    }

    .japan-sub-title {
        width: 100%;
        max-width: 100%;
        font-size: 13px;
        line-height: 1.65;
        margin: 15px 0 5px;
    }

    .japan-highlight-title {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
        line-height: 1.35;
        margin-bottom: 25px;
    }

    .japan-highlight-title::after {
        width: 55%;
    }


    /* -----------------------------------------
       HERO ITINERARY
       ----------------------------------------- */

    .itinerary {
        width: 100%;
        max-width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        margin-bottom: 25px;

        border-top: 1px solid rgba(14, 26, 60, .15);
        border-bottom: 1px solid rgba(14, 26, 60, .15);
    }

    .itin-track {
        display: none;
    }

    .itin-stop {
        width: 100%;
        flex: none;

        padding: 13px 0 !important;

        border-bottom: 1px dashed rgba(14, 26, 60, .15);
    }

    .itin-stop:last-child {
        border-bottom: 0;
    }

    .itin-stop .n {
        font-size: 9px;
    }

    .itin-stop .d {
        font-size: 21px;
        line-height: 1.15;
        margin: 4px 0;
    }

    .itin-stop .v {
        display: flex;
        align-items: flex-start;
        gap: 6px;

        font-size: 11px;
        line-height: 1.5;
    }

    .itin-location {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .location-tooltip {
        display: none;
    }


    /* -----------------------------------------
       REGISTER BUTTON
       ----------------------------------------- */

    .japan-register-btn {
        width: auto;
        max-width: 100%;

        padding: 13px 18px;

        font-size: 10.5px;
        letter-spacing: .10em;

        white-space: nowrap;
    }


    /* -----------------------------------------
       HERO PARTNERSHIP VISUAL
       ----------------------------------------- */

    .hero-partnership-visual {
        position: relative;

        left: auto;
        right: auto;
        top: auto;

        width: min(260px, 72vw);
        height: auto;
        aspect-ratio: 1 / 1;

        margin: 28px auto 0;

        transform: none;

        z-index: 4;
    }

    .hero-jp {
        font-size: 48px;
    }

    .hero-up {
        font-size: 40px;
    }

    .hero-cross {
        font-size: 24px;
    }

    .hero-partnership-line {
        width: 60px;
        margin: 14px 0 10px;
    }

    .hero-partnership-content > span {
        font-size: 7px;
        letter-spacing: .18em;
    }

    .hero-partnership-content > small {
        font-size: 6.5px;
    }


    /* -----------------------------------------
       SCROLL INDICATOR
       ----------------------------------------- */

    .down {
        left: 18px;
        bottom: 16px;
        font-size: 8px;
    }

    .down::after {
        height: 25px;
    }

    .seal {
        display: none;
    }


    /* =========================================
       ABOUT SECTION
       ========================================= */

    .about {
        width: 100%;
        padding: 65px 0 70px;
        overflow: hidden;
    }

    .about::before {
        right: 4%;
    }

    .about-heading {
        margin-bottom: 40px;
    }

    .about-kicker {
        font-size: 8.5px;
        letter-spacing: .14em;
        margin-bottom: 14px;
        gap: 8px;
    }

    .about-kicker span {
        width: 25px;
    }

    .about-heading h2 {
        font-size: clamp(38px, 12vw, 54px);
        line-height: .98;
    }

    .about-date {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 20px;
        font-size: 8.5px;
    }

    .about-date strong {
        font-size: 9.5px;
    }


    /* -----------------------------------------
       IMPORTANT:
       FIX ABOUT MODERN GRID
       ----------------------------------------- */

    .about-modern-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
        align-items: start;
    }


    /* -----------------------------------------
       ABOUT GRID
       ----------------------------------------- */

    .about-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;
        align-items: start;
    }

    .title-small {
        font-size: 9.5px;
        letter-spacing: .15em;
        margin-bottom: 28px;
    }

    .title-small::before {
        width: 20px;
    }


    /* -----------------------------------------
       ABOUT TEXT
       ----------------------------------------- */

    .about-text {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .about-lead {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 22px;
    }

    .about-divider {
        width: 55px;
        margin-bottom: 22px;
    }

    .about-text h2 {
        font-size: 29px;
        line-height: 1.15;
        margin-bottom: 8px;
    }

    .event-date {
        font-size: 9.5px;
        margin-bottom: 20px;
    }

    .about-text p {
        width: 100%;
        max-width: 100%;

        font-size: 14px;
        line-height: 1.75;

        margin-bottom: 18px;
    }

    .about-text p:last-of-type {
        padding-left: 13px;
    }


    /* -----------------------------------------
       ABOUT IMAGE
       ----------------------------------------- */

    .about-pic {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .about-pic .frame {
        top: 14px;
        left: 14px;
        right: -14px;
        bottom: -14px;
    }


    /* -----------------------------------------
       ROUND ABOUT IMAGE
       ----------------------------------------- */

    .about-image-visual {
        width: min(330px, 88vw);
        max-width: 100%;
        margin: 25px auto 0;

        transform: none;
    }

    .about-event-image {
        width: 76%;
        height: 76%;
        border-width: 4px;
    }

    .about-image-frame {
        width: 84%;
        height: 84%;
        top: 8%;
        left: 8%;
    }

    .about-image-badge {
        right: -2px;
        bottom: 10%;
        padding: 8px 10px;
    }

    .about-image-badge span {
        font-size: 8px;
    }

    .about-image-badge small {
        font-size: 6.5px;
    }

    .about-image-corner {
        width: 22px;
        height: 22px;
    }


    /* -----------------------------------------
       HIGHLIGHTS
       ----------------------------------------- */

    .about-highlights {
        width: 100%;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        margin-top: 50px;

        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .about-highlight {
        min-width: 0;
        padding: 20px 14px;

        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);

        transform: none;
    }

    .about-highlight:nth-child(2n) {
        border-right: 0;
    }

    .about-highlight:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .about-highlight strong {
        font-size: 27px;
    }

    .about-highlight span {
        font-size: 8px;
        line-height: 1.4;
    }


    /* -----------------------------------------
       DESTINATIONS
       ----------------------------------------- */

    .about-destinations {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 12px;
        margin-top: 32px;
    }

    .destination-label {
        font-size: 8px;
    }

    .destination-list {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

        gap: 8px;

        font-size: 15px;
        line-height: 1.4;
    }


    /* =========================================
       DELEGATES
       ========================================= */

    .delegates {
        width: 100%;
        padding: 65px 0 75px;
        overflow: hidden;
    }

    .section-head {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
        margin-bottom: 28px;
    }

    .section-head h2 {
        font-size: 30px;
    }

    .section-head > div {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .prev,
    .next {
        width: 40px;
        height: 40px;
    }

    .cards {
        width: calc(100vw - 18px);

        display: flex;
        gap: 16px;

        overflow-x: auto;

        padding:
            0
            18px
            15px
            0;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .cards article {
        flex: 0 0 min(78vw, 285px);
        width: min(78vw, 285px);
    }

    .cards article h3 {
        font-size: 18px;
        padding: 18px 18px 4px;
    }

    .cards article p {
        font-size: 11.5px;
        padding: 0 18px;
    }

    .cards article span {
        font-size: 9px;
        padding: 8px 18px 18px;
    }


    /* =========================================
       AGENDA
       ========================================= */

    .agenda {
        width: 100%;
        padding: 65px 0 70px;
        overflow: hidden;
    }

    .agenda-top {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 15px;
        margin-bottom: 25px;
    }

    .agenda-top h2 {
        font-size: 30px;
    }

    .agenda-top a {
        font-size: 9px;
    }

    .tabs {
        width: 100%;

        display: flex;
        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;

        gap: 0;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tabs button {
        flex: 0 0 auto;

        font-size: 9px;
        letter-spacing: .06em;

        padding: 11px 13px;

        white-space: nowrap;
    }

    .tab-panel {
        padding-top: 18px;
    }

    .agenda-row {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;

        gap: 6px;

        padding: 20px 0;

        transform: translateX(-15px);
    }

    .agenda-row time {
        font-size: 12px;
    }

    .agenda-row small {
        font-size: 8.5px;
    }

    .agenda-row h3 {
        font-size: 17px;
        line-height: 1.3;
        margin: 5px 0;
    }

    .agenda-row p {
        font-size: 13px;
        line-height: 1.6;
    }

    .agenda-row:hover {
        padding-left: 0;
    }


    /* =========================================
       FOOTER
       ========================================= */

    footer {
        width: 100%;
        padding: 55px 0 22px;
        overflow: hidden;
    }

    .footer-grid {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;

        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-logo {
        gap: 10px;
        margin-bottom: 10px;
    }

    .footer-logo img {
        height: 70px;
        max-width: 180px;
    }

    footer h4 {
        font-size: 9px;
        margin-bottom: 12px;
    }

    footer p,
    footer a {
        font-size: 12.5px;
        line-height: 1.5;
    }

    .copy {
        font-size: 8.5px;
        line-height: 1.5;
        padding-top: 18px;
    }
}


/* =========================================================
   EXTRA SMALL PHONES
   360px / 375px
   ========================================================= */

@media (max-width: 390px) {

    .wrap,
    .wrap.wide {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-wrap {
        padding-left: 13px;
        padding-right: 13px;
    }

    .logos img {
        height: 27px;
    }

    .hero-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .japan-main-title {
        font-size: 31px;
    }

    .japan-sub-title {
        font-size: 12px;
    }

    .japan-highlight-title {
        font-size: 17px;
    }

    .japan-register-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-partnership-visual {
        width: min(240px, 70vw);
    }

    .about-heading h2 {
        font-size: 38px;
    }

    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .about-highlight {
        padding: 17px 10px;
    }

    .about-highlight strong {
        font-size: 24px;
    }

    .about-highlight span {
        font-size: 7px;
    }

    .cards article {
        flex-basis: 78vw;
    }
}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 340px) {

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-highlight {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .about-highlight:last-child {
        border-bottom: 0;
    }

    .hero-partnership-visual {
        width: 220px;
    }

    .japan-main-title {
        font-size: 29px;
    }
}