:root {
    --bg: #02070f;
    --panel: #071323;
    --panel-2: #0a1b2e;
    --blue: #006fec;
    --blue-2: #00a8ff;
    --cyan: #00eaff;
    --deep: #001836;
    --gold: #ffd23a;
    --gold-2: #ffae18;
    --white: #ffffff;
    --paper: #f6f8fb;
    --muted: #b9d2ef;
    --text: #f7fbff;
    --black: #02060d;
    --border: rgba(0, 186, 255, .56);
    --shadow: 0 25px 80px rgba(0, 111, 236, .28);
    --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --display: Impact, "Arial Black", "Yu Gothic", sans-serif;
    --ease: cubic-bezier(.19, 1, .22, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 50% 3%, rgba(0, 166, 255, .22), transparent 42rem),
        radial-gradient(circle at 100% 28%, rgba(0, 93, 198, .22), transparent 35rem),
        linear-gradient(180deg, #01050b 0%, #06101d 45%, #01050b 100%);
    color: var(--text);
    font-family: var(--font);
    letter-spacing: .04em;
    line-height: 1.8;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -3;
    opacity: .32;
    background-image:
        linear-gradient(115deg, transparent 0 43%, rgba(0, 186, 255, .16) 43.4%, transparent 45%),
        linear-gradient(104deg, transparent 0 52%, rgba(0, 111, 236, .2) 52.4%, transparent 54%),
        radial-gradient(circle at 55% 0%, rgba(0, 210, 255, .26), transparent 28rem);
    animation: bgDrift 14s linear infinite alternate;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: .15;
    background-image:
        radial-gradient(rgba(255,255,255,.24) 1px, transparent 1px),
        linear-gradient(100deg, transparent 0 45%, rgba(0, 157, 255, .18) 45.2%, transparent 46%);
    background-size: 34px 34px, 100% 100%;
    mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 86%, transparent 100%);
}

@keyframes bgDrift {
    from { transform: translate3d(-2%, 0, 0) scale(1); }
    to { transform: translate3d(2%, -1%, 0) scale(1.04); }
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.site-bg span {
    position: absolute;
    width: 80vw;
    height: 4px;
    left: -10vw;
    background: linear-gradient(90deg, transparent, rgba(0, 174, 255, .65), rgba(255,255,255,.6), transparent);
    filter: blur(1px);
    transform-origin: right center;
    animation: streakMove 8s linear infinite;
    opacity: .42;
}

.site-bg span:nth-child(1) { top: 18%; transform: rotate(-18deg); animation-delay: 0s; }
.site-bg span:nth-child(2) { top: 46%; transform: rotate(-12deg); animation-delay: -2.3s; width: 110vw; }
.site-bg span:nth-child(3) { top: 77%; transform: rotate(-9deg); animation-delay: -5s; width: 95vw; }

@keyframes streakMove {
    from { translate: -85vw 0; opacity: 0; }
    10%, 70% { opacity: .55; }
    to { translate: 160vw 0; opacity: 0; }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 92px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(18px, 3.5vw, 48px);
    background: linear-gradient(180deg, rgba(0, 3, 9, .9), rgba(0, 3, 9, .52), transparent);
    backdrop-filter: blur(8px);
    transition: background .4s ease, height .4s ease, box-shadow .4s ease;
}

.site-header.is-scrolled {
    height: 76px;
    background: rgba(0, 5, 14, .88);
    box-shadow: 0 12px 45px rgba(0, 0, 0, .38);
}

@media (min-width: 821px) {
    .site-header.is-scrolled ~ .global-nav {
        height: 76px;
    }
}

.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 102;
}

.brand img {
    width: clamp(150px, 16vw, 210px);
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 149, 255, .18));
}

.global-nav {
    position: fixed;
    top: 0;
    right: clamp(18px, 3.5vw, 48px);
    height: 92px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.8vw, 42px);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    transition: height .4s ease;
}

.global-nav a {
    position: relative;
    color: #fff;
    padding: 8px 0;
    text-shadow: 0 2px 14px rgba(0,0,0,.9);
}

.global-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    transform: translateX(-50%);
    transition: width .35s var(--ease);
    box-shadow: 0 0 18px rgba(0, 234, 255, .95);
}

.global-nav a:hover::after,
.global-nav a.is-active::after {
    width: 100%;
}

.global-nav .nav-member {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    border-radius: 8px;
    background: linear-gradient(135deg, #005dd6, #008eff);
    box-shadow: 0 0 0 1px rgba(255,255,255,.18) inset, 0 0 28px rgba(0, 126, 255, .44);
}

.nav-member-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.global-nav .nav-member::after {
    display: none;
}

.global-nav .nav-logout {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.global-nav .nav-logout svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.global-nav .nav-logout:hover {
    color: #fff;
    border-color: rgba(255,255,255,.5);
}

.global-nav .nav-logout::after {
    display: none;
}

.nav-toggle {
    display: none;
    z-index: 102;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    background: rgba(0, 13, 31, .7);
    padding: 9px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: transform .35s ease, opacity .35s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main {
    overflow: hidden;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.hero {
    position: relative;
    min-height: 760px;
    padding: 148px 24px 110px;
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 74%, rgba(0, 205, 255, .72), transparent 9rem),
        radial-gradient(circle at 55% 72%, rgba(0, 72, 180, .65), transparent 30rem),
        linear-gradient(180deg, #01040a 0%, #061629 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero::before {
    z-index: -3;
    background:
        linear-gradient(112deg, transparent 0 43%, rgba(0, 165, 255, .62) 44%, rgba(255,255,255,.38) 44.4%, transparent 46%),
        linear-gradient(105deg, transparent 0 48%, rgba(0, 113, 255, .42) 48.4%, transparent 52%),
        linear-gradient(19deg, transparent 0 55%, rgba(0, 215, 255, .25) 56%, transparent 61%),
        radial-gradient(circle at 50% 75%, rgba(255,255,255,.95), rgba(0,164,255,.55) 7%, transparent 14%),
        url('../images/photo-join.png');
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, cover;
    background-position: center;
    opacity: .95;
    transform: scale(1.04);
    animation: heroZoom 13s ease-in-out infinite alternate;
}

.hero::after {
    z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.2) 55%, rgba(0,0,0,.66));
}

@keyframes heroZoom {
    from { transform: scale(1.02) translate3d(-.4%, 0, 0); }
    to { transform: scale(1.08) translate3d(.8%, -1%, 0); }
}

.hero-beams {
    position: absolute;
    left: 50%;
    bottom: 20%;
    width: 140vw;
    height: 70vh;
    transform: translateX(-50%);
    z-index: -2;
    opacity: .85;
    background:
        conic-gradient(from 248deg at 50% 100%, transparent 0 9deg, rgba(0, 220, 255, .58) 10deg 13deg, transparent 14deg 22deg, rgba(0, 98, 236, .46) 23deg 27deg, transparent 28deg 52deg, rgba(255,255,255,.26) 53deg 54deg, transparent 55deg),
        radial-gradient(circle at 50% 100%, rgba(255,255,255,.95), transparent 10rem);
    filter: blur(.4px);
    animation: beamPulse 4.2s ease-in-out infinite alternate;
}

.page-hero {
    min-height: 0;
    padding: clamp(140px, 16vw, 200px) 24px clamp(40px, 5vw, 70px);
}

.page-hero .hero-title {
    font-size: clamp(56px, 9vw, 120px);
}

.page-hero .hero-subtitle {
    font-size: clamp(15px, 2.2vw, 26px);
    margin-top: 20px;
}

.page-hero::before {
    background:
        radial-gradient(circle at 50% 72%, rgba(255,255,255,.7), rgba(0,164,255,.4) 8%, transparent 16%),
        url('../images/photo-join.png') center/cover;
    animation: heroZoom 13s ease-in-out infinite alternate;
}

.page-hero .hero-beams {
    display: none;
}

.home-hero::before {
    background:
        radial-gradient(circle at 50% 72%, rgba(255,255,255,.82), rgba(0,164,255,.46) 8%, transparent 16%),
        url('../images/photo-city.webp') center/cover;
}

@keyframes beamPulse {
    from { opacity: .5; transform: translateX(-50%) scaleX(.97); }
    to { opacity: .92; transform: translateX(-50%) scaleX(1.04); }
}

.hero-inner {
    position: relative;
    text-align: center;
    width: min(1120px, 96vw);
}

.hero-kicker {
    margin: 0 0 12px;
    color: var(--cyan);
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(74px, 12vw, 168px);
    line-height: .82;
    letter-spacing: -.035em;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,.96);
    text-stroke: 2px rgba(255,255,255,.96);
    text-transform: uppercase;
    text-shadow: 0 0 32px rgba(0, 150, 255, .35), 0 18px 55px rgba(0, 0, 0, .6);
}

.hero-title .fill {
    color: #fff;
    -webkit-text-stroke: 0;
    text-stroke: 0;
}

.hero-title .blue-fill {
    color: rgba(0, 111, 236, .68);
    -webkit-text-stroke: 0;
    text-stroke: 0;
    text-shadow: 0 0 28px rgba(0, 146, 255, .55);
}

.hero-title .small-break {
    display: block;
    font-size: .72em;
    letter-spacing: -.04em;
}

.hero-ghost {
    position: absolute;
    right: -7vw;
    top: 120px;
    z-index: -1;
    font-family: var(--display);
    font-size: clamp(120px, 19vw, 310px);
    line-height: .8;
    color: rgba(0, 99, 210, .35);
    letter-spacing: -.06em;
    font-style: italic;
    text-transform: uppercase;
    filter: blur(.2px);
    transform: rotate(-2deg);
    white-space: nowrap;
    pointer-events: none;
    animation: ghostFloat 8s ease-in-out infinite alternate;
}

@keyframes ghostFloat {
    from { translate: 0 0; opacity: .28; }
    to { translate: -18px 10px; opacity: .43; }
}

.hero-subtitle {
    display: inline-block;
    margin: 34px 0 0;
    font-size: clamp(22px, 3vw, 42px);
    line-height: 1.55;
    font-weight: 900;
    letter-spacing: .22em;
    color: #fff;
    text-shadow: 0 0 24px rgba(0, 200, 255, .65), 0 4px 14px rgba(0,0,0,.8);
}

.hero-badge {
    margin-top: 28px;
}

.gold-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 12px 40px;
    color: #1a0e00;
    font-size: 17px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: .1em;
    background: linear-gradient(
        105deg,
        #fff4a0 0%,
        #ffd23a 10%,
        #ffb800 22%,
        #ffd23a 34%,
        #ffe566 46%,
        #ffd23a 56%,
        #ffbe18 68%,
        #ffd23a 78%,
        #ffec80 88%,
        #ffc520 100%
    );
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    box-shadow:
        0 0 0 1.5px rgba(255, 220, 80, .6) inset,
        0 2px 0 rgba(255,255,255,.55) inset,
        0 16px 48px rgba(255, 190, 28, .48),
        0 4px 12px rgba(180, 100, 0, .22);
    overflow: hidden;
}

.gold-badge::after,
.btn-gold::after {
    content: "";
    position: absolute;
    inset: -60% auto -60% -30%;
    width: 28%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
    animation: shine 3.8s ease-in-out infinite;
}

.badge-icon {
    display: inline-flex;
    align-items: center;
}

.badge-crown-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.badge-num {
    font-family: var(--display);
    font-size: 1.5em;
    line-height: 1;
    vertical-align: baseline;
}

@keyframes shine {
    0%, 54% { left: -36%; }
    78%, 100% { left: 118%; }
}

.scroll-cue {
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #dff8ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .32em;
    opacity: .88;
}

.scroll-cue i {
    width: 1px;
    height: 38px;
    margin-top: 8px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    position: relative;
}

.scroll-cue i::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateX(-50%) rotate(45deg);
    animation: arrowDown 1.25s ease-in-out infinite;
}

@keyframes arrowDown {
    50% { translate: 0 8px; opacity: .5; }
}

.sp-only { display: none; }

@media (max-width: 820px) {
    .sp-only { display: inline; }
}

.section {
    position: relative;
    padding: clamp(72px, 5vw, 132px) 0;
}

.section-news-list {
    padding-top: 30px;
}

.section-dark {
    background:
        radial-gradient(circle at 92% 10%, rgba(0, 112, 255, .2), transparent 23rem),
        linear-gradient(180deg, rgba(1,5,12,.92), rgba(3,13,26,.94));
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    font-size: clamp(30px, 4.5vw, 54px);
    line-height: 1.35;
    letter-spacing: .06em;
    font-weight: 900;
}

.section-title .blue {
    color: var(--blue-2);
}

.section-title .num-accent {
    font-size: 1.6em;
    color: #006fed;
    vertical-align: baseline;
    line-height: 1;
    font-family: var(--display);
}

.section-lead {
    margin: 18px 0 0;
    color: var(--muted);
    font-weight: 700;
    line-height: 2;
}

.center-heading {
    text-align: center;
    margin-bottom: 48px;
}

.center-heading::after {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

* + .btn {
    margin-top: 30px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    min-height: 56px;
    padding: 13px 26px;
    font-weight: 900;
    letter-spacing: .08em;
    border: 0;
    cursor: pointer;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s ease;
    overflow: hidden;
}

.btn span {
    position: absolute;
    right: 18px;
    top: calc(50% - 3px);
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
    transition: transform .35s var(--ease);
}

.btn:hover span {
    transform: translateY(-50%) translateX(4px);
}

.member-back-link:hover span {
    transform: translateY(-50%) translateX(-4px);
}

.btn {
    text-shadow: none;
}

.btn-gold:hover {
    background: linear-gradient(100deg, #ffd94a, #ffb800 52%, #ff9900);
}

.btn-dark:hover {
    background: linear-gradient(100deg, #0d1a2e, #071020);
}

.btn-gold {
    color: #02070f;
    background: linear-gradient(100deg, #ffe56e, #ffca27 52%, #ffad16);
    box-shadow: 0 14px 38px rgba(255, 188, 35, .26);
    border-radius: 999px;
}

.btn-dark {
    color: #fff;
    background: #05080d;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 14px 45px rgba(0,0,0,.3);
    border-radius: 999px;
}

.btn-blue {
    color: #fff;
    background: linear-gradient(90deg, #006fed, #0b3bdc);
    box-shadow: 0 14px 38px rgba(0, 111, 236, .35);
    border-radius: 999px;
}

.btn-blue:hover {
    background: linear-gradient(90deg, #1a80ff, #1e4fe8);
}

.page-hero + .diagonal-white,
.page-hero + .diagonal-white.compact {
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 91%, 48% 100%, 0 91%);
}

.page-hero + section {
    margin-top: 0;
}

.page-hero + .member-stats {
    margin-top: 40px;
}

.diagonal-white {
    position: relative;
    margin-top: -66px;
    padding: clamp(80px, 10vw, 150px) 0 clamp(72px, 9vw, 120px);
    color: #07101c;
    background:
        radial-gradient(circle at 5% 18%, rgba(0, 111, 236, .12), transparent 16rem),
        radial-gradient(rgba(0, 93, 198, .24) 1px, transparent 1px),
        linear-gradient(100deg, rgba(255,255,255,.98), rgba(244,248,252,.98));
    background-size: auto, 24px 24px, auto;
    clip-path: polygon(0 10%, 48% 0, 100% 10%, 100% 91%, 48% 100%, 0 91%);
    box-shadow: 0 -1px 0 var(--cyan) inset, 0 1px 0 var(--cyan) inset;
    z-index: 2;
}

.diagonal-white.compact {
    clip-path: polygon(0 6%, 50% 0, 100% 6%, 100% 93%, 50% 100%, 0 93%);
}

.about-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
}

.ghost-label {
    position: absolute;
    left: clamp(28px, 6vw, 90px);
    top: 78px;
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(56px, 9vw, 110px);
    line-height: 1;
    color: rgba(0, 111, 236, .08);
    letter-spacing: -.04em;
    text-transform: uppercase;
    pointer-events: none;
}

.text-block p {
    font-weight: 700;
}

.image-cut {
    position: relative;
    min-height: 420px;
    border: 2px solid rgba(0, 174, 255, .7);
    box-shadow: var(--shadow);
    clip-path: polygon(10% 0, 100% 8%, 94% 100%, 0 90%);
    overflow: hidden;
    transform: perspective(900px) rotateY(-4deg) rotateZ(-1deg);
}

.image-cut img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    filter: saturate(1.25) contrast(1.06);
    transform: scale(1.04);
}

.image-cut::after,
.photo-card::after,
.member-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.24) 46%, transparent 51%);
    transform: translateX(-120%);
    animation: photoSweep 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes photoSweep {
    0%, 62% { transform: translateX(-120%); }
    80%, 100% { transform: translateX(120%); }
}

.activity-strip {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: center;
}

.activity-scroll {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    column-gap: 12px;
    row-gap: 28px;
    transform: rotate(-1.5deg);
    transform-origin: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.activity-scroll .activity-card-mini {
    min-height: 220px;
    padding-top: 80px;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}

.activity-scroll::-webkit-scrollbar {
    display: none;
}

a.activity-card-mini,
a.activity-card {
    text-decoration: none;
    color: inherit;
}

.activity-card-mini,
.activity-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    min-height: 340px;
    padding: 132px 28px 28px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--border);
    background: #05101d;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    box-shadow: 0 16px 50px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.05);
    transition: transform .55s var(--ease), border-color .35s ease, box-shadow .35s ease;
}

.activity-card-mini:hover,
.activity-card:hover {
    transform: translateY(-10px) skewX(-1deg);
    border-color: rgba(0, 234, 255, .95);
    box-shadow: 0 28px 85px rgba(0, 126, 255, .34), inset 0 0 0 1px rgba(255,255,255,.08);
}

.activity-card-mini img,
.activity-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.18) contrast(1.1) brightness(.82);
    z-index: -2;
    transition: transform .8s var(--ease);
}

.activity-card-mini:hover img,
.activity-card:hover img {
    transform: scale(1.08);
}

.activity-card-mini::before,
.activity-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82)), radial-gradient(circle at 20% 15%, rgba(0,170,255,.44), transparent 16rem);
}

.card-num {
    display: block;
    position: absolute;
    left: 18px;
    top: 14px;
    font-family: var(--display);
    font-size: clamp(54px, 6vw, 88px);
    line-height: 1;
    color: rgba(255,255,255,.2);
    font-style: italic;
}

.activity-card-mini .card-num {
    color: rgba(255,255,255,.22);
    font-size: 62px;
}

.activity-card-mini h3,
.activity-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(18px, 2vw, 25px);
    line-height: 1.4;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 3px 12px #000;
    max-width: 88%;
}

.activity-card h3 span,
.activity-card-mini h3 span {
    display: inline-block;
    padding: 4px 9px;
    background: linear-gradient(90deg, #006fed, #0b3bdc);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.activity-card-mini p,
.activity-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #ecf8ff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.8;
    text-shadow: 0 2px 8px #000;
    max-width: 88%;
}

.home-news {
    position: relative;
    padding: clamp(20px, 3vw, 40px) 0 0;
}

.news-panel {
    position: relative;
    width: 100%;
    padding: clamp(48px, 7vw, 96px) clamp(24px, 4vw, 48px);
    background: linear-gradient(180deg, rgba(0, 109, 235, .95), rgba(0, 78, 180, .88));
    border: 1px solid rgba(0, 234, 255, .52);
    box-shadow: 0 28px 90px rgba(0, 80, 190, .45);
    overflow: hidden;
}

.news-panel-inner {
    display: grid;
    grid-template-columns: minmax(240px, .78fr) minmax(0, 1.3fr);
    grid-template-rows: auto auto;
    gap: 38px;
    width: min(1180px, 100%);
    margin-inline: auto;
}

.news-panel-btn {
    grid-column: 1 / -1;
    grid-row: 3;
    align-self: start;
    display: block;
    margin: 0 auto;
    text-align: center;
}


.news-list {
    position: relative;
    z-index: 1;
}

.news-row {
    display: grid;
    grid-template-columns: 120px 104px 1fr 36px;
    gap: 16px;
    align-items: center;
    min-height: 64px;
    border-bottom: 1px solid rgba(255,255,255,.2);
    font-weight: 900;
    color: #fff;
    transition: background .7s ease;
}

.news-row:hover {
    background: rgba(255,255,255,.06);
}

.news-row time {
    color: #e7f7ff;
    font-size: 13px;
}

.news-cat {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 2px 10px;
    color: #006fed;
    font-size: 11px;
    font-weight: 900;
    background: transparent;
    border: 1.5px solid #006fed;
    white-space: nowrap;
    box-sizing: content-box;
}

.cat-event,
.cat-report,
.cat-member,
.cat-seminar,
.cat-network,
.cat-social,
.cat-news {
    color: #006fed;
    background: transparent;
    border-color: #006fed;
}

.news-row .arrow {
    justify-self: end;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    background: transparent;
}

.cta-band {
    position: relative;
    width: 100%;
    margin-top: 0;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(110deg, rgba(2,8,18,.98), rgba(0,38,84,.9));
    border: 1px solid rgba(0, 234, 255, .6);
    box-shadow: 0 28px 90px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.04);
    overflow: hidden;
}

.cta-band.blue {
    background: linear-gradient(110deg, rgba(0,109,235,.96), rgba(0,52,130,.92));
}

.cta-photo {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.68)),
        url('../images/photo-join.png') center/cover;
}

.cta-box {
    position: relative;
    z-index: 1;
    padding: clamp(48px, 7vw, 96px) clamp(24px, 4vw, 48px);
    width: min(680px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.cta-box h2 {
    margin: 0;
    font-size: clamp(24px, 3.2vw, 40px);
    line-height: 1.45;
    font-weight: 900;
}

.cta-box p:not(.section-kicker) {
    margin: 12px 0 26px;
    color: #e2f4ff;
    font-weight: 800;
}

.page-section {
    padding: clamp(80px, 9vw, 130px) 0;
}

.value-grid,
.step-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.value-card {
    position: relative;
    padding: 40px 36px 36px;
    background: linear-gradient(160deg, #ffffff, #eef6ff);
    border: 1px solid rgba(0, 111, 236, .14);
    border-radius: 16px;
    box-shadow: 0 20px 56px rgba(0, 80, 180, .1), inset 0 1px 0 rgba(255,255,255,.9);
    overflow: hidden;
    color: #12324c;
}

.value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 10% 0%, rgba(0, 111, 236, .06), transparent 60%);
    pointer-events: none;
}

.value-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #006fed, #00eaff);
}

.step-card,
.feature-card,
.dark-card {
    position: relative;
    padding: 34px;
    min-height: 230px;
    background: linear-gradient(150deg, rgba(5,16,30,.94), rgba(2,7,14,.94));
    border: 1px solid rgba(0, 171, 255, .58);
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
    box-shadow: 0 20px 70px rgba(0,0,0,.44), inset 0 0 0 1px rgba(255,255,255,.04);
    overflow: hidden;
}

.dark-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 4%, rgba(0, 165, 255, .3), transparent 18rem);
    z-index: -1;
}

.value-card .num {
    font-family: var(--display);
    font-size: 64px;
    color: rgba(0, 111, 236, .1);
    font-style: italic;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
    pointer-events: none;
}

.step-card .num {
    font-family: var(--display);
    font-size: 34px;
    color: var(--blue-2);
    font-style: italic;
    font-weight: 900;
}

.value-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 0 20px;
    border-radius: 10px;
    overflow: hidden;
}

.value-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card h3 {
    margin: 20px 0 12px;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.2;
    font-weight: 900;
    color: #0a2540;
}

.step-card h3,
.feature-card h3,
.dark-card h3 {
    margin: 8px 0 14px;
    font-size: clamp(22px, 2.5vw, 31px);
    line-height: 1.35;
    font-weight: 900;
}

.value-card p {
    margin: 0;
    color: #48637d;
    font-weight: 700;
    line-height: 1.7;
    font-size: 14px;
}

.step-card p,
.feature-card p,
.dark-card p {
    margin: 0;
    color: #d9ecf8;
    font-weight: 800;
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 0 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 111, 236, .12), rgba(0, 168, 255, .08));
    border: 1px solid rgba(0, 111, 236, .18);
    color: #006fed;
    box-shadow: 0 4px 16px rgba(0, 111, 236, .1);
}

.feature-icon {
    display: block;
    margin: 8px 0 24px;
    font-size: 52px;
    line-height: 1;
    color: var(--cyan);
    filter: none;
}

.icon-line {
    display: inline-grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 2px solid rgba(0, 234, 255, .8);
    border-radius: 50%;
    color: var(--cyan);
    font-size: 34px;
    margin-bottom: 16px;
    box-shadow: 0 0 28px rgba(0, 234, 255, .22), inset 0 0 20px rgba(0, 234, 255, .1);
}

.icon-line__svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.9;
}

.step-section {
    position: relative;
    margin-top: -70px;
    padding-top: 75px;
}

.join-contact-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 4vw, 36px);
    max-width: 960px;
    margin: 0 auto;
    padding: clamp(26px, 4vw, 44px);
    color: #07101c;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(231, 247, 255, .92));
    border: 1px solid rgba(0, 117, 255, .24);
    border-radius: 16px;
    box-shadow: 0 26px 78px rgba(0,0,0,.12), 0 0 0 1px rgba(255,255,255,.6) inset;
    overflow: hidden;
}

.join-contact-panel::before {
    content: none;
}

.join-contact-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(112deg, transparent 0 58%, rgba(0, 168, 255, .22) 58.4%, transparent 63%),
        linear-gradient(90deg, var(--gold), var(--cyan));
    clip-path: polygon(0 0, 14px 0, 14px 100%, 0 100%);
    pointer-events: none;
}

.join-contact-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.join-contact-label {
    display: inline-flex;
    align-self: center;
    margin-bottom: 16px;
    padding: 7px 14px;
    color: #07101c;
    background: linear-gradient(100deg, #ffe56e, #ffca27);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(255, 190, 30, .26);
}

.join-contact-copy h3 {
    margin: 0 0 14px;
    color: #06101c;
    font-size: clamp(25px, 3.2vw, 42px);
    line-height: 1.35;
    font-weight: 900;
}

.join-contact-copy p {
    margin: 0;
    color: #26394f;
    font-weight: 800;
    line-height: 2;
}

.join-contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.join-contact-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    color: #06101c;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(0, 117, 255, .22);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.join-contact-badges span::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(0, 234, 255, .85);
}

.join-phone-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(24px, 3vw, 34px);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(0, 111, 236, .22), transparent 58%),
        linear-gradient(180deg, #071323, #04101f);
    border: 1px solid rgba(0, 234, 255, .62);
    border-radius: 16px;
    box-shadow: 0 24px 62px rgba(0, 37, 89, .28), inset 0 0 0 1px rgba(255,255,255,.06);
    overflow: hidden;
}

.join-phone-card::before {
    content: "";
    position: absolute;
    inset: -40% -35% auto auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0,234,255,.35), transparent 64%);
}

.join-phone-mark {
    position: absolute;
    right: 18px;
    top: 14px;
    color: rgba(255,255,255,.09);
    font-family: var(--display);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    font-style: italic;
}

.join-phone-card span {
    color: var(--gold);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .16em;
}

.join-phone-number {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 10px 0 14px;
    padding: 6px 0;
    color: #fff;
    font-family: var(--display);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: .03em;
    border-bottom: 4px solid var(--gold);
    text-shadow: 0 4px 18px rgba(0,0,0,.5);
    filter: drop-shadow(0 0 18px rgba(0, 234, 255, .2));
}

.join-phone-card p {
    margin: 0;
    color: #dcecff;
    font-weight: 800;
}

.step-card {
    color: #06101c;
    background: rgba(255,255,255,.94);
    border-color: rgba(0, 111, 236, .55);
    text-align: center;
    min-height: 220px;
}

.step-card p {
    color: #293748;
}

.step-card::after {
    content: "";
    position: absolute;
    right: -29px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 24px solid var(--blue);
    transform: translateY(-50%);
    z-index: 2;
}

.step-card:last-child::after { display: none; }

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.join-target-band {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    margin-bottom: 40px;
    background: linear-gradient(160deg, #ffffff, #eef6ff);
    border: 1px solid rgba(0, 111, 236, .14);
    border-radius: 16px;
    box-shadow: 0 20px 56px rgba(0, 80, 180, .1), inset 0 1px 0 rgba(255,255,255,.9);
    position: relative;
    overflow: hidden;
}

.join-target-band::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #006fed, #00eaff);
}

.join-target-label {
    flex-shrink: 0;
    padding: 6px 18px;
    background: linear-gradient(90deg, #006fed, #0b3bdc);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .1em;
    border-radius: 6px;
}

.join-target-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.join-target-list li {
    position: relative;
    padding-left: 16px;
    color: #1a2e42;
    font-size: 14px;
    font-weight: 800;
}

.join-target-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #006fed;
}

.join-merit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.join-merit-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 28px;
    background: linear-gradient(160deg, #ffffff, #eef6ff);
    border: 1px solid rgba(0, 111, 236, .14);
    border-radius: 16px;
    box-shadow: 0 20px 56px rgba(0, 80, 180, .1), inset 0 1px 0 rgba(255,255,255,.9);
    position: relative;
    overflow: hidden;
}

.join-merit-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #006fed, #00eaff);
}

.join-merit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 111, 236, .12), rgba(0, 168, 255, .08));
    border: 1px solid rgba(0, 111, 236, .18);
    font-size: 32px;
    line-height: 1;
}

.join-merit-icon .join-merit-svg {
    width: 32px;
    height: 32px;
    color: #006fec;
}

.join-merit-card strong {
    display: block;
    color: #0a2540;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 900;
    line-height: 1.3;
}

.join-merit-card p {
    margin: 0;
    color: #48637d;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
}

.check-list,
.merit-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.merit-list li {
    position: relative;
    padding-left: 34px;
    margin: 14px 0;
    color: #f4fbff;
    font-weight: 800;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 900;
}

.merit-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding-left: 0;
}

.merit-list i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #07101c;
    background: var(--gold);
    font-style: normal;
    font-size: 26px;
    font-weight: 900;
}

.merit-icon__svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.merit-list strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 18px;
}

.form-panel {
    position: relative;
    background: linear-gradient(145deg, rgba(3, 12, 25, .95), rgba(4, 22, 41, .95));
    border: 1px solid rgba(0, 174, 255, .5);
    padding: clamp(30px, 5vw, 58px);
    border-radius: 16px;
    box-shadow: 0 28px 90px rgba(0,0,0,.5);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
}

.form-grid .full { grid-column: 1 / -1; }

.form-field label {
    display: block;
    margin: 0 0 8px;
    color: #fff;
    font-weight: 900;
}

.form-field .check-option {
    display: inline-flex;
    margin: 0;
}

.required {
    display: inline-block;
    margin-left: 8px;
    padding: 1px 7px;
    color: #06101c;
    background: var(--gold);
    font-size: 11px;
    font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea,
.search-card input,
.search-card select,
.login-card input,
.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    min-height: 52px;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.22);
    padding: 12px 16px;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.form-field textarea,
.admin-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.search-card input:focus,
.search-card select:focus,
.login-card input:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 234, 255, .12);
    background: rgba(255,255,255,.11);
}

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.checkbox-row label,
.check-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 800;
}

.checkbox-row input,
.check-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--blue-2);
}

.form-note {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.alert {
    margin: 0 0 28px;
    padding: 15px 20px;
    border: 1px solid rgba(0, 234, 255, .45);
    background: rgba(0, 117, 255, .16);
    color: #fff;
    font-weight: 800;
}

.alert.error {
    border-color: rgba(255, 85, 85, .65);
    background: rgba(255, 30, 30, .13);
}

.activities-hero::before {
    background:
        linear-gradient(112deg, transparent 0 43%, rgba(0, 165, 255, .62) 44%, rgba(255,255,255,.35) 44.4%, transparent 46%),
        radial-gradient(circle at 50% 75%, rgba(255,255,255,.9), rgba(0,164,255,.55) 8%, transparent 15%),
        url('../images/photo-city.webp') center/cover;
}

.activity-grid-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.activity-card {
    min-height: 430px;
    gap: 18px;
    padding: 150px 40px 34px;
    clip-path: polygon(7% 0, 100% 0, 94% 100%, 0 100%);
}

.activity-card .more {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    color: #fff;
    font-weight: 900;
    border-bottom: 1px solid var(--cyan);
}

.activity-detail-visual {
    position: relative;
    margin-top: -46px;
    padding: 0 0 clamp(34px, 5vw, 68px);
    z-index: 2;
}

.activity-detail-photo {
    position: relative;
    width: 100%;
    min-height: clamp(300px, 42vw, 560px);
    margin: 0 auto;
    overflow: hidden;
    border-top: 1px solid rgba(0, 234, 255, .72);
    border-bottom: 1px solid rgba(0, 234, 255, .72);
    clip-path: none;
    box-shadow: 0 24px 70px rgba(0,0,0,.36), 0 0 46px rgba(0, 126, 255, .22);
    background: #06101c;
}

.activity-detail-photo img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    filter: saturate(1.18) contrast(1.08) brightness(.78);
}

.activity-detail-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 20%, rgba(0,0,0,.72) 100%),
        linear-gradient(112deg, transparent 0 50%, rgba(0, 166, 255, .38) 50.4%, transparent 55%);
    pointer-events: none;
}

.activity-detail-title {
    position: absolute;
    left: clamp(24px, 5vw, 58px);
    right: clamp(24px, 5vw, 58px);
    bottom: clamp(24px, 4vw, 46px);
    z-index: 1;
}

.activity-detail-title span {
    display: block;
    font-family: var(--display);
    font-size: clamp(52px, 8vw, 104px);
    line-height: .8;
    color: rgba(255,255,255,.22);
    font-style: italic;
}

.activity-detail-title h1 {
    width: fit-content;
    max-width: 100%;
    margin: 0;
    padding: 6px 14px;
    color: #fff;
    background: linear-gradient(90deg, #006fed, #0b3bdc);
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.25;
    font-weight: 900;
    text-shadow: 0 4px 16px #000;
}

.activity-detail-body {
    padding-top: clamp(86px, 5vw, 130px);
    clip-path: none;
    box-shadow: none;
}

.activity-detail-grid {
    display: grid;
    grid-template-columns: minmax(260px, .64fr) minmax(0, 1.36fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: start;
}

.activity-detail-aside {
    position: sticky;
    top: 112px;
    padding: clamp(24px, 3vw, 34px);
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(0, 111, 236, .26), transparent 58%),
        linear-gradient(180deg, #071323, #04101f);
    border: 1px solid rgba(0, 186, 255, .46);
    border-radius: 16px;
    box-shadow: 0 20px 54px rgba(0,0,0,.2);
}

.activity-detail-aside::before {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.activity-detail-aside .section-kicker {
    color: var(--gold);
}

.activity-detail-aside .section-title {
    color: #fff;
    font-size: clamp(26px, 3.2vw, 40px);
    text-shadow: 0 3px 18px rgba(0,0,0,.55);
}

.activity-detail-aside p,
.activity-detail-copy p {
    font-weight: 800;
}

.activity-detail-aside p {
    color: #dcecff;
}

.activity-detail-copy {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 4vw, 42px);
    color: #07101c;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(0, 111, 236, .18);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0,0,0,.08);
    backdrop-filter: blur(6px);
}

.activity-detail-copy p {
    margin: 0;
    padding-left: 18px;
    color: #182c43;
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 2.05;
    border-left: 3px solid rgba(0, 168, 255, .34);
}

.activity-point-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.activity-point {
    min-height: 148px;
    padding: 20px 18px;
    color: #07101c;
    background:
        linear-gradient(120deg, rgba(255,255,255,.96), rgba(238, 248, 255, .94)),
        radial-gradient(circle at 100% 0, rgba(0, 168, 255, .24), transparent 12rem);
    border: 1px solid rgba(0, 117, 255, .28);
    border-top: 4px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 14px 38px rgba(0,0,0,.08);
}

.activity-point span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-family: var(--display);
    font-size: 17px;
    letter-spacing: .08em;
}

.activity-point strong {
    display: block;
    font-size: 15px;
    line-height: 1.75;
}

.activity-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.activity-related-card {
    position: relative;
    display: flex;
    min-height: 260px;
    padding: 22px;
    overflow: hidden;
    isolation: isolate;
    align-items: flex-end;
    border: 1px solid rgba(0, 186, 255, .5);
    border-radius: 12px;
    background: #05101d;
    transition: transform .45s var(--ease), border-color .35s ease, opacity .35s ease;
}

.activity-related-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 234, 255, .92);
}

.activity-related-card.is-current {
    opacity: .58;
}

.activity-related-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: saturate(1.14) contrast(1.08) brightness(.68);
}

.activity-related-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.8));
}

.activity-related-card span {
    position: absolute;
    top: 14px;
    left: 16px;
    font-family: var(--display);
    font-size: 48px;
    line-height: 1;
    color: rgba(255,255,255,.24);
    font-style: italic;
}

.activity-related-card strong {
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
    text-shadow: 0 3px 12px #000;
}

.archive-panel {
    display: grid;
    grid-template-columns: .55fr 1.45fr;
    gap: clamp(28px, 5vw, 70px);
    align-items: start;
}

.news-filter-panel {
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.filter-box {
    color: #07101c;
    background: transparent;
    padding: clamp(28px, 5vw, 54px);
}

.filter-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 42px;
    align-items: center;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
}

.category-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    min-height: 52px;
    color: #07101c;
    background: #fff;
    border: 1px solid rgba(5,18,34,.28);
    font-weight: 900;
}

.category-tabs a.is-active {
    background: linear-gradient(100deg, #ffe46b, #ffc92b);
    border-color: transparent;
}

.news-search {
    display: grid;
    grid-template-columns: 1fr 200px 120px;
    gap: 18px;
}

.news-search input,
.news-search select {
    min-height: 54px;
    border: 1px solid rgba(5,18,34,.28);
    padding: 0 18px;
    background: #fff;
    color: #08111d;
    font-weight: 800;
}

.news-search button {
    width: auto;
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
}

.news-archive-list {
    width: min(1100px, calc(100% - 48px));
    margin: 60px auto 0;
}

.news-archive-list .news-row {
    min-height: 86px;
    grid-template-columns: 128px 112px 1fr 42px;
    border-bottom-color: rgba(255,255,255,.2);
}

.news-article {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.news-article header {
    display: grid;
    grid-template-columns: 126px 112px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.news-article time {
    font-weight: 900;
    color: #d4f1ff;
}

.news-article h2 {
    margin: 0;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.5;
}

.news-article p {
    margin: 10px 0 0 256px;
    color: #cfe3f5;
    font-weight: 700;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 56px 0 0;
}

.pagination a,
.pagination span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    font-weight: 900;
}

.pagination .current {
    background: var(--blue);
    border-color: var(--blue);
}

.member-hero::before {
    background:
        linear-gradient(112deg, transparent 0 40%, rgba(0, 165, 255, .62) 42%, rgba(255,255,255,.32) 42.6%, transparent 44%),
        radial-gradient(circle at 56% 72%, rgba(255,255,255,.92), rgba(0,164,255,.52) 8%, transparent 15%),
        url('../images/photo-network.webp') center/cover;
}

.member-intro-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 42px;
}

.login-wrap {
    width: min(820px, calc(100% - 48px));
    margin-inline: auto;
}

.login-card {
    position: relative;
    padding: clamp(34px, 5vw, 64px);
    background: linear-gradient(140deg, rgba(4,13,25,.96), rgba(5,24,43,.96));
    border: 1px solid rgba(0, 166, 255, .45);
    clip-path: none;
    box-shadow: 0 28px 90px rgba(0,0,0,.55);
}

.login-card h2 {
    margin: 0 0 28px;
    text-align: center;
    font-size: clamp(28px, 3.5vw, 40px);
}

.login-card .btn {
    display: block;
    margin: 30px auto 0;
}

.login-card .form-note {
    text-align: center;
}

.password-wrap {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 42px;
    height: 36px;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
}

.member-stats {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 48px));
    margin: -70px auto 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(5, 15, 27, .95);
    border: 1px solid rgba(0, 234, 255, .6);
    clip-path: none;
    border-radius: 12px;
    box-shadow: 0 22px 72px rgba(0,0,0,.5);
}

.stat-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 116px;
    padding: 22px 28px;
    border-right: 1px solid rgba(255,255,255,.16);
}

.stat-item:last-child { border-right: 0; }
.stat-item i { font-style: normal; color: var(--cyan); font-size: 42px; line-height: 1; }
.stat-item small { display: block; color: #d9efff; font-weight: 900; }
.stat-item strong { display: inline-block; color: var(--cyan); font-family: var(--display); font-size: 54px; line-height: 1; letter-spacing: .02em; }
.stat-item span { font-weight: 900; }

.member-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.search-card {
    position: sticky;
    top: 92px;
    padding: 24px;
    background: rgba(3, 12, 22, .96);
    border: 1px solid rgba(0, 178, 255, .42);
    border-radius: 10px;
    box-shadow: 0 18px 54px rgba(0,0,0,.4);
}

.search-card h2 {
    margin: 0 0 18px;
    font-size: 22px;
}

.search-card .form-field {
    margin-bottom: 18px;
}

.search-actions {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.filter-expand-wrap { display: none; }

.member-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.member-results-head h2 {
    margin: 0;
    font-size: 28px;
}

.member-results-head b {
    color: var(--cyan);
}


.member-list {
    display: grid;
    gap: 16px;
}

.member-card {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr 210px;
    gap: 0;
    min-height: 210px;
    background:
        linear-gradient(122deg, rgba(0, 116, 250, .16), rgba(3,12,25,.95) 42%),
        linear-gradient(135deg, rgba(2,14,30,.95), rgba(4,20,38,.95));
    border: 1px solid rgba(0, 123, 255, .78);
    border-radius: 9px;
    box-shadow: 0 18px 54px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.04);
    overflow: hidden;
    transition: transform .45s var(--ease), box-shadow .35s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 111, 236, .3);
}

.member-photo {
    position: relative;
    display: block;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 28px;
}

.member-company {
    color: #d6f1ff;
    font-weight: 900;
    font-size: 13px;
}

.member-info h3 {
    margin: 4px 0 4px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.25;
}

.member-info h3 a {
    color: inherit;
    text-decoration: none;
}

.member-info h3 a:hover {
    color: var(--cyan);
}

.member-info h3 span {
    margin-left: 12px;
    font-size: 13px;
    color: var(--muted);
}

.member-industry {
    color: var(--cyan);
    font-weight: 900;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 3px 10px;
    color: #dff6ff;
    background: rgba(0, 111, 236, .32);
    border: 1px solid rgba(0, 174, 255, .48);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
}

.member-info p {
    margin: 0;
    color: #d9e9f5;
    font-size: 13px;
    font-weight: 700;
}

.member-personal-preview {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px 16px;
    margin: 16px 0 0;
}

.member-personal-preview dt {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.member-personal-preview dd {
    margin: 3px 0 0;
    color: #d9e9f5;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.7;
}

.member-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-left: 1px solid rgba(255,255,255,.12);
}

.location {
    font-weight: 900;
    color: #eaf8ff;
}

.location::before { content: "⌖ "; color: var(--cyan); }

.message-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 160px;
    min-height: 48px;
    border-radius: 999px;
    color: var(--black);
    font-weight: 900;
    font-size: 13px;
    background: linear-gradient(135deg, var(--gold), #fff08a);
    box-shadow: 0 14px 34px rgba(255, 205, 61, .18);
}

.detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 48px;
    border: 1px solid var(--blue-2);
    border-radius: 999px;
    color: #fff;
    font-weight: 1000;
    font-size: 13px;
    text-decoration: none;
    background: rgba(0, 75, 165, .25);
    box-shadow: inset 0 0 18px rgba(0, 174, 255, .08);
}

.member-detail-hero {
    display: grid;
    grid-template-columns: clamp(300px, 42vw, 660px) 1fr;
    min-height: 640px;
    align-items: stretch;
    background:
        radial-gradient(circle at 72% 14%, rgba(0, 214, 255, .28), transparent 34%),
        linear-gradient(135deg, #06101d 0%, #081c35 54%, #020711 100%);
    overflow: hidden;
}

.member-detail-lead-wrap {
    display: flex;
    align-items: center;
    padding: clamp(80px, 10vw, 140px) clamp(32px, 5vw, 80px);
}

.member-detail-photo {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    border: none;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    box-shadow: 28px 0 80px rgba(0, 0, 0, .5);
}

.member-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.member-detail-lead h1 {
    margin: 8px 0 0;
    color: #fff;
    font-size: clamp(48px, 9vw, 112px);
    line-height: .95;
}

.member-detail-company {
    margin: 18px 0 0;
    color: var(--cyan);
    font-size: 18px;
    font-weight: 1000;
}

.member-detail-description {
    max-width: 760px;
    margin: 28px 0 0;
    color: #d9e9f5;
    font-size: 16px;
    font-weight: 800;
    line-height: 2;
}

.member-detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.member-back-wrap {
    display: flex;
    justify-content: center;
    padding: clamp(32px, 4vw, 56px) 0 0;
}

.member-back-link {
    width: auto;
    min-width: 160px;
    padding: 14px 28px 14px 40px;
    min-height: 52px;
    font-size: 15px;
}

.member-back-link span {
    right: auto;
    left: 18px;
}

.activity-back-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 0;
}

.activity-back-link {
    width: auto;
    min-width: 160px;
    padding: 14px 28px 14px 40px;
}

.activity-back-link span {
    right: auto;
    left: 18px;
}

.activity-back-link:hover span {
    transform: translateY(-50%) translateX(-4px);
}

.member-detail-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: min(1180px, calc(100% - 40px));
    margin: 30px auto 30px;
    position: relative;
    z-index: 2;
}

.summary-item {
    padding: 22px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 111, 236, .26), rgba(255,255,255,.06));
    box-shadow: 0 18px 44px rgba(0,0,0,.25);
}

.summary-item small {
    display: block;
    color: var(--muted);
    font-weight: 900;
}

.summary-item strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 17px;
}

.member-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 22px;
}

.profile-panel {
    padding: 32px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.065);
    box-shadow: 0 20px 58px rgba(0,0,0,.2);
}

.profile-panel-large {
    grid-row: span 2;
}

.profile-panel-blue {
    background:
        linear-gradient(135deg, rgba(0, 214, 255, .18), rgba(255, 205, 61, .08)),
        rgba(255,255,255,.065);
}

.profile-panel h2 {
    margin: 6px 0 18px;
    color: #fff;
    font-size: clamp(28px, 4vw, 46px);
}

.profile-panel h3 {
    margin: 24px 0 10px;
    color: var(--gold);
}

.profile-panel p,
.profile-list dd,
.profile-note {
    color: #d9e9f5;
    font-weight: 800;
    line-height: 1.9;
}

.profile-list {
    display: grid;
    gap: 20px;
}

.profile-list div {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.profile-list dt {
    color: var(--cyan);
    font-weight: 1000;
}

.profile-list dd {
    margin: 8px 0 0;
}

.detail-tags {
    margin-top: 12px;
}

.admin-page {
    padding: 120px 0 80px;
}

.admin-shell {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 28px;
}

.admin-header h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
}

.admin-card {
    margin-bottom: 28px;
    padding: 28px;
    background: rgba(3, 12, 22, .96);
    border: 1px solid rgba(0, 178, 255, .42);
    box-shadow: 0 18px 54px rgba(0,0,0,.4);
}

.admin-card h2 {
    margin: 0 0 18px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.admin-grid .full { grid-column: 1 / -1; }

.admin-list {
    display: grid;
    gap: 16px;
}

.admin-item {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.04);
}

.admin-item h3 {
    margin: 0 0 14px;
    color: var(--cyan);
}

.admin-small {
    color: var(--muted);
    font-size: 13px;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.admin-tabs a {
    padding: 10px 18px;
    border: 1px solid rgba(0, 174, 255, .42);
    background: rgba(0, 111, 236, .18);
    font-weight: 900;
}

.admin-tabs a.is-active {
    color: #06101c;
    background: var(--gold);
    border-color: var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
    filter: blur(4px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }

/* 管理画面は実務用ツール。会員が増えて編集セクションが縦長になると、
   reveal の IntersectionObserver（threshold:0.15）が発火せず内容が透明のままになるため、
   admin 配下では reveal 演出に依存せず常時表示にする。 */
.admin-page .reveal {
    opacity: 1;
    transform: none;
    filter: none;
}

.site-footer {
    position: relative;
    padding: clamp(60px, 8vw, 90px) 0 24px;
    background: #071e38;
    overflow: hidden;
    color: #fff;
}

.site-footer::before,
.site-footer::after {
    content: '';
    position: absolute;
    inset: -60%;
    filter: blur(48px);
    opacity: 1;
    pointer-events: none;
}

.site-footer::before {
    background:
        radial-gradient(ellipse 50% 40% at 20% 40%, rgba(0, 111, 236, .9), transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 60%, rgba(11, 59, 220, .85), transparent 60%),
        radial-gradient(ellipse 35% 38% at 55% 15%, rgba(100, 200, 255, .7), transparent 55%);
    animation: footerBlob1 10s ease-in-out infinite alternate;
}

.site-footer::after {
    background:
        radial-gradient(ellipse 45% 35% at 70% 35%, rgba(60, 160, 255, .75), transparent 58%),
        radial-gradient(ellipse 35% 48% at 15% 70%, rgba(0, 220, 255, .6), transparent 55%),
        radial-gradient(ellipse 42% 34% at 45% 60%, rgba(5, 35, 180, .7), transparent 58%);
    animation: footerBlob2 14s ease-in-out infinite alternate;
}

@keyframes footerBlob1 {
    0%   { transform: translate(0%, 0%) scale(1); }
    33%  { transform: translate(12%, -8%) scale(1.1); }
    66%  { transform: translate(-8%, 10%) scale(.92); }
    100% { transform: translate(10%, 6%) scale(1.08); }
}

@keyframes footerBlob2 {
    0%   { transform: translate(0%, 0%) scale(1); }
    33%  { transform: translate(-12%, 8%) scale(.9); }
    66%  { transform: translate(10%, -10%) scale(1.08); }
    100% { transform: translate(-8%, 5%) scale(.94); }
}


.footer-grid {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 4vw, 40px);
    align-items: center;
    text-align: center;
}

.footer-logo img {
    width: 260px;
    opacity: .85;
}

.footer-address h2,
.footer-links h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
}

.footer-address p {
    display: block;
    margin: 0 0 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.footer-links a {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--cyan);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
}

.socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-weight: 900;
}

.copyright {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    margin: 48px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.2);
    text-align: center;
    color: rgba(255,255,255,.6);
    font-size: 12px;
    letter-spacing: .08em;
}

@media (max-width: 1024px) {
    .global-nav { gap: 18px; font-size: 13px; }
    .hero { min-height: 660px; }
    .activity-strip { grid-template-columns: 1fr; }
    .activity-scroll {
        overflow-x:visible;
        grid-template-columns: repeat(4, 230px);
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
    }
    .activity-card-mini { scroll-snap-align: start; }
    .member-layout { grid-template-columns: 1fr; }
    .search-card { position: static; }
    .filter-body { max-height: 172px; overflow: hidden; }
    .filter-expand-wrap { display: block; position: relative; margin-top: -52px; z-index: 2; }
    .filter-expand-wrap::before { content: ''; display: block; height: 52px; background: linear-gradient(transparent, #e8f7ff); pointer-events: none; }
    .filter-toggle { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 10px 0 4px; background: none; border: none; color: #006fec; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font); }
    .filter-chevron { font-size: 20px; line-height: 1; display: inline-block; transform: rotate(90deg); transition: transform .3s ease; }
    .search-card.is-expanded .filter-body { max-height: 1200px; }
    .search-card.is-expanded .filter-expand-wrap { margin-top: 0; }
    .search-card.is-expanded .filter-expand-wrap::before { display: none; }
    .search-card.is-expanded .filter-chevron { transform: rotate(-90deg); }
    .search-card.is-expanded .filter-toggle span:first-child { display: none; }
    .member-card { grid-template-columns: 180px 1fr; }
    .member-action { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
    .footer-grid { grid-template-columns: 220px 1fr 1fr; }
}

@media (max-width: 820px) {
    .page-home .text-block,
    .page-home .activity-strip > .reveal,
    .page-home .news-panel-inner > div { text-align: center; }
    .page-home .btn { display: block; margin-left: auto; margin-right: auto; }
    .site-header { height: 68px; z-index: 300; }
    .nav-toggle { display: block; }
    .global-nav {
        position: fixed;
        inset: 0;
        right: 0;
        height: 100%;
        z-index: 200;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 22px;
        padding: 80px 24px;
        background: rgba(0, 6, 15, .96);
        backdrop-filter: blur(12px);
        transform: translateX(100%);
        transition: transform .45s var(--ease);
        font-size: 18px;
    }
    .global-nav.is-open { transform: translateX(0); }
    .hero { min-height: 560px; padding-top: 104px; }
    .hero-title {
        font-size: clamp(56px, 16vw, 96px);
        line-height: .92;
        letter-spacing: 0;
    }
    .hero-subtitle {
        max-width: min(100% - 32px, 520px);
        margin-top: 22px;
        font-size: clamp(18px, 5vw, 24px);
        letter-spacing: .08em;
        overflow-wrap: anywhere;
    }
    .hero-ghost {
        top: 132px;
        right: -24vw;
        font-size: clamp(96px, 30vw, 170px);
        opacity: .28;
    }
    .diagonal-white { clip-path: polygon(0 5%, 50% 0, 100% 5%, 100% 96%, 50% 100%, 0 96%); }
    .about-split,
    .two-column,
    .archive-panel,
    .activity-detail-grid,
    .filter-grid,
    .news-panel { grid-template-columns: 1fr; }
    .news-panel-inner { grid-template-columns: 1fr; }
    .news-panel-btn { grid-column: 1; grid-row: auto; display: block; margin: 0 auto; text-align: center; }
    .page-home .news-list .news-row { grid-template-columns: auto 1fr 36px; gap: 6px 12px; align-items: start; }
    .page-home .news-list .news-row time { grid-column: 1; grid-row: 1; }
    .page-home .news-list .news-row .news-cat { grid-column: 2; grid-row: 1; justify-self: start; }
    .page-home .news-list .news-row strong { grid-column: 1 / 3; grid-row: 2; text-align: left; }
    .page-home .news-list .news-row .arrow { grid-column: 3; grid-row: 1 / 3; align-self: center; }
    .activity-detail-visual {
        margin-top: -22px;
        padding-bottom: 18px;
    }
    .activity-detail-body {
        margin-top: 0;
        padding-top: 44px;
        clip-path: none;
    }
    .activity-detail-body .ghost-label {
        display: none;
    }
    .activity-detail-photo {
        width: min(100% - 32px, 900px);
        min-height: 300px;
        overflow: visible;
        clip-path: none;
        border: 1px solid rgba(0, 234, 255, .72);
        border-radius: 12px;
    }
    .activity-detail-photo img {
        height: 300px;
        min-height: 0;
        border-radius: 8px 8px 0 0;
    }
    .activity-detail-photo::after {
        height: 300px;
        border-radius: 8px 8px 0 0;
    }
    .activity-detail-title {
        position: static;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 14px;
        align-items: center;
        padding: 18px 20px 20px;
        color: #fff;
        background: linear-gradient(135deg, #061323, #0a2441);
        border-top: 1px solid rgba(0, 234, 255, .42);
        border-radius: 0 0 8px 8px;
    }
    .activity-detail-title span {
        margin-bottom: 0;
        font-size: 48px;
        color: rgba(0, 234, 255, .34);
    }
    .activity-detail-title h1 {
        width: 100%;
        min-width: 0;
        padding: 0;
        background: transparent;
        font-size: clamp(24px, 6vw, 34px);
        line-height: 1.45;
        overflow-wrap: anywhere;
        word-break: break-all;
        text-shadow: none;
    }
    .activity-detail-aside { position: static; }
    .activity-detail-grid,
    .activity-detail-aside,
    .activity-detail-copy,
    .activity-point,
    .activity-related-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .activity-detail-aside .section-title {
        font-size: clamp(24px, 6vw, 34px);
        overflow-wrap: anywhere;
    }
    .activity-detail-aside p,
    .activity-detail-copy p,
    .activity-point strong {
        overflow-wrap: anywhere;
        word-break: normal;
    }
    .activity-detail-copy { padding: 28px 24px; }
    .activity-point-list,
    .activity-related-grid { grid-template-columns: 1fr; }
    .activity-related-card { min-height: 190px; }
    .news-panel {
        gap: 28px;
        padding: 34px 24px 40px;
        clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
    }
    .image-cut { min-height: 310px; transform: none; }
    .value-grid,
    .step-grid,
    .join-contact-panel,
    .feature-grid,
    .member-intro-icons { grid-template-columns: 1fr; }
    .step-card::after { display: none; }
    .activity-grid-large { grid-template-columns: 1fr; }
    .activity-card-mini,
    .activity-card {
        padding: 124px 24px 26px;
        gap: 12px;
    }
    .activity-card h3,
    .activity-card-mini h3,
    .activity-card p,
    .activity-card-mini p {
        max-width: 100%;
    }
    .news-search { grid-template-columns: 1fr; }
    .news-row,
    .news-archive-list .news-row { grid-template-columns: 1fr 112px 36px; gap: 8px 12px; padding: 16px 0; }
    .news-row time { grid-column: 1 / -1; }
    .news-row strong { grid-column: 1 / 2; }
    .news-article header { grid-template-columns: auto 1fr; gap: 6px 10px; align-items: center; }
    .news-article header time { grid-column: 1; grid-row: 1; }
    .news-article header .news-cat { grid-column: 2; grid-row: 1; }
    .news-article header h2 { grid-column: 1 / -1; grid-row: 2; }
    .news-article p { margin-left: 0; }
    .cta-band { grid-template-columns: 1fr; clip-path: none; }
    .cta-photo { clip-path: none; min-height: 190px; }
    .member-stats { grid-template-columns: 1fr; }
    .stat-item { min-height: 105px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
    .stat-item:last-child { border-bottom: 0; }
    .form-grid,
    .admin-grid { grid-template-columns: 1fr; }
    .form-grid .full,
    .admin-grid .full { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .footer-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 80%;
        margin: 0 auto;
    }
    .footer-links a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 4px;
        border-bottom: 1px solid rgba(255,255,255,.1);
        font-size: 14px;
    }
    .footer-links a::after {
        content: '›';
        font-size: 18px;
        color: var(--cyan);
    }
    .container,
    .news-archive-list,
    .login-wrap,
    .member-stats,
    .footer-grid,
    .copyright { width: min(100% - 28px, 1180px); }
    .brand img { width: 148px; }
    .activity-card-mini,
    .activity-card {
        padding: 114px 20px 22px;
    }
    .activity-detail-photo {
        width: min(calc(100vw - 72px), 1180px) !important;
        min-height: 0;
        margin-inline: auto;
        clip-path: none;
        border: 1px solid rgba(0, 234, 255, .72);
        border-radius: 12px;
    }
    .activity-detail-body .container {
        width: min(calc(100vw - 72px), 1180px) !important;
    }
    .activities-hero .hero-title {
        font-size: clamp(44px, 13vw, 54px);
        line-height: 1;
        letter-spacing: 0;
        max-width: 100%;
    }
    .activities-hero .hero-subtitle {
        max-width: min(100% - 24px, 340px);
        font-size: clamp(16px, 4.8vw, 20px);
        line-height: 1.65;
    }
    .activities-hero .hero-ghost {
        right: -12vw;
        font-size: clamp(74px, 24vw, 120px);
    }
    .activity-detail-photo img {
        height: 220px;
    }
    .activity-detail-photo::after {
        height: 220px;
    }
    .activity-detail-title {
        padding: 16px 16px 18px;
    }
    .activity-detail-title span { font-size: 40px; }
    .activity-detail-title h1 {
        font-size: 23px;
        line-height: 1.35;
    }
    .join-merit-grid { grid-template-columns: 1fr; }
    .join-target-list { grid-template-columns: 1fr; gap: 8px; }
    .join-contact-panel {
        background:
            linear-gradient(135deg, rgba(255,255,255,.98), rgba(236, 248, 255, .94)),
            url('../images/photo-join.png') right top/72% auto no-repeat;
        padding: 22px 18px;
    }
    .join-contact-panel::before {
        right: 12px;
        top: 12px;
        font-size: 48px;
    }
    .join-contact-panel::after {
        clip-path: polygon(0 0, 100% 0, 100% 9px, 0 9px);
    }
    .join-contact-copy h3 {
        font-size: clamp(24px, 8vw, 34px);
    }
    .join-contact-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .join-contact-badges span {
        min-height: 34px;
        padding: 7px 11px;
        font-size: 12px;
    }
    .join-phone-card {
        min-height: 190px;
        padding: 22px 18px;
    }
    .join-phone-mark {
        font-size: 46px;
    }
    .join-phone-number {
        font-size: clamp(31px, 10vw, 44px);
        letter-spacing: 0;
    }
    .activity-detail-aside,
    .activity-detail-copy {
        padding: 22px 16px;
    }
    .activity-detail-aside p,
    .activity-detail-copy p,
    .activity-point strong {
        font-size: 15px;
        line-height: 1.9;
        letter-spacing: 0;
        overflow-wrap: anywhere;
        word-break: break-all;
        line-break: anywhere;
    }
    .activity-detail-copy p {
        padding-left: 14px;
        line-height: 1.95;
    }
    .activity-point-list,
    .activity-related-grid { grid-template-columns: 1fr; }
    .news-panel {
        padding: 30px 20px 36px;
        clip-path: none;
        border-radius: 0;
    }
    .hero { min-height: 340px; padding-inline: 14px; }
    .hero-title { -webkit-text-stroke-width: 1.2px; }
    .hero-subtitle { margin-top: 20px; font-size: 18px; }
    .gold-badge { font-size: 13px; padding-inline: 24px; }
    .filter-box { border-radius: 12px; }
    .news-row,
    .news-archive-list .news-row { grid-template-columns: 1fr 32px; }
    .news-cat { grid-column: 1 / -1; justify-self: start; }
    .page-home .news-list .news-row { grid-template-columns: auto 1fr 36px; gap: 6px 12px; align-items: start; }
    .page-home .news-list .news-row time { grid-column: 1; grid-row: 1; }
    .page-home .news-list .news-row .news-cat { grid-column: 2; grid-row: 1; justify-self: start; }
    .page-home .news-list .news-row strong { grid-column: 1 / 3; grid-row: 2; text-align: left; }
    .page-home .news-list .news-row .arrow { grid-column: 3; grid-row: 1 / 3; align-self: center; }
    .page-home .news-list .news-cat { grid-column: auto; }
    .member-stats { grid-template-columns: 1fr; clip-path: none; }
    .stat-item { grid-template-columns: 1fr; text-align: center; justify-items: center; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 20px 16px; min-height: 120px; }
    .stat-item:last-child { border-bottom: 0; }
    .member-card { grid-template-columns: 1fr; }
    .member-photo { height: 270px; }
    .member-action { flex-direction: column; align-items: stretch; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-logo img { width: 220px; }
    .admin-header { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}

/* white paper sections need dark list text */
.diagonal-white .news-row {
    color: #07101c;
    border-bottom-color: rgba(7, 16, 28, .16);
}
.diagonal-white .news-row time {
    color: #0a1a2a;
}
.diagonal-white .news-row:hover {
    background: rgba(0, 111, 236, .07);
}
.diagonal-white .section-lead {
    color: #31445a;
}
.diagonal-white .feature-card {
    clip-path: none;
    box-shadow: none;
    border: 0;
    border-right: 1px solid rgba(0, 111, 236, .24);
    background: transparent;
    text-align: center;
    color: #07101c;
    min-height: 210px;
}
.diagonal-white .feature-card:last-child {
    border-right: 0;
}
.diagonal-white .feature-card h3 {
    color: var(--blue);
}
.diagonal-white .feature-card p {
    color: #26384a;
}
.diagonal-white .feature-icon {
    color: var(--blue);
}
@media (max-width: 820px) {
    .diagonal-white .feature-card {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 111, 236, .18);
    }
    .diagonal-white .feature-card:last-child { border-bottom: 0; }
}

@media (max-width: 1024px) {
    .member-personal-preview,
    .member-detail-layout {
        grid-template-columns: 1fr;
    }

    .member-detail-hero {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .member-detail-photo {
        min-height: 380px;
        clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    }

    .member-detail-lead-wrap {
        padding: 32px clamp(20px, 5vw, 48px) 48px;
    }

    .member-detail-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .member-detail-summary {
        grid-template-columns: 1fr;
    }

    .profile-panel {
        padding: 24px;
    }
}

/* Blue-white refresh theme */
:root {
    --bg: #eef8ff;
    --panel: #ffffff;
    --panel-2: #e6f5ff;
    --blue: #006fcf;
    --blue-2: #159de0;
    --cyan: #40c8ff;
    --deep: #d9efff;
    --gold: #ffd45a;
    --gold-2: #ffc13b;
    --paper: #ffffff;
    --muted: #526f8b;
    --text: #12324c;
    --black: #071625;
    --border: rgba(19, 151, 221, .32);
    --shadow: 0 24px 68px rgba(39, 151, 215, .18);
}

html,
body {
    background: var(--bg);
}

body {
    color: var(--text);
    background:
        radial-gradient(circle at 50% 0, rgba(92, 205, 255, .42), transparent 34rem),
        radial-gradient(circle at 100% 26%, rgba(171, 226, 255, .5), transparent 34rem),
        linear-gradient(180deg, #f8fdff 0%, #eaf7ff 48%, #ffffff 100%);
}

body::before {
    opacity: .24;
    background-image:
        linear-gradient(115deg, transparent 0 43%, rgba(91, 196, 255, .22) 43.4%, transparent 45%),
        linear-gradient(104deg, transparent 0 52%, rgba(0, 111, 207, .13) 52.4%, transparent 54%),
        radial-gradient(circle at 55% 0%, rgba(129, 219, 255, .38), transparent 28rem);
}

body::after {
    opacity: .18;
    background-image:
        radial-gradient(rgba(0, 111, 207, .18) 1px, transparent 1px),
        linear-gradient(100deg, transparent 0 45%, rgba(80, 191, 248, .18) 45.2%, transparent 46%);
}

.site-bg span {
    opacity: .3;
    background: linear-gradient(90deg, transparent, rgba(64, 190, 245, .46), rgba(255,255,255,.92), transparent);
    filter: blur(.5px);
}

.site-header {
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(0, 111, 207, .10);
}

.site-header.is-scrolled {
    background: rgba(255,255,255,.94);
    box-shadow: 0 12px 36px rgba(23, 111, 168, .14);
}

.brand img {
    filter: drop-shadow(0 8px 18px rgba(0, 111, 207, .14));
}

.global-nav a {
    color: #13314a;
    text-shadow: none;
}

.global-nav a::after {
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    box-shadow: 0 6px 14px rgba(64, 200, 255, .28);
}

.global-nav .nav-member {
    color: #fff;
    background: linear-gradient(135deg, #0b83d8, #34bfff);
    box-shadow: 0 10px 24px rgba(10, 132, 216, .24);
}

.global-nav .nav-logout {
    color: #2a5a80;
    border-color: rgba(0, 111, 207, .3);
}

.global-nav .nav-logout:hover {
    color: #006fec;
    border-color: #006fec;
}

.nav-toggle {
    border-color: rgba(0, 111, 207, .24);
    background: rgba(255,255,255,.78);
}

.nav-toggle span {
    background: #0f456a;
}

.hero {
    background:
        radial-gradient(circle at 50% 72%, rgba(255,255,255,.72), transparent 12rem),
        radial-gradient(circle at 54% 74%, rgba(85, 198, 255, .42), transparent 32rem),
        linear-gradient(180deg, #f6fcff 0%, #dff3ff 100%);
}

.hero::before {
    opacity: .82;
}

.hero::after {
    background:
        linear-gradient(180deg, rgba(255,255,255,.42), rgba(229,247,255,.18) 42%, rgba(0,77,142,.48) 100%),
        linear-gradient(90deg, rgba(255,255,255,.72), transparent 28%, transparent 72%, rgba(255,255,255,.62));
}

.hero-beams {
    opacity: .45;
    background:
        conic-gradient(from 248deg at 50% 100%, transparent 0 9deg, rgba(72, 199, 255, .5) 10deg 13deg, transparent 14deg 22deg, rgba(0, 111, 207, .25) 23deg 27deg, transparent 28deg 52deg, rgba(255,255,255,.72) 53deg 54deg, transparent 55deg),
        radial-gradient(circle at 50% 100%, rgba(255,255,255,.9), transparent 10rem);
}

.hero-kicker,
.section-kicker {
    color: #0078bf;
}

.hero-title {
    -webkit-text-stroke-color: rgba(255,255,255,.98);
    text-stroke-color: rgba(255,255,255,.98);
    text-shadow: 0 8px 28px rgba(0, 88, 154, .4), 0 0 2px rgba(0, 72, 132, .2);
}

.hero-title .fill {
    color: #ffffff;
    text-shadow: 0 7px 28px rgba(0, 82, 150, .5), 0 0 1px rgba(0, 63, 119, .45);
}

.hero-title .blue-fill,
.hero-ghost {
    color: rgba(0, 111, 207, .34);
}

.hero-subtitle {
    color: #ffffff;
    text-shadow: 0 3px 14px rgba(0, 63, 119, .72), 0 0 22px rgba(0, 130, 210, .42);
}

.scroll-cue {
    color: #ecfaff;
    text-shadow: 0 2px 10px rgba(0, 74, 132, .5);
}

.section-dark,
.home-news {
    color: #12324c;
    background: #fff;
}

.page-section,
.admin-page {
    color: #12324c;
    background:
        radial-gradient(circle at 92% 10%, rgba(76, 195, 255, .22), transparent 23rem),
        linear-gradient(180deg, rgba(248,253,255,.96), rgba(232,247,255,.95));
}

.section-lead,
.text-block p,
.activity-detail-copy p,
.activity-detail-aside p,
.news-article p,
.member-detail-description,
.profile-panel p,
.profile-list dd,
.profile-note {
    color: #3e5871;
}

.section-title,
.member-results-head h2,
.admin-header h1,
.admin-card h2,
.login-card h2 {
    color: #102f49;
}

.center-heading::after,
.news-panel::before,
.activity-detail-aside::before {
    background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
}

.btn-dark,
.detail-btn,
.pagination .current {
    color: #fff;
    background: linear-gradient(135deg, #0d7dd0, #34bfff);
    border-color: rgba(255,255,255,.72);
    box-shadow: 0 14px 34px rgba(31, 151, 219, .24);
}

.btn-dark:hover {
    background: linear-gradient(135deg, #0a62a8, #1ea3e8);
}

.btn-gold,
.message-btn,
.category-tabs a.is-active,
.admin-tabs a.is-active,
.required {
    color: #08314f;
    background: linear-gradient(100deg, #ffe990, #ffd45a 52%, #ffc13b);
}

.diagonal-white {
    color: #102f49;
    background:
        radial-gradient(circle at 5% 18%, rgba(64, 200, 255, .18), transparent 16rem),
        radial-gradient(rgba(0, 111, 207, .14) 1px, transparent 1px),
        linear-gradient(100deg, rgba(255,255,255,.99), rgba(238,248,255,.98));
    box-shadow: 0 -1px 0 rgba(64,200,255,.5) inset, 0 1px 0 rgba(64,200,255,.5) inset;
}

.image-cut,
.activity-detail-photo,
.member-detail-photo {
    box-shadow: 28px 0 80px rgba(31, 117, 178, .22);
}

.step-card,
.feature-card,
.dark-card,
.form-panel,
.login-card,
.search-card,
.member-card,
.summary-item,
.profile-panel,
.admin-card,
.admin-item,
.news-filter-panel,
.news-panel {
    color: #12324c;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(232,247,255,.94));
    border-color: rgba(19, 151, 221, .28);
    box-shadow: 0 18px 52px rgba(43, 133, 190, .14), inset 0 0 0 1px rgba(255,255,255,.68);
}

.dark-card::before {
    background: radial-gradient(circle at 12% 4%, rgba(64, 200, 255, .2), transparent 18rem);
}

.value-card p,
.step-card p,
.feature-card p,
.dark-card p,
.member-info p,
.member-personal-preview dd,
.admin-small,
.form-note {
    color: #48637d;
}

.value-card h3,
.step-card h3,
.feature-card h3,
.dark-card h3,
.member-info h3,
.profile-panel h2,
.news-article h2,
.admin-item h3 {
    color: #102f49;
}

.value-card .num,
.step-card .num,
.value-icon,
.feature-icon,
.icon-line,
.member-results-head b,
.member-industry,
.member-personal-preview dt,
.profile-list dt,
.footer-links a:hover {
    color: #0078bf;
}

.icon-line {
    border-color: rgba(64, 200, 255, .72);
    box-shadow: 0 0 24px rgba(64, 200, 255, .18), inset 0 0 18px rgba(64, 200, 255, .08);
}

.activity-card-mini,
.activity-card,
.activity-related-card {
    border-color: rgba(255,255,255,.7);
    background: #eaf7ff;
    box-shadow: 0 18px 48px rgba(31, 117, 178, .2);
}

.activity-card-mini:hover,
.activity-card:hover,
.activity-related-card:hover {
    border-color: rgba(64, 200, 255, .9);
    box-shadow: 0 26px 68px rgba(45, 158, 220, .26);
}

.activity-card-mini img,
.activity-card img,
.activity-detail-photo img {
    filter: saturate(1.1) contrast(1.03) brightness(.96);
}

.activity-card-mini::before,
.activity-card::before {
    background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,71,126,.76)),
        radial-gradient(circle at 20% 15%, rgba(80,190,245,.28), transparent 16rem);
}

.activity-card-mini h3,
.activity-card h3,
.activity-card .more,
.activity-card-mini p,
.activity-card p {
    color: #fff;
    text-shadow: 0 3px 12px rgba(0, 43, 80, .72);
}

.card-num,
.activity-card-mini .card-num,
.activity-detail-title span {
    color: rgba(255,255,255,.42);
}


.news-row,
.news-archive-list .news-row,
.news-article {
    color: #12324c;
    border-bottom-color: rgba(25, 91, 135, .16);
}

.news-row:hover {
    background: rgba(64, 200, 255, .12);
}

.news-row time,
.news-article time {
    color: #496984;
}

.news-row .arrow,
.pagination a,
.pagination span,
.category-tabs a,
.admin-tabs a {
    color: #12324c;
    border-color: rgba(19, 151, 221, .28);
    /* background: rgba(255,255,255,.58); */
}

.cat-event,
.cat-news,
.cat-seminar,
.cat-social {
    color: #006fed;
    background: transparent;
    border-color: #006fed;
}

.cta-band,
.cta-band.blue {
    color: #fff;
    background: transparent;
    border: none;
    box-shadow: none;
}

.cta-box h2,
.cta-box p:not(.section-kicker) {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.join-phone-card,
.member-stats,
.member-detail-hero {
    color: #12324c;
    background:
        radial-gradient(circle at 72% 14%, rgba(64, 200, 255, .22), transparent 34%),
        linear-gradient(135deg, #f7fcff 0%, #e6f5ff 54%, #ffffff 100%);
    border-color: rgba(19, 151, 221, .28);
    box-shadow: 0 22px 60px rgba(31, 117, 178, .16);
}

.join-phone-card span,
.join-phone-number,
.member-detail-lead h1,
.summary-item strong,
.profile-panel h3,
.stat-item strong,
.stat-item i {
    color: #0078bf;
    text-shadow: none;
    filter: none;
}

.join-phone-card p,
.stat-item small,
.member-detail-description,
.profile-panel p,
.profile-list dd,
.profile-note {
    color: #48637d;
}

.footer-address p,
.footer-links a {
    color: #fff;
}

.member-stats,
.member-card {
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(230,246,255,.94));
}

.stat-item,
.member-action,
.profile-list div,
.member-detail-summary .summary-item,
.copyright {
    border-color: rgba(25, 91, 135, .14);
}

@media (max-width: 560px) {
    .stat-item:nth-child(odd) { border-right: 0; }
}

.stat-item span,
.member-company,
.location,
.member-detail-company {
    color: #174d73;
}

.tag-list span {
    color: #0e557e;
    background: rgba(64, 200, 255, .16);
    border-color: rgba(19, 151, 221, .26);
}


.form-field label,
.checkbox-row label,
.check-option,
.merit-list li,
.merit-list strong {
    color: #12324c;
}

.form-field input,
.form-field select,
.form-field textarea,
.search-card input,
.search-card select,
.login-card input,
.admin-form input,
.admin-form select,
.admin-form textarea,
.news-search input,
.news-search select {
    color: #12324c;
    background: rgba(255,255,255,.86);
    border-color: rgba(19, 151, 221, .28);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.search-card input:focus,
.search-card select:focus,
.login-card input:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: var(--blue-2);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(64, 200, 255, .18);
}

.password-toggle {
    color: #0f456a;
}

.alert {
    color: #0f456a;
    background: rgba(64, 200, 255, .14);
    border-color: rgba(19, 151, 221, .28);
}

.alert.error {
    color: #8f1d2d;
    background: rgba(255, 70, 92, .1);
}

.activity-detail-photo::after {
    background:
        linear-gradient(180deg, transparent 20%, rgba(0,72,128,.62) 100%),
        linear-gradient(112deg, transparent 0 50%, rgba(64, 200, 255, .22) 50.4%, transparent 55%);
}

.activity-detail-title h1 {
    color: #fff;
    background: linear-gradient(90deg, #0d7dd0, #34bfff);
    text-shadow: 0 2px 12px rgba(0, 61, 112, .35);
}

.activity-detail-body {
    background: linear-gradient(180deg, #f7fcff, #ffffff);
    margin-top: 0;
}

.activity-detail-copy {
    color: #12324c;
    background: rgba(255,255,255,.92);
    border-color: rgba(19, 151, 221, .24);
    box-shadow: 0 18px 50px rgba(31, 117, 178, .12);
}

.activity-point {
    color: #12324c;
    background:
        linear-gradient(120deg, rgba(255,255,255,.96), rgba(232,247,255,.94)),
        radial-gradient(circle at 100% 0, rgba(64, 200, 255, .2), transparent 12rem);
    border-color: rgba(19, 151, 221, .24);
}

.activity-related-card::before {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,73,130,.7));
}

.activity-related-card strong {
    color: #fff;
    text-shadow: 0 3px 12px rgba(0, 43, 80, .72);
}

.news-filter-panel {
    background: transparent;
}

.admin-tabs a,
.category-tabs a {
    border-radius: 6px;
}

.footer-beam {
    opacity: .16;
}

.footer-address h2,
.footer-links h3 {
    color: #fff;
}

.socials a {
    color: #fff;
    border-color: rgba(255, 255, 255, .6);
}

.copyright {
    color: rgba(255,255,255,.6);
}

@media (max-width: 820px) {
    .global-nav {
        background: rgba(255,255,255,.96);
        box-shadow: inset 0 0 0 1px rgba(0,111,207,.12);
    }

    .activity-scroll {
        grid-template-columns: 1fr;
        transform: none;
    }

    .activity-card-mini,
    .activity-card {
        clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    }

    .activity-detail-title {
        color: #12324c;
        background: linear-gradient(135deg, #f8fdff, #e6f5ff);
        border-top-color: rgba(19,151,221,.28);
    }

    .activity-detail-title h1 {
        color: #102f49;
        background: transparent;
        text-shadow: none;
    }

    .activity-detail-title span {
        color: rgba(0,111,207,.26);
    }
}

@media (max-width: 560px) {
    .news-panel {
        border-radius: 0;
    }

    .member-stats,
    .footer-grid,
    .copyright {
        width: min(100% - 28px, 1180px);
    }
}

/* Header logo replacement */
.brand img {
    width: clamp(260px, 28vw, 430px);
    max-height: 58px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .brand img {
        width: clamp(220px, 34vw, 340px);
        max-height: 50px;
    }
}

@media (max-width: 560px) {
    .brand img {
        width: min(230px, 62vw);
        max-height: 42px;
    }
}

/* Fix value icons and remove hero haze */
.value-icon {
    display: inline-grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 14px 0 24px;
    border-radius: 50%;
    color: #0078bf;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(19, 151, 221, .28);
    box-shadow: 0 14px 32px rgba(0, 117, 207, .13);
    filter: none;
    font-size: 0;
    line-height: 1;
}

.value-icon__svg {
    display: block;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    overflow: visible;
    color: currentColor;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
}

.value-icon__svg path,
.value-icon__svg circle {
    fill: none;
    stroke: currentColor;
}

.hero::before {
    opacity: 1;
}

.hero::after {
    background: none;
}

.hero-beams {
    display: none;
}

.home-hero::before {
    background: url('../images/photo-city.webp') center/cover;
}

.activities-hero::before {
    background: url('../images/photo-city.webp') center/cover;
}

.about-hero::before {
    background: url('../images/photo-city.webp') center/cover;
}

.join-hero::before {
    background: url('../images/photo-city.webp') center/cover;
}

.news-hero::before {
    background: url('../images/photo-city.webp') center/cover;
}

.member-hero::before {
    background: url('../images/photo-network.webp') center/cover;
}

/* 会員管理：保存ボタンを画面下部に固定（members タブのみ。fixed なので body の
   overflow-x:hidden に影響されず、ボタンは form 内に残るため一括送信も不変）。
   構造値は f22fe91 のまま、色はライト青白テーマに合わせる。:root の後勝ち上書きに
   負けないようファイル末尾に置く。 */
.admin-save-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    justify-content: center;
    margin: 0;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .92);
    border-top: 1px solid rgba(19, 151, 221, .28);
    box-shadow: 0 -12px 32px rgba(39, 151, 215, .18);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* 固定バーに最下部のフィールドが隠れないよう余白を確保（members タブのみ付与） */
.has-sticky-save {
    padding-bottom: 104px;
}

/* お知らせ（news）ページの横見切れ対策。保険＋本命をまとめてファイル末尾に追記
   （既存の @media max-width:820px 内の .news-search/.filter-grid より後勝ち）。 */

/* 1. 長いURL・英単語・数字列が画面幅を突破するのを防ぐ */
.news-article h2,
.news-article p {
    overflow-wrap: anywhere;
}

/* 2. ページャがページ数増加で1行に並びきらず突破するのを防ぐ */
.pagination {
    flex-wrap: wrap;
}

/* 3. 821〜1024px帯域の保険。px固定（260px / 200px+120px）が生きたまま見切れるのを、
      1カラム化で柔軟化（≤820 の既存ルールと同値なので衝突しない）。 */
@media (max-width: 1024px) {
    .news-search {
        grid-template-columns: minmax(0, 1fr);
    }
    .filter-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* 4. overflow-x の伝播保険。body 単独だと環境により viewport へ伝播せず効かないため
      html にも付与。 */
html {
    overflow-x: hidden;
}

/* 会員系ページのインラインSVGアイコンの縦位置補正。
   inline 配置の svg は vertical-align 初期値 baseline のため隣接テキストに対して
   上に浮いて見える。会員系の該当 svg だけにスコープして中央寄せする。
   - flex 配置箇所（.gold-badge / .message-btn / .member-detail-actions .btn）は
     vertical-align が無視されるため無害。
   - グループ②の login の 👁（テキスト）とグループ③の ⌖（::before 疑似要素）は
     svg ではないため一切影響しない。join.php の .join-merit-svg にも掛からない。 */
.member-hero .gold-badge svg,
.member-stats .stat-item i svg,
.member-industry svg,
.message-btn svg,
.member-detail-summary .summary-item small svg,
.member-detail-actions .btn svg,
.member-intro-icons .feature-icon svg {
    vertical-align: middle;
}

/* 大見出し（h2・line-height 1.8）は middle だと CJK 文字の光学中心より低く出るため、
   baseline からわずかに下げる微調整で本文中心に合わせる。見た目で要調整ならこの値だけ変更。 */
.member-detail-layout .profile-panel h2 svg {
    vertical-align: -0.1em;
}

/* news フィルターの grid 項目が UA 既定 min-width:auto（フォーム要素の固有幅）で
   トラックを押し広げる実機モバイル溢れを防ぐ。col を縮小可能にする。 */
.filter-grid > *,
.news-search,
.news-search > * {
    min-width: 0;
}
.news-search input,
.news-search select,
.news-search button {
    max-width: 100%;
}

/* === 青年部宣言（CREED）セクション === */
.creed-section {
    position: relative;
    background: linear-gradient(180deg, #f4f9fe 0%, #eaf3fc 100%);
    overflow: hidden;
}
.creed-inner {
    max-width: 820px;
    text-align: center;
}
.creed-title {
    color: #006fcf;
}
.creed-body {
    margin: 0;
    padding: 0 0 0 1.25rem;
    border-left: 3px solid rgba(19, 151, 221, .35);
    text-align: left;
}
.creed-body p {
    margin: 0 0 1.25rem;
    line-height: 2;
    color: #2a3b4d;
    text-align: justify;
}
.creed-body p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .creed-body { padding-left: 1rem; }
    .creed-body p { line-height: 1.95; }
}

/* === ニュースカテゴリバッジ：PC幅でカテゴリ列を広げ長いラベルを収める === */
.page-home .news-list .news-row {
    grid-template-columns: 120px 132px 1fr 36px;
}
.news-cat {
    letter-spacing: -0.01em;
}

/* === 青年部宣言：誓いの言葉 === */
.creed-oath {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(19, 151, 221, .25);
    text-align: center;
}
.creed-oath-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #006fcf;
    letter-spacing: .06em;
    margin: 0 0 2.2rem;
}
.creed-oath-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    max-width: 700px;
}
.creed-oath-list li {
    position: relative;
    padding: 0 0 0 2.4rem;
    margin: 0 0 1.5rem;
    line-height: 1.95;
    color: #2a3b4d;
}
.creed-oath-list li:last-child {
    margin-bottom: 0;
}
.creed-oath-list li::before {
    content: "1.";
    position: absolute;
    left: 0;
    top: 0;
    color: #2a3b4d;
    font-weight: 700;
}
@media (max-width: 768px) {
    .creed-oath-title { font-size: 1.9rem; }
    .creed-oath-list li { padding-left: 2.1rem; line-height: 1.9; }
}

/* === トップ About 増強 === */
.about-catch {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f4e79;
    line-height: 1.8;
    margin: 0 0 1.2rem;
}
@media (max-width: 768px) {
    .about-catch { font-size: 1.05rem; }
}

/* === ニュース記事内画像（news.php）＝ 縦横比維持・切り取らず全体表示 === */
.news-article-img {
    display: block;
    max-width: 100%;        /* 記事幅を超えない */
    width: auto;            /* 高さ上限に当たったとき横に間延びさせない */
    height: auto;           /* 縦横比維持 */
    max-height: 420px;      /* 横長は幅・縦長は高さで頭打ちになり全体が見える */
    margin: 0 auto 1.25rem; /* 中央寄せ＋本文との余白 */
    border-radius: 8px;     /* 既存トークンに合わせた軽い角丸 */
    object-fit: contain;    /* 念のため（切り取らない） */
}
@media (max-width: 560px) {
    .news-article-img { max-height: 260px; } /* スマホで縦に占有しすぎない */
}

/* ===== お知らせ アコーディオン化（公開側 news.php / B案：日付＋タグ＋タイトルを畳んだ見出しに） ===== */
.news-accordion { /* details 既存 .news-article の枠線・余白はそのまま流用 */ }
.news-accordion > summary {
    list-style: none;            /* デフォルト三角を消す */
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.news-accordion > summary::-webkit-details-marker { display: none; } /* Safari の三角を消す */
.news-accordion > summary:focus-visible {
    outline: 2px solid rgba(19,151,221,.6);
    outline-offset: 2px;
    border-radius: 6px;
}
.news-accordion .news-accordion-head {
    flex: 1 1 auto;
    min-width: 0;                /* 長いタイトルでの溢れ防止 */
}
.news-accordion .news-accordion-head h2 { margin-bottom: 0; }
.news-accordion .news-accordion-chevron {
    flex: 0 0 auto;
    color: rgba(19,151,221,.85);
    transition: transform .2s ease;
    margin-top: 2px;
}
.news-accordion[open] .news-accordion-chevron { transform: rotate(180deg); }
.news-accordion .news-accordion-body { padding-top: .9rem; }
.news-accordion:hover > summary .news-accordion-chevron { color: rgba(19,151,221,1); }

/* #id アンカー（トップのお知らせ行リンク news.php#<id>）でジャンプした記事を開いて見せる */
.news-accordion:target > .news-accordion-body { display: block; }
.news-accordion:target > summary .news-accordion-chevron { transform: rotate(180deg); }
.news-accordion:target { scroll-margin-top: 90px; } /* 固定ヘッダー分のジャンプ位置調整 */

/* ===== 会員用資料セクション（member.php ログイン後・Googleドライブリンク） ===== */
.member-resources {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto 2.5rem;
}
.member-resources-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(19,151,221,.08), rgba(255,255,255,.6));
    border: 1px solid rgba(19,151,221,.22);
    border-radius: 14px;
    padding: 1.6rem 1.8rem;
}
.member-resources-text { flex: 1 1 300px; min-width: 0; }
.member-resources-text h2 {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
    font-size: 1.3rem;
    color: #006fec;
}
.member-resources-text p {
    margin: 0;
    color: #44505e;
    font-size: .95rem;
    line-height: 1.7;
}
.member-resources-btn {
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
}
@media (max-width: 560px) {
    .member-resources-inner { padding: 1.3rem; }
    .member-resources-btn { width: 100%; justify-content: center; }
}

/* ===== パスワード表示トグルのアイコン出し分け（member-login.php・eye/eye-off SVG） ===== */
.password-toggle .icon-eye-off { display: none; }
.password-toggle.is-revealed .icon-eye { display: none; }
.password-toggle.is-revealed .icon-eye-off { display: inline-block; }
.password-toggle svg { vertical-align: middle; }
