
:root {
    --glass-pill-max: 22.5rem;        --glass-pill-pad: 1rem;           --glass-pill-radius: 999px;
    --glass-full-max: 73rem;          --glass-full-pad: 0.75rem;        --glass-full-radius: 1.25rem; }
@media (width >= 768px) {
    :root {
        --glass-pill-pad: 1.25rem;
        --glass-full-pad: 2rem;
        --glass-full-radius: 1.5rem;
    }
}
@media (width >= 1200px) {
    :root {
        --glass-pill-pad: 1.25rem;
        --glass-full-pad: 3rem;
        --glass-full-radius: 2rem;
    }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: auto; }   
body {
    font-family: var(--font-display);
    color: var(--fg);
    background: var(--bg);
    overflow-x: hidden;
    margin: 0;
    text-autospace: normal;
}

.cf-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100lvh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.cf-bg iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (width < 575.98px) {
    .container, .container-fluid, .container-xxl, .container-sm {
        --bs-gutter-x: 2rem;
    }
}

#tbsNavbar {
    --navbar-p-t: 1rem;
    padding-top: var(--navbar-p-t);

    @media (width >= 768px) {
        --navbar-p-t: 1.25rem;
    }
    @media (width >= 1200px) {
        --navbar-p-t: 2rem;
    }
    .navbar {
        position: relative;
        --navbar-h: 3.75rem;
        min-height: var(--navbar-h);

        @media (width >= 768px) {
            --navbar-h: 3.75rem;
        }
        @media (width >= 1200px) {
            --navbar-h: 4rem;
        }
        &:after {
            content: '';
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background: rgba(255, 255, 255, 0.68);
            border: 1px solid rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(28px);
            z-index: -1;
                        border-radius: 2rem;
            box-shadow: 0 8px 16px 0 rgba(33, 37, 41, 0.12);
            transition: background .3s ease, border-color .3s ease,
                        box-shadow .3s ease, backdrop-filter .3s ease;
        }
    }
}
#tbsNavbar.on-top .navbar:after {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
}
#tbsNavbar.nav-dark .navbar:after {
    background: rgba(10, 22, 40, 0.55);       border-color: rgba(255, 255, 255, 0.18);
}
#tbsNavbar.nav-dark .nav-link {
    color: #fff;
}
#tbsNavbar.nav-dark .nav-link:hover,
#tbsNavbar.nav-dark .nav-link:focus {
    color: rgba(255, 255, 255, 0.7);
}
#tbsNavbar.nav-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}
#tbsNavbar.nav-dark .navbar-toggler[aria-expanded="true"] {
    background: var(--tbs-blue);
    border-color: var(--tbs-blue);
}
#tbsNavbar.nav-dark .icon-menu {
    color: #fff;
}
.navbar-brand {
    display: flex;
    align-items: center;
    max-width: clamp(11rem, 48vw, 12.25rem);       padding-top: 0;
    padding-bottom: 0;
}
@media (width >= 1200px) {
    .navbar-brand { max-width: 16.4375rem; }   }
.navbar-brand {
    position: relative;
}
.navbar-brand img {
    width: 100%;
    height: auto;
    display: block;
}
.navbar-brand .brand-logo--white {
    position: absolute;
    left: 0;
        top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
.navbar-brand .brand-logo--blue {
    transition: opacity .3s ease;
}
#tbsNavbar.nav-dark .brand-logo--blue { opacity: 0; }
#tbsNavbar.nav-dark .brand-logo--white { opacity: 1; }
#tbsNavbar .navbar {
    padding-left: clamp(.5rem, 3vw, 1rem);
    padding-right: clamp(.5rem, 3vw, 1rem);
}

#tbsNavbar .nav-link {
    color: var(--tbs-blue);
    font-weight: 400;
    transition: color .3s ease;
}
#tbsNavbar .icon-menu {
    transition: color .3s ease;
}
#tbsNavbar .nav-link:hover,
#tbsNavbar .nav-link:focus {
    color: var(--tbs-teal);
}
#tbsNavbar .navbar-nav .nav-link.active,
#tbsNavbar .navbar-nav .nav-link.active:hover,
#tbsNavbar .navbar-nav .nav-link.active:focus,
#tbsNavbar.nav-dark .navbar-nav .nav-link.active,
#tbsNavbar.nav-dark .navbar-nav .nav-link.active:hover,
#tbsNavbar.nav-dark .navbar-nav .nav-link.active:focus {
    background: var(--tbs-blue);
    color: #fff;
    border-radius: 999px;
}

@media (width >= 1200px) {
    #tbsNavbar .navbar-nav .nav-link {
        padding-left: 18px;
        padding-right: 18px;
                padding-top: .35rem;
        padding-bottom: .35rem;
        margin-left: 0;
        margin-right: 0;
                display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
        #tbsNavbar .navbar-nav .nav-threads {
        width: 40px;                         height: 40px;
        padding: 0;
        margin-left: 4px;                    display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--tbs-blue);           border-radius: 50%;
        background: transparent;
    }
    #tbsNavbar .navbar-nav .nav-threads .fa-threads {
        font-size: 1.25rem;
        line-height: 1;
    }
    #tbsNavbar .navbar-nav .nav-threads:hover,
    #tbsNavbar .navbar-nav .nav-threads:focus {
        background: rgba(0, 71, 157, .06);
    }
        #tbsNavbar.nav-dark .navbar-nav .nav-threads {
        border-color: rgba(255, 255, 255, .85);
    }
    #tbsNavbar.nav-dark .navbar-nav .nav-threads .fa-threads {
        color: #fff;
    }
    #tbsNavbar.nav-dark .navbar-nav .nav-threads:hover,
    #tbsNavbar.nav-dark .navbar-nav .nav-threads:focus {
        background: rgba(255, 255, 255, .12);
    }
}

.navbar-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--navbar-h);
    flex-shrink: 0;
}
@media (width >= 1200px) {
    .navbar-top-bar { width: auto; }
}

@media (width < 1200px) {
            #tbsNavbar .navbar:has(.navbar-collapse.show)::after,
    #tbsNavbar .navbar:has(.navbar-collapse.collapsing)::after {
        position: fixed;
        inset: 0;
        width: auto;
        height: auto;
                border-color: transparent;
        border-radius: 0;
        background: rgba(255, 255, 255, .48);
        box-shadow: none;
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
    }
            #tbsNavbar .navbar-toggler {
        border: 0; box-shadow: none;
        padding: 0;
        width: 2.5rem;               height: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
    }
    #tbsNavbar .navbar-toggler:focus { box-shadow: none; }
    #tbsNavbar .icon-menu {
        color: var(--tbs-blue);
        transition: color .3s ease;
    }
        #tbsNavbar.on-top .navbar-toggler {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 8px 16px 0 rgba(33, 37, 41, 0.12);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
    }
        #tbsNavbar .navbar-toggler[aria-expanded="true"] {
        background: var(--tbs-blue);
        border: 1px solid var(--tbs-blue);
    }
    #tbsNavbar .navbar-toggler[aria-expanded="true"] .icon-menu {
        color: #fff;
    }
        #tbsNavbar.on-top .navbar-toggler[aria-expanded="true"] {
        background: var(--tbs-blue);
        border-color: var(--tbs-blue);
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    #tbsNavbar .navbar-collapse {
        justify-content: flex-start !important;
        padding: .25rem .5rem .75rem;          }
    #tbsNavbar .navbar-nav {
        width: 100%;
        gap: .25rem;                                align-items: stretch;
    }
        #tbsNavbar .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        text-align: left;
        background: transparent;
        border: 0;
        color: var(--tbs-blue);
        font-size: 1rem;                            font-weight: 400;
        line-height: 1.2;
        padding: .85rem 1rem;                       border-radius: 999px;
        transition: background .2s ease, color .2s ease;
    }
    #tbsNavbar .navbar-nav .nav-link:hover {
        background: rgba(0, 71, 157, .05);           color: var(--tbs-blue);
    }
        #tbsNavbar .navbar-nav .nav-link.active {
        background: var(--tbs-blue);
        color: #fff;
    }
        #tbsNavbar .navbar-nav .nav-threads {
        align-self: flex-start;
        width: auto;
        gap: .55rem;
        margin-top: .5rem;
        border: 1px solid var(--tbs-blue);
    }
        #tbsNavbar .navbar-nav .nav-threads.active { background: transparent; color: var(--tbs-blue); }
    #tbsNavbar .navbar-nav .nav-threads .fa-threads {
        font-size: 1.15rem;
    }
        #tbsNavbar.nav-dark .navbar-nav .nav-link {
        color: #fff;
    }
    #tbsNavbar.nav-dark .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, .08);
        color: #fff;
    }
    #tbsNavbar.nav-dark .navbar-nav .nav-threads {
        border-color: rgba(255, 255, 255, .5);
    }
}

#hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100lvh;
    padding: 0;
    overflow: hidden;
}
.hero-lottie {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.hero-lottie > svg {
    width: 100% !important;
    height: 100% !important;
}
.hero-slogan {
    position: absolute;
    left: 50%;
    bottom: clamp(3rem, 10vh, 6rem);
    transform: translateX(-50%);
    margin: 0;
    text-align: center;
    color: var(--tbs-blue);
    font-weight: 300;
    letter-spacing: clamp(.18em, 2.2vw, .45em);
    font-size: clamp(.85rem, 1.6vw, 1.05rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(.6rem, 3vw, 1.2rem);
    opacity: 0;
    animation: heroFadeIn .9s ease-out 1.2s forwards;
}
.hero-slogan .line {
    display: inline-block;
    width: clamp(2rem, 8vw, 3.25rem);
    height: 1px;
}
.hero-slogan .line.l {
    background: linear-gradient(to right, transparent, rgba(0,71,157,.55));
}
.hero-slogan .line.r {
    background: linear-gradient(to left, transparent, rgba(0,71,157,.55));
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
        left: 0;
    right: 0;
    margin-inline: auto;
    width: max-content;
    font-size: .875rem;
    line-height: 1;
    letter-spacing: 0px;
    text-align: center;
    color: rgb(0, 71, 157);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    opacity: 0;
    animation: heroFadeIn .8s ease-out 2s forwards;
    transition: opacity .35s ease, transform .35s ease;
}
.scroll-hint.is-hidden {
    opacity: 0 !important;
    transform: translateY(12px);
    pointer-events: none;
}
.scroll-hint .material-symbols-rounded {
    font-size: 1.25rem;
    line-height: 1;
    color: rgb(0, 71, 157);
    animation: scrollArrow 1.8s ease-in-out infinite;
}
@keyframes scrollArrow {
    0%, 100% { transform: translateY(0);   opacity: .55; }
    50%      { transform: translateY(4px); opacity: 1;  }
}

.video-scroll {
    position: relative;
    width: 100%;
    height: 165svh; }
.video-stage {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    overflow: hidden;
}
.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: .75rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.28));
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 24px 60px rgba(0, 71, 157, 0.15);
}
.video-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: .75rem;
    overflow: hidden;
    cursor: none;
}
@media (width < 768px) {
    .video-frame {
        padding: .5rem;                        }
    .video-inner {
        border-radius: .5rem;
    }
}
.video-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 71, 157, 0.50);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}
.video-inner:hover::after { opacity: 1; }

.video-play-cta {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    pointer-events: none;
}
.video-play-circle { display: none; }
.video-play-label {
    color: #fff;
    font-weight: 700;
    letter-spacing: .15em;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    opacity: 0;
    transition: opacity .25s ease;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.video-inner:hover .video-play-label { opacity: 1; }
@media (hover: none), (pointer: coarse) {
    .video-play-circle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 4.5rem;
        height: 4.5rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .25);
        border: 1px solid rgba(255, 255, 255, .7);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
        color: #fff;
    }
    .video-play-circle .material-symbols-rounded { font-size: 2.5rem; }
    .video-play-label { display: none; }
}

.video-module {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;                  width: 100%;
    max-width: 73rem;
    opacity: 0;                   transform: translateY(40px) scale(.97);
}
.video-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;                  padding: .25rem;              border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    box-shadow: 0 8px 24px rgba(0, 71, 157, 0.12);
}
.video-tab {
    appearance: none;
    border: 1px solid transparent;
    background: rgba(0, 71, 157, 0);       color: #00479D;                        font-family: inherit;
    font-size: 1rem;                       line-height: 1;
    padding: .625rem 1rem;                 border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.video-tab.is-active {
    background: #00479D;                   border-color: #00479D;
    color: #FFFFFF;                    }
.video-tab:hover:not(.is-active) {
    background: rgba(0, 71, 157, 0.08);
}
.video-tab:focus-visible {
    outline: 2px solid #00479D;
    outline-offset: 2px;
}
.video-panel { width: 100%; height: 100%; }
.video-panel[hidden] { display: none; }
@media (width < 768px) {
    .video-tabs { gap: .125rem; padding: .1875rem; }
    .video-tab {
        font-size: .8125rem;                   padding: .5rem .75rem;             }
}

.sect {
    position: relative;
    width: 100%;
        height: 230svh;
}
.sect-stage {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;               overflow: hidden;
}
@media (width >= 768px) {
    .sect-stage { padding: 0 1.5rem; }
}

.sect-glass {
    position: relative;
    width: 100%;
    max-width: var(--glass-full-max);
    margin: 0 auto;
    padding: var(--glass-full-pad);
    border-radius: var(--glass-full-radius);
    background: none;
    border: 0;
    box-shadow: none;
}

.sect-title {
    color: var(--tbs-blue);
    text-align: center;
    margin: 0;
    letter-spacing: .02em;
    font-weight: 700;
        white-space: nowrap;
}
.sect-pill {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}
.sect-content {
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;                      }
.member-card {
    aspect-ratio: 2 / 1;                display: flex;
    align-items: center;
    justify-content: center;
        background: linear-gradient(var(--gradient-rotate), var(--gradient-start) 0%, var(--gradient-end) 100%);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 1.5rem;               box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 8px 24px rgba(0,71,157,.08);
    cursor: pointer;
    transition: --gradient-rotate .8s, --gradient-start .8s, --gradient-end .8s,
                transform .3s ease, box-shadow .3s ease;
}
.member-card:hover,
.member-card:focus-visible {
    transform: translateY(-4px);
    box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 20px 40px rgba(0,71,157,.18);
    --gradient-rotate: 105deg;
}
.member-card[data-channel="pts"]:hover,        .member-card[data-channel="pts"]:focus-visible        { --gradient-start: var(--pts-card-1);        --gradient-end: var(--pts-card-2);        box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 12px 24px rgba(0,34,157,.3); }
.member-card[data-channel="cts"]:hover,        .member-card[data-channel="cts"]:focus-visible        { --gradient-start: var(--cts-card-1);        --gradient-end: var(--cts-card-2);        box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 12px 24px rgba(1,96,79,.3); }
.member-card[data-channel="hakai"]:hover,      .member-card[data-channel="hakai"]:focus-visible      { --gradient-start: var(--hakai-card-1);      --gradient-end: var(--hakai-card-2);      box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 12px 24px rgba(30,146,13,.3); }
.member-card[data-channel="taigi"]:hover,      .member-card[data-channel="taigi"]:focus-visible      { --gradient-start: var(--taigi-card-1);      --gradient-end: var(--taigi-card-2);      box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 12px 24px rgba(184,112,1,.3); }
.member-card[data-channel="taiwanplus"]:hover, .member-card[data-channel="taiwanplus"]:focus-visible { --gradient-start: var(--taiwanplus-card-1); --gradient-end: var(--taiwanplus-card-2); box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 12px 24px rgba(1,55,137,.3); }
.member-card[data-channel="ptsxs"]:hover,      .member-card[data-channel="ptsxs"]:focus-visible      { --gradient-start: var(--pts_xs-card-1);     --gradient-end: var(--pts_xs-card-2);     box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 12px 24px rgba(15,158,204,.3); }
.member-card img {
    max-width: 56%;
    max-height: 56%;
    object-fit: contain;
}
@media (width < 768px) {
    .members-grid { grid-template-columns: repeat(2, 1fr); gap: .875rem; }
    }

.timeline-intro {
  position: relative;
  width: 100%;
  height: 150svh;
}
.timeline-intro-stage {
  position: relative;
  z-index: 1;                   width: 100%;
  height: 100vh;
  height: 100lvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.timeline-blue-bg {
  position: absolute;
  inset: 0;                     background: var(--tbs-blue);
  opacity: 0;
  z-index: 0;                   pointer-events: none;
}
.timeline-intro-title {
  position: relative;
  z-index: 2;
  text-align: center;
}
.tit-line {
  margin: 0;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
}
.tit-date {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--tbs-blue);
  margin-bottom: 1rem;
}
.tit-org {
  font-size: clamp(2rem, 7.5vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--tbs-blue);
  margin-bottom: 1rem;
}
.tit-main {
  font-size: clamp(2rem, 7.5vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--tbs-blue);
}

.timeline-3d {
  position: relative;
  width: 100%;
  margin-top: -2px;            background: var(--tbs-blue);
}
.tl3-vp {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100lvh;
  overflow: hidden;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  background: var(--tbs-blue);
}
.tl3-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
    background: radial-gradient(circle at 50% 50%, rgba(140,186,255,0.62) 0%, rgba(120,175,255,0.30) 42%, rgba(0,71,157,0) 80%);
}
.tl3-world {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.tl3-frame {
  position: absolute;
  inset: 0;
  transform: translateZ(var(--tz));
  transform-style: flat;
  pointer-events: none;
  opacity: 0;              visibility: hidden;    }
.tl3-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) translateX(var(--tx)) translateY(var(--ty));
  z-index: 2;              pointer-events: none;
}
.tl3-card-inner {
  width: 16.25rem;
  max-width: min(86vw, 33rem);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 24px 20px;
  border-radius: 24px;
    background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.36) 100%);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
}
.tl3-photo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) translateX(var(--tx)) translateY(var(--ty));
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(33,37,41,0.3);
  object-fit: cover;
  overflow: hidden;
  pointer-events: none;
}
.tl3-card-date {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  color: #fff;
  margin: 0;
}
.tl3-card-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  margin: 0;
}
.tl3-card-label {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
}
.tl3-card-label .material-symbols-rounded {
  font-size: 16px;
  line-height: 1;
  color: rgba(255,255,255,0.6);
}
.tl3-card-label-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255,255,255,0.6);
}
@media (width < 768px) {
    .tl3-card-inner {
    width: min(86vw, 22rem);
    padding: 1rem 1rem .875rem;
    gap: 6px;
        -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(10, 22, 50, 0.78);
  }
  .tl3-card-date {
    font-size: 22px;
    line-height: 28px;
  }
  .tl3-card-desc {
    font-size: 14px;
    line-height: 22px;
  }
  .tl3-photo {
    height: auto;
        object-fit: contain;
    box-shadow: none;
  }
}
.tl3-yr-ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) translateZ(var(--tz));
  font-size: 16vw;
  font-weight: 900;
    color: rgba(255,255,255,1);
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  opacity: 0;
}
@media (width >= 768px) {
  .tl3-yr-ghost { font-size: 19vw; }
}
@media (width >= 1200px) {
  .tl3-yr-ghost { font-size: 22vw; }
}
.tl3-hud {
  position: absolute;
  bottom: 2.25rem;
  left: 0; right: 0;
  padding: 0 clamp(1.5rem,6vw,6rem);
  z-index: 10;
  pointer-events: none;
}
@media (width < 768px) {
  .tl3-hud { bottom: 1.5rem; }
}
.tl3-axis {
  position: relative;
  display: flex;
  align-items: flex-end;          }
.tl3-axis-line {
  position: absolute;
  left: calc(100% / 21 / 2);
  right: calc(100% / 21 / 2);
  bottom: 11px;                      height: 1px;
  background: rgba(255,255,255,.70);
  pointer-events: none;
}
.tl3-axis-prog {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: width .35s ease;
}
.tl3-yp {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  pointer-events: auto;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}
.tl3-yp-label {
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
  color: rgba(255,255,255,.70);
  transition: color .25s, font-size .25s, font-weight .25s;
}
.tl3-yp-pt {                         width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl3-yp-node {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.70);
  transition: width .25s, height .25s, background .25s, border-color .25s;
}
.tl3-yp.is-past .tl3-yp-label { color: #fff; }
.tl3-yp.is-past .tl3-yp-node {
  width: 12px; height: 12px;
  background: #fff;
  border-color: #fff;
}
.tl3-yp.is-active .tl3-yp-label {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.tl3-yp.is-active .tl3-yp-node {
  width: 24px; height: 24px;
  background: rgba(255,255,255,.24);
  border: 2px solid #fff;
}
.tl3-yp.is-active .tl3-yp-node::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: #fff;
}
@media (width < 768px) {
  .tl3-hud { padding: 0; overflow: hidden; }     .tl3-axis {
    width: max-content;
    left: 50%;                                      transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
  }
  .tl3-yp { flex: 0 0 auto; width: 56px; }        .tl3-yp-label { display: block; font-size: 12px; }   }

.ftr {
  position: relative;
  z-index: 1;
  min-height: 780px;                             display: flex;
  flex-direction: column;
  justify-content: flex-end;                     padding: 2.25rem;                                background: transparent;
}
.ftr-card {
  width: 100%;
  max-width: 1368px;                             margin-inline: auto;
  border-radius: var(--r-lg);
  border: 1px solid #fff;                        display: flex;
  flex-direction: column;                        overflow: hidden;                                background: linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.64) 100%);
  box-shadow: 0 8px 16px 0 rgba(33, 37, 41, 0.12);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.ftr-nav-card {
  display: grid;
  grid-template-columns: 450px 1fr;
  background: var(--tbs-blue);
  border-radius: var(--r-lg);
  padding: 1.875rem 2.5rem;                    }
.ftr-nav { display: flex; flex-direction: column; align-items: flex-start; }
.ftr-nav-link {
  color: #fff;
  font-size: var(--fs-base);
  line-height: 2;                                text-decoration: none;
  transition: padding-left var(--dur-base) var(--ease-out);
}
.ftr-nav-link:hover { padding-left: 16px; color: #fff; }   .ftr-social { display: flex; flex-direction: column; align-items: flex-start; }
.ftr-social-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: #fff;
  font-size: var(--fs-base);
  line-height: 2;
  text-decoration: none;
}
.ftr-social-link .material-symbols-rounded { font-size: 18px; }
.ftr-social-link:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.ftr-brand-card {
    padding: 2.5rem 2.25rem 2.25rem;               display: flex;
  flex-direction: column;
  gap: 1.25rem;                                }
.ftr-logos {
  display: flex;
  align-items: center;
}
.ftr-logos-svg { width: 100%; height: auto; }
.ftr-meta {
  display: flex;
  align-items: flex-end;                         justify-content: space-between;                gap: 1rem;
}
.ftr-copy {
  margin: 0;
  font-size: var(--fs-xs);                       line-height: 1.4;
  color: var(--tbs-blue);
  letter-spacing: .02em;
}
.ftr-top-btn {
  flex: 0 0 auto;
  width: 40px;                                   height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--tbs-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.ftr-top-btn .material-symbols-rounded { font-size: 20px; }
.ftr-top-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-btn); }

@media (width < 1200px) {
  .ftr-nav-card { grid-template-columns: minmax(0, 1fr) auto; }  }
@media (width < 768px) {
  .ftr {
    min-height: 0;
    padding: 5rem 1rem 1rem;                     }
    .ftr-nav-card { grid-template-columns: 1fr auto; gap: 1rem; padding: 1.5rem; }
  .ftr-social { flex-direction: column; gap: 0; align-items: flex-start; }    .ftr-brand-card { padding: 1.5rem; gap: 1.25rem; }
    .ftr-logos-svg { width: 100%; }
    .ftr-meta { align-items: center; }
}

.member-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 22, 40, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.member-modal-overlay.is-open { opacity: 1; visibility: visible; }
.member-modal {
  position: relative;
  width: 100%;
  max-width: 600px;                   max-height: min(672px, 90vh);       display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 26px;                box-shadow: 0 8px 16px rgba(33, 37, 41, .12);
  overflow: hidden;
  transform: translateY(1rem) scale(.98);
  transition: transform .3s ease;
}
.member-modal-overlay.is-open .member-modal { transform: none; }
.member-modal__header {
  position: relative;                  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  min-height: 7.5rem;
  background: linear-gradient(0deg, #E9F1F8 0%, #CEE2FF 100%);  }
.member-modal[data-channel="cts"]        .member-modal__header { background: linear-gradient(0deg, #CFF1D9 0%, #AEC5EB 100%); }
.member-modal[data-channel="hakai"]      .member-modal__header { background: linear-gradient(0deg, #EFF5EB 0%, #D0ECBE 100%); }
.member-modal[data-channel="taigi"]      .member-modal__header { background: linear-gradient(0deg, #F6F1E3 0%, #FCE2B7 80%); }
.member-modal[data-channel="taiwanplus"] .member-modal__header { background: linear-gradient(0deg, #E5EBF8 0%, #B6CDFC 100%); }
.member-modal[data-channel="ptsxs"]      .member-modal__header { background: linear-gradient(0deg, #EBF4F7 0%, #BCECFB 100%); }
.member-modal__logo { max-height: 4rem; max-width: 60%; object-fit: contain; }
.member-modal__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  flex: none;
  width: 2.5rem; height: 2.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--tbs-blue);
  transition: background .2s ease;
}
.member-modal__close:hover { background: #fff; }
.member-modal__close .material-symbols-rounded { font-size: 1.375rem; }
.member-modal__body {
  padding: 2rem 2.5rem 0;             overflow-y: auto;
  flex: 1;
}
.member-modal__title {
  font-size: 2.5rem;                  line-height: 1.2;
  font-weight: 700;
  color: #000;                        margin: 0 0 .5rem;
}
.member-modal__desc {
  font-size: 1rem;                    line-height: 1.5;
  color: var(--fg-soft);
  margin: 0 0 1.5rem;
  white-space: pre-line;            }
.member-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.25rem 1.25rem;       }
.member-modal__nav {
  flex: none;
  width: 2.5rem; height: 2.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(0, 71, 157, .2);
  background: rgba(255, 255, 255, .7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--tbs-blue);
  transition: opacity .2s ease, background .2s ease;
}
.member-modal__nav:hover:not(:disabled) { background: #fff; }
.member-modal__nav:disabled { opacity: .4; cursor: default; }
.member-modal__dots { display: flex; gap: 8px; align-items: center; }
.member-modal__dot {
  width: 8px; height: 8px;
  padding: 0; border: 0;
  border-radius: 999px;
  background: rgba(0, 71, 157, .2);
  cursor: pointer;
  transition: width .3s ease, background .3s ease;
}
.member-modal__dot.is-active { width: 24px; background: var(--tbs-blue); }
body.modal-open { overflow: hidden; }
@media (width < 768px) {
  .member-modal__header { min-height: 6rem; padding: 1.25rem; }
  .member-modal__body { padding: 1.5rem 1.5rem 0; }
  .member-modal__title { font-size: 2rem; }
}

.signup-modal {
  position: relative;
  width: min(600px, calc(100vw - 2rem));
  max-width: 600px;
  max-height: min(94vh, 1040px);
  display: flex;
  flex-direction: column;
  background: var(--card-bg, #EEF3FB);
  border-radius: 32px;
  box-shadow: 0 8px 16px rgba(33, 37, 41, .12);
  overflow: hidden;
  transform: translateY(1rem) scale(.98);
  transition: transform .3s ease;
}
.member-modal-overlay.is-open .signup-modal { transform: none; }

.signup-modal__close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  flex: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: linear-gradient(180deg, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, .6) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 16px rgba(33, 37, 41, .12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #343A40;
  transition: background .2s ease;
}
.signup-modal__close:hover { background: #fff; }
.signup-modal__close .material-symbols-rounded { font-size: 20px; }

.signup-modal__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.signup-modal__media {
  flex: none;
  aspect-ratio: 3 / 2;
  background: var(--acc, #c9ced6);
}
.signup-modal__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.signup-modal__body { padding: 32px; }
.signup-modal__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-bottom: 16px;
}
.signup-modal__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  color: var(--acc, #212529);
  border: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border-radius: 999px;
  padding: 6px 12px 6px 6px;
}
.signup-modal__tag[hidden] { display: none; }
.signup-modal__tag .material-symbols-rounded { font-size: 24px; }
.signup-modal__title {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.signup-modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #212529;
}
.signup-modal__desc {
  font-size: 16px;
  line-height: 24px;
  color: #212529;
  margin: 0;
  white-space: pre-line;
}
.signup-modal__section { display: flex; flex-direction: column; gap: 2px; }
.signup-modal__section-h {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.signup-modal__section-p {
  font-size: 16px;
  line-height: 24px;
  color: #212529;
  margin: 0;
  white-space: pre-line;
}
.signup-modal__schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 8px;
}
.signup-modal__schedule th,
.signup-modal__schedule td {
  border: 0;
  padding: 12px 16px 12px 0;
  text-align: left;
  vertical-align: top;
}
.signup-modal__schedule thead th {
  border-bottom: 1.5px solid color-mix(in srgb, var(--acc, #212529) 40%, transparent);
  padding-bottom: 10px;
  font-weight: 700;
  color: #212529;
  white-space: nowrap;
}
.signup-modal__schedule tbody td { color: #343A40; }            .signup-modal__schedule tbody td:first-child {                    font-weight: 700;
  color: #212529;
  white-space: nowrap;
}

.signup-modal__footer {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg, #EEF3FB);
  border-top: 1px solid color-mix(in srgb, var(--acc, #00449D) 30%, transparent);
}
.signup-modal__footer-meta { display: flex; gap: 8px; }
.signup-modal__meta-col {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}
.signup-modal__meta-col .material-symbols-rounded {
  font-size: 24px;
  color: var(--acc, #00449D);
  flex: none;
}
.signup-modal__meta-text { display: flex; flex-direction: column; min-width: 0; }
.signup-modal__meta-text strong {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--acc, #00449D);
}
.signup-modal__meta-text span {
  font-size: 14px;
  line-height: 22px;
  color: var(--acc, #00449D);
}
.signup-modal__buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.signup-modal__cta {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background: var(--acc, #429554);
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  border: 0;
  border-radius: 999px;
  padding: 16px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: filter .2s ease;
}
.signup-modal__cta:hover { filter: brightness(1.08); color: #fff; }
.signup-modal__cta .material-symbols-rounded { font-size: 24px; }

.od-card[role="button"] { cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.od-card[role="button"]:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(33, 37, 41, .1); }
.od-card[role="button"]:focus-visible { outline: 2px solid var(--acc, #212529); outline-offset: 3px; }

@media (width < 768px) {
  .signup-modal__body { padding: 24px; }
  .signup-modal__title { font-size: 24px; line-height: 30px; }
}
@media (width < 480px) {
    .signup-modal__footer-meta { flex-direction: column; gap: 12px; }
}

.openday {
    position: relative;
    --od-sticky-top: 96px;               background: linear-gradient(180deg,
        #EEF1DA 0%,
        #EEF1DA calc(100% - 85vh),
        rgba(238, 241, 218, 0) 100%);
    color: #212529;                      overflow: clip;                  }
@media (width < 1200px) { .openday { --od-sticky-top: 84px; } }
@media (width < 768px)  { .openday { --od-sticky-top: 72px; } }

.od-kv {
    position: relative;
    height: 100svh;
    overflow: hidden;                    }
.od-kv-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.od-kv-state {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.od-kv-state--2 { opacity: 0; }      
.od-hill {
    position: absolute;
    border-radius: 50%;
}
.od-hill--l {
    width: clamp(600px, 77vw, 1113px);
    aspect-ratio: 1;
    background: #6BAB41;
    left: max(-276px, -19vw);
    bottom: min(-25vh, -180px);      }
.od-hill--r {
    width: clamp(520px, 66vw, 958px);
    aspect-ratio: 1;
    background: #159E50;
    right: max(-320px, -22vw);
    bottom: min(-32vh, -230px);
}
.od-sun {
    position: absolute;
    top: 11%;
    left: clamp(8px, 1vw, 16px);
    width: clamp(140px, 20vw, 292px);     height: auto;
}
.od-cloud { position: absolute; height: auto; }
.od-cloud--green  { width: clamp(60px, 7.8vw, 112px); right: 18%; top: 14%; }  .od-cloud--yellow { width: clamp(120px, 15.4vw, 222px); right: 5%;  top: 20%; } 
.od-main-cloud {
    position: absolute;
    width: min(79vw, 1048px);
    aspect-ratio: 1048 / 651;            left: 50%; top: 50%;
    translate: -50% -50%;
}
.od-kv-fg {
    position: relative;
    width: min(79vw, 1048px);
    aspect-ratio: 1048 / 651;
}
.od-kv-title {
    position: absolute;
    left: 18.6%; top: 15.8%; width: 62.8%; height: auto;   }
.od-kv-card {
    position: absolute;
    width: 32.9%; height: auto;                            }
.od-kv-card--cts { left: 15.3%; top: 66.3%; }              .od-kv-card--pts { left: 51.9%; top: 71.5%; }              @media (width < 768px) {
    .od-cloud--green { display: none; }   }
.od-intro-text {
    position: relative;
    z-index: 2;                          width: min(86vw, 760px);             font-size: 20px;                     line-height: 1.6;
    color: #212529;
    margin: 0;
}
@media (width < 768px) {
    .od-intro-text { font-size: 14px; }
        .od-main-cloud { width: min(118vw, 760px); top: 50%; }
}

.od-container {
    position: relative;
    z-index: 1;
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 0 12px 96px;
}
@media (width < 768px) { .od-container { padding: 0 16px 64px; } }

.od-panel-card {
    max-width: 1296px;                       margin: 0 auto;
    background: #fff;
    border-radius: var(--r-xl);              padding: 40px 32px;                      box-shadow: var(--shadow-md);        }
.od-panel-card + .od-panel-card { margin-top: 40px; }   @media (width < 768px) {
    .od-panel-card {
        padding: 24px 16px;                      border-radius: 28px;                 }
    .od-panel-card + .od-panel-card { margin-top: 24px; }
}

.od-section-head {
    max-width: 1296px;
    margin: 0 auto;
    padding: 0 8px 16px;                  }
.od-panel-card + .od-section-head { margin-top: clamp(40px, 5vw, 72px); }
@media (width < 768px) {
    .od-container > .od-section-head:first-child { margin-top: 56px; }
}
.od-h {
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 48px);      line-height: var(--lh-tight);
    color: #212529;
    margin: 0 0 8px;
}
.od-sub {
    font-size: clamp(16px, 1.4vw, 18px);      color: #212529;
    margin: 0;
}

.od-gift { padding-top: 0; }   .od-gift-layout {
    display: grid;
    grid-template-columns: 370px 1fr;       gap: 16px;
    align-items: start;
}
.od-gift-tabs {
    background: #fff;
    border-radius: var(--r-lg);              padding: 32px;                           display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: start;                   }
.od-gift-tab {
    appearance: none;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;                                padding: 12px;                           border-radius: var(--r-pill);            font-family: inherit;
    font-size: 16px;                         line-height: 1.25;
    color: #656828;                          cursor: pointer;
    text-align: left;
    transition: background-color .2s ease, color .2s ease;
}
.od-gift-tab .material-symbols-rounded { font-size: 24px; }  .od-gift-tab:hover { background: rgba(238, 240, 217, .55); }
.od-gift-tab.is-active {
    background: #EEF0D9;                     color: #212529;
    }
.od-gift-tab:focus-visible { outline: 2px solid #656828; outline-offset: 2px; }
.od-gift-panels { display: flex; flex-direction: column; gap: 56px; }
.od-gift-panel { scroll-margin-top: calc(var(--od-sticky-top, 96px) + 24px); }

.od-gift-section { margin-bottom: clamp(48px, 6vw, 96px); }   .od-gift-head { margin-bottom: clamp(24px, 3vw, 40px); }      @media (width >= 768px) {
  .od-gift-tabs {
    position: sticky;
    top: calc(var(--od-sticky-top, 96px) + 24px);     }
    .od-gift-card { padding-left: 8px; padding-right: 8px; }
}

.od-panel-title { font-size: clamp(24px, 2.3vw, 32px); font-weight: 700; color: #212529; margin: 4px 0 8px; }
.od-panel-desc  { font-size: 16px; color: #000000; margin: 0 0 2px; }  .od-panel-note  { font-size: 12px; color: #6C757D; margin: 0 0 20px; }  
.od-prize-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);       gap: 16px;
}
.od-prize {
    border-radius: var(--r-lg);                 overflow: hidden;
    background: var(--prz-band);                 display: flex;
    flex-direction: column;                  }
.od-prize--big { grid-column: span 3; }      .od-prize--mid { grid-column: span 2; }      .od-prize-others {
    grid-column: 1 / -1;
    background: #F8F9FA;
    border-radius: var(--r-lg);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 20px;                          }
.od-other {
    flex: 0 1 calc(25% - 16px);                  max-width: 198px;
    display: flex;
    flex-direction: column;
    gap: 8px;                                    min-width: 0;
}
.od-other .od-photo { width: 100%; }         .od-prize-rank {
        color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;                          padding: 8px 24px;                       margin: 0;
}
.od-prize-body {
    background: var(--prz-bg);
    border-radius: var(--r-lg);              padding: 20px;
    flex: 1;                             }
.od-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #212529;
    margin: 12px 0 4px;
}
.od-brand-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    object-fit: cover;
    flex: 0 0 auto;
    background: #fff;
}
.od-prize-name { font-size: 16px; font-weight: 700; line-height: 1.3; color: #212529; margin: 0; }  .od-prize-name--sm { font-size: 16px; }  .od-prize-name--lg { font-size: 24px; }  .od-prize-paren { display: block; font-size: .72em; font-weight: 400; }  .od-prize-foot { font-size: 12px; font-weight: 400; line-height: 1.5; color: #343A40; margin: 4px 0 0; }  
.od-minigrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);     gap: 18px;
    align-items: start;                  }
.od-mini {
    display: flex;
    flex-direction: column;
    min-width: 0;                        }
.od-mini .od-photo { width: 100%; }      .od-minigrid--loose { grid-template-columns: repeat(auto-fit, minmax(200px, 280px)); }
.od-mini--center { grid-column: 1 / -1; justify-self: center; width: min(100%, 280px); }
.od-minigrid--sm { grid-template-columns: repeat(auto-fit, minmax(180px, 198px)); justify-content: center; }  .od-cardwrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 20px;
}
.od-cardwrap .od-mini { flex: 0 1 calc(25% - 16px); max-width: 198px; }  .od-pool {
    background: var(--pool-bg, #fff);        border-radius: 32px;                     padding: 20px;                       }

.od-mini--row {
    display: grid;
    grid-template-columns: minmax(120px, 200px) 1fr;
    align-items: start;                      gap: 16px;                            }
.od-mini--row .od-photo { aspect-ratio: 1 / 1; background: transparent; }
.od-mini-text { display: flex; flex-direction: column; gap: 8px; }  .od-mini-text .od-brand { margin-top: 0; margin-bottom: 0; }

.od-stage-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.od-donate-row {
    display: grid;
    grid-template-columns: 1fr 300px;        align-items: start;                      gap: 16px;
}
img.od-photo--banner {
    aspect-ratio: 3 / 2;                     border-radius: var(--r-xs);              background: transparent;
}

.od-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c9ced6;
    border-radius: var(--r-md);
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.od-photo span { color: #fff; font-size: 13px; letter-spacing: .04em; }
img.od-photo { width: 100%; height: auto; object-fit: cover; background: #fff; }
.od-mini .od-photo, .od-mini--row .od-photo { background: #fff; }
.od-photo--prize { aspect-ratio: 1 / 1; background: #fff; border-radius: var(--r-xs); }  .od-photo--prize span { color: #aab; }
.od-photo--card { border-radius: 0; aspect-ratio: 296 / 197; } .od-photo--tall { aspect-ratio: 16 / 9; }

.od-notes { margin-top: 40px; }
.od-notes-title { font-size: 14px; color: #6C757D; margin: 0 0 4px; }
.od-notes ol {
    font-size: 13px;
    line-height: 1.7;
    color: #6C757D;
    padding-left: 1.25em;
    margin: 0;
}

.od-signup {
    padding-top: 0;
    margin: -40px -32px -40px;        }
@media (width < 768px) {
    .od-signup { margin: -24px -16px; } }
.od-session { position: relative; }
.od-session + .od-session { margin-top: 0; }

.od-session-head {
    position: sticky;
    top: var(--od-sticky-top, 96px);      z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px 16px;              background: #fff;
    border-bottom: 1px solid #CED4DA;         border-top-left-radius: var(--r-xl);
    border-top-right-radius: var(--r-xl);
    box-shadow: 0 6px 12px rgba(33, 37, 41, .04);  }
.od-session-logos {
    flex: 0 0 108px;                      display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.od-session-logos img { max-width: 86px; max-height: 56px; width: auto; height: auto; object-fit: contain; }
.od-session-info { flex: 1; min-width: 0; }
.od-session-date { margin: 0; font-size: 20px; line-height: 1; color: #212529; }
.od-session-date strong { font-size: 24px; line-height: 1.16; font-weight: 700; margin-right: 8px; }
.od-session-addr { margin: 4px 0 0; font-size: 16px; line-height: 1; color: #212529; }
.od-session-cards { padding: 16px 32px 32px; }
@media (width < 768px) {
    .od-session-head { padding: 16px; gap: 12px; border-top-left-radius: 28px; border-top-right-radius: 28px; }
    .od-session-logos { flex-basis: 64px; }
    .od-session-logos img { max-width: 64px; max-height: 40px; }
    .od-session-cards { padding: 12px 16px 24px; }
}

.od-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);      gap: 16px;
}
.od-card {
    background: var(--card-bg);
    border-radius: 32px;                     overflow: hidden;
    display: flex;
    flex-direction: column;
}
.od-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    flex: 1;
}
.od-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    color: var(--acc);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--r-pill);
    padding: 4px 12px;
    margin-top: -28px;                    position: relative;
    z-index: 1;
}
.od-tag .material-symbols-rounded { font-size: 16px; }
.od-card-title { font-size: 16px; font-weight: 700; color: #000000; line-height: 1.5; margin: 4px 0 0; }  .od-card-venue { font-size: 14px; color: var(--acc); margin: 0; }  .od-card-venue strong { font-weight: 700; }
.od-btn {
    margin-top: auto;                     align-self: stretch;
    text-align: center;
    background: var(--acc);
    color: #fff;
    font-size: 16px;
    line-height: 16px;                    border-radius: var(--r-pill);
    padding: 12px 16px;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .05);       transition: filter .2s ease;
}
.od-btn:hover { filter: brightness(1.08); color: #fff; }
.od-btn-row { display: flex; gap: 8px; align-self: stretch; margin-top: auto; }
.od-btn-row .od-btn { flex: 1; margin-top: 0; }

@media (width < 1200px) {
    .od-grid { grid-template-columns: repeat(3, 1fr); }
    .od-minigrid { grid-template-columns: repeat(3, 1fr); }
}
@media (width < 768px) {
    .od-gift-layout { grid-template-columns: 1fr; }         .od-gift-tabs {
        position: sticky;                                        top: var(--od-sticky-top, 72px);
        z-index: 5;
        flex-direction: row;
        overflow-x: auto;
        padding: 8px;
        gap: 4px;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 6px 12px -8px rgba(33, 37, 41, .25);
    }
    .od-gift-tab { white-space: nowrap; padding: 10px 14px; font-size: 14px; }
    .od-prize-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
        .od-prize--big, .od-prize--mid { grid-column: span 1; }
    .od-prize-grid > .od-prize:first-child { grid-column: span 2; }
        .od-prize-name--lg { font-size: 16px; }
    .od-prize-grid > .od-prize:first-child .od-prize-name { font-size: 24px; }
    .od-minigrid, .od-minigrid--loose { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .od-cardwrap .od-mini, .od-other { flex-basis: calc(50% - 10px); max-width: none; }      .od-donate-row { grid-template-columns: 1fr; }          .od-stage-row { grid-template-columns: 1fr 1fr; gap: 12px; }          .od-mini--row { grid-template-columns: 1fr; gap: 8px; }
        .od-minigrid--sm { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 12px; }
    .od-minigrid--sm .od-mini { flex: 0 1 calc(50% - 6px); }      .od-pool { padding: 16px; }
    .od-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .od-session-date strong { display: block; }
}
@media (width < 480px) {
    .od-grid { grid-template-columns: 1fr; }
}

.sympo-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-4);                        text-align: center;
}
.sympo-hero-title {                          margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-5xl);                line-height: 96px;
    letter-spacing: .02em;
    color: var(--tbs-blue);
        white-space: nowrap;
}
.sympo-hero-sub {                            margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-2xl);                line-height: 34px;
    color: var(--tbs-blue);
    white-space: nowrap;                 }
.sympo-br-xs { display: none; }

.sympo-card {
    width: min(1144px, 100%);                margin-inline: auto;
    display: flex;
    gap: var(--sp-6);                        padding: var(--sp-8);                    border-radius: 40px;                         background: linear-gradient(180deg, var(--glass-top) 0%, var(--glass-bot) 100%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);            backdrop-filter: blur(var(--blur-lg));            -webkit-backdrop-filter: blur(var(--blur-lg));
}

.sympo-main {
    flex: 1 1 0;
    min-width: 0;                            display: flex;
    flex-direction: column;
    gap: var(--sp-5);                    }
.sympo-heading { display: flex; flex-direction: column; gap: var(--sp-1); } .sympo-eyebrow {                             font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-lg);                 line-height: 24px;
    color: var(--tbs-blue);
}
.sympo-title {                               font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: var(--tbs-blue);
}
.sympo-desc {                                font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-lg);                 line-height: 2;                          color: #000;
}

.sympo-meta {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);                    }
.sympo-field { display: flex; flex-direction: column; }
.sympo-label {                               font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-sm);                 line-height: 22px;
    color: #212529;
}
.sympo-value {                               font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-lg);                 line-height: 24px;
    color: var(--tbs-blue);
}
.sympo-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);                        padding: 10px var(--sp-4);               border: 1px solid var(--tbs-blue);
    border-radius: var(--r-pill);
    background: transparent;
    font-family: var(--font-body);
    font-size: var(--fs-base);               color: var(--tbs-blue);
    text-decoration: none;
    transition: background var(--dur-base) var(--ease-out),
                color var(--dur-base) var(--ease-out);
}
.sympo-btn .material-symbols-rounded { font-size: 24px; line-height: 1; }
.sympo-btn:hover,
.sympo-btn:focus-visible {                   background: var(--tbs-blue);
    color: #fff;
}

@media (width < 768px) {
    .sympo-br-xs { display: inline; }    
        .sympo-hero { gap: var(--sp-3); }        .sympo-hero-title { font-size: 44px; line-height: 44px; }
    .sympo-hero-sub   { font-size: 22px; line-height: 1.25; }

        .sympo-card {
        flex-direction: column;
        gap: var(--sp-4);                        padding: var(--sp-5);                    border-radius: 32px;                 }
    .sympo-main   { gap: var(--sp-4); }      .sympo-eyebrow { font-size: var(--fs-base); line-height: 16px; }       .sympo-title  { font-size: var(--fs-xl); line-height: 24px; }          .sympo-desc   { font-size: var(--fs-base); line-height: 24px; }        .sympo-value  { font-size: var(--fs-base); line-height: 16px; }        .sympo-btn    { align-self: stretch; justify-content: center; }    }

.pub-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5625rem;                 }
.pub-cover {
        appearance: none;
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    width: min(401px, 64vw);            aspect-ratio: 401 / 508;            cursor: pointer;
        perspective: 900px;
    perspective-origin: 50% 50%;
}
.pub-cover:focus-visible {
    outline: 3px solid var(--tbs-blue);
    outline-offset: 4px;
    border-radius: 18px;
}
.pub-cover-inner {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;                    box-shadow: 0 8px 16px rgba(33, 37, 41, .12);
    border: 1px solid rgba(0, 0, 0, .1);
    overflow: hidden;                   transform-style: preserve-3d;
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}
@media (prefers-reduced-motion: reduce) {
    .pub-cover-inner { transition: none; }
}
.pub-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}
.pub-download {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    height: 2.5rem;                     padding: 0 1rem;                    border: 1px solid var(--tbs-blue);       border-radius: var(--r-pill);
    color: var(--tbs-blue);
    font-size: var(--fs-base);
    font-weight: 400;                   text-decoration: none;
    transition: background-color var(--dur-base) var(--ease-out),
                color var(--dur-base) var(--ease-out);
}
.pub-download .material-symbols-rounded { font-size: 1.5rem; } .pub-download:hover,
.pub-download:focus-visible {
    background: var(--tbs-blue);
    color: var(--white);
}
@media (width < 768px) {
        .pub-cover { width: min(320px, 72vw); }
}

.s6f {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;                padding: 96px 12px 32px;          scroll-margin-top: 6rem;      }

.s6f-card {
    width: min(1144px, 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;        min-height: 444px;                border-radius: 40px;
    border: 1px solid var(--glass-border);                background: linear-gradient(180deg, var(--glass-top) 0%, var(--glass-bot) 100%);
    box-shadow: var(--shadow-lg);                         -webkit-backdrop-filter: blur(var(--blur-lg));        backdrop-filter: blur(var(--blur-lg));
    overflow: hidden;
}

.s6f-wall {
    height: 342px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;                        overflow: hidden;                 -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
}

.s6f-row {
    display: flex;
    width: max-content;
    height: 82px;
    flex: none;
}
.s6f--visible .s6f-row { will-change: transform; }
.s6f-track {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 16px 0 0;               padding: 0;
    list-style: none;
    flex: none;
}

.s6f-logo {
    flex: none;
    width: 163px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.s6f-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes s6f-scroll-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes s6f-scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.s6f-row--left  { animation: s6f-scroll-left  40s linear infinite; animation-play-state: paused; }
.s6f-row--right { animation: s6f-scroll-right 40s linear infinite; animation-play-state: paused; }
.s6f--visible .s6f-row--left,
.s6f--visible .s6f-row--right { animation-play-state: running; }

.s6f-label-wrap {
    display: flex;
    justify-content: center;
    padding: 16px 0 32px;
}
.s6f-label {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;                       border: 1px solid var(--tbs-blue);        border-radius: var(--r-pill);             font-family: var(--font-display);
    font-weight: 400;
    font-size: var(--fs-base);                line-height: 1;
    color: var(--tbs-blue);
    background: transparent;
    gap: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}
.s6f-label:hover,
.s6f-label:focus-visible {
    background: var(--tbs-blue);
    color: #fff;
}
.s6f-label-arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform .2s ease;
}
.s6f-label:hover .s6f-label-arrow,
.s6f-label:focus-visible .s6f-label-arrow {
    transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
    .s6f-row { animation: none; }
}

@media (width < 768px) {
    .s6f { padding: 88px 12px 24px; }
    .s6f-card { border-radius: 24px; }
    .s6f-wall {
        height: 270px;
        gap: 18px;
                -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    }
    .s6f-row { height: 64px; }
    .s6f-logo { width: 128px; height: 64px; }
        .s6f-row--left  { animation-duration: 28s; }
    .s6f-row--right { animation-duration: 28s; }
}
