        :root {
            --ink: #202326;
            --muted: #667273;
            --teal: #0f9daa;
            --teal-soft: #e4f7f7;
            --coral: #ff785f;
            --yellow: #ffd15c;
            --leaf: #72c26d;
            --sky: #dff3ff;
            --paper: #fffdf7;
            --white: #ffffff;
            --line: #e8ece6;
            --shadow: 0 20px 52px rgba(39, 65, 66, .12);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--ink);
            background: var(--paper);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
            line-height: 1.6;
            letter-spacing: 0;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            display: block;
            max-width: 100%;
        }

        h1,
        h2,
        h3,
        p {
            margin-top: 0;
        }

        .container {
            width: min(1160px, calc(100% - 40px));
            margin: 0 auto;
        }

        .site-header {
            position: sticky;
            z-index: 20;
            top: 0;
            background: rgba(255, 253, 247, .92);
            border-bottom: 1px solid rgba(232, 236, 230, .9);
            backdrop-filter: blur(14px);
        }

        .nav {
            height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1.15rem;
            font-weight: 900;
        }

        .brand img {
            width: 42px;
            height: 42px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
            color: #3f4748;
            font-size: .94rem;
            font-weight: 800;
        }

        .nav-cta,
        .button {
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 8px;
            font-weight: 900;
            white-space: nowrap;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-cta {
            padding: 0 16px;
            color: var(--white);
            background: var(--teal);
        }

        .nav-cta-secondary {
            color: var(--ink);
            background: var(--white);
            border: 1px solid var(--line);
        }

        .hero {
            position: relative;
            overflow: hidden;
            padding: 82px 0 58px;
            background:
                linear-gradient(135deg, rgba(228, 247, 247, .95), rgba(255, 253, 247, .92) 52%, rgba(255, 244, 211, .96));
        }

        .hero::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 18px;
            background: repeating-linear-gradient(90deg, var(--teal) 0 46px, var(--yellow) 46px 92px, var(--coral) 92px 138px, var(--leaf) 138px 184px);
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr .92fr;
            align-items: center;
            column-gap: 52px;
            row-gap: 24px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            padding: 7px 12px;
            border: 1px solid rgba(15, 157, 170, .22);
            border-radius: 8px;
            background: var(--white);
            color: var(--teal);
            font-size: .9rem;
            font-weight: 900;
            box-shadow: 0 10px 24px rgba(15, 157, 170, .08);
        }

        .eyebrow::before {
            content: "";
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--coral);
        }

        h1 {
            margin-bottom: 20px;
            font-size: 3.24rem;
            line-height: 1.08;
            letter-spacing: 0;
            word-break: keep-all;
        }

        .hero-lead {
            max-width: 640px;
            margin-bottom: 30px;
            color: #4c595a;
            font-size: 1.15rem;
            word-break: keep-all;
        }

        .hero-welcome {
            max-width: 640px;
            margin: -8px 0 24px;
            padding: 16px 18px;
            border: 1px solid rgba(15, 157, 170, .14);
            border-left: 4px solid var(--teal);
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(234, 250, 249, .92), rgba(255, 255, 255, .78));
            box-shadow: 0 12px 28px rgba(15, 157, 170, .06);
            color: #334447;
            word-break: keep-all;
        }

        .hero-welcome strong {
            display: block;
            margin-bottom: 7px;
            color: #123b40;
            font-size: 1.04rem;
            font-weight: 900;
        }

        .hero-welcome p {
            margin: 0;
            font-size: .96rem;
            line-height: 1.75;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
        }

        .button {
            padding: 0 20px;
            border: 1px solid transparent;
        }

        .button-primary {
            color: var(--white);
            background: var(--coral);
            box-shadow: 0 14px 28px rgba(255, 120, 95, .24);
        }

        .button-secondary {
            color: var(--ink);
            background: var(--white);
            border-color: var(--line);
        }

        .platform-row {
            grid-column: 1 / -1;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 10px;
        }

        .platform-row span {
            width: 150px;
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding: 8px 12px;
            border-radius: 8px;
            background: var(--white);
            border: 1px solid rgba(15, 157, 170, .15);
            color: #415052;
            font-size: .9rem;
            font-weight: 800;
        }

        .platform-icon {
            width: 22px;
            height: 22px;
            display: block;
            object-fit: contain;
            flex: 0 0 auto;
        }

        .visual-panel {
            position: relative;
            padding: 10px;
            border: 1px solid rgba(15, 157, 170, .16);
            border-radius: 8px;
            background: rgba(255, 255, 255, .72);
            box-shadow: var(--shadow);
        }

        .work-pc-image {
            width: 100%;
            aspect-ratio: 16 / 11;
            border-radius: 8px;
            object-fit: cover;
            object-position: center;
        }

        .section {
            padding: 74px 0;
        }

        .section-white {
            background: var(--white);
        }

        .section-mint {
            background: var(--teal-soft);
        }

        .section-heading {
            max-width: 760px;
            margin-bottom: 34px;
        }

        .section-heading h2 {
            margin-bottom: 12px;
            font-size: 2.28rem;
            line-height: 1.22;
            letter-spacing: 0;
            word-break: keep-all;
        }

        .nowrap-desktop {
            white-space: nowrap;
        }

        .section-heading p {
            color: var(--muted);
            font-size: 1.04rem;
            word-break: keep-all;
        }

        .section-heading-row {
            max-width: none;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
        }

        .section-heading-row .button {
            flex: 0 0 auto;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .feature-card {
            min-height: 254px;
            padding: 24px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
            box-shadow: 0 10px 28px rgba(39, 65, 66, .06);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 17px;
            border-radius: 8px;
            display: grid;
            place-items: center;
            font-size: 1.3rem;
            font-weight: 900;
        }

        .feature-card:nth-child(1) .feature-icon {
            background: var(--yellow);
        }

        .feature-card:nth-child(2) .feature-icon {
            background: var(--teal);
            color: var(--white);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: var(--coral);
            color: var(--white);
        }

        .feature-card:nth-child(4) .feature-icon {
            background: var(--teal-soft);
            color: var(--teal);
        }

        .feature-card h3 {
            margin-bottom: 9px;
            font-size: 1.18rem;
        }

        .feature-card p,
        .feature-card li {
            color: var(--muted);
            font-size: .92rem;
            word-break: keep-all;
        }

        .feature-card ul {
            margin: 0;
            padding-left: 18px;
        }

        .split {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 42px;
            align-items: start;
        }

        .target-list,
        .effect-list {
            display: grid;
            gap: 12px;
        }

        .pill-item {
            min-height: 58px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 13px 16px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
            font-weight: 850;
        }

        .pill-item::before {
            content: "";
            width: 16px;
            height: 16px;
            border-radius: 5px;
            background: var(--teal);
            box-shadow: 6px 6px 0 var(--yellow);
            flex: 0 0 auto;
        }

        .roadmap {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .roadmap-item {
            min-height: 166px;
            padding: 22px;
            border: 1px solid rgba(32, 35, 38, .1);
            border-radius: 8px;
            background: var(--white);
        }

        .roadmap-item strong {
            display: block;
            margin-bottom: 9px;
            color: var(--teal);
            font-size: 1.05rem;
        }

        .roadmap-item p {
            margin-bottom: 0;
            color: var(--muted);
            word-break: keep-all;
        }

        .blog-card-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .blog-card-grid-main {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .blog-card {
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
            box-shadow: 0 10px 28px rgba(39, 65, 66, .06);
        }

        .blog-card a {
            height: 100%;
            display: grid;
            grid-template-rows: auto 1fr;
        }

        .blog-card-thumb {
            aspect-ratio: 1 / 1;
            display: grid;
            place-items: center;
            overflow: hidden;
            background:
                linear-gradient(135deg, rgba(40, 212, 200, .22), rgba(255, 209, 102, .18)),
                #101722;
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 900;
        }

        .blog-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-card-body {
            padding: 20px;
        }

        .blog-card-body time,
        .blog-article-head time {
            display: block;
            margin-bottom: 10px;
            color: var(--teal);
            font-size: .86rem;
            font-weight: 900;
        }

        .blog-card-body h2,
        .blog-card-body h3 {
            margin-bottom: 10px;
            font-size: .94rem;
            line-height: 1.35;
            word-break: keep-all;
        }

        .blog-card-body p {
            margin-bottom: 0;
            color: var(--muted);
            font-size: .94rem;
            word-break: keep-all;
        }

        .blog-pagination {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-top: 34px;
        }

        .blog-page-link,
        .blog-page-ellipsis {
            min-width: 40px;
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 12px;
            border-radius: 8px;
            font-size: .92rem;
            font-weight: 900;
        }

        .blog-page-link {
            border: 1px solid var(--line);
            background: var(--white);
            color: var(--ink);
        }

        .blog-page-link:hover,
        .blog-page-link:focus,
        .blog-page-link.is-active {
            border-color: var(--teal);
            background: var(--teal);
            color: var(--white);
        }

        .blog-page-ellipsis {
            color: var(--muted);
        }

        .blog-page {
            background: var(--paper);
        }

        .blog-hero,
        .blog-article-hero {
            padding: 72px 0 48px;
            background:
                linear-gradient(135deg, rgba(14, 28, 42, .98), rgba(7, 11, 18, .96) 54%, rgba(31, 24, 18, .95));
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }

        .blog-hero h1,
        .blog-article-head h1 {
            max-width: 900px;
            margin-bottom: 16px;
            font-size: 2.18rem;
            line-height: 1.15;
            word-break: keep-all;
        }

        .blog-hero p,
        .blog-article-head p {
            max-width: 760px;
            margin-bottom: 0;
            color: var(--muted);
            font-size: 1.08rem;
            word-break: keep-all;
        }

        .blog-empty {
            padding: 34px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
        }

        .blog-empty strong {
            display: block;
            margin-bottom: 8px;
            font-size: 1.12rem;
        }

        .blog-empty p {
            margin-bottom: 0;
            color: var(--muted);
        }

        .blog-back-link {
            display: inline-flex;
            margin-bottom: 18px;
            color: var(--teal);
            font-size: .92rem;
            font-weight: 900;
        }

        .blog-back-link::before {
            content: "<";
            margin-right: 8px;
        }

        .blog-article-section {
            padding-top: 54px;
        }

        .blog-article-wrap {
            max-width: 880px;
        }

        .blog-article-content {
            padding: 38px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
            color: #566264;
            box-shadow: 0 10px 28px rgba(39, 65, 66, .06);
            font-size: 1.02rem;
            line-height: 1.9;
            word-break: keep-all;
        }

        .blog-article-content h2,
        .blog-article-content h3,
        .blog-article-content h4 {
            margin: 30px 0 12px;
            color: var(--ink);
            line-height: 1.35;
        }

        .blog-article-content p {
            margin-bottom: 16px;
        }

        .blog-article-content img {
            height: auto;
            margin: 24px auto;
            border-radius: 8px;
        }

        .blog-article-content a {
            color: var(--teal);
            font-weight: 900;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .cta {
            background: #202326;
            color: var(--white);
        }

        .cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
        }

        .cta h2 {
            margin-bottom: 8px;
            font-size: 2rem;
            line-height: 1.25;
            word-break: keep-all;
        }

        .cta p {
            margin-bottom: 0;
            color: rgba(255, 255, 255, .72);
            word-break: keep-all;
        }

        .cta-reseller {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-top: 28px;
            padding: 22px 24px;
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 8px;
            background: rgba(255, 255, 255, .06);
        }

        .reseller-section {
            padding: 34px 0 42px;
        }

        .reseller-section .cta-reseller {
            margin-top: 0;
        }

        .cta-reseller strong {
            display: block;
            margin-bottom: 8px;
            color: var(--yellow);
            font-size: 1.12rem;
            font-weight: 900;
        }

        .cta-reseller p {
            max-width: 790px;
            font-size: .98rem;
            line-height: 1.75;
        }

        .legal-page {
            background: var(--paper);
        }

        .legal-hero {
            padding: 62px 0 42px;
            background: linear-gradient(135deg, rgba(228, 247, 247, .95), rgba(255, 253, 247, .95));
            border-bottom: 1px solid var(--line);
        }

        .legal-hero h1 {
            margin-bottom: 12px;
            font-size: 2.8rem;
        }

        .legal-hero p:last-child {
            max-width: 720px;
            margin-bottom: 0;
            color: var(--muted);
            word-break: keep-all;
        }

        .legal-section {
            padding: 52px 0 72px;
        }

        .legal-wrap {
            max-width: 920px;
        }

        .legal-card {
            padding: 38px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
            box-shadow: 0 10px 28px rgba(39, 65, 66, .06);
        }

        .legal-date {
            margin-bottom: 28px;
            color: var(--teal);
            font-weight: 900;
        }

        .legal-card h2 {
            margin: 30px 0 10px;
            font-size: 1.18rem;
            line-height: 1.35;
            letter-spacing: 0;
        }

        .legal-card h2:first-of-type {
            margin-top: 0;
        }

        .legal-card p,
        .legal-card li {
            color: #566264;
            font-size: .96rem;
            word-break: keep-all;
        }

        .legal-card p {
            margin-bottom: 10px;
        }

        .legal-card ul {
            margin: 0 0 12px;
            padding-left: 20px;
        }

        .legal-card ol {
            margin: 0 0 12px;
            padding-left: 22px;
        }

        .legal-card ol ol {
            margin-top: 8px;
        }

        .legal-list-korean {
            list-style-type: hangul;
        }

        .legal-card h3 {
            margin: 24px 0 10px;
            font-size: 1.04rem;
            line-height: 1.4;
        }

        .policy-embed .legal-hero {
            display: none;
        }

        .policy-embed .legal-page {
            background: var(--white);
        }

        .policy-embed .legal-section {
            padding: 0;
            background: var(--white);
        }

        .policy-embed .legal-wrap {
            width: 100%;
            max-width: none;
        }

        .policy-embed .legal-card {
            padding: 24px;
            border: 0;
            border-radius: 0;
            box-shadow: none;
        }

        .legal-table-wrap {
            margin: 18px 0 24px;
            overflow-x: auto;
        }

        .legal-table {
            width: 100%;
            min-width: 620px;
            border-collapse: collapse;
            font-size: .92rem;
        }

        .legal-table th,
        .legal-table td {
            padding: 12px 14px;
            border: 1px solid var(--line);
            color: #566264;
            text-align: left;
            vertical-align: top;
        }

        .legal-table th {
            background: #f4fbfb;
            color: var(--ink);
            font-weight: 900;
        }

        .auth-page {
            min-height: calc(100vh - 74px);
            background:
                linear-gradient(135deg, rgba(228, 247, 247, .95), rgba(255, 253, 247, .94) 58%, rgba(255, 244, 211, .9));
        }

        .auth-section {
            padding: 70px 0 86px;
        }

        .auth-wrap {
            display: grid;
            place-items: center;
        }

        .auth-panel {
            width: min(100%, 460px);
            padding: 36px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .auth-heading {
            margin-bottom: 28px;
        }

        .auth-title {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .auth-title a {
            display: inline-flex;
            flex: 0 0 auto;
            text-decoration: none;
        }

        .auth-title img {
            width: 42px;
            height: 42px;
            flex: 0 0 auto;
        }

        .auth-heading h1 {
            margin-bottom: 0;
            font-size: 2rem;
            line-height: 1.25;
        }

        .auth-heading p:last-child {
            margin-bottom: 0;
            color: var(--muted);
            font-size: .88rem;
            word-break: keep-all;
        }

        .auth-form {
            display: grid;
            gap: 18px;
        }

        .auth-message {
            padding: 12px 14px;
            border: 1px solid rgba(255, 120, 95, .28);
            border-radius: 8px;
            background: #fff0ec;
            color: #b8402d;
            font-size: .9rem;
            font-weight: 800;
            word-break: keep-all;
        }

        .auth-message--success {
            border-color: rgba(15, 157, 170, .25);
            background: var(--teal-soft);
            color: #0f6f69;
        }

        .field-group {
            display: grid;
            gap: 8px;
        }

        .field-group label {
            color: var(--ink);
            font-size: .92rem;
            font-weight: 900;
        }

        .field-group input {
            width: 100%;
            height: 48px;
            padding: 0 14px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #fffefa;
            color: var(--ink);
            font: inherit;
            outline: none;
        }

        .field-group input:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 4px rgba(15, 157, 170, .12);
        }

        .auth-options {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            color: var(--muted);
            font-size: .9rem;
            font-weight: 800;
        }

        .check-control {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .check-control input {
            width: 18px;
            height: 18px;
            accent-color: var(--teal);
        }

        .auth-options a,
        .auth-bottom a {
            color: var(--teal);
            font-weight: 900;
        }

        .auth-options a:hover,
        .auth-options a:focus,
        .auth-bottom a:hover,
        .auth-bottom a:focus {
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .auth-submit {
            width: 100%;
            border: 0;
            cursor: pointer;
            font: inherit;
        }

        .auth-submit:disabled,
        .auth-form.is-submitting .auth-submit {
            cursor: progress;
            opacity: .72;
        }

        .auth-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px 10px;
            margin-top: 22px;
            color: var(--muted);
            font-size: .92rem;
            font-weight: 800;
        }

        .auth-bottom .auth-home-link {
            flex-basis: 100%;
            display: block;
            margin-top: 6px;
            text-align: center;
            font-size: .82rem;
            font-weight: 700;
            opacity: .82;
        }

        .auth-agreement {
            align-items: flex-start;
            flex-direction: column;
            gap: 8px;
        }

        .auth-agreement p {
            margin: 0;
            padding-left: 26px;
            color: var(--muted);
            font-size: .85rem;
            line-height: 1.5;
        }

        .policy-modal {
            position: fixed;
            inset: 0;
            z-index: 1000;
            display: none;
            padding: 24px;
        }

        .policy-modal[aria-hidden="false"] {
            display: grid;
            place-items: center;
        }

        .policy-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(17, 19, 21, .62);
        }

        .policy-modal__dialog {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-rows: auto minmax(0, 1fr);
            width: min(100%, 820px);
            height: min(84vh, 760px);
            overflow: hidden;
            border-radius: 8px;
            background: var(--white);
            box-shadow: 0 28px 70px rgba(17, 19, 21, .28);
        }

        .policy-modal__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 22px;
            border-bottom: 1px solid var(--line);
        }

        .policy-modal__header h2 {
            margin: 0;
            font-size: 1.2rem;
            line-height: 1.3;
        }

        .policy-modal__close {
            display: grid;
            place-items: center;
            width: 36px;
            height: 36px;
            border: 1px solid var(--line);
            border-radius: 50%;
            background: var(--white);
            color: var(--ink);
            cursor: pointer;
            font-size: 1.45rem;
            line-height: 1;
        }

        .policy-modal__frame {
            width: 100%;
            height: 100%;
            border: 0;
            background: var(--white);
        }

        .is-policy-modal-open {
            overflow: hidden;
        }

        .site-footer {
            padding: 34px 0 38px;
            background: #111315;
            color: rgba(255, 255, 255, .68);
        }

        .theme-dark-main {
            --ink: #f4f7fb;
            --muted: #aab6c4;
            --teal: #28d4c8;
            --teal-soft: #112831;
            --coral: #ff7a61;
            --yellow: #ffd166;
            --leaf: #86d982;
            --paper: #070b12;
            --white: #ffffff;
            --line: rgba(255, 255, 255, .12);
            --shadow: 0 24px 68px rgba(0, 0, 0, .36);
            background:
                radial-gradient(circle at 16% 10%, rgba(40, 212, 200, .16), transparent 34%),
                radial-gradient(circle at 84% 22%, rgba(255, 122, 97, .13), transparent 30%),
                #070b12;
        }

        .theme-dark-main .site-header {
            background: rgba(7, 11, 18, .84);
            border-bottom-color: rgba(255, 255, 255, .1);
            box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
        }

        .theme-dark-main .nav-links {
            color: rgba(244, 247, 251, .76);
        }

        .theme-dark-main .nav-links a:hover,
        .theme-dark-main .nav-links a:focus {
            color: var(--white);
        }

        .theme-dark-main .nav-cta-secondary,
        .theme-dark-main .button-secondary {
            color: var(--ink);
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 255, 255, .16);
        }

        .theme-dark-main .nav-cta-secondary:hover,
        .theme-dark-main .nav-cta-secondary:focus,
        .theme-dark-main .button-secondary:hover,
        .theme-dark-main .button-secondary:focus {
            background: rgba(255, 255, 255, .14);
        }

        .theme-dark-main .hero {
            background:
                linear-gradient(135deg, rgba(14, 28, 42, .98), rgba(7, 11, 18, .96) 52%, rgba(31, 24, 18, .95));
        }

        .theme-dark-main .hero::after {
            background: repeating-linear-gradient(
                90deg,
                rgba(40, 212, 200, .34) 0 46px,
                rgba(255, 209, 102, .24) 46px 92px,
                rgba(255, 122, 97, .28) 92px 138px,
                rgba(134, 217, 130, .24) 138px 184px
            );
        }

        .theme-dark-main .eyebrow,
        .theme-dark-main .platform-row span,
        .theme-dark-main .feature-card,
        .theme-dark-main .pill-item,
        .theme-dark-main .roadmap-item,
        .theme-dark-main .blog-card,
        .theme-dark-main .blog-page-link,
        .theme-dark-main .blog-empty,
        .theme-dark-main .blog-article-content {
            background: rgba(16, 23, 34, .86);
            border-color: rgba(255, 255, 255, .12);
            box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
        }

        .theme-dark-main .eyebrow {
            color: var(--teal);
        }

        .theme-dark-main .hero-lead,
        .theme-dark-main .platform-row span,
        .theme-dark-main .section-heading p,
        .theme-dark-main .feature-card p,
        .theme-dark-main .feature-card li,
        .theme-dark-main .roadmap-item p,
        .theme-dark-main .blog-card-body p,
        .theme-dark-main .blog-empty p,
        .theme-dark-main .blog-article-content {
            color: var(--muted);
        }

        .theme-dark-main .visual-panel {
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 255, 255, .14);
        }

        .theme-dark-main .work-pc-image {
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
        }

        .theme-dark-main .section-white {
            background: #0a1019;
        }

        .theme-dark-main .section-mint {
            background: #0d1822;
        }

        .theme-dark-main .feature-card:nth-child(4) .feature-icon {
            background: rgba(40, 212, 200, .14);
            color: var(--teal);
        }

        .theme-dark-main .roadmap-item strong {
            color: var(--teal);
        }

        .theme-dark-main .cta,
        .theme-dark-main .site-footer {
            background: #05080d;
        }

        .theme-dark-main .cta {
            border-top: 1px solid rgba(255, 255, 255, .08);
        }

        .theme-dark-main .legal-page,
        .theme-dark-main .auth-page,
        .theme-dark-main.policy-embed {
            background:
                radial-gradient(circle at 12% 8%, rgba(40, 212, 200, .12), transparent 30%),
                #070b12;
        }

        .theme-dark-main .legal-hero,
        .theme-dark-main .auth-page {
            background:
                linear-gradient(135deg, rgba(14, 28, 42, .98), rgba(7, 11, 18, .96) 58%, rgba(31, 24, 18, .95));
            border-bottom-color: rgba(255, 255, 255, .1);
        }

        .theme-dark-main .legal-card,
        .theme-dark-main .auth-panel,
        .theme-dark-main .policy-modal__dialog {
            background: rgba(16, 23, 34, .94);
            border-color: rgba(255, 255, 255, .12);
            box-shadow: 0 24px 68px rgba(0, 0, 0, .34);
        }

        .theme-dark-main .legal-card p,
        .theme-dark-main .legal-card li,
        .theme-dark-main .legal-table th,
        .theme-dark-main .legal-table td,
        .theme-dark-main .auth-heading p:last-child,
        .theme-dark-main .auth-options,
        .theme-dark-main .auth-agreement p,
        .theme-dark-main .auth-bottom {
            color: var(--muted);
        }

        .theme-dark-main .legal-date,
        .theme-dark-main .auth-options a,
        .theme-dark-main .auth-bottom a {
            color: var(--teal);
        }

        .theme-dark-main .legal-table th,
        .theme-dark-main .legal-table td,
        .theme-dark-main .policy-modal__header {
            border-color: rgba(255, 255, 255, .12);
        }

        .theme-dark-main .legal-table th {
            background: rgba(40, 212, 200, .1);
            color: var(--ink);
        }

        .theme-dark-main .field-group label {
            color: var(--ink);
        }

        .theme-dark-main .field-group input {
            background: rgba(255, 255, 255, .07);
            border-color: rgba(255, 255, 255, .14);
            color: var(--ink);
        }

        .theme-dark-main .field-group input::placeholder {
            color: rgba(244, 247, 251, .42);
        }

        .theme-dark-main .field-group input:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 4px rgba(40, 212, 200, .14);
        }

        .theme-dark-main .auth-message {
            background: rgba(255, 122, 97, .12);
            border-color: rgba(255, 122, 97, .32);
            color: #ffb4a4;
        }

        .theme-dark-main .auth-message--success {
            background: rgba(40, 212, 200, .12);
            border-color: rgba(40, 212, 200, .28);
            color: #8ff0e8;
        }

        .theme-dark-main .policy-modal__close {
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 255, 255, .14);
            color: var(--ink);
        }

        .theme-dark-main .policy-modal__frame {
            background: #070b12;
        }

        .theme-dark-main.policy-embed .legal-page,
        .theme-dark-main.policy-embed .legal-section {
            background: #070b12;
        }

        .theme-dark-main.policy-embed .legal-card {
            background: #070b12;
            border: 0;
            box-shadow: none;
        }

        .footer-inner {
            display: grid;
            gap: 16px;
            font-size: .8rem;
            line-height: 1.55;
        }

        .footer-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding-bottom: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            color: var(--white);
            font-size: .9rem;
            font-weight: 900;
        }

        .footer-brand img {
            width: 30px;
            height: 30px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            color: rgba(255, 255, 255, .84);
            font-size: .78rem;
            font-weight: 800;
        }

        .footer-links a:hover,
        .footer-links a:focus,
        .footer-info a:hover,
        .footer-info a:focus {
            color: var(--white);
        }

        .footer-info {
            display: grid;
            gap: 7px;
            color: rgba(255, 255, 255, .62);
        }

        .footer-info p {
            margin: 0;
        }

        .footer-info strong {
            color: rgba(255, 255, 255, .86);
        }

        .footer-info a {
            color: rgba(255, 255, 255, .78);
            font-weight: 800;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        @media (max-width: 980px) {
            .hero-grid,
            .split {
                grid-template-columns: 1fr;
            }

            .visual-panel {
                max-width: 720px;
            }

            .feature-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .roadmap {
                grid-template-columns: repeat(2, 1fr);
            }

            .blog-card-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 760px) {
            .nowrap-desktop {
                white-space: normal;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding-top: 56px;
            }

            h1 {
                font-size: 2.38rem;
            }

            .cta-inner,
            .cta-reseller,
            .footer-top,
            .section-heading-row {
                align-items: flex-start;
                flex-direction: column;
            }
        }

        @media (max-width: 560px) {
            .container {
                width: min(100% - 28px, 1160px);
            }

            .nav {
                height: 66px;
            }

            .brand img {
                width: 36px;
                height: 36px;
            }

            .brand {
                font-size: 1.02rem;
            }

            .nav-cta {
                min-height: 40px;
                padding: 0 11px;
                font-size: .86rem;
            }

            h1 {
                font-size: 1.96rem;
            }

            .hero-lead {
                font-size: 1rem;
            }

            .hero-welcome {
                padding: 14px 15px;
            }

            .hero-welcome p {
                font-size: .9rem;
                line-height: 1.65;
            }

            .button {
                width: 100%;
            }

            .platform-row span {
                width: calc(50% - 5px);
            }

            .feature-grid,
            .roadmap,
            .blog-card-grid {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 56px 0;
            }

            .section-heading h2,
            .cta h2,
            .blog-hero h1,
            .blog-article-head h1 {
                font-size: 1.65rem;
            }

            .blog-article-content {
                padding: 24px 20px;
                font-size: .96rem;
            }

            .legal-hero h1 {
                font-size: 2.1rem;
            }

            .legal-card {
                padding: 26px 20px;
            }

            .auth-section {
                padding: 42px 0 58px;
            }

            .auth-panel {
                padding: 28px 20px;
            }

            .auth-options {
                align-items: flex-start;
                flex-direction: column;
                gap: 10px;
            }

            .policy-modal {
                padding: 12px;
            }

            .policy-modal__dialog {
                height: 88vh;
            }

            .policy-modal__header {
                padding: 14px 16px;
            }

        }
