:root {
    --bg: #0b0b0d;
    --panel: #121216;
    --panel2: #08080a;
    --text: #f5f5f5;
    --muted: #a4a4ad;
    --pink: #CD3278;
    --border: rgba(205, 50, 120, .55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--site-font-family, Arial, "Microsoft YaHei", sans-serif);
    color: var(--text);
    background: #111113;
    overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 64px;
    display: flex;
    align-items: center;
    padding: 0 7vw;
    background: rgba(13, 13, 15, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.logo {
    display: flex;
    align-items: center;
    margin-right: 40px;
    width: 116px;
    height: 38px;
    flex: 0 0 auto;
    overflow: hidden;
}
.logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.nav > a, .nav-item > a {
    display: block;
    padding: 22px 8px;
    font-size: 15px;
    color: #eee;
    white-space: nowrap;
}
.nav > a:hover, .nav-item > a:hover { color: var(--pink); }
.nav-item { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 62px;
    min-width: 150px;
    padding: 8px 0;
    background: #151518;
    border: 1px solid rgba(255,255,255,.08);
}
.dropdown a {
    display: block;
    padding: 10px 16px;
    color: #ddd;
    font-size: 14px;
}
.dropdown a:hover { color: var(--pink); background: rgba(255,255,255,.05); }
.nav-item:hover .dropdown { display: block; }
.menu-btn {
    display: none;
    margin-left: auto;
    color: white;
    background: none;
    border: 1px solid var(--border);
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 22px;
}

.hero, .page-hero {
    position: relative;
    overflow: hidden;
    min-height: 740px;
    padding: 90px 7vw 60px;
    background:
        radial-gradient(circle at 70% 20%, rgba(205,50,120,.12), transparent 26%),
        linear-gradient(180deg, #101012, #040405);
}
.page-hero {
    min-height: 430px;
    text-align: center;
}
.hero {
    min-height: 560px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}
.hero-bg:before,
.hero-bg:after {
    content: "";
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    background: white;
    opacity: .7;
    animation: twinkling 3s ease-in-out infinite;
}
.hero-bg:before {
    left: 11%;
    top: 18%;
    width: 4px;
    height: 4px;
    box-shadow:
        72px 120px 0 -1px rgba(255,255,255,.65),
        210px 42px 0 0 rgba(255,255,255,.55),
        390px 210px 0 -1px rgba(255,255,255,.62),
        620px 88px 0 -1px rgba(255,255,255,.70);
}
.hero-bg:after {
    right: 9%;
    top: 12%;
    width: 5px;
    height: 5px;
    animation-duration: 4.5s;
    box-shadow:
        -90px 72px 0 -1px rgba(255,255,255,.65),
        -250px 190px 0 -2px rgba(255,255,255,.72),
        -420px 64px 0 -1px rgba(255,255,255,.58),
        -560px 240px 0 -2px rgba(255,255,255,.66);
}
.eyebrow {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    color: white;
    font-size: 15px;
    letter-spacing: 0;
    text-align: center;
}
.hero h1, .page-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--pink);
    font-size: 88px;
    line-height: .95;
    text-align: center;
    letter-spacing: 0;
}
.hero-desc {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 28px auto;
    text-align: center;
    color: #c9c9cf;
}
.search-box {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(420px, 90%);
    margin: 38px auto 60px;
    background: white;
    border-radius: 2px;
    overflow: hidden;
}
.search-box input {
    flex: 1;
    border: 0;
    padding: 15px 18px;
    outline: none;
}
.search-box button {
    width: 52px;
    border: 0;
    cursor: pointer;
    background: white;
    font-size: 24px;
}

.dot-globe {
    position: absolute;
    right: 8vw;
    top: 80px;
    width: 430px;
    height: 430px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    opacity: .74;
}
.dot-globe canvas {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
}
.globe-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    opacity: .26;
    pointer-events: none;
}
.page-hero .dot-globe {
    top: 36px;
    width: 340px;
    height: 340px;
}
@keyframes twinkling {
    0%, 100% { opacity: .15; transform: scale(.8); }
    50% { opacity: .9; transform: scale(1.15); }
}

.hero-visual-img {
    position: absolute;
    right: 8vw;
    top: 80px;
    width: min(430px, 42vw);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(205,50,120,.45);
    box-shadow: inset -35px -25px 60px #000, 0 0 50px rgba(205,50,120,.22);
}

.hero-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}
.info-card, .news-card, .content-card, .side-card {
    background: rgba(16,16,19,.82);
    border: 1px solid var(--border);
}
.info-card {
    min-height: 126px;
    padding: 22px;
}
.info-card span, .section-label {
    display: inline-block;
    padding: 4px 9px;
    color: var(--pink);
    border: 1px solid var(--border);
    font-size: 14px;
}
.info-card p {
    color: #c9c9cf;
    font-size: 14px;
    line-height: 1.8;
}

.people-line {
    position: relative;
    z-index: 1;
    height: 250px;
    max-width: 850px;
    margin: 55px auto 0;
    border-bottom: 3px solid rgba(205,50,120,.5);
}
.person {
    position: absolute;
    bottom: 0;
    width: 90px;
    height: 190px;
    border: 3px solid var(--pink);
    border-top: 0;
    opacity: .75;
}
.person:before {
    content: "";
    position: absolute;
    left: 22px;
    top: -50px;
    width: 45px;
    height: 45px;
    border: 3px solid var(--pink);
    border-radius: 50%;
}
.person.left { left: 5%; }
.person.right { right: 10%; }
.desk {
    position: absolute;
    left: 34%;
    bottom: 20px;
    width: 260px;
    height: 80px;
    border: 3px solid var(--pink);
    opacity: .75;
}

.circle-nav {
    padding: 36px 7vw 60px;
    background: #030304;
    text-align: center;
}
.circle-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 28px;
}
.circle-list a {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    padding: 12px;
    color: white;
    background: #CD3278 !important;
    font-size: 13px;
    transition: .2s;
}
.circle-list a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(205,50,120,.24);
}

.about-section {
    padding: 80px 7vw;
    background: var(--bg);
}
.about-section > div {
    max-width: 760px;
}
.about-section .eyebrow, .news-section .eyebrow { text-align: left; }
.about-section h2, .news-section h2, .content-card h1, .content-card h2 {
    color: var(--pink);
    letter-spacing: 0;
}
.about-section p { color: #cacad0; line-height: 1.9; }
.stage-img {
    min-height: 360px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(rgba(205,50,120,.15), rgba(0,0,0,.15)),
        radial-gradient(circle at 50% 0, rgba(255,255,255,.35), transparent 12%),
        linear-gradient(180deg, #252026, #09090a);
}
.stage-img.uploaded-visual {
    display: block;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #09090a;
}
.home-about-visual {
    aspect-ratio: 16 / 9;
    object-position: center;
    border-color: rgba(205,50,120,.34);
}
.btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 26px;
    border: 1px solid var(--border);
    color: var(--pink);
}

.news-section {
    padding: 80px 7vw;
    background: #0a0a0c;
}
.news-section h2 {
    font-size: 64px;
    text-align: center;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.news-card {
    display: flex;
    min-height: 210px;
    padding: 26px;
    flex-direction: column;
    justify-content: space-between;
    transition: .2s;
}
.news-card:hover {
    transform: translateY(-4px);
    background: rgba(205,50,120,.08);
}
.news-card h3 { color: var(--pink); margin-top: 0; }
.news-card p, .body-text, .summary { color: #c8c8ce; line-height: 1.9; }
.news-card time { color: #eee; font-size: 13px; }
.news-card img, .main-img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 18px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: stretch;
    padding: 70px 7vw;
    background: #070708;
}
.content-layout.single { grid-template-columns: minmax(0, 900px); justify-content: center; }
.content-card {
    min-height: 300px;
    padding: 42px;
}
.side-card {
    min-height: 300px;
    padding: 26px;
}
.side-card h3 { color: var(--pink); margin-top: 0; }
.side-card a, .result-link {
    display: block;
    margin: 12px 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #ddd;
}
.side-card a:hover, .result-link:hover { color: var(--pink); }
.inner-search { margin-left: 0; }

.about-suite-hero {
    width: 100%;
    min-height: 365px;
    margin: 0 auto;
    padding-bottom: 32px;
    box-shadow: 0 0 0 100vmax #050506;
}
.about-suite-hero .globe-video {
    left: 0;
    width: 100%;
}
.about-suite-hero h1 {
    font-size: 66px;
}
.about-suite-hero .dot-globe {
    top: 28px;
    width: 310px;
    height: 310px;
}
.about-suite-page {
    position: relative;
    padding: 54px 7vw 78px;
    background:
        radial-gradient(circle at 18% 34%, rgba(205,50,120,.13), transparent 22%),
        linear-gradient(180deg, #050506, #0b0b0d 42%, #050506);
    overflow: hidden;
}
.about-suite-page:before {
    content: "";
    position: absolute;
    left: -8vw;
    bottom: 8%;
    width: 64vw;
    height: 34vw;
    opacity: .26;
    background:
        radial-gradient(circle, rgba(255,255,255,.34) 1px, transparent 2px) 0 0 / 15px 15px;
    transform: rotate(-8deg);
    mask-image: radial-gradient(ellipse at center, #000 0 42%, transparent 72%);
    pointer-events: none;
}
.about-stage-media {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    height: auto;
    aspect-ratio: 16 / 7;
    margin: 0 auto 54px;
    overflow: hidden;
    background: #050506;
    border: 1px solid rgba(205,50,120,.28);
}
.about-stage-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 46%, rgba(5,5,6,.90) 100%),
        linear-gradient(90deg, rgba(0,0,0,.42), transparent 28%, transparent 72%, rgba(0,0,0,.42));
    pointer-events: none;
}
.about-stage-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) contrast(1.06);
}
.about-suite-section {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 56px 0 70px;
    scroll-margin-top: 116px;
}
.about-intro-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, .86fr) minmax(0, 1fr);
    gap: 34px 9vw;
    align-items: center;
    min-height: 560px;
    overflow: hidden;
}
.about-intro-section:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    opacity: .45;
    background: radial-gradient(circle, rgba(255,255,255,.52) 1px, transparent 3px) 0 0 / 17px 17px;
    mask-image: linear-gradient(180deg, transparent 0, #000 20%, #000 78%, transparent 100%);
    pointer-events: none;
}
.about-intro-heading {
    position: relative;
    z-index: 1;
    grid-column: 1;
    align-self: start;
}
.about-intro-heading h2 {
    margin: 0;
    color: var(--pink);
    font-size: 38px;
    line-height: 1;
}
.about-intro-heading h2 small {
    margin-left: 8px;
    color: #d6d6db;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0;
    vertical-align: middle;
    text-shadow:
        1px 0 var(--pink),
        -1px 0 var(--pink),
        0 1px var(--pink),
        0 -1px var(--pink);
}
.about-intro-heading p {
    margin: 12px 0 0;
    color: #f2f2f4;
    font-size: 14px;
    line-height: 1;
}
.about-intro-number {
    position: relative;
    z-index: 1;
    grid-column: 2;
    align-self: start;
    justify-self: end;
    color: var(--pink);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}
.about-intro-section .about-orbit {
    grid-column: 1;
    grid-row: 2;
}
.about-intro-section .about-suite-block,
.about-intro-copy {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    z-index: 1;
    align-self: center;
}
.about-suite-section .section-label {
    margin: 0 0 10px;
    color: var(--pink);
    font-size: 14px;
}
.about-suite-section h2 {
    margin: 0;
    color: var(--pink);
    font-size: 34px;
    line-height: 1.12;
}
.about-suite-section h2 small {
    display: inline-block;
    margin-left: 22px;
    color: var(--pink);
    font-size: 24px;
}
.about-section-heading {
    margin-bottom: 34px;
}
.about-section-heading.right {
    max-width: 460px;
    margin-left: auto;
    text-align: right;
}
.about-section-heading span {
    display: block;
    color: var(--pink);
    font-size: 30px;
    font-weight: 700;
}
.about-section-heading p {
    margin: 5px 0 0;
    color: #b9b9c0;
    font-size: 12px;
    letter-spacing: 0;
}
.about-history-section {
    position: relative;
    overflow: hidden;
}
.about-history-section:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 46%;
    opacity: .34;
    background: radial-gradient(circle, rgba(255,255,255,.50) 1px, transparent 3px) 0 0 / 17px 17px;
    mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 72%, transparent 100%);
    pointer-events: none;
}
.history-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 88px;
}
.history-heading span {
    font-size: 56px;
    line-height: .9;
}
.history-heading h2 {
    margin-top: 16px;
    font-size: 38px;
    line-height: 1;
}
.history-heading h2 small {
    margin-left: 8px;
    color: #d6d6db;
    font-size: 15px;
    font-style: italic;
    letter-spacing: 0;
    vertical-align: middle;
    text-shadow:
        1px 0 var(--pink),
        -1px 0 var(--pink),
        0 1px var(--pink),
        0 -1px var(--pink);
}
.history-heading p {
    margin-top: 12px;
    color: #f2f2f4;
    font-size: 14px;
}
.history-milestones {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 34px;
}
.history-milestones article {
    display: grid;
    grid-template-columns: auto minmax(60px, 1fr);
    gap: 10px 14px;
    align-items: center;
    color: #d2d2d8;
    font-size: 13px;
    line-height: 1.85;
}
.history-milestones b {
    display: block;
    color: var(--pink);
    font-size: 24px;
    line-height: 1;
}
.history-milestones article:before {
    content: "";
    display: block;
    height: 1px;
    background: rgba(205,50,120,.72);
}
.history-milestones p {
    grid-column: 1 / -1;
    margin: 10px 0 0;
}
.about-brand-section {
    position: relative;
    overflow: hidden;
}
.about-brand-section:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 34%;
    height: 54%;
    opacity: .34;
    background: radial-gradient(circle, rgba(255,255,255,.54) 1px, transparent 3px) 0 0 / 17px 17px;
    mask-image: radial-gradient(ellipse at 50% 56%, #000 0 42%, transparent 76%);
    pointer-events: none;
}
.brand-matrix-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1fr);
    gap: 8vw;
    align-items: center;
    margin-bottom: 62px;
}
.brand-heading {
    max-width: 620px;
    margin: 0 0 0 auto;
    text-align: right;
}
.brand-heading span {
    font-size: 46px;
    line-height: 1;
}
.brand-heading h2 {
    margin-top: 18px;
    font-size: 36px;
}
.brand-heading h2 small {
    margin-left: 8px;
    color: #d6d6db;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0;
    vertical-align: middle;
    text-shadow:
        1px 0 var(--pink),
        -1px 0 var(--pink),
        0 1px var(--pink),
        0 -1px var(--pink);
}
.brand-heading p {
    margin-top: 8px;
    color: #f2f2f4;
    font-size: 13px;
}
.brand-heading em {
    display: block;
    margin-top: 26px;
    color: #d8d8de;
    font-size: 13px;
    font-style: normal;
    line-height: 1.85;
}
.brand-shell {
    display: block;
    width: min(520px, 44vw);
    height: auto;
    aspect-ratio: 640 / 620;
    margin: 0;
    opacity: .88;
}
.brand-copy-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 76px 100px;
}
.brand-copy-grid article {
    min-width: 0;
    max-width: 620px;
    color: #f0f0f4;
    font-size: 14px;
    line-height: 2;
}
.brand-copy-grid article.wide {
    grid-column: 1 / -1;
    max-width: none;
}
.brand-copy-grid h3 {
    margin: 0 0 24px;
    color: var(--pink);
    font-size: 24px;
    line-height: 1.2;
}
.brand-copy-grid p {
    margin: 0;
    overflow-wrap: anywhere;
}
.brand-logo-text {
    display: block;
    margin-top: 28px;
    color: var(--pink);
    line-height: 1;
}
.brand-logo-cn {
    font-size: 38px;
    font-style: italic;
}
.brand-logo-juneviral {
    font-size: 42px;
    font-family: "Trebuchet MS", Arial, sans-serif;
    letter-spacing: 2px;
}
.about-artist-section {
    padding-top: 80px;
}
.artist-heading {
    margin-bottom: 82px;
}
.artist-heading span {
    font-size: 60px;
    line-height: .9;
}
.artist-heading h2 {
    margin-top: 18px;
    font-size: 42px;
    line-height: 1;
}
.artist-heading h2 small {
    margin-left: 10px;
    color: #d6d6db;
    font-size: 16px;
    font-style: italic;
    letter-spacing: 0;
    vertical-align: middle;
    text-shadow:
        1px 0 var(--pink),
        -1px 0 var(--pink),
        0 1px var(--pink),
        0 -1px var(--pink);
}
.artist-heading p {
    margin-top: 12px;
    color: #f2f2f4;
    font-size: 18px;
    letter-spacing: 0;
}
.artist-lead {
    max-width: 1080px;
    margin: 0 0 54px;
    color: #d0d0d7;
    font-size: 16px;
    line-height: 1.95;
}
.artist-broker-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 76px;
    margin: 0 auto;
}
.artist-broker-points article {
    color: #d2d2d8;
    font-size: 16px;
    line-height: 1.9;
}
.artist-broker-points h3 {
    margin: 0 0 22px;
    color: var(--pink);
    font-size: 28px;
    line-height: 1.18;
    font-weight: 700;
}
.artist-broker-points p {
    margin: 0;
}
.artist-broker-map {
    display: block;
    width: min(1180px, 100%);
    height: auto;
    margin: 58px auto 0;
}
.about-suite-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(280px, .72fr);
    gap: 54px 9vw;
    max-width: 1180px;
    margin: 0 auto;
}
.about-suite-block {
    color: #d7d7dd;
    font-size: 14px;
    line-height: 1.9;
}
.about-suite-block span {
    display: block;
    margin-bottom: 10px;
    color: var(--pink);
    font-weight: 700;
    letter-spacing: 0;
}
.about-suite-block .section-label {
    margin: 0 0 6px;
    color: var(--pink);
    font-size: 13px;
    line-height: 1.2;
}
.about-suite-block h2,
.about-suite-block h3 {
    margin: 0 0 20px;
    color: var(--pink);
    font-size: 28px;
    line-height: 1.2;
}
.about-suite-block p {
    margin: 0 0 16px;
}
.about-suite-primary {
    grid-column: span 1;
}
.about-suite-primary .body-text p {
    margin: 0 0 12px;
}
.about-orbit {
    position: relative;
    z-index: 1;
    min-height: 360px;
}
.about-orbit:before,
.about-orbit:after,
.about-orbit i {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
}
.about-orbit:before {
    left: 6%;
    top: 6%;
    width: 330px;
    height: 330px;
    background:
        repeating-radial-gradient(circle at 50% 50%, transparent 0 17px, rgba(255,255,255,.12) 18px 19px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), rgba(255,255,255,0) 58%);
}
.about-orbit:after {
    left: 6%;
    top: 6%;
    width: 330px;
    height: 330px;
    border-color: transparent;
    background:
        conic-gradient(from 10deg, #f6f6f6 0 54deg, transparent 55deg 122deg, #f6f6f6 123deg 190deg, transparent 191deg 275deg, #f6f6f6 276deg 344deg, transparent 345deg 360deg);
    mask: radial-gradient(circle, transparent 0 38%, #000 39% 40%, transparent 41% 56%, #000 57% 58%, transparent 59% 70%, #000 71% 72%, transparent 73%);
}
.about-orbit i:nth-child(1) {
    left: calc(6% + 120px);
    top: calc(6% + 120px);
    width: 90px;
    height: 90px;
    border-color: rgba(255,255,255,.55);
}
.about-orbit i:nth-child(2) {
    left: calc(6% + 208px);
    top: calc(6% + 20px);
    width: 8px;
    height: 8px;
    background: #fff;
    box-shadow:
        -110px 78px 0 -1px #fff,
        104px 72px 0 -1px #fff,
        -38px 218px 0 -1px #fff,
        16px 242px 0 -1px #fff;
}
.about-orbit i:nth-child(3) {
    left: calc(6% + 185px);
    top: calc(6% + 90px);
    width: 150px;
    height: 1px;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.15);
    border-radius: 0;
    transform: rotate(20deg);
}
.about-orbit i:nth-child(4) {
    left: calc(6% + 250px);
    top: calc(6% + 95px);
    width: 48px;
    height: 10px;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.10);
    transform: rotate(24deg);
}
.about-chart {
    grid-column: 1 / -1;
}
.history-chart {
    position: relative;
    z-index: 1;
    height: 250px;
    margin: 8px 0 22px;
    border-bottom: 1px solid rgba(255,255,255,.24);
    background:
        repeating-linear-gradient(180deg, transparent 0 48px, rgba(255,255,255,.20) 49px 50px);
    overflow: hidden;
}
.history-chart svg {
    position: absolute;
    inset: 0 0 -1px;
    width: 100%;
    height: 100%;
}
.history-chart polygon {
    fill: url(#historyArea);
}
.history-chart polyline {
    fill: none;
    stroke: var(--pink);
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}
.history-chart circle {
    fill: var(--pink);
    stroke: #0a0a0c;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}
.brand-matrix-card {
    grid-column: 1 / -1;
}
.brand-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 22px 0;
}
.brand-mini-grid b {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    padding: 14px;
    border: 1px solid rgba(205,50,120,.64);
    color: rgba(255,255,255,.72);
    background: rgba(205,50,120,.08);
    font-size: 14px;
    font-weight: 500;
}

.investor-hero {
    min-height: 395px;
    padding-bottom: 46px;
}
.investor-hero h1 {
    font-size: 76px;
}
.investor-page,
.news-notice-page {
    position: relative;
    background:
        radial-gradient(circle at 54% 4%, rgba(255,255,255,.10), transparent 18%),
        linear-gradient(180deg, #0b0b0d, #050506);
    overflow: hidden;
}
.investor-page {
    padding: 0 7vw 96px;
    min-height: 620px;
}
.investor-page:before,
.news-notice-page:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .34;
    background:
        radial-gradient(circle, rgba(255,255,255,.52) 1px, transparent 2px) 0 0 / 17px 17px;
    mask-image: radial-gradient(ellipse at 55% 16%, #000 0 24%, transparent 62%);
    pointer-events: none;
}
.investor-lead {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto 82px;
    color: #d3d3d9;
    text-align: center;
    font-size: 15px;
    line-height: 1.9;
}
.investor-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 440px) minmax(420px, 1fr);
    gap: 8vw;
    align-items: end;
    max-width: 1120px;
    margin: 0 auto;
}
.investor-points {
    display: grid;
    gap: 46px;
}
.investor-points article {
    color: #d0d0d6;
    font-size: 14px;
    line-height: 1.9;
}
.investor-points span {
    display: inline-block;
    margin-bottom: 16px;
    padding: 4px 12px;
    color: var(--pink);
    border: 1px solid rgba(205,50,120,.72);
    font-size: 13px;
    line-height: 1;
}
.investor-points p {
    margin: 0;
}
.investor-visual {
    position: relative;
    min-height: 380px;
}
.investor-wire-globe {
    position: absolute;
    right: 12%;
    bottom: 18px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28);
    background:
        linear-gradient(36deg, transparent 49%, rgba(255,255,255,.20) 50%, transparent 51%),
        linear-gradient(76deg, transparent 49%, rgba(255,255,255,.16) 50%, transparent 51%),
        radial-gradient(circle at 45% 50%, transparent 0 42%, rgba(255,255,255,.10) 43% 44%, transparent 45%),
        repeating-radial-gradient(circle at 50% 50%, transparent 0 21px, rgba(255,255,255,.10) 22px 23px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
    opacity: .72;
}
.investor-wire-globe:before,
.investor-wire-globe:after {
    content: "";
    position: absolute;
    inset: 42px 54px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 44% 56% 48% 52%;
    transform: rotate(32deg);
}
.investor-wire-globe:after {
    inset: 74px 34px;
    transform: rotate(-24deg);
}
.investor-icon {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.30);
    opacity: .64;
}
.investor-icon:before,
.investor-icon:after {
    content: "";
    position: absolute;
}
.icon-fingerprint { left: 9%; bottom: 38%; border-radius: 50%; }
.icon-fingerprint:before {
    inset: 8px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 50%;
}
.icon-data { left: 22%; top: 23%; }
.icon-data:before {
    left: 9px;
    top: 10px;
    width: 22px;
    height: 4px;
    background: rgba(255,255,255,.34);
    box-shadow: 0 9px 0 rgba(255,255,255,.34), 0 18px 0 rgba(255,255,255,.34);
}
.icon-chip { left: 42%; top: 14%; }
.icon-chip:before {
    inset: 9px;
    border: 1px solid rgba(255,255,255,.40);
}
.icon-network { right: 20%; top: 24%; border-radius: 50%; }
.icon-network:before {
    left: 9px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    box-shadow: 16px 5px 0 rgba(255,255,255,.45), 9px 20px 0 rgba(255,255,255,.45);
}
.icon-coin { left: 2%; bottom: 18%; border-radius: 50%; }
.icon-coin:before {
    left: 9px;
    right: 9px;
    top: 12px;
    height: 4px;
    border-top: 1px solid rgba(255,255,255,.45);
    border-bottom: 1px solid rgba(255,255,255,.45);
    box-shadow: 0 8px 0 rgba(255,255,255,.24);
}
.icon-doc { right: 4%; bottom: 28%; }
.icon-doc:before {
    left: 9px;
    top: 10px;
    width: 23px;
    height: 2px;
    background: rgba(255,255,255,.38);
    box-shadow: 0 8px 0 rgba(255,255,255,.38), 0 16px 0 rgba(255,255,255,.38);
}
.icon-blocks { right: 22%; bottom: 6%; }
.icon-blocks:before {
    left: 7px;
    top: 7px;
    width: 9px;
    height: 9px;
    border: 1px solid rgba(255,255,255,.38);
    box-shadow: 14px 0 0 rgba(255,255,255,.10), 0 14px 0 rgba(255,255,255,.10), 14px 14px 0 rgba(255,255,255,.10);
}

.news-notice-hero {
    min-height: 335px;
    padding-bottom: 34px;
}
.news-notice-hero h1 {
    font-size: 66px;
}
.news-notice-hero .dot-globe {
    right: 50%;
    top: 28px;
    width: 300px;
    height: 300px;
    transform: translateX(50%);
    opacity: .34;
}
.news-notice-page {
    padding-top: 0;
}
.news-notice-page .news-grid {
    position: relative;
    z-index: 1;
    max-width: 1020px;
    margin: 18px auto 0;
}
.news-notice-page .news-card {
    min-height: 210px;
    border-color: rgba(205,50,120,.78);
    background: rgba(6,6,8,.58);
    justify-content: flex-start;
    gap: 30px;
}
.news-notice-page .news-card h3 {
    display: inline-block;
    align-self: flex-start;
    margin: 0;
    padding: 4px 10px;
    border: 1px solid rgba(205,50,120,.68);
    font-size: 14px;
}
.news-notice-page .news-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
}
.news-notice-page .news-card time {
    margin-top: auto;
}

.contact-page {
    position: relative;
    min-height: calc(100vh - 64px);
    padding: 70px 7vw 56px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px) 0 0 / 100% 62px,
        linear-gradient(180deg, #111113, #080809);
    overflow: hidden;
}
.contact-page:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 48%, rgba(255,255,255,.08), transparent 22%),
        linear-gradient(90deg, rgba(0,0,0,.18), transparent 56%);
    pointer-events: none;
}
.contact-social,
.contact-info,
.contact-bottom {
    position: relative;
    z-index: 2;
}
.contact-social {
    display: flex;
    gap: 28px;
    color: #fff;
    font-size: 22px;
}
.contact-info {
    width: min(760px, 58vw);
    margin-top: 118px;
}
.contact-info h2 {
    margin: 0 0 28px;
    color: #d8d8df;
    font-size: 18px;
    font-weight: 400;
}
.contact-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
}
.contact-columns p {
    margin: 0;
    color: #b6b6bd;
    font-size: 13px;
    line-height: 1.9;
}
.contact-columns strong {
    color: #d4d4da;
    font-weight: 400;
}
.contact-globe-wrap {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: auto;
    height: auto;
    pointer-events: none;
}
.contact-dot-globe {
    left: 0;
    right: auto;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    opacity: .36;
}
.contact-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 40px;
    align-items: end;
    margin-top: 150px;
}
.contact-bottom h1 {
    margin: 0;
    color: #fff;
    font-size: 56px;
    line-height: 1;
    letter-spacing: 0;
}
.contact-rights {
    position: relative;
    z-index: 3;
    color: #bdbdc5;
    text-align: right;
    font-size: 12px;
    line-height: 1.65;
    text-shadow: 0 1px 8px rgba(0,0,0,.92);
}
.contact-rights h3 {
    margin: 18px 0 18px;
    color: #e5e5ea;
    font-size: 18px;
    font-weight: 400;
}
.contact-rights p {
    margin: 0 0 8px;
}
.contact-top {
    border: 0;
    padding: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    line-height: 1.2;
}

.vocational-hero {
    min-height: 390px;
    padding-bottom: 36px;
}
.vocational-hero .dot-globe {
    top: 24px;
}
.vocational-hero h1 {
    font-size: 78px;
}
.vocational-page {
    position: relative;
    padding: 0 7vw;
    background: #0b0b0d;
    overflow: hidden;
}
.vocational-page:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 16%, rgba(205,50,120,.10), transparent 24%),
        radial-gradient(circle at 76% 20%, rgba(255,255,255,.035), transparent 22%);
    pointer-events: none;
}
.vocational-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 12vw;
    max-width: 1160px;
    margin: 0 auto 38px;
}
.career-note {
    min-height: 92px;
    color: #d8d8df;
    font-size: 13px;
    line-height: 1.75;
}
.career-note span,
.career-directions > span {
    display: inline-block;
    margin-bottom: 16px;
    padding: 4px 12px;
    color: var(--pink);
    border: 1px solid rgba(205,50,120,.72);
    font-size: 13px;
    line-height: 1;
}
.career-note p {
    margin: 0;
}
.career-note-wide {
    grid-column: 1 / -1;
}
.career-illustration {
    display: block;
    position: relative;
    z-index: 1;
    width: min(940px, 100%);
    height: auto;
    margin: 0 auto 32px;
    object-fit: contain;
}
.career-directions {
    position: relative;
    z-index: 1;
    margin: 0 -7vw;
    padding: 36px 7vw 44px;
    text-align: center;
    background: #020203;
}
.career-directions > span {
    margin-bottom: 28px;
}
.career-directions div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
}
.career-directions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,.07), transparent 28%),
        linear-gradient(135deg, #B82868, #B82868);
    box-shadow: 0 0 24px rgba(184,40,104,.22);
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
}

.footer {
    position: relative;
    padding: 70px 7vw 45px;
    background: #111113;
    overflow: hidden;
}
.social {
    display: flex;
    gap: 26px;
    margin-bottom: 70px;
    font-size: 22px;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}
.footer h3 { font-weight: 400; }
.footer p { color: #bdbdc5; line-height: 1.9; }
.copyright {
    margin-top: 40px;
    text-align: right;
    font-size: 13px;
}
.top-btn {
    position: absolute;
    right: 7vw;
    bottom: 98px;
    border: 0;
    color: white;
    background: transparent;
    cursor: pointer;
    font-weight: bold;
}

@media (max-width: 1100px) {
    .site-header {
        padding: 0 32px;
    }
    .nav {
        gap: 8px;
    }
    .nav > a, .nav-item > a {
        font-size: 14px;
        padding-left: 4px;
        padding-right: 4px;
    }
    .hero h1, .page-hero h1 {
        font-size: 72px;
    }
    .news-section h2 {
        font-size: 56px;
    }
}

@media (max-width: 900px) {
    .site-header {
        height: 60px;
        padding: 0 18px;
    }
    .logo {
        max-width: calc(100vw - 86px);
        margin-right: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 96px;
        height: 34px;
    }
    .menu-btn { display: block; }
    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        max-height: calc(100vh - 60px);
        padding: 10px 18px 18px;
        overflow-y: auto;
        background: rgba(17,17,20,.98);
        border-bottom: 1px solid rgba(205,50,120,.32);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
    }
    .nav.open { display: flex; }
    .nav > a, .nav-item > a {
        min-height: 44px;
        padding: 13px 0;
        border-bottom: 1px solid rgba(255,255,255,.06);
        font-size: 15px;
    }
    .dropdown {
        position: static;
        display: block;
        border: 0;
        background: transparent;
        min-width: 0;
        padding: 0 0 8px 18px;
    }
    .dropdown a {
        min-height: 40px;
        padding: 10px 0;
        color: #bdbdc5;
    }

    .hero, .page-hero {
        min-height: auto;
        padding: 56px 20px 40px;
    }
    .hero {
        padding-top: 64px;
    }
    .page-hero {
        min-height: 320px;
    }
    .hero h1, .page-hero h1 {
        font-size: 42px;
        overflow-wrap: anywhere;
        line-height: 1.05;
    }
    .eyebrow {
        font-size: 13px;
    }
    .hero-desc {
        margin: 18px auto 0;
        font-size: 15px;
        line-height: 1.8;
    }
    .search-box {
        width: 100%;
        max-width: 420px;
        margin: 28px auto 34px;
    }
    .search-box input {
        min-width: 0;
        padding: 14px 15px;
        font-size: 16px;
    }
    .search-box button {
        width: 50px;
        flex: 0 0 50px;
    }
    .globe-video {
        left: 0;
        right: 0;
        width: 100%;
    }
    .hero-visual-img {
        right: -54px;
        top: 74px;
        width: 220px;
        opacity: .42;
    }
    .dot-globe {
        right: -46px;
        top: 74px;
        width: 220px;
        height: 220px;
        opacity: .56;
    }
    .page-hero .dot-globe {
        right: -34px;
        top: 44px;
        width: 210px;
        height: 210px;
    }
    .hero-cards, .news-grid, .about-section, .content-layout, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-cards {
        gap: 14px;
    }
    .info-card {
        min-height: 0;
        padding: 18px;
    }
    .info-card p {
        margin-bottom: 0;
    }
    .people-line {
        height: 150px;
        margin-top: 38px;
    }
    .person { width: 60px; height: 120px; }
    .person:before { left: 13px; top: -38px; width: 32px; height: 32px; }
    .desk { left: 35%; width: 150px; height: 55px; }
    .circle-nav {
        padding: 30px 20px 42px;
    }
    .circle-list {
        gap: 12px;
        margin-top: 22px;
    }
    .circle-list a {
        width: 64px;
        height: 64px;
        font-size: 12px;
    }
    .about-section, .news-section, .content-layout, .footer {
        padding: 54px 20px;
    }
    .about-section {
        gap: 28px;
    }
    .about-section h2, .content-card h1, .content-card h2 {
        font-size: 28px;
        line-height: 1.2;
    }
    .about-section .eyebrow, .news-section .eyebrow {
        text-align: left;
    }
    .stage-img {
        min-height: 220px;
    }
    .stage-img.uploaded-visual {
        aspect-ratio: 4 / 3;
    }
    .news-section h2 {
        font-size: 38px;
        line-height: 1.1;
        text-align: left;
    }
    .news-grid {
        gap: 16px;
    }
    .news-card {
        min-height: 0;
        padding: 20px;
    }
    .news-card h3 {
        font-size: 18px;
        line-height: 1.4;
    }
    .content-layout {
        gap: 18px;
    }
    .content-card { padding: 26px; }
    .about-suite-hero {
        width: 100%;
        min-height: 300px;
        margin-bottom: 0;
    }
    .about-suite-hero .globe-video {
        left: 0;
        width: 100%;
    }
    .about-suite-hero h1 {
        font-size: 42px;
    }
    .about-stage-media {
        margin: 0 auto 36px;
        height: auto;
        aspect-ratio: 16 / 8;
    }
    .about-suite-page {
        padding: 36px 20px 54px;
    }
    .about-suite-section {
        padding: 42px 0 50px;
        scroll-margin-top: 110px;
    }
    .about-intro-section {
        grid-template-columns: 1fr;
        gap: 26px;
        min-height: auto;
    }
    .about-intro-heading h2 {
        font-size: 32px;
    }
    .about-intro-number {
        grid-column: 1;
        grid-row: 1;
        justify-self: end;
        font-size: 42px;
    }
    .about-intro-section .about-orbit,
    .about-intro-section .about-suite-block {
        grid-column: auto;
        grid-row: auto;
    }
    .about-orbit {
        min-height: 300px;
    }
    .about-orbit:before,
    .about-orbit:after {
        left: 50%;
        top: 0;
        width: 280px;
        height: 280px;
        transform: translateX(-50%);
    }
    .about-orbit i:nth-child(1) {
        left: calc(50% - 45px);
        top: 95px;
    }
    .about-orbit i:nth-child(2) {
        left: calc(50% + 36px);
        top: 18px;
    }
    .history-milestones,
    .brand-copy-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .about-brand-section:before {
        top: 34%;
        height: 50%;
        opacity: .30;
    }
    .brand-matrix-top {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 42px;
    }
    .brand-heading {
        max-width: none;
        margin: 0;
        text-align: left;
    }
    .brand-heading span {
        font-size: 42px;
    }
    .brand-heading h2 {
        font-size: 30px;
    }
    .brand-heading em {
        margin-top: 18px;
    }
    .brand-copy-grid {
        gap: 34px;
    }
    .brand-copy-grid article {
        font-size: 13px;
    }
    .brand-copy-grid h3 {
        margin-bottom: 14px;
        font-size: 21px;
    }
    .brand-logo-cn,
    .brand-logo-juneviral {
        font-size: 30px;
    }
    .about-history-section:before {
        right: 0;
        width: 100%;
        height: 230px;
        opacity: .30;
    }
    .history-heading {
        margin-bottom: 44px;
    }
    .history-heading span {
        font-size: 44px;
    }
    .history-heading h2 {
        font-size: 32px;
    }
    .history-heading p {
        font-size: 13px;
    }
    .history-milestones article {
        font-size: 13px;
    }
    .history-milestones b {
        font-size: 22px;
    }
    .about-artist-section {
        padding-top: 56px;
    }
    .artist-heading {
        margin-bottom: 48px;
    }
    .artist-heading span {
        font-size: 46px;
    }
    .artist-heading h2 {
        font-size: 34px;
    }
    .artist-heading p {
        font-size: 15px;
    }
    .artist-lead {
        margin-bottom: 36px;
        font-size: 14px;
    }
    .artist-broker-points {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 36px;
    }
    .artist-broker-points article {
        font-size: 15px;
    }
    .artist-broker-points h3 {
        margin-bottom: 12px;
        font-size: 24px;
    }
    .artist-broker-map {
        margin-top: 36px;
    }
    .brand-shell {
        width: min(360px, 100%);
        height: auto;
    }
    .about-suite-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .about-suite-block h2,
    .about-suite-block h3 {
        font-size: 24px;
    }
    .about-orbit {
        min-height: 190px;
    }
    .about-orbit:before {
        width: 178px;
        height: 178px;
    }
    .history-chart {
        height: 170px;
    }
    .brand-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .investor-hero {
        min-height: 315px;
    }
    .investor-hero h1,
    .news-notice-hero h1 {
        font-size: 42px;
    }
    .investor-page {
        padding: 0 20px 58px;
        min-height: auto;
    }
    .investor-lead {
        margin-bottom: 44px;
        font-size: 13px;
    }
    .investor-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .investor-points {
        gap: 28px;
    }
    .investor-visual {
        min-height: 260px;
    }
    .investor-wire-globe {
        right: 50%;
        bottom: 0;
        width: 230px;
        height: 230px;
        transform: translateX(50%);
    }
    .news-notice-hero {
        min-height: 300px;
    }
    .news-notice-hero .dot-globe {
        top: 44px;
        width: 210px;
        height: 210px;
    }
    .news-notice-page .news-grid {
        margin-top: 0;
    }
    .news-notice-page .news-card {
        min-height: 180px;
    }
    .contact-page {
        min-height: auto;
        padding: 54px 20px 46px;
    }
    .contact-social {
        gap: 22px;
        font-size: 20px;
    }
    .contact-info {
        width: 100%;
        margin-top: 76px;
    }
    .contact-columns {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .contact-globe-wrap {
        inset: 0;
        width: auto;
        height: auto;
        opacity: 1;
    }
    .contact-dot-globe {
        left: 0;
        width: 100%;
    }
    .contact-bottom {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 88px;
    }
    .contact-bottom h1 {
        font-size: 44px;
    }
    .contact-rights {
        text-align: left;
    }
    .vocational-hero {
        min-height: 315px;
    }
    .vocational-hero h1 {
        font-size: 46px;
    }
    .vocational-page {
        padding: 0 20px;
    }
    .vocational-intro {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 26px;
    }
    .career-note {
        min-height: 0;
        font-size: 12px;
    }
    .career-note-wide {
        grid-column: auto;
    }
    .career-illustration {
        width: 100%;
        max-width: 720px;
        margin-bottom: 24px;
    }
    .career-directions {
        margin: 0 -20px;
        padding: 30px 20px 38px;
    }
    .career-directions div {
        gap: 14px;
    }
    .career-directions a {
        width: 64px;
        height: 64px;
        font-size: 11px;
    }
    .main-img {
        max-height: 320px;
        object-fit: cover;
    }
    .side-card {
        padding: 22px;
    }
    .inner-search {
        margin-right: 0;
    }
    .social {
        gap: 18px;
        margin-bottom: 34px;
        font-size: 20px;
    }
    .copyright {
        margin-top: 28px;
        text-align: left;
    }
    .top-btn {
        right: 20px;
        bottom: 32px;
        padding: 10px 0;
    }
}

@media (max-width: 600px) {
    .hero, .page-hero {
        padding-left: 16px;
        padding-right: 16px;
    }
    .hero h1, .page-hero h1 {
        font-size: 36px;
    }
    .page-hero {
        min-height: 286px;
    }
    .hero-cards {
        margin-top: 4px;
    }
    .people-line {
        display: none;
    }
    .circle-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-items: center;
    }
    .circle-list a {
        width: 72px;
        height: 72px;
    }
    .about-section, .news-section, .content-layout, .footer {
        padding: 46px 16px;
    }
    .content-card {
        padding: 22px 18px;
    }
    .about-suite-hero h1 {
        font-size: 34px;
    }
    .about-suite-hero {
        width: 100%;
        margin-bottom: 0;
    }
    .about-suite-hero .globe-video {
        left: 0;
        width: 100%;
    }
    .about-suite-page {
        padding: 28px 16px 46px;
    }
    .about-stage-media {
        margin: 0 auto 28px;
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .about-suite-section h2 {
        font-size: 27px;
    }
    .about-intro-heading h2 {
        font-size: 28px;
    }
    .about-intro-heading h2 small {
        font-size: 12px;
    }
    .about-intro-number {
        font-size: 34px;
    }
    .about-section-heading span {
        font-size: 24px;
    }
    .brand-shell {
        width: min(300px, 100%);
        height: auto;
    }
    .brand-heading h2 small {
        font-size: 12px;
    }
    .brand-heading em,
    .brand-copy-grid article {
        font-size: 12px;
    }
    .about-suite-block {
        font-size: 13px;
    }
    .history-heading span {
        font-size: 38px;
    }
    .history-heading h2 {
        font-size: 28px;
    }
    .history-heading h2 small {
        font-size: 13px;
    }
    .history-chart {
        height: 140px;
    }
    .artist-heading {
        margin-bottom: 36px;
    }
    .artist-heading span {
        font-size: 40px;
    }
    .artist-heading h2 {
        font-size: 30px;
    }
    .artist-heading h2 small {
        font-size: 13px;
    }
    .artist-broker-points {
        gap: 24px;
    }
    .artist-broker-points article {
        font-size: 14px;
    }
    .artist-broker-points h3 {
        font-size: 22px;
    }
    .brand-mini-grid {
        gap: 12px;
    }
    .brand-mini-grid b {
        min-height: 68px;
        font-size: 12px;
    }
    .investor-hero h1,
    .news-notice-hero h1 {
        font-size: 34px;
    }
    .investor-page {
        padding: 0 16px 48px;
    }
    .investor-points article {
        font-size: 13px;
    }
    .investor-visual {
        min-height: 220px;
    }
    .investor-wire-globe {
        width: 190px;
        height: 190px;
    }
    .investor-icon {
        transform: scale(.78);
    }
    .news-notice-hero .dot-globe {
        width: 190px;
        height: 190px;
        opacity: .28;
    }
    .news-notice-page .news-grid {
        margin-top: 0;
    }
    .contact-page {
        padding: 44px 16px 42px;
    }
    .contact-info {
        margin-top: 64px;
    }
    .contact-info h2 {
        font-size: 16px;
    }
    .globe-video {
        left: 0;
        right: 0;
        width: 100%;
    }
    .contact-columns p {
        font-size: 12px;
    }
    .contact-globe-wrap {
        inset: 0;
        width: auto;
        height: auto;
    }
    .contact-dot-globe {
        left: 0;
        width: 100%;
    }
    .contact-bottom {
        margin-top: 62px;
    }
    .contact-bottom h1 {
        font-size: 34px;
    }
    .vocational-hero h1 {
        font-size: 38px;
    }
    .vocational-page {
        padding: 0 16px;
    }
    .career-illustration {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .career-directions {
        margin: 0 -16px;
        padding: 28px 16px 36px;
    }
    .career-directions div {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-items: center;
    }
    .side-card {
        padding: 18px;
    }
    .body-text, .summary, .about-section p, .news-card p {
        font-size: 15px;
        line-height: 1.85;
    }
}

@media (max-width: 380px) {
    .site-header {
        padding: 0 14px;
    }
    .logo {
        width: 88px;
        height: 31px;
    }
    .hero h1, .page-hero h1 {
        font-size: 32px;
    }
    .hero-visual-img {
        right: -58px;
        width: 200px;
        height: 200px;
    }
    .dot-globe {
        right: -58px;
        top: 74px;
        width: 200px;
        height: 200px;
        opacity: .56;
    }
    .page-hero .dot-globe {
        right: -42px;
        top: 48px;
        width: 190px;
        height: 190px;
    }
    .circle-list {
        gap: 10px;
    }
    .circle-list a {
        width: 66px;
        height: 66px;
        padding: 10px;
        font-size: 11px;
    }
}
