/* =========================================================
   AABW 메인 화면 스타일
   - 다크 개발자 배경 + 글래스모피즘 UI
   - 중복 override 제거 / 섹션별 구조 정리
   - JS의 .motion-in, .is-loading, .is-dragging 상태와 연동
========================================================= */

/* =========================================================
   0. 기본값 / 공통 변수
========================================================= */
:root {
    --bg-base: #080c19;
    --white: #fff;
    --black: #000;

    --text-main: rgba(255, 255, 255, 0.96);
    --text-strong: rgba(255, 255, 255, 0.9);
    --text-default: rgba(255, 255, 255, 0.74);
    --text-muted: rgba(255, 255, 255, 0.62);
    --text-soft: rgba(255, 255, 255, 0.48);

    --line-light: rgba(255, 255, 255, 0.16);
    --line-default: rgba(255, 255, 255, 0.13);
    --line-soft: rgba(255, 255, 255, 0.1);

    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-card-bg: rgba(255, 255, 255, 0.07);
    --glass-card-bg-hover: rgba(255, 255, 255, 0.14);

    --shadow-panel: 0 24px 80px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 16px 34px rgba(0, 0, 0, 0.18);
    --shadow-card-hover: 0 24px 48px rgba(0, 0, 0, 0.28);

    --blur: blur(5px);

    --radius-panel: 34px;
    --radius-card: 26px;
    --radius-small: 18px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    font-family: 'NanumSquareAc', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow: hidden;
    color: var(--white);
    background: var(--bg-base);
}

body::before,
body::after,
.content::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    z-index: -3;
    background:
        linear-gradient(rgba(8, 12, 25, 0.76), rgba(8, 12, 25, 0.88)),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1800&q=80') center / cover no-repeat;
    transform: translateZ(0);
}

body::after {
    z-index: -2;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.1), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.06), transparent 26%),
        linear-gradient(120deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.52));
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
}

.content::before {
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

/* =========================================================
   1. 공통 레이아웃 / 글래스 패널
========================================================= */
.section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 0;
    transition: opacity 0.5s ease;
}

.section::before {
    content: "";
    position: absolute;
    width: min(520px, 44vw);
    height: min(520px, 44vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 66%);
    opacity: 0.38;
    pointer-events: none;
}

.section:nth-of-type(odd)::before {
    right: -180px;
    top: 10%;
}

.section:nth-of-type(even)::before {
    left: -180px;
    bottom: 8%;
}

.section-inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    text-align: left;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.projects-inner,
.platform-inner {
    margin-top: 80px;
}

.platform-section {
    padding: 26px 0;
}


.glass-panel,
.hero-copy,
.hero-menu-panel,
.section-card,
.contact-form-card,
.contact-info-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-light);
    background: var(--glass-bg);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow: var(--shadow-panel);
    contain: paint;
}

.glass-panel::before,
.hero-copy::before,
.hero-menu-panel::before,
.section-card::before,
.contact-form-card::before,
.contact-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.12), transparent 32%);
    opacity: 0.85;
    pointer-events: none;
}

.glass-panel > *,
.hero-copy > *,
.hero-menu-panel > *,
.section-card > *,
.contact-form-card > *,
.contact-info-card > * {
    position: relative;
    z-index: 1;
}

.section-card {
    padding: clamp(32px, 4vw, 50px);
    border-radius: var(--radius-panel);
}

.section-card h2 {
    margin: 10px 0 30px;
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 900;
    letter-spacing: -0.055em;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.section-card p {
    max-width: 760px;
    margin: 0;
    font-size: 18px;
    line-height: 1.88;
    color: var(--text-default);
}

.eyebrow,
.section-card .eyebrow,
.contact-mini-label,
.hero-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.84);
    font-weight: 900;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
}

.eyebrow,
.section-card .eyebrow {
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.08em;
}

/* 왼쪽 플로팅 메뉴 사용 시 본문 위치 보정 */
body.has-floating-profile .hero-shell,
body.has-floating-profile .section-inner {
    margin-left: clamp(250px, 19vw, 350px);
    width: min(1320px, calc(100% - clamp(300px, 22vw, 380px) - 80px));
}

/* =========================================================
   2. 오른쪽 섹션 점 네비게이션 / TOP 버튼
========================================================= */
.side-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    z-index: 999;
    padding: 14px 10px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--line-light);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.dot {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 12px 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.dot.active {
    background: var(--white);
    transform: scale(1.45);
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.08),
        0 0 18px rgba(255, 255, 255, 0.6);
}

.top-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.top-btn:hover {
    background: var(--white);
}

.top-btn.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   3. HERO 섹션
========================================================= */
.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 470px);
    align-items: center;
    gap: 28px;
    width: min(1320px, calc(100% - 80px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 120px 0 70px;
}

.hero-copy {
    padding: clamp(34px, 4vw, 58px);
    border-radius: var(--radius-panel);
}

.hero-badge {
    justify-content: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
}

.hero-title {
    margin: 0 0 16px;
    font-size: clamp(58px, 8vw, 92px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.055em;
    color: var(--white);
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.hero-subtitle {
    max-width: 760px;
    margin: 0 0 16px;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 900;
    line-height: 1.58;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.92);
}

.hero-description {
    max-width: 720px;
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-default);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-point {
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 900;
}

.hero-menu-panel {
    padding: 24px;
    border-radius: 32px;
}

.hero-menu-title {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.hero-menu-subtitle {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.66);
}

.menu-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.glass-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 156px;
    padding: 20px 18px;
    border-radius: 24px;
    background: var(--glass-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: var(--glass-card-bg-hover);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.menu-title {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.menu-desc {
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-default);
}

.menu-arrow {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
}

/* =========================================================
   4. CAREER / PROJECTS 섹션
========================================================= */
.projects-section,
.community-section,
.platform-section {
    overflow: hidden;
}

.projects-section::after,
.community-section::after,
.platform-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.projects-section::after {
    left: 9%;
    top: 14%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 66%);
}

.career-card {
    padding: clamp(26px, 3vw, 42px);
}

.career-profile {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    align-items: stretch;
    gap: 30px;
}

.career-photo-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line-light);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 46px rgba(0, 0, 0, 0.24);
}

.career-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
    pointer-events: none;
}

.career-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.career-photo-label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.career-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.career-summary h2 {
    margin-top: 18px;
}

.career-summary p {
    max-width: 820px;
}

.career-name {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.career-name span {
    font-size: 0.34em;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-soft);
}

.career-skill-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.career-skill-tags span,
.platform-actions span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line-default);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.career-skill-tags span {
    min-height: 34px;
    padding: 8px 14px;
    color: var(--text-muted);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.career-skill-tags span:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.26);
    color: var(--white);
}

.career-personal,
.career-meta-grid {
    display: grid;
    gap: 14px;
}

.career-personal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.career-meta-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 28px;
}

.career-personal-item,
.career-meta-item {
    border-radius: 22px;
    border: 1px solid var(--line-default);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.career-personal-item {
    padding: 18px;
    background: rgba(255, 255, 255, 0.095);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 28px rgba(0, 0, 0, 0.16);
}

.career-meta-item {
    min-height: 104px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.career-personal-item span,
.career-meta-item span {
    display: block;
    margin-bottom: 9px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
}

.career-personal-item strong {
    display: inline-block;
    margin-right: 8px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -0.035em;
    color: var(--text-main);
}

.career-personal-item em {
    display: inline-block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.career-meta-item strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: -0.025em;
    color: rgba(255, 255, 255, 0.94);
}

/* Career Timeline */
.career-detail {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    padding: 20px;
    border-radius: var(--radius-panel);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035)),
        rgba(7, 10, 20, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 24px 70px rgba(0, 0, 0, 0.24);
}

.career-detail-head {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 0 0 34px;
    margin: 0;
}

.career-detail-head > div {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.career-company {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.career-detail-head strong {
    display: block;
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.06em;
    color: var(--text-main);
}

.career-detail-head p {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;
}

.career-scroll-hint {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line-default);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.career-scroll-hint::after {
    content: "→";
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1;
}

.career-timeline {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 30px 2px 10px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.06);
    background-image: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.22) 8%,
        rgba(255, 255, 255, 0.58) 50%,
        rgba(255, 255, 255, 0.22) 92%,
        transparent
    );
    background-repeat: no-repeat;
    background-size: calc(100% - 52px) 1px;
    background-position: 26px 0;
}

.career-timeline::-webkit-scrollbar {
    height: 8px;
}

.career-timeline::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.career-timeline::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.27);
}

.career-timeline.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.career-timeline.is-dragging * {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

.career-timeline-item {
    position: relative;
    flex: 0 0 310px;
    margin-top: 0 !important;
    padding: 15px;
    border-radius: var(--radius-card);
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.125), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.055);
    border: 1px solid var(--line-default);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 16px 34px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.career-timeline-item::before,
.career-timeline-item::after {
    content: "";
    position: absolute;
}

.career-timeline-item::before {
    left: 22px;
    top: -31px;
    z-index: 2;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: var(--white);
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.075),
        0 0 30px rgba(255, 255, 255, 0.52);
}

.career-timeline-item::after {
    left: 28px;
    top: -18px;
    width: 1px;
    height: 22px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.52), transparent);
}

.career-timeline-item:hover {
    transform: translateY(-8px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.075)),
        rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 24px 54px rgba(0, 0, 0, 0.32);
}

.career-sequence {
    position: absolute;
    right: 18px;
    top: 14px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.04);
    font-size: 66px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
}

.career-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    height: 32px;
    margin: 0 0 18px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #090d18;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.02em;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.career-date {
    display: block;
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.career-timeline-item p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.65;
}

.career-timeline-item strong {
    display: inline;
    margin: 0;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 900;
    line-height: 0.5;
    letter-spacing: -0.028em;
}

.career-timeline-item p span {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.64);
    white-space: nowrap;
}

.career-timeline-item p span::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
}

/* =========================================================
   5. PLATFORM 에디터 쇼케이스 섹션
   - 큰 소개 문장 + 웹앱 미리보기 패널 + 하단 스토리 카드
   - Projects / Community와 디자인 톤은 유지하되 구조는 차별화
========================================================= */
.platform-section {
    overflow: hidden;
}

.platform-section::after {
    content: "";
    position: absolute;
    right: 7%;
    top: 12%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 66%);
    pointer-events: none;
}

.platform-inner {
    margin-top: 80px;
}

.platform-section {
    padding: 26px 0;
}


.platform-editor {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    grid-template-rows: auto auto;
    gap: 20px;
    padding: clamp(24px, 3vw, 42px);
    border-radius: 38px;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    contain: paint;
}

.platform-editor::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.platform-editor::after {
    content: "AABW";
    position: absolute;
    left: -22px;
    bottom: -34px;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(90px, 12vw, 180px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.1em;
    pointer-events: none;
}

.platform-editor-copy,
.platform-preview,
.platform-story {
    position: relative;
    z-index: 1;
}

.platform-editor-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
}

.platform-editor-copy h2 {
    max-width: 620px;
    margin: 18px 0;
    color: var(--white);
    font-size: clamp(46px, 5.4vw, 76px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.065em;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.platform-editor-copy p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.9;
}

.platform-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.platform-keywords span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid var(--line-default);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.platform-preview {
    align-self: center;
    overflow: hidden;
    min-height: 360px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.145), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.055);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        0 28px 70px rgba(0, 0, 0, 0.3);
    transform: perspective(1100px) rotateY(-7deg) rotateX(2deg);
    transform-origin: center;
}

.platform-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 0%, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 48%);
    pointer-events: none;
}

.platform-preview-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
}

.platform-preview-top > div {
    display: flex;
    gap: 7px;
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
}

.platform-preview-top strong {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.platform-preview-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 78px 1fr;
    min-height: 302px;
}

.preview-sidebar {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 28px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-sidebar span {
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-sidebar span.active {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.preview-content {
    padding: 26px;
}

.preview-hero-line {
    width: 78%;
    height: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.preview-hero-line.short {
    width: 52%;
    height: 12px;
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.26);
}

.preview-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.preview-card {
    min-height: 94px;
    padding: 18px;
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.055);
    border: 1px solid var(--line-default);
    color: var(--white);
    text-decoration: none;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--white);
    box-shadow: var(--shadow-card-hover);
}

.preview-card span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.preview-card strong {
    display: block;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.platform-story {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.platform-story-card {
    position: relative;
    overflow: hidden;
    min-height: 118px;
    padding: 22px;
    border-radius: 26px;
    border: 1px solid var(--line-default);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 16px 34px rgba(0, 0, 0, 0.16);
}

.platform-story-card span {
    position: absolute;
    right: 16px;
    top: 10px;
    color: rgba(255, 255, 255, 0.05);
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
}

.platform-story-card strong {
    position: relative;
    display: block;
    margin: 22px 0 8px;
    color: var(--text-main);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.platform-story-card p {
    position: relative;
    max-width: 320px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.75;
}



@media (max-height: 820px) and (min-width: 769px) {
    .platform-inner {
        margin-top: 56px;
    }

    .platform-section {
        padding: 18px 0;
    }

    .platform-editor {
        gap: 16px;
        padding: 26px;
    }

    .platform-editor-copy,
    .platform-preview {
        min-height: 320px;
    }

    .platform-editor-copy h2 {
        margin: 14px 0;
        font-size: clamp(38px, 4.4vw, 58px);
    }

    .platform-editor-copy p {
        font-size: 15px;
        line-height: 1.75;
    }

    .platform-keywords {
        margin-top: 18px;
    }

    .platform-preview-main {
        min-height: 262px;
    }

    .platform-preview-top {
        padding: 14px 18px;
    }

    .preview-content {
        padding: 22px;
    }

    .preview-card-grid {
        gap: 10px;
        margin-top: 20px;
    }

    .preview-card {
        min-height: 82px;
        padding: 14px;
        border-radius: 18px;
    }

    .preview-card span {
        margin-bottom: 10px;
    }

    .platform-story-card {
        min-height: 104px;
        padding: 18px;
    }

    .platform-story-card strong {
        margin: 16px 0 8px;
        font-size: 18px;
    }

    .platform-story-card p {
        font-size: 12px;
        line-height: 1.65;
    }
}

@media (max-height: 720px) and (min-width: 769px) {
    .platform-story {
        display: none;
    }

    .platform-editor {
        grid-template-rows: auto;
    }

    .platform-editor-copy,
    .platform-preview {
        min-height: 300px;
    }
}

/* =========================================================
   6. CONTACT / COMMUNITY 섹션
========================================================= */
.community-section::after {
    right: 8%;
    bottom: 8%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 65%);
}

.community-inner {
    position: relative;
    z-index: 2;
}

.contact-shell {
    width: 100%;
    margin-top: 80px;
}

.contact-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.contact-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    letter-spacing: -0.055em;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.contact-heading p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.85;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: stretch;
    gap: 26px;
}

.contact-form-card,
.contact-info-card {
    border-radius: 32px;
}

.contact-form {
    position: relative;
    z-index: 1;
    padding: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px 17px;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-small);
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 15px;
    line-height: 1.5;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.form-field textarea {
    min-height: 170px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.form-field input:focus,
.form-field textarea:focus {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.contact-submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--black);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    background: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.22);
}

.contact-submit-btn.is-loading {
    pointer-events: none;
    opacity: 0.82;
}

.submit-loading {
    display: none;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(0, 0, 0, 0.18);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: contactLoadingSpin 0.8s linear infinite;
}

.contact-submit-btn.is-loading .submit-loading {
    display: inline-block;
}

.contact-submit-btn.is-loading .submit-text {
    font-size: 0;
}

.contact-submit-btn.is-loading .submit-text::after {
    content: "Sending...";
    font-size: 15px;
    font-weight: 900;
}

.contact-loading-message {
    display: none;
    margin: 14px 0 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.6;
}

.contact-loading-message.show {
    display: block;
}

.contact-info-card {
    padding: 26px;
}

.contact-info-title,
.contact-info-list {
    position: relative;
    z-index: 1;
}

.contact-mini-label {
    padding: 7px 12px;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.contact-info-title h3 {
    margin: 0 0 12px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.contact-info-title p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.85;
}

.contact-info-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: flex-start;
    gap: 14px;
    padding: 17px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line-soft);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.09);
    font-size: 20px;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    font-weight: 900;
}

.contact-info-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.65;
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-info-link,
.section .contact-info-link,
.section.motion-in .contact-info-link,
.section.motion-in .contact-info-list .contact-info-link {
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    opacity: 1 !important;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease !important;
    transition-delay: 0s !important;
}

.contact-info-link strong,
.contact-info-link p,
.section.motion-in .contact-info-link strong,
.section.motion-in .contact-info-link p {
    opacity: 1 !important;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.contact-info-link:hover,
.section .contact-info-link:hover,
.section.motion-in .contact-info-link:hover,
.section.motion-in .contact-info-list .contact-info-link:hover,
.contact-info-list .contact-info-link:hover {
    transform: translate3d(0, -2px, 0) scale(1.005) !important;
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    opacity: 1 !important;
    transition-delay: 0s !important;
}

.contact-info-link:hover strong,
.contact-info-link:hover p,
.section.motion-in .contact-info-link:hover strong,
.section.motion-in .contact-info-link:hover p {
    color: var(--white);
    text-decoration: none;
    opacity: 1 !important;
}

/* =========================================================
   7. 섹션 진입 모션
========================================================= */
.glass-panel,
.hero-copy,
.hero-menu-panel,
.section-card,
.contact-form-card,
.contact-info-card {
    opacity: 0.88;
    transform: translate3d(0, 28px, 0) scale(0.985);
    transition:
        opacity 0.72s ease,
        transform 0.72s var(--ease-out),
        border-color 0.28s ease,
        background-color 0.28s ease,
        box-shadow 0.28s ease;
    will-change: opacity, transform;
}

.section.motion-in .glass-panel,
.section.motion-in .hero-copy,
.section.motion-in .hero-menu-panel,
.section.motion-in .section-card,
.section.motion-in .contact-form-card,
.section.motion-in .contact-info-card {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.section .hero-badge,
.section .hero-title,
.section .hero-subtitle,
.section .hero-description,
.section .hero-point,
.section .hero-menu-title,
.section .hero-menu-subtitle,
.section .menu-card,
.section .glass-card,
.section .section-card .eyebrow,
.section .section-card h2,
.section .section-card p,
.section .contact-heading,
.section .contact-form,
.section .contact-info-title,
.section .contact-info-item,
.section .career-photo-wrap,
.section .career-summary,
.section .career-personal-item,
.section .career-meta-item,
.section .career-detail,
.section .career-timeline-item,
.section .platform-editor,
.section .platform-editor-copy,
.section .platform-preview,
.section .preview-card,
.section .platform-story-card {
    opacity: 0.86;
    transform: translate3d(0, 10px, 0);
    transition:
        opacity 0.52s ease,
        transform 0.52s var(--ease-out),
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
    will-change: opacity, transform;
}

.section .menu-card,
.section .glass-card {
    transform: translate3d(0, 16px, 0) scale(0.98);
}

.section.motion-in .hero-badge,
.section.motion-in .hero-title,
.section.motion-in .hero-subtitle,
.section.motion-in .hero-description,
.section.motion-in .hero-point,
.section.motion-in .hero-menu-title,
.section.motion-in .hero-menu-subtitle,
.section.motion-in .menu-card,
.section.motion-in .glass-card,
.section.motion-in .section-card .eyebrow,
.section.motion-in .section-card h2,
.section.motion-in .section-card p,
.section.motion-in .contact-heading,
.section.motion-in .contact-form,
.section.motion-in .contact-info-title,
.section.motion-in .contact-info-item,
.section.motion-in .career-photo-wrap,
.section.motion-in .career-summary,
.section.motion-in .career-personal-item,
.section.motion-in .career-meta-item,
.section.motion-in .career-detail,
.section.motion-in .career-timeline-item,
.section.motion-in .platform-editor,
.section.motion-in .platform-editor-copy,
.section.motion-in .platform-preview,
.section.motion-in .preview-card,
.section.motion-in .platform-story-card {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.section.motion-in .menu-card:hover,
.section.motion-in .glass-card:hover {
    transform: translate3d(0, -8px, 0) scale(1);
}

.section.motion-in .hero-badge,
.section.motion-in .section-card .eyebrow,
.section.motion-in .contact-heading,
.section.motion-in .career-photo-wrap,
.section.motion-in .platform-editor-copy {
    transition-delay: 0.08s;
}

.section.motion-in .hero-title,
.section.motion-in .hero-menu-title,
.section.motion-in .section-card h2,
.section.motion-in .contact-form,
.section.motion-in .contact-info-title,
.section.motion-in .career-summary,
.section.motion-in .platform-preview {
    transition-delay: 0.14s;
}

.section.motion-in .hero-subtitle,
.section.motion-in .hero-menu-subtitle,
.section.motion-in .section-card p,
.section.motion-in .career-personal-item,
.section.motion-in .career-meta-item,
.section.motion-in .preview-card {
    transition-delay: 0.2s;
}

.section.motion-in .hero-description,
.section.motion-in .career-detail,
.section.motion-in .career-timeline-item,
.section.motion-in .platform-story-card {
    transition-delay: 0.26s;
}

.section.motion-in .hero-point,
.section.motion-in .menu-card,
.section.motion-in .contact-info-item {
    transition-delay: 0.3s;
}

@keyframes contactLoadingSpin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   FULLPAGE SECTION FIX
   - 데스크톱 섹션 단위 스크롤에서 3번째 섹션을 건너뛰는 문제 방지
   - 모든 section을 정확히 100vh 기준으로 맞춥니다.
========================================================= */
@media (min-width: 769px) {
    .section {
        height: 100vh;
        min-height: 100vh;
        overflow: hidden;
    }

    .platform-section {
        height: 100vh;
        min-height: 100vh;
        padding: 24px 0;
    }

    .platform-editor {
        max-height: calc(100vh - 128px);
    }
}


/* =========================================================
   8. 반응형
========================================================= */
@media (max-width: 1400px) {
    body.has-floating-profile .hero-shell,
    body.has-floating-profile .section-inner {
        width: min(1240px, calc(100% - 310px));
        margin-left: 300px;
    }

    .hero-shell {
        width: min(1260px, calc(100% - 48px));
    }
}

@media (max-width: 1200px) {
    body.has-floating-profile .hero-shell,
    body.has-floating-profile .section-inner {
        width: min(1040px, calc(100% - 48px));
        margin-left: auto;
    }

    .hero-shell,
    .career-profile,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-shell {
        max-width: 1040px;
        padding-top: 120px;
    }

    .hero-copy,
    .hero-menu-panel {
        padding: 28px;
    }

    .career-photo-wrap,
    .career-photo {
        min-height: 360px;
    }

    .career-personal,
    .career-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .platform-editor {
        grid-template-columns: 1fr;
    }

    .platform-editor-copy {
        min-height: auto;
    }

    .platform-preview {
        transform: none;
    }

    .platform-story {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }

    .section::before,
    .community-section::after {
        display: none;
    }

    .hero-shell {
        width: calc(100% - 30px);
        gap: 18px;
        padding: 105px 0 40px;
    }

    .hero-copy,
    .hero-menu-panel,
    .section-card,
    .career-card,
    .platform-card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .hero-title {
        font-size: clamp(48px, 18vw, 68px);
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.75;
    }

    .hero-description,
    .section-card p,
    .platform-copy p,
    .contact-heading p {
        font-size: 14px;
        line-height: 1.85;
    }

    .menu-wrapper,
    .career-personal,
    .career-meta-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .glass-card {
        min-height: auto;
        padding: 18px 16px;
    }

    .side-nav {
        right: 12px;
    }

    .career-photo-wrap,
    .career-photo {
        min-height: 280px;
        border-radius: 22px;
    }

    .career-detail {
        padding: 22px 18px 18px;
        border-radius: 24px;
    }

    .career-detail-head {
        display: grid;
        gap: 16px;
        padding-bottom: 28px;
    }

    .career-detail-head strong {
        font-size: 25px;
    }

    .career-scroll-hint {
        width: 100%;
    }

    .career-timeline {
        gap: 14px;
        padding-top: 30px;
    }

    .career-timeline-item {
        flex: 0 0 min(286px, 82vw);
        min-height: 168px;
        padding: 22px 17px 18px;
        border-radius: 22px;
    }

    .career-sequence {
        font-size: 56px;
    }

    .platform-inner {
        margin-top: 40px;
    }

    .platform-editor {
        gap: 18px;
        padding: 22px 18px;
        border-radius: 24px;
    }

    .platform-editor-copy h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .platform-editor-copy p {
        font-size: 14px;
        line-height: 1.85;
    }

    .platform-preview {
        min-height: auto;
        border-radius: 24px;
        transform: none;
    }

    .platform-preview-main {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .preview-sidebar {
        display: flex;
        gap: 8px;
        padding: 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .preview-sidebar span {
        width: 28px;
        height: 28px;
        border-radius: 10px;
    }

    .preview-content {
        padding: 20px 18px;
    }

    .preview-card-grid {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .preview-card {
        min-height: auto;
        padding: 16px;
        border-radius: 18px;
    }

    .platform-story {
        grid-template-columns: 1fr;
    }

    .platform-story-card {
        min-height: auto;
        padding: 20px 18px;
        border-radius: 22px;
    }

    .contact-heading {
        margin-bottom: 20px;
    }

    .contact-heading h2 {
        font-size: 38px;
    }

    .contact-form,
    .contact-info-card {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .form-row {
        gap: 0;
    }

    .form-field input,
    .form-field textarea {
        padding: 14px 15px;
        border-radius: 15px;
        font-size: 14px;
    }

    .form-field textarea {
        min-height: 140px;
    }

    .contact-info-item {
        grid-template-columns: 40px 1fr;
        padding: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .glass-panel,
    .hero-copy,
    .hero-menu-panel,
    .section-card,
    .contact-form-card,
    .contact-info-card,
    .section .hero-badge,
    .section .hero-title,
    .section .hero-subtitle,
    .section .hero-description,
    .section .hero-point,
    .section .hero-menu-title,
    .section .hero-menu-subtitle,
    .section .menu-card,
    .section .glass-card,
    .section .section-card .eyebrow,
    .section .section-card h2,
    .section .section-card p,
    .section .contact-heading,
    .section .contact-form,
    .section .contact-info-title,
    .section .contact-info-item,
    .section .career-photo-wrap,
    .section .career-summary,
    .section .career-personal-item,
    .section .career-meta-item,
    .section .career-detail,
    .section .career-timeline-item,
    .section .platform-editor-copy,
    .section .platform-preview,
    .section .preview-card,
    .section .platform-story-card {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .glass-panel,
    .hero-copy,
    .hero-menu-panel,
    .section-card,
    .contact-form-card,
    .contact-info-card,
    .section-inner,
    .section .hero-badge,
    .section .hero-title,
    .section .hero-subtitle,
    .section .hero-description,
    .section .hero-point,
    .section .hero-menu-title,
    .section .hero-menu-subtitle,
    .section .menu-card,
    .section .glass-card,
    .section .section-card .eyebrow,
    .section .section-card h2,
    .section .section-card p,
    .section .contact-heading,
    .section .contact-form,
    .section .contact-info-title,
    .section .contact-info-item,
    .section .career-photo-wrap,
    .section .career-summary,
    .section .career-personal-item,
    .section .career-meta-item,
    .section .career-detail,
    .section .career-timeline-item,
    .section .platform-editor-copy,
    .section .platform-preview,
    .section .preview-card,
    .section .platform-story-card {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
        filter: none !important;
    }
}

/* platform scroll fix mobile */

@media (max-width: 768px) {
    .platform-section {
        padding: 40px 0;
    }

    .platform-editor-copy,
    .platform-preview,
    .platform-preview-main,
    .preview-card,
    .platform-story-card {
        min-height: auto;
    }
}


/* =========================================================
   PREMIUM FUTURE TECH HERO
   - 첫 화면 전용 하이엔드 / 미래지향 / 애플식 프리미엄 랜딩
   - 기존 섹션과 분리된 독립 디자인
========================================================= */
.premium-hero-section {
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.2), transparent 24%),
        radial-gradient(circle at 84% 18%, rgba(120, 154, 255, 0.34), transparent 28%),
        radial-gradient(circle at 18% 72%, rgba(176, 205, 255, 0.16), transparent 24%),
        linear-gradient(145deg, #02040b 0%, #07101f 44%, #02040a 100%);
}

.premium-hero-section::before,
.premium-hero-section::after {
    display: none;
}

.premium-hero-content {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.premium-hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.72), transparent 68%);
    -webkit-mask-image: radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.72), transparent 68%);
}

.premium-hero-content::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 16%, transparent 76%, rgba(255, 255, 255, 0.08)),
        radial-gradient(circle at 50% 108%, rgba(255, 255, 255, 0.16), transparent 28%);
    mix-blend-mode: screen;
    opacity: 0.72;
}

.premium-bg,
.premium-bg span {
    position: absolute;
    pointer-events: none;
}

.premium-bg {
    inset: 0;
    z-index: 0;
}

.premium-aurora {
    border-radius: 999px;
    filter: blur(14px);
    opacity: 0.86;
}

.premium-aurora-one {
    right: 5%;
    top: 12%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(142, 173, 255, 0.45), transparent 62%);
    animation: premiumFloatOne 9s ease-in-out infinite;
}

.premium-aurora-two {
    left: -8%;
    bottom: 4%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 66%);
    animation: premiumFloatTwo 11s ease-in-out infinite;
}

.premium-aurora-three {
    left: 45%;
    top: -18%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(86, 116, 255, 0.2), transparent 68%);
    animation: premiumFloatThree 13s ease-in-out infinite;
}

.premium-orbit {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 0 70px rgba(255, 255, 255, 0.035),
        0 0 90px rgba(126, 162, 255, 0.1);
    transform: rotate(-18deg);
}

.premium-orbit-one {
    right: 3%;
    top: 16%;
    width: 620px;
    height: 620px;
}

.premium-orbit-two {
    right: 11%;
    top: 24%;
    width: 420px;
    height: 420px;
    opacity: 0.68;
}

.premium-hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
    align-items: center;
    gap: clamp(34px, 4vw, 70px);
    width: min(1420px, calc(100% - 86px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 118px 0 86px;
}

.premium-hero-copy {
    position: relative;
    min-width: 0;
}

.premium-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.premium-meta-row span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.premium-meta-row span:first-child {
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.94);
}

.premium-hero-title {
    position: relative;
    margin: 0;
    color: #fff;
    font-size: clamp(68px, 8.2vw, 122px);
    font-weight: 900;
    line-height: 0.91;
    letter-spacing: -0.084em;
    text-shadow:
        0 22px 52px rgba(0, 0, 0, 0.38),
        0 0 48px rgba(120, 154, 255, 0.08);
}

.premium-hero-title span {
    display: inline-block;
    background:
        linear-gradient(90deg, #fff 0%, #dfe8ff 34%, #8fb0ff 64%, #fff 100%);
    background-size: 180% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premiumTitleSheen 7s ease-in-out infinite;
}

.premium-hero-lead {
    max-width: 760px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(16px, 1.32vw, 19px);
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: -0.02em;
}

.premium-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.premium-action {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 174px;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.015em;
    transition:
        transform 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        color 0.24s ease;
}

.premium-action::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.38) 45%, transparent 72%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}

.premium-action:hover::before {
    transform: translateX(120%);
}

.premium-action span,
.premium-action i {
    position: relative;
    z-index: 1;
}

.premium-action-primary {
    background: rgba(255, 255, 255, 0.96);
    color: #040815;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.32),
        0 0 36px rgba(167, 191, 255, 0.18);
}

.premium-action-primary:hover {
    transform: translateY(-3px);
    color: #040815;
    background: #fff;
    box-shadow:
        0 28px 62px rgba(0, 0, 0, 0.42),
        0 0 46px rgba(167, 191, 255, 0.26);
}

.premium-action-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.premium-action-ghost:hover {
    transform: translateY(-3px);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
}

.premium-signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 760px;
    margin-top: 20px;
}

.premium-signal-card {
    position: relative;
    overflow: hidden;
    min-height: 104px;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.105);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 44px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.premium-signal-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), transparent);
}

.premium-signal-card strong {
    display: block;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.premium-signal-card span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: -0.015em;
}

.premium-stage {
    position: relative;
    min-height: 650px;
    perspective: 1400px;
}

.premium-device-shadow {
    position: absolute;
    left: 6%;
    right: 2%;
    bottom: 16px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.54), transparent 70%);
    filter: blur(18px);
    transform: rotateX(68deg);
}

.premium-device {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: min(100%, 570px);
    margin-left: auto;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05)),
        rgba(7, 11, 24, 0.68);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04),
        0 34px 100px rgba(0, 0, 0, 0.46),
        0 0 70px rgba(126, 162, 255, 0.12);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    transform: rotateY(-9deg) rotateX(4deg) translateZ(0);
    transform-origin: center;
    transition:
        transform 0.5s var(--ease-out),
        box-shadow 0.32s ease,
        border-color 0.32s ease;
}

.premium-device:hover {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-6px) translateZ(0);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 42px 110px rgba(0, 0, 0, 0.54),
        0 0 82px rgba(126, 162, 255, 0.17);
}

.premium-device::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 0%, rgba(255, 255, 255, 0.22), transparent 30%),
        linear-gradient(120deg, rgba(255, 255, 255, 0.11), transparent 42%);
}

.premium-device-bar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 82px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.055);
}

.premium-window-dots {
    display: flex;
    gap: 8px;
}

.premium-window-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.premium-device-bar strong {
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.premium-device-bar em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(160, 190, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.premium-device-body {
    position: relative;
    z-index: 1;
    padding: 22px;
}

.premium-insight-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    min-height: 190px;
    padding: 24px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 86% 42%, rgba(166, 195, 255, 0.32), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.055);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 18px 50px rgba(0, 0, 0, 0.23);
}

.premium-insight-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.premium-insight-card strong {
    display: block;
    max-width: 330px;
    color: rgba(255, 255, 255, 0.98);
    font-size: clamp(27px, 2.6vw, 38px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.065em;
}

.premium-insight-card p {
    max-width: 340px;
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.72;
}

.premium-insight-orb {
    flex: 0 0 auto;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.96), rgba(206, 221, 255, 0.72) 24%, rgba(115, 151, 255, 0.24) 52%, transparent 72%);
    filter: drop-shadow(0 22px 36px rgba(87, 121, 255, 0.22));
    animation: premiumOrbPulse 4.8s ease-in-out infinite;
}

.premium-launcher-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.premium-launcher-card {
    position: relative;
    overflow: hidden;
    min-height: 164px;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
    color: #fff;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 34px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.premium-launcher-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(180, 205, 255, 0.24), transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 55%);
    transition: opacity 0.24s ease;
}

.premium-launcher-card:hover {
    transform: translateY(-7px);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.26);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.075);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.3);
}

.premium-launcher-card:hover::before {
    opacity: 1;
}

.premium-launcher-no,
.premium-launcher-card strong,
.premium-launcher-card p,
.premium-launcher-card i {
    position: relative;
    z-index: 1;
}

.premium-launcher-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.premium-launcher-card strong {
    display: block;
    margin: 20px 38px 10px 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 22px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.052em;
}

.premium-launcher-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.68;
}

.premium-launcher-card i {
    position: absolute;
    right: 18px;
    top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    font-style: normal;
}

.premium-floating-card,
.premium-floating-pill {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
        rgba(8, 12, 26, 0.58);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 22px 58px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.premium-floating-card {
    display: grid;
    gap: 8px;
    min-width: 154px;
    padding: 16px;
    border-radius: 24px;
}

.premium-floating-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #050916;
    font-size: 15px;
    font-weight: 900;
}

.premium-floating-card strong {
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.premium-floating-card-one {
    left: -10px;
    top: 70px;
    animation: premiumCardFloat 6s ease-in-out infinite;
}

.premium-floating-card-two {
    right: -20px;
    bottom: 112px;
    animation: premiumCardFloat 7.2s ease-in-out infinite reverse;
}

.premium-floating-pill {
    bottom: 1px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    animation: premiumPillFloat 8s ease-in-out infinite;
}

.premium-bottom-ribbon {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: min(760px, calc(100% - 80px));
    padding: 10px;
    border-radius: 999px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.premium-bottom-ribbon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.premium-bottom-ribbon span:first-child {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
}

body.has-floating-profile .premium-hero-shell {
    margin-left: clamp(250px, 19vw, 350px);
    width: min(1420px, calc(100% - clamp(300px, 22vw, 380px) - 86px));
}

.premium-hero-copy,
.premium-stage,
.premium-bottom-ribbon,
.premium-signal-card,
.premium-launcher-card,
.premium-floating-card,
.premium-floating-pill {
    opacity: 0.88;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.78s ease,
        transform 0.78s var(--ease-out),
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
    will-change: opacity, transform;
}

.section.motion-in .premium-hero-copy,
.section.motion-in .premium-stage,
.section.motion-in .premium-bottom-ribbon,
.section.motion-in .premium-signal-card,
.section.motion-in .premium-launcher-card,
.section.motion-in .premium-floating-card,
.section.motion-in .premium-floating-pill {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.section.motion-in .premium-hero-copy { transition-delay: 0.06s; }
.section.motion-in .premium-stage { transition-delay: 0.15s; }
.section.motion-in .premium-signal-card:nth-child(1) { transition-delay: 0.22s; }
.section.motion-in .premium-signal-card:nth-child(2) { transition-delay: 0.28s; }
.section.motion-in .premium-signal-card:nth-child(3) { transition-delay: 0.34s; }
.section.motion-in .premium-launcher-card:nth-child(1) { transition-delay: 0.23s; }
.section.motion-in .premium-launcher-card:nth-child(2) { transition-delay: 0.29s; }
.section.motion-in .premium-launcher-card:nth-child(3) { transition-delay: 0.35s; }
.section.motion-in .premium-launcher-card:nth-child(4) { transition-delay: 0.41s; }
.section.motion-in .premium-floating-card-one { transition-delay: 0.48s; }
.section.motion-in .premium-floating-card-two { transition-delay: 0.52s; }
.section.motion-in .premium-floating-pill { transition-delay: 0.56s; }
.section.motion-in .premium-bottom-ribbon { transition-delay: 0.6s; }

@keyframes premiumTitleSheen {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes premiumFloatOne {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-18px, 22px, 0) scale(1.05); }
}

@keyframes premiumFloatTwo {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(24px, -16px, 0) scale(1.04); }
}

@keyframes premiumFloatThree {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(20px, 28px, 0) scale(1.06); }
}

@keyframes premiumOrbPulse {
    0%, 100% { transform: scale(1); opacity: 0.88; }
    50% { transform: scale(1.06); opacity: 1; }
}

@keyframes premiumCardFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -14px, 0); }
}

@keyframes premiumPillFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(16px, -10px, 0); }
}

@media (max-width: 1400px) {
    body.has-floating-profile .premium-hero-shell {
        width: min(1260px, calc(100% - 310px));
        margin-left: 300px;
    }

    .premium-hero-shell {
        width: min(1280px, calc(100% - 54px));
        gap: 34px;
    }

    .premium-hero-title {
        font-size: clamp(62px, 7.6vw, 104px);
    }

    .premium-stage {
        min-height: 610px;
    }
}

@media (max-height: 840px) and (min-width: 769px) {
    .premium-hero-shell {
        padding: 104px 0 68px;
    }

    .premium-hero-title {
        font-size: clamp(56px, 7vw, 92px);
    }

    .premium-hero-lead {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.72;
    }

    .premium-hero-actions {
        margin-top: 24px;
    }

    .premium-signal-grid {
        margin-top: 28px;
    }

    .premium-signal-card {
        min-height: 86px;
        padding: 15px;
    }

    .premium-stage {
        min-height: 550px;
    }

    .premium-insight-card {
        min-height: 154px;
        padding: 20px;
    }

    .premium-launcher-card {
        min-height: 136px;
        padding: 16px;
    }

    .premium-launcher-card strong {
        margin-top: 14px;
        font-size: 19px;
    }

    .premium-floating-pill,
    .premium-bottom-ribbon {
        display: none;
    }
}

@media (max-width: 1200px) {
    body.has-floating-profile .premium-hero-shell {
        width: min(1040px, calc(100% - 48px));
        margin-left: auto;
    }

    .premium-hero-shell {
        grid-template-columns: 1fr;
        max-width: 1040px;
        padding: 118px 0 74px;
    }

    .premium-hero-title {
        font-size: clamp(58px, 9vw, 92px);
    }

    .premium-stage {
        min-height: auto;
    }

    .premium-device {
        width: 100%;
        margin: 0;
        transform: none;
    }

    .premium-device:hover {
        transform: translateY(-5px);
    }

    .premium-floating-card-one {
        left: 18px;
        top: 88px;
    }

    .premium-floating-card-two {
        right: 18px;
        bottom: 90px;
    }

    .premium-bottom-ribbon {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -46px auto 24px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .premium-hero-content {
        overflow: visible;
    }

    .premium-hero-content::before,
    .premium-hero-content::after,
    .premium-orbit,
    .premium-floating-card,
    .premium-floating-pill,
    .premium-bottom-ribbon {
        display: none;
    }

    .premium-aurora-one {
        right: -42%;
        top: 8%;
        width: 360px;
        height: 360px;
    }

    .premium-aurora-two {
        left: -46%;
        bottom: 32%;
        width: 320px;
        height: 320px;
    }

    .premium-hero-shell {
        width: calc(100% - 30px);
        gap: 26px;
        padding: 104px 0 44px;
    }

    .premium-meta-row {
        gap: 8px;
        margin-bottom: 20px;
    }

    .premium-meta-row span {
        min-height: 34px;
        padding: 0 12px;
        font-size: 10px;
        letter-spacing: 0.1em;
    }

    .premium-hero-title {
        font-size: clamp(44px, 15vw, 66px);
        line-height: 0.98;
        letter-spacing: -0.07em;
    }

    .premium-hero-lead {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.82;
    }

    .premium-hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 24px;
    }

    .premium-action {
        width: 100%;
        min-height: 52px;
        font-size: 14px;
    }

    .premium-signal-grid,
    .premium-launcher-grid {
        grid-template-columns: 1fr;
    }

    .premium-signal-grid {
        margin-top: 26px;
    }

    .premium-signal-card,
    .premium-launcher-card {
        min-height: auto;
        border-radius: 22px;
    }

    .premium-device {
        border-radius: 26px;
    }

    .premium-device-bar {
        grid-template-columns: 56px 1fr auto;
        gap: 10px;
        padding: 15px;
    }

    .premium-window-dots {
        gap: 6px;
    }

    .premium-window-dots span {
        width: 9px;
        height: 9px;
    }

    .premium-device-bar strong {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .premium-device-bar em {
        min-height: 24px;
        padding: 0 8px;
        font-size: 9px;
    }

    .premium-device-body {
        padding: 16px;
    }

    .premium-insight-card {
        display: block;
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
    }

    .premium-insight-card strong {
        font-size: 26px;
    }

    .premium-insight-card p,
    .premium-launcher-card p {
        font-size: 13px;
        line-height: 1.7;
    }

    .premium-insight-orb {
        width: 96px;
        height: 96px;
        margin-top: 18px;
    }

    .premium-launcher-card {
        padding: 17px;
    }

    .premium-launcher-card strong {
        margin: 18px 40px 8px 0;
        font-size: 20px;
    }

    .premium-hero-copy,
    .premium-stage,
    .premium-signal-card,
    .premium-launcher-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-aurora,
    .premium-hero-title span,
    .premium-insight-orb,
    .premium-floating-card,
    .premium-floating-pill {
        animation: none !important;
    }

    .premium-hero-copy,
    .premium-stage,
    .premium-bottom-ribbon,
    .premium-signal-card,
    .premium-launcher-card,
    .premium-floating-card,
    .premium-floating-pill {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* =========================================================
   LUXURY FULL PAGE REDESIGN
   - Platform / Career / Contact sections upgraded to match premium hero
========================================================= */
.premium-section-inner {
    position: relative;
    z-index: 2;
    width: min(1360px, calc(100% - 88px));
}

.premium-section-label {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.premium-section-label span,
.premium-section-label em {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.065);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.premium-section-label em {
    color: rgba(200, 216, 255, 0.76);
    background: rgba(127, 162, 255, 0.1);
}

.premium-section-glow {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(6px);
}

.premium-section-glow-one {
    right: -90px;
    top: -90px;
    width: 430px;
    height: 430px;
    background: radial-gradient(circle, rgba(116, 151, 255, 0.28), transparent 64%);
}

.premium-section-glow-two {
    left: 6%;
    bottom: -160px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 66%);
}

.premium-section-glow-three {
    left: -100px;
    top: 2%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 207, 255, 0.18), transparent 68%);
}

.premium-section-glow-four {
    right: 4%;
    bottom: -160px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 66%);
}

.premium-section-glow-five {
    right: -140px;
    top: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(142, 171, 255, 0.22), transparent 66%);
}

.premium-section-glow-six {
    left: 4%;
    bottom: -180px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 68%);
}

/* Platform */
.premium-platform-section,
.premium-career-section,
.premium-contact-section {
    overflow: hidden;
}

.premium-platform-section::before,
.premium-career-section::before,
.premium-contact-section::before {
    opacity: 0.22;
}

.platform-luxury-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    min-height: calc(100vh - 170px);
    padding-top: 84px;
}

.platform-luxury-copy {
    align-self: center;
    min-width: 0;
}

.platform-luxury-copy h2,
.contact-luxury-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.075em;
    text-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.platform-luxury-copy h2 span,
.contact-luxury-copy h2 span {
    display: inline-block;
    background: linear-gradient(90deg, #fff 0%, #b9c9ff 50%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-luxury-copy p,
.contact-luxury-copy p {
    max-width: 620px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.9;
    letter-spacing: -0.015em;
}

.platform-luxury-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.platform-luxury-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.platform-luxury-actions a:first-child {
    background: #fff;
    color: #070b18;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.platform-luxury-actions a:hover {
    transform: translateY(-3px);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.13);
}

.platform-luxury-actions a:first-child:hover {
    color: #070b18;
    background: #fff;
}

.platform-orbit-stage {
    position: relative;
    align-self: center;
    min-height: 520px;
    perspective: 1200px;
}

.platform-orbit-ring {
    position: absolute;
    inset: 50% auto auto 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) rotateX(66deg) rotateZ(-24deg);
    pointer-events: none;
}

.platform-orbit-ring-one {
    width: 560px;
    height: 560px;
    box-shadow: 0 0 90px rgba(118, 157, 255, 0.16);
}

.platform-orbit-ring-two {
    width: 390px;
    height: 390px;
    border-color: rgba(184, 207, 255, 0.16);
}

.platform-os-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    min-height: 520px;
    padding: 22px;
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(circle at 80% 0%, rgba(167, 190, 255, 0.18), transparent 34%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
        rgba(7, 10, 20, 0.66);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 32px 90px rgba(0, 0, 0, 0.38);
    transform: rotateY(-7deg) rotateX(3deg);
    transform-origin: center;
}

.platform-os-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.1), transparent 32%, rgba(255,255,255,0.035) 68%, transparent),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: auto, 38px 38px, 38px 38px;
    opacity: 0.72;
    pointer-events: none;
}

.platform-os-top,
.platform-os-hero,
.platform-module-grid,
.platform-flow-panel {
    position: relative;
    z-index: 1;
}

.platform-os-top,
.contact-console-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.platform-os-top strong,
.contact-console-top strong {
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.platform-os-top em,
.contact-console-top em {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(180, 204, 255, 0.12);
    color: rgba(220, 230, 255, 0.76);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.platform-os-hero {
    min-height: 156px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.18), transparent 38%),
        rgba(255, 255, 255, 0.06);
}

.platform-os-hero span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.64);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.platform-os-hero strong {
    display: block;
    max-width: 470px;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.055em;
}

.platform-module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.platform-module-card {
    position: relative;
    overflow: hidden;
    min-height: 126px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
    color: #fff;
    text-decoration: none;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.platform-module-card:hover {
    transform: translateY(-6px);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.platform-module-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 900;
}

.platform-module-card strong {
    display: block;
    margin: 18px 0 6px;
    color: rgba(255, 255, 255, 0.98);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.platform-module-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 800;
}

.platform-flow-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 16px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.platform-flow-panel span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.platform-flow-panel strong {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 900;
}

.platform-flow-panel i {
    flex: 0 0 96px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.16), rgba(255,255,255,0.9));
    box-shadow: 0 0 28px rgba(190, 210, 255, 0.48);
}

.platform-float-chip {
    position: absolute;
    z-index: 4;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.platform-float-chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: #fff;
    color: #070b18;
    font-size: 18px;
    font-weight: 900;
}

.platform-float-chip strong {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.platform-float-chip-one {
    right: -24px;
    top: 62px;
}

.platform-float-chip-two {
    left: -30px;
    bottom: 86px;
}

.platform-capability-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.platform-capability-card {
    position: relative;
    overflow: hidden;
    min-height: 132px;
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.03)),
        rgba(255, 255, 255, 0.045);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 18px 38px rgba(0, 0, 0, 0.18);
}

.platform-capability-card span {
    position: absolute;
    right: 18px;
    top: 12px;
    color: rgba(255, 255, 255, 0.05);
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
}

.platform-capability-card strong {
    display: block;
    margin: 22px 0 10px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.platform-capability-card p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.75;
}

/* Career */
.career-luxury-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    grid-template-rows: auto auto;
    gap: 20px;
    min-height: calc(100vh - 170px);
    padding-top: 84px;
}

.career-identity-card,
.career-command-card,
.career-luxury-timeline-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.032)),
        rgba(7, 10, 20, 0.62);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 30px 76px rgba(0, 0, 0, 0.32);
}

.career-identity-card {
    display: grid;
    gap: 18px;
    align-content: stretch;
    padding: 22px;
    border-radius: 38px;
}

.career-photo-stage {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 25%, rgba(190, 210, 255, 0.22), transparent 42%),
        rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.career-photo-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.62));
    pointer-events: none;
}

.career-photo-stage .career-photo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    filter: saturate(0.98) contrast(1.04);
}

.career-photo-orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 80px rgba(142, 171, 255, 0.25);
}

.career-photo-stage > span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.career-identity-copy h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(42px, 4.5vw, 62px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.065em;
}

.career-identity-copy .career-name span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 16px;
    letter-spacing: -0.02em;
}

.career-identity-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.85;
}

.career-command-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    border-radius: 38px;
}

.career-command-card::after {
    content: "ENGINEER";
    position: absolute;
    right: -18px;
    bottom: -26px;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(78px, 10vw, 150px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.career-command-head {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.career-command-head span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.075);
    color: rgba(220, 230, 255, 0.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.career-command-head strong {
    display: block;
    color: rgba(255, 255, 255, 0.98);
    font-size: clamp(42px, 4.6vw, 70px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.07em;
}

.career-metric-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.career-metric-card {
    min-height: 112px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.career-metric-card span {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.career-metric-card strong {
    display: block;
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.career-command-card .career-skill-tags {
    position: relative;
    z-index: 1;
    margin-top: 26px;
}

.career-luxury-timeline-panel {
    grid-column: 1 / -1;
    min-height: 260px;
    margin-top: 0;
    padding: 20px;
    border-radius: 34px;
}

.career-luxury-timeline-panel .career-detail-head {
    padding: 0 0 26px;
}

.career-luxury-timeline-panel .career-detail-head strong {
    margin-top: 12px;
    font-size: clamp(28px, 3vw, 42px);
}

.career-luxury-timeline-panel .career-detail-head p {
    margin-top: 8px;
}

.career-luxury-timeline-panel .career-timeline {
    padding-top: 28px;
    background-size: calc(100% - 54px) 1px;
    background-position: 27px 0;
}

.career-luxury-timeline-panel .career-timeline-item {
    flex-basis: 305px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Contact */
.contact-luxury-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
    gap: 24px;
    align-items: center;
    min-height: calc(100vh - 170px);
    padding-top: 84px;
}

.contact-luxury-copy {
    min-width: 0;
}

.contact-signal-list {
    display: grid;
    gap: 12px;
    max-width: 520px;
    margin-top: 34px;
}

.contact-signal-card {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.045);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-signal-card:hover {
    transform: translateY(-4px);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.contact-signal-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 20px;
}

.contact-signal-card strong {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.contact-signal-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 800;
}

.contact-console-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        radial-gradient(circle at 95% 0%, rgba(162, 188, 255, 0.16), transparent 34%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
        rgba(7, 10, 20, 0.66);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        0 30px 86px rgba(0, 0, 0, 0.34);
}

.contact-console-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
    pointer-events: none;
}

.contact-console-top,
.premium-contact-layout {
    position: relative;
    z-index: 1;
}

.premium-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(245px, 0.8fr);
    gap: 18px;
}

.premium-contact-layout .contact-form-card,
.premium-contact-mini-card {
    border-radius: 28px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.032)),
        rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.premium-contact-layout .contact-form {
    padding: 22px;
}

.premium-contact-layout .form-field {
    margin-bottom: 14px;
}

.premium-contact-layout .form-field label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.premium-contact-layout .form-field input,
.premium-contact-layout .form-field textarea {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.065);
    border-color: rgba(255, 255, 255, 0.12);
}

.premium-contact-layout .form-field textarea {
    min-height: 142px;
}

.premium-contact-layout .contact-submit-btn {
    min-height: 54px;
}

.premium-contact-mini-card {
    padding: 22px;
}

.premium-contact-mini-card .contact-info-title h3 {
    font-size: 26px;
    line-height: 1.08;
}

.premium-contact-mini-card .contact-info-title p {
    font-size: 13px;
}

.premium-contact-mini-card .contact-info-list {
    gap: 12px;
    margin-top: 24px;
}

.premium-contact-mini-card .contact-info-item {
    grid-template-columns: 42px 1fr;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
}

.premium-contact-mini-card .contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    color: #070b18;
    background: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 900;
}

/* Motion hooks */
.section .platform-luxury-copy,
.section .platform-orbit-stage,
.section .platform-capability-card,
.section .career-identity-card,
.section .career-command-card,
.section .career-luxury-timeline-panel,
.section .contact-luxury-copy,
.section .contact-console-card,
.section .contact-signal-card {
    opacity: 0.84;
    transform: translate3d(0, 24px, 0) scale(0.985);
    transition:
        opacity 0.72s ease,
        transform 0.72s var(--ease-out),
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
    will-change: opacity, transform;
}

.section.motion-in .platform-luxury-copy,
.section.motion-in .platform-orbit-stage,
.section.motion-in .platform-capability-card,
.section.motion-in .career-identity-card,
.section.motion-in .career-command-card,
.section.motion-in .career-luxury-timeline-panel,
.section.motion-in .contact-luxury-copy,
.section.motion-in .contact-console-card,
.section.motion-in .contact-signal-card {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.section.motion-in .platform-luxury-copy,
.section.motion-in .career-identity-card,
.section.motion-in .contact-luxury-copy {
    transition-delay: 0.08s;
}

.section.motion-in .platform-orbit-stage,
.section.motion-in .career-command-card,
.section.motion-in .contact-console-card {
    transition-delay: 0.16s;
}

.section.motion-in .platform-capability-card:nth-child(1),
.section.motion-in .contact-signal-card:nth-child(1) { transition-delay: 0.22s; }
.section.motion-in .platform-capability-card:nth-child(2),
.section.motion-in .contact-signal-card:nth-child(2) { transition-delay: 0.28s; }
.section.motion-in .platform-capability-card:nth-child(3),
.section.motion-in .contact-signal-card:nth-child(3) { transition-delay: 0.34s; }
.section.motion-in .career-luxury-timeline-panel { transition-delay: 0.24s; }

body.has-floating-profile .premium-section-inner {
    margin-left: clamp(250px, 19vw, 350px);
    width: min(1360px, calc(100% - clamp(300px, 22vw, 380px) - 88px));
}

@media (max-height: 820px) and (min-width: 769px) {
    .platform-luxury-shell,
    .career-luxury-shell,
    .contact-luxury-shell {
        min-height: calc(100vh - 130px);
        padding-top: 70px;
        gap: 16px;
    }

    .platform-luxury-copy h2,
    .contact-luxury-copy h2 {
        font-size: clamp(44px, 5vw, 68px);
    }

    .platform-luxury-copy p,
    .contact-luxury-copy p {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.75;
    }

    .platform-orbit-stage,
    .platform-os-card,
    .career-identity-card,
    .career-command-card {
        min-height: 430px;
    }

    .platform-os-hero {
        min-height: 126px;
        padding: 20px;
    }

    .platform-module-card {
        min-height: 104px;
        padding: 15px;
    }

    .platform-capability-card {
        min-height: 108px;
        padding: 18px;
    }

    .platform-capability-card strong {
        margin-top: 14px;
    }

    .career-photo-stage,
    .career-photo-stage .career-photo {
        min-height: 240px;
    }

    .career-command-head strong {
        font-size: clamp(34px, 4vw, 54px);
    }

    .career-metric-card {
        min-height: 92px;
        padding: 15px;
    }

    .career-luxury-timeline-panel {
        min-height: 220px;
    }

    .contact-console-card {
        padding: 20px;
    }

    .premium-contact-layout .form-field input,
    .premium-contact-layout .form-field textarea {
        padding: 13px 14px;
    }

    .premium-contact-layout .form-field textarea {
        min-height: 110px;
    }
}

@media (max-height: 720px) and (min-width: 769px) {
    .platform-capability-grid,
    .contact-signal-list {
        display: none;
    }

    .platform-luxury-shell,
    .contact-luxury-shell {
        grid-template-rows: auto;
    }

    .career-luxury-timeline-panel .career-detail-head p {
        display: none;
    }
}

@media (max-width: 1400px) {
    body.has-floating-profile .premium-section-inner {
        width: min(1260px, calc(100% - 310px));
        margin-left: 300px;
    }

    .premium-section-inner {
        width: min(1280px, calc(100% - 54px));
    }
}

@media (max-width: 1200px) {
    body.has-floating-profile .premium-section-inner {
        width: min(1040px, calc(100% - 48px));
        margin-left: auto;
    }

    .platform-luxury-shell,
    .career-luxury-shell,
    .contact-luxury-shell {
        grid-template-columns: 1fr;
        min-height: auto;
        max-width: 1040px;
        margin: 0 auto;
        padding-top: 110px;
    }

    .platform-os-card {
        transform: none;
    }

    .platform-orbit-stage,
    .platform-os-card,
    .career-identity-card,
    .career-command-card {
        min-height: auto;
    }

    .platform-capability-grid,
    .career-metric-grid,
    .premium-contact-layout {
        grid-template-columns: 1fr;
    }

    .career-luxury-timeline-panel {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .premium-section-inner {
        width: calc(100% - 30px);
    }

    .premium-section-glow,
    .platform-orbit-ring,
    .platform-float-chip {
        display: none;
    }

    .platform-luxury-shell,
    .career-luxury-shell,
    .contact-luxury-shell {
        gap: 18px;
        padding-top: 95px;
    }

    .platform-luxury-copy h2,
    .contact-luxury-copy h2 {
        font-size: clamp(40px, 13vw, 58px);
        line-height: 1;
    }

    .platform-luxury-copy p,
    .contact-luxury-copy p {
        font-size: 14px;
        line-height: 1.85;
    }

    .platform-luxury-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .platform-luxury-actions a {
        width: 100%;
    }

    .platform-os-card,
    .career-identity-card,
    .career-command-card,
    .career-luxury-timeline-panel,
    .contact-console-card {
        padding: 18px;
        border-radius: 24px;
    }

    .platform-os-hero {
        min-height: auto;
        padding: 18px;
        border-radius: 20px;
    }

    .platform-os-hero strong {
        font-size: 24px;
    }

    .platform-module-grid,
    .platform-capability-grid,
    .career-metric-grid,
    .premium-contact-layout {
        grid-template-columns: 1fr;
    }

    .platform-module-card,
    .platform-capability-card {
        min-height: auto;
        border-radius: 20px;
    }

    .platform-flow-panel {
        display: grid;
    }

    .platform-flow-panel i {
        width: 100%;
        flex-basis: auto;
    }

    .career-photo-stage,
    .career-photo-stage .career-photo {
        min-height: 270px;
        border-radius: 22px;
    }

    .career-identity-copy h2,
    .career-command-head strong {
        font-size: 38px;
        line-height: 1.05;
    }

    .career-luxury-timeline-panel .career-detail-head {
        display: grid;
        gap: 16px;
    }

    .contact-signal-list {
        margin-top: 24px;
    }

    .contact-signal-card {
        grid-template-columns: 44px 1fr;
        border-radius: 20px;
    }

    .contact-signal-card > span {
        width: 44px;
        height: 44px;
        border-radius: 15px;
    }

    .premium-contact-layout .contact-form {
        padding: 18px;
    }

    .premium-contact-mini-card {
        padding: 18px;
    }

    .section .platform-luxury-copy,
    .section .platform-orbit-stage,
    .section .platform-capability-card,
    .section .career-identity-card,
    .section .career-command-card,
    .section .career-luxury-timeline-panel,
    .section .contact-luxury-copy,
    .section .contact-console-card,
    .section .contact-signal-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section .platform-luxury-copy,
    .section .platform-orbit-stage,
    .section .platform-capability-card,
    .section .career-identity-card,
    .section .career-command-card,
    .section .career-luxury-timeline-panel,
    .section .contact-luxury-copy,
    .section .contact-console-card,
    .section .contact-signal-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* final alignment safety for upgraded full-page sections */
.premium-section-inner.platform-inner,
.premium-section-inner.projects-inner,
.premium-section-inner.community-inner {
    margin-top: 0 !important;
}

@media (min-width: 769px) {
    .premium-platform-section,
    .premium-career-section,
    .premium-contact-section {
        padding: 0;
    }

    .platform-luxury-shell,
    .career-luxury-shell,
    .contact-luxury-shell {
        max-height: calc(100vh - 48px);
    }
}

@media (min-width: 769px) {
    .platform-luxury-shell,
    .career-luxury-shell,
    .contact-luxury-shell {
        max-height: none;
    }
}

/* =========================================================
   FLOATING PROFILE SPACING FIX
   - 로그인 후 왼쪽 플로팅 프로필과 메인 섹션이 겹치지 않도록 보정
   - 플로팅 메뉴 오른쪽에서 약 30px 이상 떨어지도록 좌측 안전 여백 확대
   - 콘텐츠 가로 폭을 살짝 줄여 premium hero/platform/contact와 균형 유지
========================================================= */
@media (min-width: 1201px) {
    body.has-floating-profile {
        --floating-profile-safe-left: clamp(370px, 23vw, 430px);
        --floating-profile-right-gap: clamp(34px, 7vw, 100px);
        --floating-profile-content-max: 1180px;
    }

    body.has-floating-profile .premium-hero-shell,
    body.has-floating-profile .premium-section-inner,
    body.has-floating-profile .hero-shell,
    body.has-floating-profile .section-inner {
        width: min(
            var(--floating-profile-content-max),
            calc(100vw - var(--floating-profile-safe-left) - var(--floating-profile-right-gap))
        ) !important;
        max-width: calc(100vw - var(--floating-profile-safe-left) - var(--floating-profile-right-gap)) !important;
        margin-right: var(--floating-profile-right-gap) !important;
    }

    body.has-floating-profile .premium-hero-shell {
        grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
        gap: clamp(22px, 2.2vw, 36px);
    }

    body.has-floating-profile .platform-luxury-shell,
    body.has-floating-profile .career-luxury-shell,
    body.has-floating-profile .contact-luxury-shell {
        gap: clamp(18px, 2vw, 30px);
    }

    body.has-floating-profile .platform-luxury-shell {
        grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
    }

    body.has-floating-profile .career-luxury-shell {
        grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
    }

    body.has-floating-profile .contact-luxury-shell {
        grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
    }
}

@media (min-width: 1201px) and (max-width: 1460px) {
    body.has-floating-profile {
        --floating-profile-safe-left: clamp(360px, 26vw, 400px);
        --floating-profile-right-gap: 34px;
        --floating-profile-content-max: 1040px;
    }

    body.has-floating-profile .premium-hero-title,
    body.has-floating-profile .platform-luxury-copy h2,
    body.has-floating-profile .contact-luxury-copy h2 {
        font-size: clamp(48px, 5vw, 72px);
    }
}
/* =========================================================
   PREMIUM HERO LOGIN SPACING FIX
   - 로그인 후 왼쪽 플로팅 메뉴와 premium-hero-section 겹침 방지
   - premium-stage를 오른쪽으로 밀고, hero copy 폭/타이포를 로그인 레이아웃에 맞춤
   - 다른 섹션에는 영향 없음
========================================================= */
@media (min-width: 1201px) {
    body.has-floating-profile .premium-hero-section {
        --premium-hero-floating-safe-left: clamp(400px, 20vw, 510px);
        --premium-hero-floating-right-gap: clamp(30px, 3vw, 58px);
        --premium-hero-floating-max-width: 1240px;
    }

    body.has-floating-profile .premium-hero-shell {
        width: min(
            var(--premium-hero-floating-max-width),
            calc(100vw - var(--premium-hero-floating-safe-left) - var(--premium-hero-floating-right-gap))
        ) !important;
        max-width: calc(100vw - var(--premium-hero-floating-safe-left) - var(--premium-hero-floating-right-gap)) !important;
        margin-left: var(--premium-hero-floating-safe-left) !important;
        margin-right: var(--premium-hero-floating-right-gap) !important;
        grid-template-columns: minmax(0, 0.78fr) minmax(450px, 1.08fr) !important;
    }

    body.has-floating-profile .premium-hero-copy {
        max-width: 620px;
        min-width: 0;
        z-index: 4;
    }

    body.has-floating-profile .premium-hero-title {
        font-size: clamp(56px, 5.8vw, 96px);
        line-height: 0.92;
        letter-spacing: -0.078em;
    }

    body.has-floating-profile .premium-hero-lead {
        max-width: 600px;
        font-size: clamp(15px, 1.05vw, 17px);
    }

    body.has-floating-profile .premium-signal-grid {
        max-width: 620px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.has-floating-profile .premium-stage {
        justify-self: end;
        min-width: 0;
        margin-left: clamp(28px, 3.4vw, 72px);
    }

    body.has-floating-profile .premium-device {
        width: min(100%, 580px);
        margin-left: auto;
        margin-right: 0;
    }

    body.has-floating-profile .premium-device-shadow {
        left: 12%;
        right: -2%;
    }
}

@media (min-width: 1600px) {
    body.has-floating-profile .premium-hero-section {
        --premium-hero-floating-safe-left: clamp(435px, 20vw, 530px);
        --premium-hero-floating-max-width: 1280px;
    }

    body.has-floating-profile .premium-stage {
        margin-left: clamp(42px, 4vw, 88px);
    }
}

@media (min-width: 1201px) and (max-width: 1460px) {
    body.has-floating-profile .premium-hero-section {
        --premium-hero-floating-safe-left: clamp(400px, 20vw, 455px);
        --premium-hero-floating-right-gap: 28px;
        --premium-hero-floating-max-width: 980px;
    }

    body.has-floating-profile .premium-hero-shell {
        grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr) !important;
        gap: clamp(24px, 3vw, 42px) !important;
    }

    body.has-floating-profile .premium-hero-title {
        font-size: clamp(46px, 5.2vw, 70px);
    }

    body.has-floating-profile .premium-hero-lead {
        font-size: 15px;
        line-height: 1.74;
    }

    body.has-floating-profile .premium-stage {
        margin-left: clamp(18px, 2vw, 38px);
    }

    body.has-floating-profile .premium-device {
        width: min(100%, 480px);
    }

    body.has-floating-profile .premium-signal-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    body.has-floating-profile .premium-signal-card {
        min-height: 78px;
    }
}


/* =========================================================
   PROJECTS SECTION PHOTO / TIMELINE REFINEMENT
   - 프로필 사진을 카드 내부가 아닌 직접 노출되는 비주얼로 변경
   - 타임라인 스크롤바 제거 + 좌우 그림자 그라데이션으로 드래그 가능성 표현
========================================================= */
.premium-career-section .career-photo-direct-card {
    overflow: visible;
    align-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.premium-career-section .career-photo-direct-card::before,
.premium-career-section .career-photo-direct-card::after {
    display: none;
}

.premium-career-section .career-photo-direct-stage {
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    height: clamp(360px, 44vh, 500px);
    border: 0;
    border-radius: 0;
    background: transparent;
}

.premium-career-section .career-photo-direct-stage::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(108%, 430px);
    height: min(108%, 430px);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(185, 205, 255, 0.34), rgba(120, 156, 255, 0.1) 42%, transparent 70%);
    filter: blur(16px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.premium-career-section .career-photo-direct-stage::after {
    content: none;
}

.premium-career-section .career-photo-direct-stage .career-photo {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 0;
    border-radius: 34px;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.05);
    box-shadow:
        0 36px 90px rgba(0, 0, 0, 0.44),
        0 0 0 1px rgba(255, 255, 255, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.premium-career-section .career-luxury-timeline-panel {
    isolation: isolate;
}

.premium-career-section .career-luxury-timeline-panel::before,
.premium-career-section .career-luxury-timeline-panel::after {
    content: "";
    position: absolute;
    top: 82px;
    bottom: 18px;
    z-index: 7;
    width: clamp(58px, 8vw, 118px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.24s ease;
}

.premium-career-section .career-luxury-timeline-panel::before {
    left: 20px;
    background:
        linear-gradient(90deg, rgba(7, 10, 20, 0.94), rgba(7, 10, 20, 0.48) 42%, transparent),
        radial-gradient(circle at 0% 50%, rgba(185, 205, 255, 0.18), transparent 64%);
}

.premium-career-section .career-luxury-timeline-panel::after {
    right: 20px;
    background:
        linear-gradient(270deg, rgba(7, 10, 20, 0.94), rgba(7, 10, 20, 0.48) 42%, transparent),
        radial-gradient(circle at 100% 50%, rgba(185, 205, 255, 0.18), transparent 64%);
}

.premium-career-section .career-luxury-timeline-panel.has-left-shadow::before,
.premium-career-section .career-luxury-timeline-panel.has-right-shadow::after {
    opacity: 1;
}

.premium-career-section .career-luxury-timeline-panel .career-timeline {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-mask-image: none;
    mask-image: none;
}

.premium-career-section .career-luxury-timeline-panel .career-timeline::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.premium-career-section .career-luxury-timeline-panel .career-timeline.is-dragging {
    cursor: grabbing;
}

.premium-career-section .career-scroll-hint {
    gap: 9px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.76);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 28px rgba(0, 0, 0, 0.2);
}

.premium-career-section .career-scroll-hint::after {
    content: "↔";
    font-size: 14px;
    opacity: 0.92;
}

@media (max-height: 820px) and (min-width: 769px) {
    .premium-career-section .career-photo-direct-stage {
        height: clamp(300px, 39vh, 390px);
    }

    .premium-career-section .career-photo-direct-stage .career-photo {
        width: min(100%, 330px);
    }
}

@media (max-width: 1200px) {
    .premium-career-section .career-photo-direct-stage {
        height: clamp(340px, 48vh, 460px);
    }

    .premium-career-section .career-photo-direct-stage .career-photo {
        width: min(100%, 420px);
    }
}

@media (max-width: 768px) {
    .premium-career-section .career-photo-direct-stage {
        height: clamp(280px, 58vh, 420px);
    }

    .premium-career-section .career-photo-direct-stage .career-photo {
        width: 100%;
        border-radius: 24px;
    }

    .premium-career-section .career-luxury-timeline-panel::before,
    .premium-career-section .career-luxury-timeline-panel::after {
        top: 102px;
        width: 52px;
    }

    .premium-career-section .career-luxury-timeline-panel .career-timeline {
        -webkit-mask-image: none;
        mask-image: none;
    }
}
/* =========================================================
   COMMUNITY SECTION CARD REFINEMENT
   - 카드 구조는 유지하고 premium hero / platform 카드 톤에 맞춰 질감만 보정
   - community-section 내부에만 적용
========================================================= */
.community-section {
    overflow: hidden;
}

.community-section::before {
    opacity: 0.22;
    background: radial-gradient(circle, rgba(184, 207, 255, 0.18), transparent 66%);
}

.community-section::after {
    right: -120px;
    bottom: -160px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(142, 171, 255, 0.16), transparent 68%);
}

.community-section .contact-shell {
    position: relative;
    z-index: 2;
}

.community-section .contact-heading {
    margin-bottom: 28px;
}

.community-section .contact-heading .eyebrow {
    min-height: 34px;
    padding: 0 13px;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
    color: rgba(224, 232, 255, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.community-section .contact-heading h2 {
    margin-top: 14px;
    color: #fff;
    font-size: clamp(46px, 5.2vw, 76px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.07em;
    text-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.community-section .contact-layout {
    gap: 24px;
}

.community-section .contact-form-card,
.community-section .contact-info-card {
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        radial-gradient(circle at 100% 0%, rgba(184, 207, 255, 0.15), transparent 34%),
        linear-gradient(152deg, rgba(255, 255, 255, 0.125), rgba(255, 255, 255, 0.035)),
        rgba(7, 10, 20, 0.64);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 30px 86px rgba(0, 0, 0, 0.34);
}

.community-section .contact-form-card::before,
.community-section .contact-info-card::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.08), transparent 34%);
    background-size: 40px 40px, 40px 40px, auto;
    opacity: 0.72;
}

.community-section .contact-form {
    padding: 26px;
}

.community-section .form-field label {
    color: rgba(224, 232, 255, 0.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.community-section .form-field input,
.community-section .form-field textarea {
    border-radius: 18px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.065);
    color: rgba(255, 255, 255, 0.94);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 26px rgba(0, 0, 0, 0.08);
}

.community-section .form-field input:focus,
.community-section .form-field textarea:focus {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.095);
    border-color: rgba(190, 208, 255, 0.38);
    box-shadow:
        0 0 0 4px rgba(151, 181, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.community-section .contact-submit-btn {
    min-height: 56px;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.94);
    color: #070b18;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.community-section .contact-submit-btn:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.community-section .contact-info-card {
    padding: 28px;
}

.community-section .contact-info-title h3 {
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.98);
    font-size: clamp(28px, 2.5vw, 38px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.community-section .contact-info-title p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    line-height: 1.86;
}

.community-section .contact-info-list {
    gap: 14px;
    margin-top: 28px;
}

.community-section .contact-info-item {
    grid-template-columns: 46px 1fr;
    min-height: 86px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.028)),
        rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.community-section .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.98), rgba(219, 228, 255, 0.86));
    color: #070b18;
    font-size: 17px;
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.community-section .contact-info-item strong {
    color: rgba(255, 255, 255, 0.94);
    font-size: 14px;
    letter-spacing: -0.02em;
}

.community-section .contact-info-item p,
.community-section .contact-info-item a {
    color: rgba(255, 255, 255, 0.62);
}

.community-section .contact-info-link:hover,
.section.motion-in .community-section .contact-info-link:hover,
.community-section .contact-info-list .contact-info-link:hover {
    transform: translate3d(0, -4px, 0) !important;
    border-color: rgba(200, 216, 255, 0.24);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.135), rgba(255, 255, 255, 0.042)),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.community-section .contact-loading-message {
    color: rgba(255, 255, 255, 0.62);
}

@media (max-height: 820px) and (min-width: 769px) {
    .community-section .contact-heading {
        margin-bottom: 20px;
    }

    .community-section .contact-heading h2 {
        font-size: clamp(40px, 4.4vw, 58px);
    }

    .community-section .contact-form {
        padding: 22px;
    }

    .community-section .contact-info-card {
        padding: 22px;
    }

    .community-section .form-field textarea {
        min-height: 126px;
    }
}

@media (max-width: 1200px) {
    .community-section .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .community-section .contact-heading h2 {
        font-size: 38px;
        letter-spacing: -0.055em;
    }

    .community-section .contact-form,
    .community-section .contact-info-card {
        padding: 20px 18px;
    }

    .community-section .contact-form-card,
    .community-section .contact-info-card {
        border-radius: 24px;
    }

    .community-section .contact-info-item {
        min-height: auto;
        border-radius: 18px;
    }
}



/* =========================================================
   COMPACT FLOATING MENU SCROLL FIX
   - 플로팅 프로필 메뉴가 상단 배치로 바뀌는 태블릿/폰 구간에서는
     섹션 스냅용 overflow hidden을 풀어 일반 페이지처럼 스크롤되게 처리
========================================================= */
@media (max-width: 991px) {
    html,
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }
}
/* =========================================================
   TABLET NORMAL SCROLL HEIGHT FIX
   - 플로팅 메뉴가 상단 배치되는 태블릿/폰 구간에서는
     섹션을 100vh 화면 높이에 가두지 않고 내용 높이만큼 자연스럽게 늘림
   - 자동 섹션 스크롤 비활성화 구간(991px 이하)과 동일하게 적용
========================================================= */
@media (max-width: 991px) {
    html,
    body {
        height: auto;
        min-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .content {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .section,
    .premium-hero-section,
    .premium-platform-section,
    .premium-career-section,
    .community-section {
        display: block;
        height: auto;
        min-height: auto;
        overflow: visible;
        padding-top: clamp(34px, 7vw, 72px);
        padding-bottom: clamp(52px, 8vw, 88px);
    }

    .section.active {
        min-height: auto;
    }

    .premium-hero-shell,
    .premium-section-inner,
    .section-inner {
        width: min(100% - 32px, 860px);
        max-width: min(100% - 32px, 860px);
        margin-left: auto;
        margin-right: auto;
    }

    .premium-hero-shell {
        min-height: auto;
        padding-top: 34px;
        padding-bottom: 26px;
    }

    .platform-luxury-shell,
    .career-luxury-shell,
    .contact-luxury-shell {
        min-height: auto;
        padding-top: 36px;
        padding-bottom: 20px;
    }

    .premium-stage,
    .platform-orbit-stage,
    .career-photo-direct-stage,
    .contact-visual-card,
    .contact-console-card {
        min-height: auto;
    }

    .premium-device,
    .platform-os-card,
    .career-command-card,
    .contact-form-card,
    .contact-info-card {
        max-height: none;
    }
}

@media (max-width: 768px) {
    .section,
    .premium-hero-section,
    .premium-platform-section,
    .premium-career-section,
    .community-section {
        padding-top: 28px;
        padding-bottom: 68px;
    }

    .premium-hero-shell,
    .premium-section-inner,
    .section-inner {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
    }
}

/* =========================================================
   FINAL FIX: 1700px ~ 1380px FLOATING PROFILE SAFE GAP
   - 로그인 상태에서 왼쪽 플로팅 메뉴와 Platform / Projects / Community 섹션 겹침 방지
   - 플로팅 메뉴 오른쪽 끝 기준으로 본문을 약 30px 이상 떨어뜨림
   - 기존 하단 보정 코드보다 뒤에 있어야 우선 적용됩니다.
========================================================= */
@media (min-width: 1380px) and (max-width: 1700px) {
    body.has-floating-profile {
        --main-floating-safe-left: clamp(390px, 25.5vw, 470px);
        --main-floating-safe-right: 30px;
        --main-floating-content-max: 1180px;
    }

    body.has-floating-profile .premium-section-inner,
    body.has-floating-profile .section-inner,
    body.has-floating-profile .hero-shell {
        width: min(
            var(--main-floating-content-max),
            calc(100vw - var(--main-floating-safe-left) - var(--main-floating-safe-right))
        ) !important;
        max-width: calc(100vw - var(--main-floating-safe-left) - var(--main-floating-safe-right)) !important;
        margin-left: var(--main-floating-safe-left) !important;
        margin-right: var(--main-floating-safe-right) !important;
    }

    body.has-floating-profile .platform-luxury-shell,
    body.has-floating-profile .career-luxury-shell,
    body.has-floating-profile .contact-luxury-shell {
        gap: clamp(16px, 1.6vw, 26px);
    }

    body.has-floating-profile .platform-luxury-shell {
        grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    }

    body.has-floating-profile .career-luxury-shell {
        grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
    }

    body.has-floating-profile .contact-luxury-shell {
        grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1.18fr);
    }

    body.has-floating-profile .platform-luxury-copy h2,
    body.has-floating-profile .contact-luxury-copy h2,
    body.has-floating-profile .career-command-head strong {
        font-size: clamp(44px, 4.6vw, 72px);
    }
}

@media (min-width: 1380px) and (max-width: 1500px) {
    body.has-floating-profile {
        --main-floating-safe-left: clamp(382px, 27vw, 420px);
        --main-floating-content-max: 1020px;
    }

    body.has-floating-profile .platform-luxury-copy p,
    body.has-floating-profile .contact-luxury-copy p {
        font-size: 15px;
        line-height: 1.75;
    }

    body.has-floating-profile .platform-os-card {
        min-height: 480px;
    }

    body.has-floating-profile .platform-module-card {
        min-height: 112px;
    }
}

/* =========================================================
   AABW 공통 왼쪽 플로팅 프로필 메뉴
   - 로그인 사용자용 좌측 메뉴 컴포넌트입니다.
   - HTML은 common/floating-profile.php에서 관리합니다.
========================================================= */

:root {
    --floating-profile-left: 130px;
    --floating-profile-top: 56%;
    --floating-profile-width: 292px;
    --floating-profile-radius: 25px;
    --floating-profile-panel-padding: 25px;
    --floating-profile-z-index: 950;

    --floating-profile-white-05: rgba(255, 255, 255, 0.05);
    --floating-profile-white-06: rgba(255, 255, 255, 0.06);
    --floating-profile-white-07: rgba(255, 255, 255, 0.07);
    --floating-profile-white-08: rgba(255, 255, 255, 0.08);
    --floating-profile-white-12: rgba(255, 255, 255, 0.12);
    --floating-profile-white-14: rgba(255, 255, 255, 0.14);
    --floating-profile-white-16: rgba(255, 255, 255, 0.16);
    --floating-profile-white-18: rgba(255, 255, 255, 0.18);
    --floating-profile-white-24: rgba(255, 255, 255, 0.24);
}

/* ==========================================================================
   Base Layout
========================================================================== */

.floating-profile {
    position: fixed;
    top: var(--floating-profile-top);
    left: var(--floating-profile-left);
    z-index: var(--floating-profile-z-index);
    width: var(--floating-profile-width);
    opacity: 0;
    transform: translateY(-50%);
}

body.motion-ready .floating-profile {
    animation: revealFloatingProfile 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards;
}

@keyframes revealFloatingProfile {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(-18px) scale(0.985);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) translateX(0) scale(1);
        filter: blur(0);
    }
}

/* ==========================================================================
   Panel
========================================================================== */

.floating-profile__panel {
    position: relative;
    overflow: hidden;
    padding: var(--floating-profile-panel-padding);
    border: 1px solid var(--floating-profile-white-14);
    border-radius: var(--floating-profile-radius);
    background: linear-gradient(
        180deg,
        var(--floating-profile-white-16),
        var(--floating-profile-white-07)
    );
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.floating-profile__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        var(--floating-profile-white-18),
        transparent 30%,
        transparent 70%,
        var(--floating-profile-white-06)
    );
}

.floating-profile__name,
.floating-profile__email,
.floating-profile__meta,
.floating-profile__nav {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Profile Text
========================================================================== */

.floating-profile__name {
    margin-bottom: 6px;
    font-size: 26px;
    font-weight: 800;
}

.floating-profile__email,
.floating-profile__meta {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
    word-break: break-all;
}

.floating-profile__meta {
    margin-top: 20px;
}

/* ==========================================================================
   Navigation
========================================================================== */

.floating-profile__nav,
.floating-profile__group {
    display: flex;
    flex-direction: column;
}

.floating-profile__nav {
    gap: 16px;
    margin-top: 22px;
}

.floating-profile__group {
    gap: 10px;
}

.floating-profile__group + .floating-profile__group {
    padding-top: 16px;
    border-top: 1px solid var(--floating-profile-white-12);
}

.floating-profile__group-title {
    padding: 0 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.floating-profile__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 15px;
    border: 1px solid var(--floating-profile-white-08);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    background: var(--floating-profile-white-05);
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-profile__link:hover,
.floating-profile__link.is-current:hover {
    color: #fff;
    background: var(--floating-profile-white-12);
    transform: translateX(4px);
}

.floating-profile__link.is-current {
    background: var(--floating-profile-white-18);
    border-color: var(--floating-profile-white-24);
    box-shadow: inset 0 1px 0 var(--floating-profile-white-12);
}

.floating-profile__link--logout {
    color: #ffd7d7;
    background: rgba(255, 107, 107, 0.12);
    border-color: rgba(255, 107, 107, 0.18);
}

.floating-profile__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 24px;
    padding: 0 10px;
    border: 1px solid var(--floating-profile-white-16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    font-weight: 800;
    background: var(--floating-profile-white-16);
}

/* ==========================================================================
   Responsive
========================================================================== */

/* 데스크톱: 화면이 줄어들면 플로팅 메뉴도 자연스럽게 왼쪽으로 이동 */
@media (min-width: 1201px) {
    html,
    body,
    body.has-floating-profile {
        min-width: 1180px;
        overflow-x: auto;
    }

    .floating-profile {
        left: clamp(24px, calc((100vw - 800px) / 25 + 24px), 130px);
    }
}

/* 중간 데스크톱: 메뉴 폭과 패널 여백을 살짝 줄임 */
@media (min-width: 1181px) and (max-width: 1500px) {
    .floating-profile {
        width: clamp(260px, 20vw, 292px);
    }

    .floating-profile__panel {
        padding: clamp(20px, 1.8vw, 25px);
    }
}

/* 1200px 이하: 좌측 고정 메뉴를 일반 블록처럼 배치 */
@media (max-width: 1200px) {
    html,
    body,
    body.has-floating-profile {
        min-width: 0;
        overflow-x: hidden;
    }

    .floating-profile {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        margin: 100px 22px 24px;
        opacity: 1;
        transform: none;
    }

    body.motion-ready .floating-profile {
        animation: none;
    }
}

/* 사용자가 모션 감소 옵션을 켠 경우 */
@media (prefers-reduced-motion: reduce) {
    .floating-profile,
    body.motion-ready .floating-profile {
        opacity: 1 !important;
        transform: translateY(-50%) !important;
        filter: none !important;
        animation: none !important;
    }

    @media (max-width: 1200px) {
        .floating-profile,
        body.motion-ready .floating-profile {
            transform: none !important;
        }
    }
}

