/* NexaLogic Systems — Editorial Stylesheet */

:root {
    --bg: #fafafa;
    --bg-alt: #f0f0f0;
    --text: #1a1a1a;
    --text-secondary: #6b6b6b;
    --text-tertiary: #a0a0a0;
    --border: #d4d4d4;
    --accent: #1a1a1a;
    --accent-hover: #444;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 0;
    --transition: 0.2s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

img, svg {
    display: block;
}

::selection {
    background: var(--text);
    color: var(--bg);
}

/* ========== Three.js Background ========== */

.three-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

/* ========== Canvas ========== */

.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cursor-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
}

/* ========== Header ========== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: background var(--transition), padding var(--transition);
}

.header--scrolled {
    background: rgba(250, 250, 250, 0.92);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.header__in {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.header__nav {
    display: flex;
    gap: 28px;
}

.header__nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.header__nav a:hover {
    color: var(--text);
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 0;
    transition: var(--transition);
}

.header__toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== Hero ========== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.hero__in {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

.hero__label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero__title em {
    font-style: normal;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--text);
}

.hero__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
}

.hero__btn--primary {
    background: var(--text);
    color: var(--bg);
    border: 1px solid var(--text);
}

.hero__btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.hero__btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.hero__btn--outline:hover {
    border-color: var(--text);
}

/* ========== Sections ========== */

.sec {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.sec--alt {
    background: var(--bg-alt);
}

.sec__in {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

.sec__head {
    margin-bottom: 48px;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.sec__num {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-tertiary);
    font-variant-numeric: tabular-nums;
}

.sec__title {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.sec__desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 36px;
}

/* ========== About ========== */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about__text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__text p:last-child {
    margin-bottom: 0;
}

.about__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 4px;
}

.about__detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.about__detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about__detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about__detail-value {
    font-size: 0.95rem;
    color: var(--text);
}

/* ========== Principles ========== */

.principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.principle {
    display: flex;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.principle:hover {
    border-color: var(--text);
}

.principle__num {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-tertiary);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    min-width: 28px;
}

.principle__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.principle__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== Form ========== */

.form-wrap {
    max-width: 480px;
}

.form-wrap--hidden {
    display: none;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form__field input {
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: var(--transition);
    border-radius: 0;
}

.form__field input::placeholder {
    color: var(--text-tertiary);
}

.form__field input:focus {
    border-bottom-color: var(--text);
}

.form__select {
    position: relative;
}

.form__select select {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.form__select select:focus {
    border-bottom-color: var(--text);
}

.form__select select option {
    background: var(--bg);
    color: var(--text);
}

.form__select-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
    transition: var(--transition);
}

.form__select select:focus ~ .form__select-arrow {
    color: var(--text);
}

.form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--text);
    color: var(--bg);
    border: 1px solid var(--text);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
    margin-top: 8px;
    align-self: flex-start;
}

.form__submit:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* ========== Download ========== */

.download {
    padding: 32px 0;
}

.download__head {
    margin-bottom: 28px;
}

.download__head svg {
    color: #16a34a;
    margin-bottom: 12px;
}

.download__head h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.download__head p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.download__options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.download__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    border-radius: 0;
    transition: var(--transition);
}

.download__btn--windows {
    background: #0078d4;
}

.download__btn--windows:hover {
    background: #106ebe;
}

.download__btn--mac {
    background: #555;
}

.download__btn--mac:hover {
    background: #444;
}

.download__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 8px 0;
    transition: var(--transition);
}

.download__back:hover {
    color: var(--text);
}

/* ========== Note ========== */

.note {
    max-width: 480px;
    display: flex;
    gap: 10px;
    padding: 16px 0;
    margin-top: 8px;
}

.note svg {
    color: var(--text-tertiary);
    flex-shrink: 0;
    margin-top: 2px;
}

.note p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    line-height: 1.7;
}

/* ========== Contact ========== */

.contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact__item {
    padding: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact__item:hover {
    border-color: var(--text);
}

.contact__item--accent {
    border-color: var(--text);
}

.contact__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.contact__value {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact__value a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--border);
    transition: var(--transition);
}

.contact__value a:hover {
    text-decoration-color: var(--text);
}

.contact__value--name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.contact__value--role {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

/* ========== Footer ========== */

.footer {
    padding: 48px 0 28px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer__in {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__brand {
    font-size: 0.95rem;
    font-weight: 600;
}

.footer__links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__links a {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--text);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.footer__bottom p {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* ========== Modal ========== */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal__content {
    position: relative;
    background: var(--bg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid var(--border);
}

.modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 1;
}

.modal__head h2 {
    font-size: 1.1rem;
    font-weight: 600;
}

.modal__close {
    background: none;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
    display: flex;
}

.modal__close:hover {
    color: var(--text);
}

.modal__body {
    padding: 28px;
}

.modal__body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 20px 0 8px;
}

.modal__body h3:first-of-type {
    margin-top: 0;
}

.modal__body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

.modal__body ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 14px;
}

.modal__body ul li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 4px;
}

.modal__body a {
    color: var(--text);
    text-decoration: underline;
}

.modal__foot {
    padding: 16px 28px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
}

.modal__accept {
    padding: 10px 24px;
    background: var(--text);
    color: var(--bg);
    border: 1px solid var(--text);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.modal__accept:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* ========== Scrollbar ========== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* ========== Responsive ========== */

@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .principles {
        grid-template-columns: 1fr;
    }

    .contact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 240px;
        height: 100vh;
        background: var(--bg);
        border-left: 1px solid var(--border);
        flex-direction: column;
        padding: 80px 28px 28px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 99;
    }

    .header__nav.active {
        right: 0;
    }

    .header__toggle {
        display: flex;
        z-index: 101;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .sec {
        padding: 64px 0;
    }

    .sec__head {
        flex-direction: column;
        gap: 8px;
    }

    .form__submit {
        width: 100%;
    }

    .download__options {
        flex-direction: column;
    }

    .download__btn {
        width: 100%;
        justify-content: center;
    }

    .modal__content {
        max-height: 90vh;
    }

    .modal__head,
    .modal__body,
    .modal__foot {
        padding: 20px;
    }
}

/* ========== Page Hero ========== */

.page-hero {
    padding: 140px 0 40px;
    position: relative;
    z-index: 1;
}

.page-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

/* ========== Preview Grid (Home) ========== */

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.preview-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.preview-card:hover {
    border-color: var(--text);
}

.preview-card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.preview-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.preview-card:hover .preview-card__img img {
    transform: scale(1.03);
}

.preview-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.preview-card__tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-card__body h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.preview-card__body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.preview-card__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-top: 4px;
}

/* ========== About Page ========== */

.about-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-page__text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-page__text p:last-child {
    margin-bottom: 0;
}

.about-page__image {
    width: 100%;
    border: 1px solid var(--border);
}

.about-page__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== Contact Page ========== */

.contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-page__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page__image {
    width: 100%;
    border: 1px solid var(--border);
}

.contact-page__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== Positions ========== */

.positions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.position-card {
    padding: 24px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.position-card:hover {
    border-color: var(--text);
}

.position-card__icon {
    margin-bottom: 12px;
    color: var(--text);
}

.position-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.position-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.position-card__meta {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* ========== CTA Banner ========== */

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border: 1px solid var(--border);
    padding: 32px;
}

.cta-banner__content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.cta-banner__content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.cta-banner__image {
    width: 160px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.cta-banner__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== Legal Content ========== */

.legal-content {
    max-width: 680px;
}

.legal-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 24px 0 8px;
}

.legal-content h3:first-of-type {
    margin-top: 0;
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 4px;
}

.legal-content a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========== Responsive ========== */

@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .principles {
        grid-template-columns: 1fr;
    }

    .contact {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .about-page {
        grid-template-columns: 1fr;
    }

    .contact-page {
        grid-template-columns: 1fr;
    }

    .positions {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner__image {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 240px;
        height: 100vh;
        background: var(--bg);
        border-left: 1px solid var(--border);
        flex-direction: column;
        padding: 80px 28px 28px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 99;
    }

    .header__nav.active {
        right: 0;
    }

    .header__toggle {
        display: flex;
        z-index: 101;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .sec {
        padding: 64px 0;
    }

    .sec__head {
        flex-direction: column;
        gap: 8px;
    }

    .form__submit {
        width: 100%;
    }

    .download__options {
        flex-direction: column;
    }

    .download__btn {
        width: 100%;
        justify-content: center;
    }

    .modal__content {
        max-height: 90vh;
    }

    .modal__head,
    .modal__body,
    .modal__foot {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Platform Notice (non-Windows users)
   ============================================ */

.platform-notice {
    max-width: 520px;
    margin: 0 auto;
    padding: 48px 40px;
    text-align: center;
    border: 1px solid var(--border);
    background: var(--bg);
}

.platform-notice__icon {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.platform-notice h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.platform-notice p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.platform-notice p:last-of-type {
    margin-bottom: 28px;
}

.platform-notice__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    color: var(--text-secondary);
}

.platform-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.platform-badge--active {
    border-color: var(--text);
    color: var(--text);
    background: var(--bg);
}

.platform-badge--soon {
    opacity: 0.6;
}
