:root {
    --ink: #111827;
    --muted: #64748b;
    --line: #e2e8f0;
    --soft: #f8fafc;
    --paper: #ffffff;
    --brand: #0891b2;
    --brand-dark: #155e75;
    --accent: #f59e0b;
    --mint: #ecfeff;
    --blue: #cffafe;
    --shadow: 0 20px 50px rgba(15, 23, 42, .1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 1200px;
    color: var(--ink);
    background: var(--soft);
    font-family: "Microsoft YaHei UI", "Microsoft YaHei", "Segoe UI", "PingFang SC", Arial, sans-serif;
    line-height: 1.65;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 0 6vw;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(226, 232, 240, .9);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: white;
    background: var(--brand);
    border-radius: 8px;
    font-weight: 800;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a,
.account-link,
.header-action {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    color: #334155;
    font-size: 15px;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active,
.account-link:hover,
.account-link.is-active {
    color: var(--brand-dark);
    background: var(--mint);
}

.header-action {
    color: white;
    background: var(--brand);
}

.header-action.ghost {
    color: var(--ink);
    background: #f1f5f9;
}

.account-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 5vw;
    align-items: center;
    min-height: 650px;
    padding: 70px 6vw 58px;
    background:
        radial-gradient(circle at 18% 12%, rgba(207, 250, 254, .72), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero h1,
.page-hero h1 {
    margin: 8px 0 16px;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero h1 {
    font-size: clamp(56px, 7vw, 94px);
    font-weight: 900;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
}

.lead,
.page-hero p,
.section-heading p,
.split-band p {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
}

.hero-subtitle {
    margin: 0 0 12px;
    color: var(--brand);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    color: var(--brand-dark);
    background: var(--mint);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-actions,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 30px;
    color: var(--brand-dark);
    font-weight: 800;
}

.hero-trust span::before {
    content: "✓";
    margin-right: 8px;
    color: var(--brand);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    white-space: nowrap;
}

.button.primary {
    color: white;
    background: var(--brand);
}

.button.primary:hover {
    background: var(--brand-dark);
}

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

.button.light {
    color: var(--brand-dark);
    background: white;
}

.button.cta-outline {
    color: white;
    background: transparent;
    border-color: rgba(255, 255, 255, .55);
}

.button.wide {
    width: 100%;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
    margin: 34px 0 0;
}

.quick-stats div {
    padding: 18px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.quick-stats dt {
    font-size: 28px;
    font-weight: 900;
}

.quick-stats dd {
    margin: 4px 0 0;
    color: var(--muted);
}

.product-visual {
    overflow: hidden;
    min-height: 500px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.window-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.window-bar strong {
    color: var(--ink);
    font-weight: 900;
}

.window-bar strong::before {
    content: "D";
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-right: 8px;
    color: white;
    background: var(--brand);
    border-radius: 6px;
    font-size: 13px;
}

.window-bar em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.software-panel {
    display: grid;
    grid-template-columns: 145px 1fr;
    min-height: 445px;
}

.software-panel aside {
    padding: 24px 18px;
    color: var(--brand-dark);
    background: #f8fdff;
    border-right: 1px solid var(--line);
}

.software-panel aside b {
    display: block;
    margin-bottom: 28px;
}

.nav-line,
.status-list span {
    display: block;
    height: 12px;
    margin: 14px 0;
    border-radius: 8px;
    background: #e2e8f0;
}

.nav-line.active {
    background: var(--brand);
}

.nav-line.short {
    width: 68%;
}

.software-panel section {
    padding: 24px;
}

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

.metric-row div {
    padding: 15px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.metric-row strong {
    display: block;
    font-size: 24px;
}

.metric-row div:nth-child(4) strong {
    color: #16a34a;
}

.metric-row span {
    color: var(--muted);
    font-size: 14px;
}

.chart {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 150px;
    margin: 24px 0;
    padding: 18px;
    background: #fbf7ef;
    border: 1px solid #f3dec0;
    border-radius: 8px;
}

.chart i {
    flex: 1;
    min-width: 18px;
    background: var(--accent);
    border-radius: 8px 8px 0 0;
}

.status-list span {
    height: 16px;
    background: #e6edf5;
}

.device-preview {
    margin: 22px 0;
}

.device-preview h3,
.dashboard-bottom h3 {
    margin: 0 0 12px;
    font-size: 15px;
}

.device-preview h3 span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.device-grid div {
    display: grid;
    place-items: center;
    gap: 6px;
    min-height: 84px;
    padding: 10px 8px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.device-grid strong {
    color: var(--ink);
    font-size: 13px;
}

.device-grid span {
    color: #16a34a;
    font-size: 12px;
    font-weight: 800;
}

.device-grid div:nth-child(n+4) strong,
.device-grid div:nth-child(n+4) span {
    color: #94a3b8;
}

.dashboard-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
}

.dashboard-bottom > div {
    min-height: 116px;
    padding: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.dashboard-bottom span {
    display: block;
    height: 12px;
    margin: 12px 0;
    background: #e2e8f0;
    border-radius: 8px;
}

.dashboard-bottom span:nth-child(3) {
    width: 78%;
}

.dashboard-bottom span:nth-child(4) {
    width: 58%;
}

.dashboard-bottom p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0;
    color: var(--muted);
    font-size: 13px;
}

.dashboard-bottom b {
    color: var(--ink);
}

.status-list span:nth-child(2) {
    width: 76%;
}

.status-list span:nth-child(3) {
    width: 58%;
}

.section,
.page-hero,
.download-layout,
.timeline,
.tutorial-grid,
.contact-layout,
.auth-shell,
.center-layout {
    padding: 72px 6vw;
}

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

.section-heading.centered {
    text-align: center;
}

.section-heading.centered::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin: 14px auto 0;
    background: var(--brand);
    border-radius: 999px;
}

.section-heading h2,
.split-band h2 {
    margin: 8px 0 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
}

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

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

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.pricing-grid.compact {
    margin-bottom: 24px;
}

.feature-card,
.tutorial-card,
.pricing-card,
.flow-card,
.contact-card,
.requirements,
.download-card,
.notice {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.feature-card,
.tutorial-card,
.pricing-card,
.flow-card,
.contact-card,
.requirements,
.notice {
    padding: 26px;
}

.feature-card h3,
.tutorial-card h2,
.pricing-card h3,
.flow-card h3,
.contact-card h2,
.requirements h2 {
    margin: 12px 0 10px;
}

.feature-card p,
.tutorial-card p,
.contact-card p,
.notice p,
.requirements li,
.timeline li {
    color: var(--muted);
}

.pricing-section {
    background: #ffffff;
}

.home-pricing {
    padding-top: 58px;
}

.membership-flow {
    background: var(--mint);
}

.pricing-card {
    position: relative;
    display: grid;
    gap: 14px;
    align-content: start;
}

.pricing-card.is-featured {
    border-color: var(--brand);
    box-shadow: 0 18px 44px rgba(8, 145, 178, .16);
}

.plan-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    color: white;
    background: var(--brand);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0;
}

.plan-price strong {
    color: var(--accent);
    font-size: 48px;
    line-height: 1;
}

.plan-price span,
.plan-period {
    color: var(--muted);
    font-weight: 800;
}

.pricing-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.pricing-card .button.secondary {
    color: var(--brand);
    border-color: #93c5d4;
}

.pricing-card.is-featured .button.secondary {
    color: white;
    background: var(--brand);
    border-color: var(--brand);
}

.pricing-note {
    margin-top: 28px;
    color: var(--muted);
    text-align: center;
    font-weight: 800;
}

.benefit-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 54px 6vw;
    background: linear-gradient(180deg, #effbfe, #f8fafc);
}

.benefit-band article {
    display: grid;
    justify-items: center;
    gap: 10px;
    min-height: 160px;
    padding: 10px 34px;
    text-align: center;
}

.benefit-band article + article {
    border-left: 1px solid var(--line);
}

.benefit-band span {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: white;
    background: var(--brand);
    border-radius: 8px;
    font-size: 28px;
    font-weight: 900;
}

.benefit-band h2 {
    margin: 4px 0 0;
    font-size: 22px;
}

.benefit-band p {
    max-width: 280px;
    margin: 0;
    color: var(--muted);
}

.flow-section {
    background: #ffffff;
}

.home-flow {
    display: grid;
    grid-template-columns: minmax(130px, 1fr) 70px minmax(130px, 1fr) 70px minmax(130px, 1fr) 70px minmax(130px, 1fr);
    align-items: center;
    gap: 12px;
}

.home-flow article {
    display: grid;
    justify-items: center;
    gap: 10px;
    min-height: 154px;
    padding: 22px 16px;
    text-align: center;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.home-flow article span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--brand-dark);
    background: var(--blue);
    border-radius: 999px;
    font-weight: 900;
}

.home-flow article strong {
    font-size: 18px;
}

.home-flow article p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.home-flow i {
    display: block;
    height: 1px;
    border-top: 2px dashed #94a3b8;
}

.use-case-section {
    background: linear-gradient(180deg, #f0fbfe, #ffffff);
}

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

.use-case-grid article {
    display: grid;
    gap: 8px;
    justify-items: center;
    min-height: 170px;
    padding: 24px 16px;
    text-align: center;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.use-case-grid span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--brand);
    background: var(--mint);
    border-radius: 8px;
    font-size: 24px;
    font-weight: 900;
}

.use-case-grid h3 {
    margin: 4px 0 0;
    font-size: 17px;
}

.use-case-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.home-faq-section {
    background: white;
}

.home-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 56px;
}

.home-faq-grid details {
    max-width: none;
    padding: 14px 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.home-faq-grid summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #334155;
    font-size: 15px;
}

.home-faq-grid summary::before {
    content: "+";
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: white;
    background: var(--brand);
    border-radius: 999px;
    font-size: 13px;
    flex: 0 0 auto;
}

.home-faq-grid summary::after {
    content: "⌄";
    color: var(--muted);
}

.more-link {
    display: table;
    margin: 18px auto 0;
    color: var(--brand);
    font-weight: 900;
}

.final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: center;
    margin: 42px 6vw 0;
    padding: 46px 7vw;
    color: white;
    background: linear-gradient(120deg, #036780, #0891b2 55%, #22d3ee);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.final-cta h2 {
    margin: 0 0 8px;
    font-size: clamp(30px, 4vw, 42px);
}

.final-cta p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .86);
}

.cta-art {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 160px;
}

.cta-art span {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    color: white;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 8px;
    font-size: 44px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(3, 103, 128, .28);
}

.cta-art i {
    position: absolute;
    right: 22px;
    bottom: 18px;
    width: 74px;
    height: 88px;
    border: 3px solid rgba(255, 255, 255, .68);
    border-radius: 8px;
}

.flow-card {
    background: white;
}

.flow-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 30px;
    padding: 0 10px;
    color: var(--brand-dark);
    background: var(--mint);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.flow-card p {
    color: var(--muted);
}

.feature-icon,
.badge,
.tutorial-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 30px;
    padding: 0 10px;
    color: var(--brand-dark);
    background: var(--mint);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.split-band {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
    gap: 48px;
    background: #edf5f4;
}

.steps {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    gap: 4px;
    padding: 22px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.steps span {
    color: var(--muted);
}

.page-hero.compact {
    background: linear-gradient(180deg, #ffffff, var(--mint));
}

.download-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.download-main {
    display: grid;
    gap: 18px;
}

.download-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 24px;
    align-items: center;
    padding: 32px;
}

.download-card h2 {
    margin: 12px 0 6px;
    font-size: 34px;
}

code {
    padding: 2px 6px;
    background: #eef3f7;
    border-radius: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.requirements ul,
.timeline ul {
    padding-left: 20px;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 24px;
    padding: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.timeline-item time {
    color: var(--brand-dark);
    font-weight: 900;
}

.timeline-item h2 {
    margin: 0 0 10px;
}

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

.faq-band {
    background: #f8fafc;
}

details {
    max-width: 900px;
    padding: 18px 0;
    border-top: 1px solid rgba(24, 33, 47, .16);
}

summary {
    cursor: pointer;
    font-weight: 900;
}

details p {
    color: var(--muted);
}

.contact-card.accent {
    background: #fffbeb;
    border-color: #fde68a;
}

.contact-card a:not(.button) {
    color: var(--brand-dark);
    font-weight: 800;
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 460px);
    gap: 48px;
    align-items: start;
    min-height: calc(100vh - 72px);
    background: linear-gradient(180deg, #ffffff, var(--mint));
}

.auth-copy h1 {
    margin: 8px 0 16px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.05;
}

.auth-copy p,
.auth-points,
.auth-switch,
.profile-head p,
.member-panel p,
.profile-list dd,
.device-list {
    color: var(--muted);
}

.auth-points {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding-left: 20px;
}

.auth-card {
    display: grid;
    gap: 18px;
    padding: 30px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.auth-card label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

.auth-card input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    color: var(--ink);
    background: #fbfcfd;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

.auth-card input:focus {
    outline: 3px solid rgba(8, 145, 178, .18);
    border-color: var(--brand);
}

.auth-switch {
    margin: 0;
    text-align: center;
}

.auth-switch a {
    color: var(--brand-dark);
    font-weight: 900;
}

.form-errors {
    padding: 14px 16px;
    color: #7f1d1d;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 8px;
}

.form-errors ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.center-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
}

.profile-panel,
.member-panel {
    padding: 30px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.profile-head {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.avatar {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    color: white;
    background: var(--brand);
    border-radius: 8px;
    font-size: 30px;
    font-weight: 900;
}

.profile-head h2,
.member-panel h2 {
    margin: 0;
    font-size: 30px;
}

.profile-head p {
    margin: 4px 0 0;
}

.profile-list {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.profile-list div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.profile-list dt {
    font-weight: 900;
}

.profile-list dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.profile-actions,
.center-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.member-panel {
    background: #fffbeb;
    border-color: #fde68a;
}

.member-panel h2 {
    margin: 12px 0 10px;
}

.device-list {
    margin: 18px 0 0;
    padding-left: 20px;
}

.site-footer {
    display: grid;
    gap: 14px;
    padding: 36px 6vw;
    color: #d6dee8;
    background: #07111f;
}

.site-footer div:first-child {
    display: grid;
    gap: 4px;
}

.site-footer span,
.site-footer small {
    color: #9aa8ba;
}

.footer-links a {
    color: white;
}

/* Homepage polish */
:root {
    --ink: #0f172a;
    --muted: #64748b;
    --line: #dbe7ee;
    --soft: #f5f9fb;
    --paper: #ffffff;
    --brand: #06a7bd;
    --brand-dark: #07586a;
    --brand-deep: #073b4c;
    --accent: #f59e0b;
    --mint: #e8fbfd;
    --blue: #caeef5;
    --shadow: 0 24px 70px rgba(15, 23, 42, .11);
    --shadow-strong: 0 32px 90px rgba(7, 88, 106, .2);
}

body {
    background:
        linear-gradient(90deg, rgba(6, 167, 189, .035) 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0, #f4f8fb 620px, #f7fafc 100%);
    background-size: 64px 64px, auto;
}

.site-header {
    min-height: 78px;
    padding: 0 max(72px, 6vw);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .045);
}

.brand {
    font-size: 21px;
    letter-spacing: 0;
}

.brand-mark,
.window-bar strong::before,
.avatar {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 12px 26px rgba(6, 167, 189, .28);
}

.site-nav {
    padding: 5px;
    background: #f7fbfc;
    border: 1px solid rgba(219, 231, 238, .88);
    border-radius: 10px;
}

.site-nav a,
.account-link,
.header-action {
    min-height: 38px;
    border-radius: 7px;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.account-link:hover,
.account-link.is-active {
    color: var(--brand-dark);
    background: white;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .07);
}

.header-action {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 12px 28px rgba(6, 167, 189, .2);
}

.hero {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 590px;
    gap: 72px;
    min-height: 720px;
    padding: 88px max(72px, 6vw) 78px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 145, 178, .08) 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0%, #f7fbfc 58%, #eef9fb 100%);
    background-size: 76px 76px, auto;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 96px max(72px, 6vw) auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 167, 189, .36), transparent);
}

.hero-copy,
.product-visual {
    position: relative;
    z-index: 1;
}

.hero-pill {
    min-height: 34px;
    padding: 0 14px;
    color: var(--brand-dark);
    background: rgba(232, 251, 253, .9);
    border: 1px solid rgba(6, 167, 189, .16);
    border-radius: 999px;
}

.hero h1 {
    margin-top: 18px;
    font-size: 88px;
    line-height: .98;
    color: var(--ink);
}

.hero-subtitle {
    margin-bottom: 10px;
    color: var(--brand-dark);
    font-size: 32px;
}

.hero .lead {
    max-width: 610px;
    margin: 0;
    color: #475569;
    font-size: 19px;
}

.hero-actions {
    margin-top: 34px;
}

.button {
    min-height: 50px;
    padding: 0 24px;
    box-shadow: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 16px 34px rgba(6, 167, 189, .22);
}

.button.primary:hover {
    background: linear-gradient(135deg, #05b6cf, #064d5e);
    box-shadow: 0 20px 42px rgba(6, 167, 189, .28);
}

.button.secondary {
    color: var(--brand-dark);
    background: rgba(255, 255, 255, .86);
    border-color: rgba(6, 167, 189, .22);
}

.hero-trust {
    gap: 22px;
    margin-top: 28px;
    color: #315d6b;
    font-size: 14px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-trust span::before {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin: 0;
    color: white;
    background: var(--brand);
    border-radius: 999px;
    font-size: 12px;
}

.quick-stats {
    max-width: 650px;
    margin-top: 34px;
}

.quick-stats div {
    padding: 20px 22px;
    background: rgba(255, 255, 255, .76);
    border-color: rgba(6, 167, 189, .14);
    box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
}

.quick-stats dt {
    color: var(--brand-dark);
    font-size: 31px;
    line-height: 1;
}

.quick-stats dd {
    font-size: 14px;
    font-weight: 700;
}

.product-visual {
    min-height: 540px;
    background: linear-gradient(180deg, #ffffff, #f8fcfd);
    border: 1px solid rgba(6, 167, 189, .18);
    box-shadow: var(--shadow-strong);
}

.window-bar {
    min-height: 64px;
    padding: 18px 22px;
    background:
        linear-gradient(90deg, rgba(232, 251, 253, .95), #ffffff 42%),
        #ffffff;
}

.window-bar::after {
    content: "";
    width: 78px;
    height: 10px;
    background:
        radial-gradient(circle, #ef4444 0 4px, transparent 4.5px) 0 0 / 22px 10px no-repeat,
        radial-gradient(circle, #f59e0b 0 4px, transparent 4.5px) 24px 0 / 22px 10px no-repeat,
        radial-gradient(circle, #22c55e 0 4px, transparent 4.5px) 48px 0 / 22px 10px no-repeat;
    order: -1;
}

.software-panel {
    grid-template-columns: 138px 1fr;
    min-height: 474px;
}

.software-panel aside {
    padding: 28px 20px;
    color: rgba(255, 255, 255, .9);
    background: linear-gradient(180deg, var(--brand-deep), #0f6577);
    border-right: 0;
}

.software-panel aside b {
    margin-bottom: 26px;
    color: white;
    font-size: 15px;
}

.nav-line,
.status-list span {
    height: 11px;
    background: rgba(255, 255, 255, .18);
}

.nav-line.active {
    width: 88%;
    background: #67e8f9;
}

.software-panel section {
    padding: 24px;
}

.metric-row {
    gap: 10px;
}

.metric-row div,
.device-grid div,
.dashboard-bottom > div {
    background: #ffffff;
    border-color: rgba(219, 231, 238, .9);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .045);
}

.metric-row div {
    min-height: 88px;
    padding: 15px 10px;
}

.metric-row strong {
    color: var(--brand-dark);
    font-size: 22px;
    line-height: 1.18;
    white-space: nowrap;
}

.metric-row span {
    font-size: 13px;
    white-space: nowrap;
}

.metric-row div:nth-child(4) strong {
    font-size: 21px;
}

.device-preview {
    margin: 26px 0;
    padding: 20px;
    background: linear-gradient(180deg, #f7fcfd, #ffffff);
    border: 1px solid rgba(219, 231, 238, .85);
    border-radius: 8px;
}

.device-preview h3,
.dashboard-bottom h3 {
    color: #1f3b47;
    font-size: 15px;
}

.device-grid {
    gap: 9px;
}

.device-grid div {
    min-height: 78px;
}

.device-grid strong {
    font-size: 12px;
}

.dashboard-bottom {
    grid-template-columns: minmax(0, 1fr) 230px;
}

.dashboard-bottom > div {
    min-height: 122px;
}

.dashboard-bottom span {
    background: linear-gradient(90deg, #dbeafe, #ccfbf1);
}

.section,
.page-hero,
.download-layout,
.timeline,
.tutorial-grid,
.contact-layout,
.auth-shell,
.center-layout {
    padding-left: max(72px, 6vw);
    padding-right: max(72px, 6vw);
}

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

.section-heading.centered h2 {
    margin-bottom: 8px;
}

.section-heading h2,
.split-band h2 {
    color: var(--ink);
    font-size: 40px;
}

.benefit-band {
    gap: 20px;
    padding: 42px max(72px, 6vw);
    background: #ffffff;
    border-top: 1px solid rgba(219, 231, 238, .72);
    border-bottom: 1px solid rgba(219, 231, 238, .72);
}

.benefit-band article {
    justify-items: start;
    min-height: 150px;
    padding: 28px;
    text-align: left;
    background: linear-gradient(180deg, #ffffff, #f7fcfd);
    border: 1px solid rgba(219, 231, 238, .9);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .055);
}

.benefit-band article + article {
    border-left: 1px solid rgba(219, 231, 238, .9);
}

.benefit-band span,
.use-case-grid span {
    width: auto;
    min-width: 56px;
    height: 34px;
    padding: 0 12px;
    color: var(--brand-dark);
    background: var(--mint);
    border: 1px solid rgba(6, 167, 189, .16);
    border-radius: 999px;
    font-size: 13px;
}

.benefit-band h2 {
    font-size: 24px;
}

.benefit-band p {
    max-width: 340px;
}

.home-pricing {
    position: relative;
    padding-top: 72px;
    padding-bottom: 76px;
    background:
        linear-gradient(180deg, #f7fcfd, #ffffff);
}

.pricing-grid {
    gap: 22px;
}

.pricing-card {
    min-height: 392px;
    padding: 30px;
    border-color: rgba(219, 231, 238, .95);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 64px rgba(15, 23, 42, .1);
}

.pricing-card.is-featured {
    border-color: rgba(6, 167, 189, .52);
    background:
        linear-gradient(180deg, rgba(232, 251, 253, .94), #ffffff 46%);
    box-shadow: 0 28px 70px rgba(6, 167, 189, .18);
}

.plan-tag {
    top: 22px;
    right: 22px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.pricing-card h3 {
    margin-top: 4px;
    font-size: 24px;
}

.plan-price strong {
    color: var(--brand-dark);
    font-size: 58px;
}

.pricing-card ul {
    gap: 11px;
    padding-left: 0;
    list-style: none;
}

.pricing-card li {
    position: relative;
    padding-left: 25px;
}

.pricing-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .48em;
    width: 14px;
    height: 14px;
    background: var(--brand);
    border-radius: 999px;
    box-shadow: inset 0 0 0 4px #dff9fd;
}

.pricing-note {
    display: table;
    margin: 30px auto 0;
    padding: 10px 18px;
    color: #315d6b;
    background: white;
    border: 1px solid rgba(219, 231, 238, .9);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.flow-section {
    padding-top: 72px;
    padding-bottom: 76px;
    background: #ffffff;
}

.home-flow {
    position: relative;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-flow::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(6, 167, 189, .28), transparent);
}

.home-flow i {
    display: none;
}

.home-flow article {
    position: relative;
    z-index: 1;
    justify-items: start;
    min-height: 178px;
    padding: 28px;
    text-align: left;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .055);
}

.home-flow article span {
    width: 48px;
    height: 48px;
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 14px 30px rgba(6, 167, 189, .2);
}

.home-flow article strong {
    color: var(--ink);
    font-size: 20px;
}

.use-case-section {
    padding-top: 76px;
    padding-bottom: 78px;
    background:
        linear-gradient(180deg, #effbfe 0%, #ffffff 100%);
}

.use-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.use-case-grid article {
    justify-items: start;
    min-height: 178px;
    padding: 28px;
    text-align: left;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
}

.use-case-grid h3 {
    margin-top: 8px;
    font-size: 20px;
}

.use-case-grid p {
    font-size: 15px;
}

.home-faq-section {
    padding-top: 76px;
    padding-bottom: 80px;
    background: #ffffff;
}

.home-faq-grid {
    gap: 16px 24px;
}

.home-faq-grid details {
    padding: 20px 22px;
    border-color: rgba(219, 231, 238, .95);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .045);
}

.home-faq-grid summary {
    justify-content: flex-start;
    color: var(--ink);
    font-size: 16px;
}

.home-faq-grid summary::after {
    margin-left: auto;
}

.home-faq-grid details[open] {
    background: #f8fcfd;
    border-color: rgba(6, 167, 189, .22);
}

.more-link {
    margin-top: 28px;
}

.final-cta {
    grid-template-columns: minmax(0, 1fr) 310px;
    margin: 0;
    padding: 58px max(72px, 6vw);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px),
        linear-gradient(135deg, #073b4c, #07586a 48%, #06a7bd);
    background-size: 58px 58px, auto;
    border-radius: 0;
}

.final-cta h2 {
    font-size: 42px;
}

.final-cta p {
    font-size: 18px;
}

.cta-art {
    min-height: 210px;
}

.cta-art span {
    width: 118px;
    height: 118px;
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .48);
    border-radius: 28px;
    font-size: 64px;
}

.cta-art i {
    right: 40px;
    bottom: 22px;
    width: 102px;
    height: 124px;
    border-color: rgba(255, 255, 255, .5);
    border-radius: 22px;
}

/* Baota-inspired green technology palette */
:root {
    --ink: #101828;
    --muted: #667085;
    --line: #e4e7ec;
    --soft: #f7f9fb;
    --paper: #ffffff;
    --brand: #20c55e;
    --brand-dark: #16a34a;
    --brand-deep: #0b3b2e;
    --accent: #1677ff;
    --mint: #effdf4;
    --blue: #eef6ff;
    --shadow: 0 24px 70px rgba(16, 24, 40, .09);
    --shadow-strong: 0 32px 90px rgba(16, 185, 129, .16);
}

body {
    background:
        linear-gradient(90deg, rgba(32, 197, 94, .03) 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0, #f8fafc 640px, #f7f9fb 100%);
    background-size: 72px 72px, auto;
}

.site-header {
    background: rgba(255, 255, 255, .96);
    border-bottom-color: rgba(228, 231, 236, .9);
    box-shadow: 0 10px 30px rgba(16, 24, 40, .035);
}

.brand-mark,
.window-bar strong::before,
.avatar,
.header-action,
.button.primary,
.home-flow article span,
.plan-tag {
    background: linear-gradient(135deg, #23d36d, #16a34a);
    box-shadow: 0 12px 26px rgba(32, 197, 94, .24);
}

.site-nav {
    background: #f8fafc;
    border-color: rgba(228, 231, 236, .92);
}

.site-nav a:hover,
.site-nav a.is-active,
.account-link:hover,
.account-link.is-active {
    color: var(--brand-dark);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(16, 24, 40, .06);
}

.hero {
    background:
        linear-gradient(90deg, rgba(32, 197, 94, .06) 1px, transparent 1px),
        radial-gradient(circle at 83% 28%, rgba(22, 119, 255, .12), transparent 28%),
        radial-gradient(circle at 18% 92%, rgba(32, 197, 94, .16), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 56%, #f3fbf6 100%);
    background-size: 76px 76px, auto, auto, auto;
}

.hero::before {
    background: linear-gradient(90deg, transparent, rgba(32, 197, 94, .32), transparent);
}

.hero-pill,
.benefit-band span,
.use-case-grid span,
.feature-icon,
.badge,
.tutorial-card span,
.flow-card span {
    color: #13783c;
    background: #effdf4;
    border-color: rgba(32, 197, 94, .16);
}

.hero-subtitle,
.quick-stats dt,
.metric-row strong,
.section-heading.centered::after,
.pricing-card .button.secondary,
.more-link,
.contact-card a:not(.button) {
    color: var(--brand-dark);
}

.section-heading.centered::after {
    background: linear-gradient(90deg, #20c55e, #1677ff);
}

.button.primary:hover {
    background: linear-gradient(135deg, #28d873, #128b3f);
    box-shadow: 0 20px 42px rgba(32, 197, 94, .28);
}

.button.secondary {
    color: #13783c;
    background: #ffffff;
    border-color: rgba(32, 197, 94, .28);
}

.button.secondary:hover {
    background: #f3fef7;
    border-color: rgba(32, 197, 94, .46);
}

.hero-trust {
    color: #24583a;
}

.hero-trust span::before,
.pricing-card li::before,
.home-faq-grid summary::before {
    background: var(--brand);
}

.quick-stats div {
    border-color: rgba(32, 197, 94, .14);
}

.product-visual {
    border-color: rgba(32, 197, 94, .18);
    background: linear-gradient(180deg, #ffffff, #fbfefc);
    box-shadow: var(--shadow-strong);
}

.window-bar {
    background:
        linear-gradient(90deg, rgba(239, 253, 244, .98), #ffffff 44%),
        #ffffff;
}

.software-panel aside {
    background: linear-gradient(180deg, #0f2f3b, #0b3b2e);
}

.nav-line.active {
    background: #6ee7b7;
}

.device-preview {
    background: linear-gradient(180deg, #f6fef9, #ffffff);
    border-color: rgba(228, 231, 236, .9);
}

.dashboard-bottom span {
    background: linear-gradient(90deg, #dcfce7, #dbeafe);
}

.benefit-band {
    background: #ffffff;
}

.benefit-band article,
.use-case-grid article,
.home-faq-grid details,
.pricing-card {
    border-color: rgba(228, 231, 236, .95);
    box-shadow: 0 18px 44px rgba(16, 24, 40, .055);
}

.home-pricing,
.use-case-section {
    background: linear-gradient(180deg, #f6fef9 0%, #ffffff 100%);
}

.pricing-card.is-featured {
    border-color: rgba(32, 197, 94, .48);
    background:
        linear-gradient(180deg, rgba(239, 253, 244, .96), #ffffff 48%);
    box-shadow: 0 28px 70px rgba(32, 197, 94, .15);
}

.plan-price strong {
    color: #13783c;
}

.pricing-card.is-featured .button.secondary {
    color: white;
    background: linear-gradient(135deg, #23d36d, #16a34a);
    border-color: transparent;
}

.pricing-note {
    color: #24583a;
}

.home-flow::before {
    background: linear-gradient(90deg, transparent, rgba(32, 197, 94, .28), transparent);
}

.home-faq-grid details[open] {
    background: #f7fef9;
    border-color: rgba(32, 197, 94, .22);
}

.final-cta {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px),
        linear-gradient(135deg, #0f2f3b, #0b3b2e 42%, #16a34a 100%);
    background-size: 58px 58px, auto;
}

.site-footer {
    background: #071318;
}

/* Public header refinement */
.site-header {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 240px;
    gap: 24px;
    min-height: 76px;
    padding: 0 max(72px, 6vw);
    z-index: 50;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(228, 231, 236, .86);
    box-shadow: 0 14px 36px rgba(16, 24, 40, .045);
}

.brand {
    justify-self: start;
    gap: 11px;
    color: #101828;
    font-size: 20px;
    font-weight: 900;
}

.brand-logo {
    display: block;
    width: 188px;
    height: auto;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 18px;
}

.site-nav {
    justify-self: center;
    gap: 2px;
    padding: 6px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(228, 231, 236, .95);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .07);
}

.site-nav a {
    position: relative;
    gap: 6px;
    min-height: 42px;
    padding: 0 15px;
    color: #344054;
    background: transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #16a34a;
    background: #f6fef9;
    box-shadow: none;
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2px;
    background: linear-gradient(90deg, #20c55e, #16a34a);
    border-radius: 999px;
}

.site-nav .nav-membership {
    color: #13783c;
}

.site-nav .nav-membership em {
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 6px;
    color: #ffffff;
    background: linear-gradient(135deg, #23d36d, #16a34a);
    border-radius: 999px;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}

.account-actions {
    justify-self: end;
    gap: 12px;
}

.account-link {
    min-height: 40px;
    padding: 0 4px;
    color: #344054;
    background: transparent;
    font-weight: 800;
}

.account-link:hover,
.account-link.is-active {
    color: #16a34a;
    background: transparent;
    box-shadow: none;
}

.header-action {
    min-height: 40px;
    padding: 0 18px;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 900;
}

.account-menu {
    position: relative;
    padding: 12px 0;
}

.account-trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 12px 0 8px;
    color: #344054;
    background: #ffffff;
    border: 1px solid rgba(228, 231, 236, .95);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, .055);
    font-size: 14px;
    font-weight: 900;
}

.account-trigger::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 2px;
    border-right: 2px solid #98a2b3;
    border-bottom: 2px solid #98a2b3;
    transform: rotate(45deg) translateY(-2px);
}

.account-trigger:hover,
.account-trigger.is-active {
    color: #16a34a;
    border-color: rgba(32, 197, 94, .28);
}

.mini-avatar {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #23d36d, #16a34a);
    border-radius: 9px;
    box-shadow: 0 10px 22px rgba(32, 197, 94, .2);
}

.account-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    display: grid;
    gap: 4px;
    min-width: 160px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgba(228, 231, 236, .95);
    border-radius: 12px;
    box-shadow: 0 24px 56px rgba(16, 24, 40, .13);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
}

.account-menu:hover .account-dropdown,
.account-menu:focus-within .account-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.account-dropdown a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    color: #344054;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
}

.account-dropdown a:hover {
    color: #16a34a;
    background: #f6fef9;
}

/* Homepage v2 refinement */
.hero {
    grid-template-columns: minmax(0, 1fr) 600px;
    gap: 58px;
    align-items: center;
    min-height: 700px;
    padding-top: 76px;
    padding-bottom: 64px;
    background:
        linear-gradient(90deg, rgba(32, 197, 94, .045) 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0%, #f9fbff 50%, #f4fcf7 100%);
    background-size: 72px 72px, auto;
}

.hero::before {
    top: 86px;
    opacity: .72;
}

.hero-copy {
    padding-top: 6px;
}

.hero-pill {
    min-height: 32px;
    padding: 0 13px;
    background: #f3fef7;
    border-color: rgba(32, 197, 94, .18);
    box-shadow: 0 10px 24px rgba(32, 197, 94, .07);
}

.hero h1 {
    margin: 22px 0 18px;
    font-size: 86px;
    letter-spacing: 0;
}

.hero-subtitle {
    color: #13783c;
    font-size: 31px;
    line-height: 1.35;
}

.hero .lead {
    max-width: 560px;
    color: #475467;
    font-size: 18px;
    line-height: 1.85;
}

.hero-actions {
    gap: 14px;
    margin-top: 30px;
}

.hero .button {
    min-width: 126px;
    min-height: 52px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    color: #344054;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(228, 231, 236, .9);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .04);
}

.hero-trust {
    margin-top: 22px;
}

.quick-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 590px;
    margin-top: 26px;
}

.quick-stats div {
    padding: 18px 20px;
    border: 1px solid rgba(228, 231, 236, .92);
    box-shadow: 0 18px 42px rgba(16, 24, 40, .06);
}

.quick-stats dt {
    font-size: 30px;
}

.product-visual {
    min-height: 586px;
    border-color: rgba(32, 197, 94, .2);
    border-radius: 14px;
    box-shadow: 0 36px 90px rgba(15, 81, 47, .14);
}

.window-bar {
    min-height: 62px;
    padding: 16px 22px;
}

.window-bar strong::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url("/static/site/brand/dnsstar-mark.png") center / cover no-repeat;
    border-radius: 0;
    box-shadow: none;
    vertical-align: -6px;
}

.software-panel {
    grid-template-columns: 136px 1fr;
    min-height: 524px;
}

.software-panel aside {
    padding: 28px 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 30%),
        linear-gradient(180deg, #102a33, #0b382d);
}

.software-panel aside b {
    margin-bottom: 4px;
}

.software-panel aside small {
    display: block;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .52);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.software-panel section {
    padding: 20px;
    background: linear-gradient(180deg, #fbfffc, #ffffff);
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.panel-head span {
    color: #667085;
    font-size: 12px;
    font-weight: 900;
}

.panel-head h2 {
    margin: 2px 0 0;
    color: #101828;
    font-size: 22px;
    line-height: 1.2;
}

.panel-head strong {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    color: #13783c;
    background: #effdf4;
    border: 1px solid rgba(32, 197, 94, .18);
    border-radius: 999px;
    font-size: 12px;
}

.metric-row div {
    min-height: 82px;
    padding: 14px 10px;
    border-radius: 10px;
}

.metric-row strong {
    font-size: 21px;
}

.device-preview {
    margin: 18px 0;
    padding: 18px;
    border-radius: 12px;
}

.device-preview h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.device-progress {
    overflow: hidden;
    height: 8px;
    margin: 0 0 14px;
    background: #e4e7ec;
    border-radius: 999px;
}

.device-progress i {
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #20c55e, #1677ff);
    border-radius: inherit;
}

.device-grid {
    gap: 8px;
}

.device-grid div {
    min-height: 72px;
    border-radius: 10px;
}

.dashboard-bottom {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 12px;
}

.dashboard-bottom > div {
    min-height: 108px;
    border-radius: 10px;
}

.benefit-band {
    position: relative;
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 34px;
    background: #ffffff;
}

.benefit-band article {
    min-height: 136px;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 18px 46px rgba(16, 24, 40, .05);
}

.benefit-band h2 {
    font-size: 22px;
}

.section-heading.centered {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.section-heading.centered p {
    margin: 0 auto;
    color: #667085;
    font-size: 17px;
}

.home-pricing {
    padding-top: 70px;
    padding-bottom: 72px;
}

.pricing-grid {
    gap: 24px;
}

.pricing-card {
    overflow: hidden;
    min-height: 382px;
    padding: 32px;
    border-radius: 14px;
}

.pricing-card.is-featured::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #20c55e, #1677ff);
}

.pricing-card h3 {
    font-size: 25px;
}

.plan-price strong {
    font-size: 56px;
}

.pricing-card .button {
    margin-top: 4px;
}

.flow-section {
    padding-top: 70px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfffc 100%);
}

.home-flow {
    gap: 20px;
}

.home-flow::before {
    top: 54px;
}

.home-flow article {
    min-height: 170px;
    padding: 26px;
    border-radius: 14px;
}

.home-flow article span {
    width: 50px;
    height: 50px;
}

.use-case-section {
    padding-top: 72px;
    background:
        linear-gradient(180deg, #f6fef9 0%, #ffffff 100%);
}

.use-case-grid article {
    min-height: 166px;
    padding: 26px;
    border-radius: 14px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.use-case-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(32, 197, 94, .24);
    box-shadow: 0 28px 60px rgba(16, 24, 40, .08);
}

.home-faq-section {
    padding-top: 70px;
}

.home-faq-grid details {
    border-radius: 12px;
}

.final-cta {
    min-height: 330px;
}

.cta-art span {
    width: 132px;
    height: 132px;
    border-radius: 30px;
    font-size: 38px;
    letter-spacing: 0;
}

/* Homepage centered redesign */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 36px;
    min-height: 0;
    padding: 70px max(72px, 6vw) 56px;
    background:
        linear-gradient(90deg, rgba(32, 197, 94, .038) 1px, transparent 1px),
        radial-gradient(circle at 50% 13%, rgba(32, 197, 94, .12), transparent 27%),
        radial-gradient(circle at 82% 58%, rgba(22, 119, 255, .1), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 46%, #f3fcf6 100%);
    background-size: 72px 72px, auto, auto, auto;
}

.hero::before {
    inset: 82px max(110px, 10vw) auto;
}

.hero-copy {
    display: grid;
    justify-items: center;
    max-width: 930px;
    padding-top: 0;
    text-align: center;
}

.hero h1 {
    margin: 20px 0 14px;
    font-size: 84px;
    line-height: .96;
}

.hero-subtitle {
    margin-bottom: 12px;
    font-size: 30px;
}

.hero .lead {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions,
.hero-meta,
.hero-trust {
    justify-content: center;
}

.hero-actions {
    margin-top: 28px;
}

.hero-meta {
    margin-top: 18px;
}

.hero-trust {
    margin-top: 20px;
}

.quick-stats {
    width: 660px;
    max-width: none;
    margin-top: 24px;
}

.quick-stats div {
    background: rgba(255, 255, 255, .88);
}

.product-visual {
    width: min(1080px, calc(100vw - 144px));
    min-height: 486px;
    border-radius: 16px;
    box-shadow: 0 36px 100px rgba(15, 81, 47, .16);
}

.window-bar {
    min-height: 58px;
}

.software-panel {
    grid-template-columns: 170px 1fr;
    min-height: 428px;
}

.software-panel aside {
    padding: 30px 22px;
}

.software-panel section {
    padding: 24px;
}

.panel-head {
    margin-bottom: 14px;
}

.metric-row {
    gap: 14px;
}

.metric-row div {
    min-height: 78px;
    padding: 13px 14px;
}

.device-preview {
    margin: 18px 0;
}

.device-grid {
    gap: 12px;
}

.dashboard-bottom {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 16px;
}

.dashboard-bottom > div {
    min-height: 102px;
}

.benefit-band {
    padding-top: 38px;
    padding-bottom: 38px;
}

/* Homepage centered redesign compact pass */
.hero {
    gap: 24px;
    padding-top: 46px;
    padding-bottom: 42px;
}

.hero-copy {
    max-width: 860px;
}

.hero h1 {
    margin: 14px 0 10px;
    font-size: 76px;
}

.hero-subtitle {
    margin-bottom: 8px;
    font-size: 28px;
}

.hero .lead {
    max-width: 700px;
    font-size: 17px;
    line-height: 1.68;
}

.hero-actions {
    margin-top: 22px;
}

.hero-meta {
    margin-top: 14px;
}

.hero-trust {
    margin-top: 16px;
}

.quick-stats {
    width: 620px;
    margin-top: 18px;
}

.quick-stats div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 8px;
    padding: 12px 18px;
}

.quick-stats dt {
    font-size: 25px;
}

.quick-stats dd {
    margin-top: 0;
}

.product-visual {
    width: min(1010px, calc(100vw - 144px));
    min-height: 0;
}

.window-bar {
    min-height: 50px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.software-panel {
    grid-template-columns: 150px 1fr;
    min-height: 0;
}

.software-panel aside {
    padding: 22px 18px;
}

.software-panel section {
    padding: 18px;
}

.panel-head {
    margin-bottom: 12px;
}

.panel-head h2 {
    font-size: 20px;
}

.metric-row div {
    min-height: 62px;
    padding: 10px 12px;
}

.metric-row strong {
    font-size: 20px;
}

.metric-row span {
    font-size: 12px;
}

.device-preview {
    margin: 12px 0;
    padding: 13px;
}

.device-progress {
    margin-bottom: 12px;
}

.device-grid div {
    min-height: 52px;
    padding: 8px 6px;
}

.device-grid strong {
    font-size: 11px;
}

.device-grid span {
    font-size: 11px;
}

.dashboard-bottom > div {
    min-height: 76px;
    padding: 12px;
}

.dashboard-bottom span {
    height: 9px;
    margin: 9px 0;
}

/* Soft light-blue theme */
:root {
    --ink: #0f172a;
    --muted: #64748b;
    --line: #dbe7f3;
    --soft: #f6faff;
    --paper: #ffffff;
    --brand: #4ba3ff;
    --brand-dark: #2563eb;
    --brand-deep: #102a43;
    --accent: #38bdf8;
    --mint: #eef7ff;
    --blue: #dff1ff;
    --shadow: 0 24px 70px rgba(37, 99, 235, .08);
    --shadow-strong: 0 32px 90px rgba(37, 99, 235, .14);
}

body {
    background:
        linear-gradient(90deg, rgba(75, 163, 255, .035) 1px, transparent 1px),
        linear-gradient(180deg, #ffffff 0, #f7fbff 640px, #f8fbff 100%);
    background-size: 72px 72px, auto;
}

.brand-mark,
.window-bar strong::before,
.avatar,
.header-action,
.button.primary,
.home-flow article span,
.plan-tag,
.mini-avatar {
    background: linear-gradient(135deg, #8bd3ff, #4ba3ff 48%, #2563eb);
    box-shadow: 0 12px 26px rgba(75, 163, 255, .24);
}

.site-nav a:hover,
.site-nav a.is-active,
.account-link:hover,
.account-link.is-active,
.account-trigger:hover,
.account-trigger.is-active,
.account-dropdown a:hover {
    color: #2563eb;
}

.site-nav a:hover,
.site-nav a.is-active,
.account-dropdown a:hover {
    background: #f1f8ff;
}

.site-nav a.is-active::after {
    background: linear-gradient(90deg, #4ba3ff, #2563eb);
}

.site-nav .nav-membership {
    color: #1d4ed8;
}

.site-nav .nav-membership em {
    background: linear-gradient(135deg, #60b5ff, #2563eb);
}

.hero {
    background:
        linear-gradient(90deg, rgba(75, 163, 255, .035) 1px, transparent 1px),
        radial-gradient(circle at 50% 13%, rgba(75, 163, 255, .14), transparent 27%),
        radial-gradient(circle at 82% 58%, rgba(56, 189, 248, .11), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 46%, #f2f8ff 100%);
    background-size: 72px 72px, auto, auto, auto;
}

.hero::before {
    background: linear-gradient(90deg, transparent, rgba(75, 163, 255, .3), transparent);
}

.hero-pill,
.benefit-band span,
.use-case-grid span,
.feature-icon,
.badge,
.tutorial-card span,
.flow-card span,
.panel-head strong {
    color: #1d4ed8;
    background: #eef7ff;
    border-color: rgba(75, 163, 255, .2);
}

.hero-subtitle,
.quick-stats dt,
.metric-row strong,
.pricing-card .button.secondary,
.more-link,
.contact-card a:not(.button),
.plan-price strong {
    color: #2563eb;
}

.button.primary:hover {
    background: linear-gradient(135deg, #60b5ff, #2563eb);
    box-shadow: 0 20px 42px rgba(75, 163, 255, .26);
}

.button.secondary {
    color: #1d4ed8;
    border-color: rgba(75, 163, 255, .28);
}

.button.secondary:hover {
    background: #f1f8ff;
    border-color: rgba(75, 163, 255, .44);
}

.hero-trust {
    color: #315b8a;
}

.hero-trust span::before,
.pricing-card li::before,
.home-faq-grid summary::before {
    background: #4ba3ff;
}

.quick-stats div,
.product-visual {
    border-color: rgba(75, 163, 255, .18);
}

.product-visual {
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    box-shadow: 0 34px 90px rgba(37, 99, 235, .13);
}

.window-bar {
    background:
        linear-gradient(90deg, rgba(238, 247, 255, .98), #ffffff 44%),
        #ffffff;
}

.software-panel aside {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 30%),
        linear-gradient(180deg, #102a43, #12385f);
}

.nav-line.active {
    background: #8bd3ff;
}

.device-preview,
.home-pricing,
.use-case-section,
.home-flow article,
.home-faq-grid details[open] {
    background: linear-gradient(180deg, #f4faff, #ffffff);
}

.dashboard-bottom span {
    background: linear-gradient(90deg, #dff1ff, #e0f2fe);
}

.pricing-card.is-featured {
    border-color: rgba(75, 163, 255, .5);
    background:
        linear-gradient(180deg, rgba(238, 247, 255, .96), #ffffff 48%);
    box-shadow: 0 28px 70px rgba(75, 163, 255, .14);
}

.pricing-card.is-featured::before,
.section-heading.centered::after,
.device-progress i {
    background: linear-gradient(90deg, #4ba3ff, #38bdf8);
}

.pricing-card.is-featured .button.secondary {
    color: white;
    background: linear-gradient(135deg, #60b5ff, #2563eb);
    border-color: transparent;
}

.pricing-note {
    color: #315b8a;
}

.home-flow::before {
    background: linear-gradient(90deg, transparent, rgba(75, 163, 255, .28), transparent);
}

.use-case-grid article:hover {
    border-color: rgba(75, 163, 255, .26);
}

.final-cta {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px),
        linear-gradient(135deg, #102a43, #12385f 42%, #2563eb 100%);
    background-size: 58px 58px, auto;
}

/* Homepage product polish pass */
.hero {
    padding-top: 84px;
}

.hero-copy {
    max-width: 900px;
}

.hero-copy h1 {
    margin-top: 18px;
    font-size: 82px;
}

.lead {
    max-width: 760px;
}

.product-visual {
    max-width: 1080px;
    margin-top: 46px;
}

.software-panel {
    grid-template-columns: 184px minmax(0, 1fr);
}

.software-panel aside {
    gap: 10px;
    padding: 22px 16px;
}

.software-panel aside b,
.software-panel aside small {
    padding-left: 8px;
}

.nav-line {
    position: relative;
    width: 100%;
    height: 34px;
    margin: 0;
    padding: 0 12px 0 30px;
    color: rgba(255, 255, 255, .74);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    line-height: 32px;
}

.nav-line::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, .42);
    border-radius: 50%;
    transform: translateY(-50%);
}

.nav-line.active {
    color: #0f2f4d;
    background: linear-gradient(135deg, #d9f0ff, #8bd3ff);
    border-color: rgba(255, 255, 255, .35);
}

.nav-line.active::before {
    background: #2563eb;
}

.nav-line.short {
    width: 100%;
}

.dashboard-bottom {
    gap: 14px;
}

.dashboard-bottom > div {
    min-height: 132px;
}

.task-card,
.member-card {
    display: grid;
    gap: 9px;
}

.task-card h3,
.member-card h3 {
    margin-bottom: 2px;
}

.task-card p,
.member-card p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 28px;
    margin: 0;
    color: #48627d;
    font-size: 13px;
    font-weight: 800;
}

.task-card p span,
.member-card p span {
    width: auto;
    height: auto;
    margin: 0;
    color: #48627d;
    background: transparent;
    border-radius: 0;
}

.task-card p b,
.member-card p b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 24px;
    padding: 0 9px;
    color: #2563eb;
    background: #eef7ff;
    border: 1px solid rgba(75, 163, 255, .16);
    border-radius: 8px;
    font-size: 12px;
}

.member-card p b {
    min-width: 84px;
    color: #0f2f4d;
    background: #f8fbff;
}

.pricing-card {
    gap: 12px;
    padding: 28px;
}

.plan-audience {
    min-height: 24px;
    margin: -4px 0 0;
    color: #385a7a;
    font-weight: 800;
}

.plan-meta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 2px 0 4px;
}

.plan-meta-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 10px;
    color: #1d4ed8;
    background: #f1f8ff;
    border: 1px solid rgba(75, 163, 255, .18);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.pricing-card.is-featured .plan-meta-row span {
    background: #e9f5ff;
    border-color: rgba(75, 163, 255, .26);
}

/* Desktop first-screen tightening */
.hero {
    padding-top: 58px;
    padding-bottom: 54px;
}

.hero-copy h1 {
    margin-top: 14px;
    margin-bottom: 10px;
    font-size: 74px;
}

.hero-subtitle {
    margin-bottom: 8px;
}

.hero .lead {
    max-width: 740px;
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 22px;
}

.hero-trust {
    margin-top: 16px;
}

.quick-stats {
    max-width: 560px;
    margin-top: 20px;
}

.quick-stats div {
    padding: 14px 16px;
}

.quick-stats dt {
    font-size: 26px;
}

.product-visual {
    min-height: 500px;
    margin-top: 30px;
}

.window-bar {
    min-height: 54px;
    padding: 12px 20px;
}

.software-panel {
    min-height: 444px;
}

.software-panel aside {
    padding-top: 20px;
    padding-bottom: 18px;
}

.software-panel aside small {
    margin-bottom: 16px;
}

.software-panel section {
    padding: 16px;
}

.panel-head {
    margin-bottom: 12px;
}

.metric-row div {
    min-height: 72px;
    padding: 12px 8px;
}

.metric-row strong {
    font-size: 19px;
}

.device-preview {
    margin: 14px 0;
    padding: 14px;
}

.device-grid div {
    min-height: 60px;
}

.dashboard-bottom > div {
    min-height: 112px;
    padding: 11px 12px;
}

.task-card p,
.member-card p {
    min-height: 24px;
    font-size: 12px;
}

/* Final desktop compact balance */
.hero {
    padding-top: 42px;
    padding-bottom: 46px;
}

.hero-copy {
    max-width: 860px;
}

.hero-pill {
    min-height: 30px;
    padding: 0 12px;
}

.hero-copy h1 {
    font-size: 66px;
    line-height: .98;
}

.hero-subtitle {
    font-size: 30px;
    line-height: 1.15;
}

.hero .lead {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.65;
}

.hero .button {
    min-height: 46px;
}

.hero-actions {
    margin-top: 18px;
}

.hero-meta {
    margin-top: 14px;
}

.hero-trust {
    margin-top: 12px;
}

.quick-stats {
    max-width: 520px;
    margin-top: 14px;
}

.quick-stats div {
    padding: 10px 14px;
}

.quick-stats dt {
    font-size: 22px;
}

.quick-stats dd {
    margin-top: 2px;
    font-size: 12px;
}

.product-visual {
    margin-top: 22px;
}

.window-bar {
    height: 52px;
    min-height: 52px;
    padding: 0 18px;
}

.software-panel {
    min-height: 420px;
}

.panel-head h2 {
    font-size: 20px;
}

.device-preview h3 {
    margin-bottom: 10px;
}

.device-grid div {
    min-height: 54px;
    padding: 8px;
}

.dashboard-bottom {
    grid-template-columns: minmax(0, 1fr) 220px;
}

.dashboard-bottom > div {
    min-height: 104px;
}

/* Download center page */
.download-center-hero {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 58px 6vw 34px;
    text-align: center;
    background:
        linear-gradient(90deg, rgba(75, 163, 255, .035) 1px, transparent 1px),
        radial-gradient(circle at 50% 8%, rgba(75, 163, 255, .13), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    background-size: 72px 72px, auto, auto;
}

.download-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    color: #1d4ed8;
    background: #eef7ff;
    border: 1px solid rgba(75, 163, 255, .18);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.download-center-hero h1 {
    margin: 4px 0 0;
    color: #0f172a;
    font-size: 54px;
    line-height: 1.05;
    letter-spacing: 0;
}

.download-center-hero p {
    max-width: 680px;
    margin: 0;
    color: #64748b;
    font-size: 18px;
    font-weight: 700;
}

.download-facts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}

.download-facts span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    color: #315b8a;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(75, 163, 255, .16);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(37, 99, 235, .05);
}

.download-center {
    display: grid;
    gap: 22px;
    padding: 0 6vw 78px;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 34%, #f8fbff 100%);
}

.download-primary-card {
    display: grid;
    grid-template-columns: minmax(290px, .9fr) minmax(420px, 1.35fr) 210px;
    gap: 24px;
    align-items: center;
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 28px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(75, 163, 255, .18);
    border-radius: 10px;
    box-shadow: 0 28px 80px rgba(37, 99, 235, .12);
}

.download-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.download-product-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    color: white;
    background: linear-gradient(135deg, #8bd3ff, #4ba3ff 48%, #2563eb);
    border-radius: 12px;
    font-size: 28px;
    font-weight: 950;
    box-shadow: 0 16px 36px rgba(75, 163, 255, .24);
}

.download-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-title-row h2 {
    margin: 0;
    color: #0f172a;
    font-size: 25px;
    line-height: 1.15;
}

.download-title-row span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    color: #1d4ed8;
    background: #eef7ff;
    border: 1px solid rgba(75, 163, 255, .2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.download-product p {
    margin: 7px 0 0;
    color: #64748b;
    font-weight: 800;
}

.download-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.download-spec-grid div {
    min-height: 66px;
    padding: 12px 14px;
    background: #f8fbff;
    border: 1px solid rgba(75, 163, 255, .14);
    border-radius: 8px;
}

.download-spec-grid span,
.download-card-head span,
.download-bottom-grid article > span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.download-spec-grid strong {
    display: block;
    margin-top: 3px;
    color: #102a43;
    font-size: 15px;
    line-height: 1.25;
}

.download-action-box {
    display: grid;
    gap: 10px;
}

.download-action-box .button {
    min-height: 54px;
    background: linear-gradient(135deg, #60b5ff, #2563eb);
    box-shadow: 0 18px 38px rgba(75, 163, 255, .25);
}

.download-action-box p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.download-notice-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1120px, 100%);
    min-height: 56px;
    margin: 0 auto;
    padding: 0 20px;
    color: #1e3a5f;
    background: linear-gradient(90deg, #eef7ff, #f8fbff);
    border: 1px solid rgba(75, 163, 255, .18);
    border-radius: 10px;
    font-weight: 850;
}

.download-notice-bar a {
    color: #1d4ed8;
    font-weight: 950;
    white-space: nowrap;
}

.download-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    width: min(1120px, 100%);
    margin: 8px auto 0;
}

.install-flow-card,
.system-card,
.download-bottom-grid article {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(75, 163, 255, .16);
    border-radius: 10px;
    box-shadow: 0 20px 52px rgba(37, 99, 235, .07);
}

.install-flow-card,
.system-card {
    padding: 26px;
}

.download-card-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.download-card-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
}

.download-card-head span {
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.install-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.install-flow::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 42px;
    right: 42px;
    height: 2px;
    background: linear-gradient(90deg, #dff1ff, #8bd3ff, #dff1ff);
}

.install-flow div {
    position: relative;
    display: grid;
    gap: 8px;
    justify-items: start;
    min-height: 126px;
    padding: 0 6px;
}

.install-flow div span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: white;
    background: linear-gradient(135deg, #8bd3ff, #2563eb);
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(75, 163, 255, .22);
    font-size: 13px;
    font-weight: 950;
    z-index: 1;
}

.install-flow strong {
    color: #102a43;
    font-size: 16px;
    line-height: 1.25;
}

.install-flow p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.5;
}

.system-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.system-card dl div {
    display: grid;
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    background: #f8fbff;
    border: 1px solid rgba(75, 163, 255, .13);
    border-radius: 8px;
}

.system-card dt {
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
}

.system-card dd {
    margin: 0;
    color: #102a43;
    font-weight: 900;
}

.download-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.download-bottom-grid article {
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 24px 26px;
}

.download-bottom-grid h2 {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
}

.download-bottom-grid p {
    margin: 0;
    color: #64748b;
    font-weight: 750;
}

.download-bottom-grid a {
    width: fit-content;
    color: #1d4ed8;
    font-weight: 950;
}

.download-bottom-grid code {
    width: fit-content;
    color: #315b8a;
    background: #eef7ff;
}

/* Download center visual refinement */
.download-center-hero {
    padding-top: 48px;
    padding-bottom: 96px;
    background:
        linear-gradient(90deg, rgba(75, 163, 255, .03) 1px, transparent 1px),
        radial-gradient(circle at 50% 0%, rgba(75, 163, 255, .16), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
    background-size: 72px 72px, auto, auto;
}

.download-center-hero h1 {
    font-size: 50px;
}

.download-center-hero p {
    font-size: 17px;
}

.download-facts span {
    min-height: 32px;
    background: rgba(255, 255, 255, .9);
}

.download-center {
    gap: 18px;
    margin-top: -70px;
    padding-bottom: 72px;
    background:
        linear-gradient(180deg, transparent 0, #ffffff 170px, #f8fbff 100%);
}

.download-primary-card,
.download-notice-bar,
.download-info-grid,
.download-bottom-grid {
    width: min(1140px, 100%);
}

.download-primary-card {
    position: relative;
    grid-template-columns: 330px minmax(420px, 1fr) 222px;
    gap: 0;
    overflow: hidden;
    min-height: 188px;
    padding: 0;
    border-radius: 8px;
    background: #ffffff;
    border-color: rgba(75, 163, 255, .2);
    box-shadow:
        0 34px 90px rgba(37, 99, 235, .13),
        0 1px 0 rgba(255, 255, 255, .9) inset;
}

.download-primary-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #8bd3ff, #4ba3ff, #2563eb);
}

.download-product,
.download-spec-grid,
.download-action-box {
    height: 100%;
    min-height: 188px;
}

.download-product {
    padding: 30px 28px;
    background:
        linear-gradient(135deg, rgba(238, 247, 255, .92), rgba(255, 255, 255, .98));
    border-right: 1px solid rgba(75, 163, 255, .14);
}

.download-product-icon {
    width: 62px;
    height: 62px;
    background: url("/static/site/brand/dnsstar-mark.png") center / contain no-repeat;
    border-radius: 0;
    box-shadow: none;
    font-size: 0;
}

.download-title-row {
    flex-wrap: wrap;
}

.download-title-row h2 {
    font-size: 24px;
    white-space: nowrap;
}

.download-product p {
    color: #48627d;
    font-size: 14px;
}

.download-spec-grid {
    align-content: center;
    padding: 26px 22px;
    background: #ffffff;
}

.download-spec-grid div {
    min-height: 58px;
    padding: 10px 14px;
    background: #f8fbff;
    border-color: rgba(75, 163, 255, .16);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .035);
}

.download-spec-grid span {
    color: #6b7f95;
}

.download-spec-grid strong {
    color: #0f2f4d;
    font-size: 16px;
}

.download-action-box {
    align-content: center;
    padding: 30px 26px;
    background:
        linear-gradient(180deg, #ffffff, #f8fbff);
    border-left: 1px solid rgba(75, 163, 255, .14);
}

.download-action-box .button {
    min-height: 56px;
    border-radius: 8px;
    font-size: 17px;
}

.download-action-box p {
    color: #48627d;
}

.download-notice-bar {
    min-height: 54px;
    border-radius: 8px;
    background: #eef7ff;
    box-shadow: 0 14px 34px rgba(37, 99, 235, .05);
}

.download-info-grid {
    grid-template-columns: minmax(0, 1fr) 352px;
    gap: 24px;
    margin-top: 10px;
}

.install-flow-card,
.system-card,
.download-bottom-grid article {
    border-radius: 8px;
    border-color: rgba(75, 163, 255, .18);
    box-shadow: 0 20px 55px rgba(37, 99, 235, .075);
}

.install-flow-card,
.system-card {
    padding: 30px;
}

.download-card-head {
    align-items: start;
    margin-bottom: 28px;
}

.download-card-head span {
    padding-top: 6px;
    color: #2563eb;
    font-size: 11px;
}

.download-card-head h2 {
    font-size: 26px;
}

.install-flow {
    gap: 20px;
}

.install-flow::before {
    top: 24px;
    left: 50px;
    right: 50px;
    background: linear-gradient(90deg, #d9ecff, #8bd3ff 50%, #d9ecff);
}

.install-flow div {
    gap: 10px;
    min-height: 118px;
}

.install-flow div span {
    width: 50px;
    height: 50px;
}

.install-flow strong {
    font-size: 17px;
}

.system-card dl {
    gap: 12px;
}

.system-card dl div {
    min-height: 50px;
    padding: 0 14px;
    background: #f8fbff;
    box-shadow: 0 10px 22px rgba(37, 99, 235, .035);
}

.download-bottom-grid {
    margin-top: 2px;
}

.download-bottom-grid article {
    min-height: 186px;
    padding: 26px 28px;
}

/* Download center final matching pass */
.download-center-hero {
    gap: 12px;
    padding-top: 42px;
    padding-bottom: 82px;
    background:
        linear-gradient(90deg, rgba(75, 163, 255, .026) 1px, transparent 1px),
        radial-gradient(circle at 50% 6%, rgba(75, 163, 255, .12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    background-size: 72px 72px, auto, auto;
}

.download-kicker {
    min-height: 30px;
    padding: 0 13px;
    color: #2563eb;
    background: rgba(238, 247, 255, .9);
}

.download-center-hero h1 {
    margin-top: 2px;
    font-size: 46px;
    font-weight: 950;
}

.download-center-hero p {
    color: #5d7188;
    font-size: 16px;
    font-weight: 800;
}

.download-facts {
    gap: 12px;
    margin-top: 2px;
}

.download-facts span {
    min-height: 30px;
    padding: 0 14px;
    color: #415b76;
    background: #ffffff;
    border-color: rgba(75, 163, 255, .13);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .045);
}

.download-center {
    gap: 20px;
    margin-top: -58px;
    padding-right: 0;
    padding-left: 0;
    background:
        linear-gradient(180deg, transparent 0, #ffffff 150px, #f7fbff 100%);
}

.download-primary-card,
.download-notice-bar,
.download-info-grid,
.download-bottom-grid {
    width: 1140px;
    max-width: calc(100vw - 12vw);
}

.download-primary-card {
    grid-template-columns: 350px minmax(430px, 1fr) 230px;
    min-height: 176px;
    border-radius: 8px;
    border-color: rgba(75, 163, 255, .16);
    box-shadow:
        0 24px 70px rgba(37, 99, 235, .11),
        0 1px 0 rgba(255, 255, 255, .9) inset;
}

.download-primary-card::before {
    height: 3px;
    background: linear-gradient(90deg, #8bd3ff 0%, #4ba3ff 42%, #2563eb 100%);
}

.download-product,
.download-spec-grid,
.download-action-box {
    min-height: 176px;
}

.download-product {
    gap: 18px;
    padding: 28px 30px;
    background: #ffffff;
}

.download-product-icon {
    width: 58px;
    height: 58px;
}

.download-title-row h2 {
    color: #102033;
    font-size: 24px;
}

.download-title-row span {
    min-height: 24px;
    padding: 0 8px;
    color: #2563eb;
    background: #eef7ff;
    font-size: 11px;
}

.download-product p {
    margin-top: 8px;
    color: #5d7188;
    font-size: 13px;
}

.download-spec-grid {
    gap: 8px;
    padding: 24px 22px;
}

.download-spec-grid div {
    min-height: 56px;
    padding: 9px 14px;
    background: #fafcff;
    border-color: rgba(75, 163, 255, .12);
    box-shadow: none;
}

.download-spec-grid span {
    color: #6c7f93;
    font-size: 12px;
}

.download-spec-grid strong {
    margin-top: 2px;
    color: #102033;
    font-size: 15px;
}

.download-action-box {
    gap: 9px;
    padding: 28px 26px;
    background: #ffffff;
}

.download-action-box .button {
    min-height: 54px;
    font-size: 16px;
    box-shadow: 0 16px 34px rgba(37, 99, 235, .22);
}

.download-action-box p {
    color: #6c7f93;
    font-size: 12px;
}

.download-notice-bar {
    min-height: 52px;
    padding: 0 18px;
    color: #1d4268;
    background: #eef7ff;
    border-color: rgba(75, 163, 255, .14);
    border-radius: 8px;
    box-shadow: none;
}

.download-notice-bar span {
    font-size: 14px;
}

.download-info-grid {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 22px;
    margin-top: 8px;
}

.install-flow-card,
.system-card,
.download-bottom-grid article {
    background: #ffffff;
    border-color: rgba(75, 163, 255, .14);
    box-shadow: 0 18px 48px rgba(37, 99, 235, .065);
}

.install-flow-card,
.system-card {
    min-height: 310px;
    padding: 28px 30px;
}

.download-card-head {
    margin-bottom: 26px;
}

.download-card-head h2 {
    font-size: 25px;
    line-height: 1.15;
}

.download-card-head span {
    padding-top: 4px;
    color: #2563eb;
    font-size: 10px;
    letter-spacing: .12em;
}

.install-flow {
    align-items: start;
    gap: 18px;
}

.install-flow::before {
    top: 23px;
    left: 42px;
    right: 42px;
    height: 2px;
    background: linear-gradient(90deg, #dbeeff, #9dd8ff, #dbeeff);
}

.install-flow div {
    min-height: 112px;
    gap: 8px;
    padding: 0;
}

.install-flow div span {
    width: 46px;
    height: 46px;
    border-width: 4px;
    font-size: 12px;
}

.install-flow strong {
    color: #102033;
    font-size: 16px;
}

.install-flow p {
    color: #6c7f93;
    font-size: 12px;
}

.system-card dl {
    gap: 11px;
}

.system-card dl div {
    min-height: 48px;
    padding: 0 13px;
    background: #fafcff;
    border-color: rgba(75, 163, 255, .11);
    box-shadow: none;
}

.system-card dt {
    color: #6c7f93;
    font-size: 12px;
}

.system-card dd {
    color: #102033;
    font-size: 14px;
}

.download-bottom-grid {
    gap: 22px;
    margin-top: 0;
}

.download-bottom-grid article {
    min-height: 168px;
    padding: 24px 26px;
}

.download-bottom-grid h2 {
    font-size: 23px;
}

.download-bottom-grid p {
    color: #6c7f93;
    font-size: 14px;
}

/* Download center reference-match pass */
.download-center-hero {
    min-height: 302px;
    padding-top: 34px;
    padding-bottom: 86px;
}

.download-kicker {
    min-width: 106px;
    color: #1677ff;
    background: #ffffff;
    border-color: rgba(22, 119, 255, .35);
    font-size: 14px;
}

.download-center-hero h1 {
    margin-top: 0;
    font-size: 48px;
    line-height: 1.08;
}

.download-center-hero p {
    margin-top: -2px;
    color: #3f5570;
    font-size: 17px;
}

.download-facts {
    gap: 66px;
    margin-top: 8px;
}

.download-facts span {
    position: relative;
    min-height: 34px;
    padding: 0;
    color: #18304d;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 15px;
    font-weight: 750;
}

.download-facts span::before {
    content: "";
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    border: 1px solid rgba(22, 119, 255, .55);
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .08);
    vertical-align: -9px;
}

.download-facts span:nth-child(1)::after,
.download-facts span:nth-child(2)::after,
.download-facts span:nth-child(3)::after {
    position: absolute;
    left: 10px;
    top: 50%;
    color: #1677ff;
    font-size: 12px;
    line-height: 1;
    transform: translateY(-50%);
}

.download-facts span:nth-child(1)::after {
    content: "i";
    font-weight: 950;
}

.download-facts span:nth-child(2)::after {
    content: "6";
    font-weight: 950;
}

.download-facts span:nth-child(3)::after {
    content: "□";
    font-size: 10px;
}

.download-center {
    gap: 20px;
    margin-top: -72px;
    background:
        linear-gradient(180deg, transparent 0, #ffffff 155px, #f6faff 100%);
}

.download-primary-card,
.download-notice-bar,
.download-info-grid,
.download-bottom-grid {
    width: 1210px;
    max-width: calc(100vw - 12vw);
}

.download-primary-card {
    grid-template-columns: 405px minmax(440px, 1fr) 300px;
    min-height: 196px;
    overflow: hidden;
    border-color: rgba(22, 119, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 26px 70px rgba(38, 116, 222, .12);
}

.download-primary-card::before {
    height: 0;
}

.download-product,
.download-spec-grid,
.download-action-box {
    min-height: 196px;
}

.download-product {
    gap: 28px;
    padding: 34px 38px;
    border-right: 1px solid rgba(22, 119, 255, .14);
}

.download-product-icon {
    width: 86px;
    height: 86px;
    background:
        url("/static/site/brand/dnsstar-mark.png") center / 56px 56px no-repeat,
        linear-gradient(145deg, #eaf5ff, #cfe7ff);
    border: 1px solid rgba(22, 119, 255, .22);
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(37, 99, 235, .13);
}

.download-title-row {
    gap: 12px;
    margin-bottom: 12px;
}

.download-title-row h2 {
    font-size: 24px;
    font-weight: 950;
}

.download-title-row span {
    min-height: 27px;
    padding: 0 10px;
    font-size: 13px;
}

.download-product p {
    position: relative;
    margin: 0;
    padding-left: 24px;
    color: #415b76;
    font-size: 14px;
    font-weight: 750;
}

.download-product p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border: 1px solid #1677ff;
    border-radius: 4px;
}

.download-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 30px 34px;
    border-right: 1px solid rgba(22, 119, 255, .14);
}

.download-spec-grid div {
    position: relative;
    min-height: 66px;
    padding: 8px 0 14px 38px;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.download-spec-grid div:nth-child(1),
.download-spec-grid div:nth-child(2) {
    border-bottom: 1px solid rgba(22, 119, 255, .16);
}

.download-spec-grid div:nth-child(2n) {
    padding-left: 50px;
}

.download-spec-grid div::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 14px;
    width: 18px;
    height: 18px;
    border: 1px solid #1677ff;
    border-radius: 5px;
}

.download-spec-grid div:nth-child(2n)::before {
    left: 16px;
}

.download-spec-grid span {
    color: #142844;
    font-size: 14px;
    font-weight: 900;
}

.download-spec-grid strong {
    margin-top: 4px;
    color: #405875;
    font-size: 15px;
    font-weight: 700;
}

.download-action-box {
    align-content: center;
    padding: 36px 44px;
}

.download-action-box .button {
    min-height: 58px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 950;
}

.download-action-box .button::before {
    content: "↓";
    margin-right: 10px;
    font-size: 22px;
    line-height: 1;
}

.download-action-box p {
    color: #5f7288;
    font-size: 15px;
    font-weight: 700;
}

.download-notice-bar {
    min-height: 48px;
    color: #0f4fb8;
    background: rgba(238, 247, 255, .94);
    border-color: rgba(22, 119, 255, .24);
}

.download-notice-bar::before {
    content: "i";
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: #1677ff;
    border: 1px solid #1677ff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 950;
}

.download-notice-bar span {
    flex: 1;
}

.download-notice-bar a::after {
    content: ">";
    margin-left: 10px;
}

.download-info-grid {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 22px;
}

.install-flow-card,
.system-card,
.download-bottom-grid article {
    border-color: rgba(22, 119, 255, .18);
}

.install-flow-card,
.system-card {
    min-height: 190px;
    padding: 22px 24px 24px;
}

.download-card-head {
    display: block;
    margin-bottom: 24px;
}

.download-card-head span {
    display: none;
}

.download-card-head h2 {
    font-size: 21px;
    font-weight: 950;
}

.install-flow {
    gap: 38px;
    padding: 0 24px;
}

.install-flow::before {
    top: 16px;
    left: 58px;
    right: 58px;
    border-top: 2px dashed rgba(22, 119, 255, .25);
    background: transparent;
}

.install-flow div {
    justify-items: center;
    min-height: 94px;
    text-align: center;
}

.install-flow div span {
    width: 34px;
    height: 34px;
    border-width: 0;
    font-size: 13px;
}

.install-flow strong {
    margin-top: 4px;
    font-size: 15px;
}

.install-flow p {
    max-width: 118px;
    font-size: 12px;
    line-height: 1.65;
}

.system-card {
    padding-right: 28px;
    padding-left: 28px;
}

.system-list {
    display: grid;
    gap: 0;
    margin: -4px 0 0;
    padding: 0;
    list-style: none;
}

.system-list li {
    position: relative;
    min-height: 35px;
    padding: 6px 0 6px 34px;
    color: #405875;
    border-bottom: 1px solid rgba(22, 119, 255, .14);
    font-size: 14px;
    font-weight: 750;
}

.system-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 7px;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    color: #1677ff;
    border: 1px solid #1677ff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 950;
}

.download-bottom-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.download-bottom-grid article {
    min-height: 172px;
    padding: 20px 24px;
}

.version-card {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 24px;
    align-items: center;
    overflow: hidden;
}

.version-card > div:first-child {
    position: relative;
    z-index: 1;
}

.version-card .version-title,
.download-guide-card > span {
    color: #102033;
    font-size: 20px;
    font-weight: 950;
}

.version-card em {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-left: 8px;
    padding: 0 9px;
    color: #1677ff;
    background: #eaf5ff;
    border-radius: 6px;
    font-size: 13px;
    font-style: normal;
}

.version-card p {
    margin-top: 12px;
    color: #405875;
}

.version-card strong {
    color: #102033;
}

.version-card ul,
.download-guide-card ul {
    display: grid;
    gap: 8px;
    margin: 8px 0 0;
    padding: 0;
    color: #405875;
    list-style: none;
}

.version-card li,
.download-guide-card li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.55;
}

.version-card li::before,
.download-guide-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 5px;
    height: 5px;
    background: #1677ff;
    border-radius: 50%;
}

.version-status {
    display: grid;
    gap: 12px;
    padding: 18px 18px;
    background: linear-gradient(145deg, rgba(238, 247, 255, .9), rgba(255, 255, 255, .96));
    border: 1px solid rgba(22, 119, 255, .18);
    border-radius: 10px;
}

.version-status span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #405875;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.3;
}

.version-status i {
    display: block;
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    background: #1677ff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(22, 119, 255, .1);
}

.download-guide-card a {
    color: #1677ff;
    font-weight: 900;
}

/* Download icon system */
.site-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: #1677ff;
    background: currentColor;
    -webkit-mask: var(--icon) center / contain no-repeat;
    mask: var(--icon) center / contain no-repeat;
}

.icon-info {
    --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 10v7M12 7h.01' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-devices {
    --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='5' width='13' height='10' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M7 19h6M10 15v4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='18' y='9' width='3' height='8' rx='1.2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.icon-monitor {
    --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='5' width='16' height='11' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 20h8M12 16v4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-file {
    --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h7l4 4v14H7z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M14 3v5h5M9 13h6M9 17h6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.icon-shield {
    --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3l7 3v5c0 5-3 8-7 10-4-2-7-5-7-10V6z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M9 12l2 2 4-5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-download {
    --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4v10M8 10l4 4 4-4M5 20h14' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-arrow {
    --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5l7 7-7 7' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.icon-check {
    --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 12.5l2.5 2.5L16 9' fill='none' stroke='black' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.download-facts span::before,
.download-facts span::after,
.download-spec-grid div::before,
.download-action-box .button::before,
.download-notice-bar::before,
.system-list li::before {
    content: none;
    display: none;
}

.download-facts span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.download-facts .site-icon {
    width: 28px;
    height: 28px;
    padding: 5px;
    background: transparent;
    border: 1px solid rgba(22, 119, 255, .45);
    border-radius: 50%;
    color: #1677ff;
}

.download-facts .site-icon::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: currentColor;
    -webkit-mask: var(--icon) center / contain no-repeat;
    mask: var(--icon) center / contain no-repeat;
}

.download-facts .site-icon {
    -webkit-mask: none;
    mask: none;
}

.download-spec-grid div {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
}

.download-spec-grid div:nth-child(2n) {
    padding-left: 42px;
}

.download-spec-grid div:nth-child(2n) .site-icon {
    margin-left: -4px;
}

.download-spec-grid .site-icon {
    grid-row: 1 / span 2;
    width: 20px;
    height: 20px;
    margin-top: 5px;
}

.download-action-box .button {
    gap: 10px;
}

.download-action-box .button .site-icon {
    width: 22px;
    height: 22px;
    color: #ffffff;
}

.download-notice-bar > .site-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
}

.download-notice-bar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.download-notice-bar a::after {
    content: none;
}

.download-notice-bar a .site-icon {
    width: 16px;
    height: 16px;
}

.system-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 0;
}

.system-list li .site-icon {
    width: 19px;
    height: 19px;
}

/* Inline SVG icons for download page */
.download-icon {
    display: inline-block;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: #1677ff;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}

.download-facts .download-icon {
    width: 30px;
    height: 30px;
    padding: 6px;
    color: #1677ff;
    background: #ffffff;
    border: 1px solid rgba(22, 119, 255, .42);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .08);
}

.download-spec-grid div {
    grid-template-columns: 24px minmax(0, 1fr);
}

.download-spec-grid .download-icon {
    grid-row: 1 / span 2;
    width: 21px;
    height: 21px;
    margin-top: 5px;
    color: #0f5fd8;
    stroke-width: 1.75;
}

.download-spec-grid div:nth-child(2n) .download-icon {
    margin-left: -4px;
}

.download-action-box .button {
    gap: 10px;
}

.download-action-box .button .download-icon {
    width: 23px;
    height: 23px;
    color: #ffffff;
    stroke-width: 2;
}

.download-notice-bar > .download-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    color: #1677ff;
}

.download-notice-bar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.download-notice-bar a .download-icon {
    width: 16px;
    height: 16px;
    color: #1677ff;
    stroke-width: 2;
}

.system-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 0;
}

.system-list li .download-icon {
    width: 20px;
    height: 20px;
    color: #1677ff;
    stroke-width: 1.9;
}

.download-app-icon {
    display: grid;
    place-items: center;
    position: relative;
    width: 88px;
    height: 88px;
    flex: 0 0 auto;
    border-radius: 21px;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .18) 34%, transparent 46%),
        linear-gradient(145deg, #edf8ff 0%, #d8ecff 54%, #c9e2ff 100%);
    border: 1px solid rgba(22, 119, 255, .2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .95),
        0 16px 34px rgba(37, 99, 235, .14);
}

.download-app-icon::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 16px;
    pointer-events: none;
}

.download-app-icon img {
    position: relative;
    z-index: 1;
    display: block;
    width: 58px;
    height: 58px;
}

.download-product p {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-left: 0;
}

.download-product p::before {
    content: none;
}

.download-product p .download-icon-calendar {
    width: 18px;
    height: 18px;
    color: #1677ff;
    stroke-width: 1.8;
}

.download-product-icon {
    display: none;
}

/* Download bottom information refinement */
.download-bottom-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.download-bottom-grid .version-card,
.download-bottom-grid .download-guide-card {
    display: block;
    min-height: 258px;
    padding: 28px 30px 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(249, 252, 255, .98));
    border: 1px solid rgba(22, 119, 255, .18);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(37, 99, 235, .08);
}

.bottom-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.bottom-card-head span {
    color: #0f172a;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.2;
}

.bottom-card-head em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 30px;
    padding: 0 12px;
    color: #1d4ed8;
    background: #eef7ff;
    border: 1px solid rgba(22, 119, 255, .16);
    border-radius: 999px;
    font-size: 13px;
    font-style: normal;
    font-weight: 950;
}

.version-meta-row {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    margin-bottom: 20px;
    padding: 0 16px;
    background: #f6fbff;
    border: 1px solid rgba(22, 119, 255, .13);
    border-radius: 8px;
}

.version-meta-row b {
    color: #6b7f98;
    font-size: 14px;
    font-weight: 850;
}

.version-meta-row strong {
    color: #1f3654;
    font-size: 16px;
    font-weight: 950;
}

.version-meta-row small {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    color: #0f5fd8;
    background: #ffffff;
    border: 1px solid rgba(22, 119, 255, .16);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.version-update-list,
.download-guide-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.version-update-list li,
.download-guide-list li {
    position: relative;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-height: 42px;
    padding: 12px 0 12px 18px;
    color: #405875;
    border-bottom: 1px solid rgba(22, 119, 255, .1);
    font-size: 14px;
    line-height: 1.55;
}

.version-update-list li:last-child,
.download-guide-list li:last-child {
    border-bottom: 0;
}

.version-update-list li::before,
.download-guide-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    display: block;
    width: 7px;
    height: 7px;
    background: #1677ff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(22, 119, 255, .1);
}

.version-update-list strong,
.download-guide-list strong {
    color: #1f3654;
    font-weight: 950;
}

.version-update-list span,
.download-guide-list span {
    color: #4b607a;
    font-weight: 700;
}

.download-guide-list a {
    color: #1677ff;
    font-weight: 950;
    text-decoration: none;
}

.download-source-notice {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: auto;
    min-height: 0;
    margin: -6px auto 4px;
    padding: 0;
    color: #7a8da4;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    justify-self: center;
    align-self: center;
}

.download-source-notice .download-icon {
    width: 18px;
    height: 18px;
    color: #7aa3df;
    stroke-width: 1.8;
}

.download-source-notice span {
    color: #788aa0;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.4;
}

/* Public footer final design */
.site-footer {
    padding: 0 6vw;
    color: #10233f;
    background:
        linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f8fbff 100%);
    border-top: 1px solid rgba(22, 119, 255, .14);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .95fr) minmax(0, 1.08fr);
    gap: 54px;
    width: min(1210px, 100%);
    margin: 0 auto;
    padding: 38px 0 32px;
}

.footer-brand-block {
    display: grid;
    gap: 14px;
    align-content: start;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.footer-brand img {
    display: block;
    width: 142px;
    height: auto;
}

.footer-brand-block p {
    max-width: 382px;
    margin: 0;
    color: #526b86;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.7;
}

.footer-safe-note {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 420px;
    color: #64748b;
}

.footer-safe-note .payment-icon,
.footer-contact-block .payment-icon {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    color: #64748b;
    stroke-width: 1.9;
}

.footer-safe-note strong {
    color: #64748b;
    font-size: 13px;
    font-weight: 780;
    line-height: 1.55;
}

.footer-nav-grid {
    display: grid;
    align-content: start;
    gap: 16px;
}

.footer-nav-grid h2,
.footer-contact-block h2 {
    margin: 0;
    color: #10233f;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.25;
}

.footer-nav-grid div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 28px;
}

.footer-nav-grid a {
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
    transition: color .16s ease;
}

.footer-contact-block a,
.footer-contact-block > span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
    transition: color .16s ease;
}

.footer-nav-grid a:hover,
.footer-contact-block a:hover,
.footer-contact-block a:hover .payment-icon {
    color: #2563eb;
}

.footer-contact-block {
    display: grid;
    align-content: start;
    gap: 13px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1210px, 100%);
    min-height: 52px;
    margin: 0 auto;
    color: #8a9bb0;
    border-top: 1px solid rgba(22, 119, 255, .12);
}

.footer-bottom small {
    color: #8a9bb0;
    font-size: 13px;
    font-weight: 760;
}

.footer-bottom strong {
    color: #64748b;
    font-size: 13px;
    font-weight: 820;
}

/* Membership page final design */
.membership-page {
    display: grid;
    gap: 22px;
    padding: 0 6vw 36px;
    background:
        radial-gradient(circle at 50% 0%, rgba(75, 163, 255, .18), transparent 34%),
        linear-gradient(135deg, rgba(75, 163, 255, .08), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f8fbff 100%);
}

.membership-hero {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 34px 0 4px;
    text-align: center;
}

.membership-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #4ba3ff, #2563eb);
    border: 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(37, 99, 235, .06);
}

.membership-hero h1 {
    margin: 16px 0 10px;
    color: #0f172a;
    font-size: 48px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: 0;
}

.membership-hero p {
    margin: 0 auto;
    max-width: 720px;
    color: #3f5570;
    font-size: 16px;
    font-weight: 780;
    line-height: 1.75;
}

.membership-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    width: min(994px, 100%);
    min-height: 76px;
    margin: 24px auto 0;
    padding: 0 34px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(22, 119, 255, .16);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(37, 99, 235, .08);
}

.membership-facts span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #17314f;
    font-size: 16px;
    font-weight: 900;
}

.membership-facts span + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: rgba(22, 119, 255, .18);
}

.membership-facts .download-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: linear-gradient(135deg, #70c2ff, #2563eb);
    border: 6px solid #eef7ff;
    border-radius: 8px;
    box-shadow: none;
    padding: 7px;
    stroke-width: 2;
}

.membership-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: min(994px, 100%);
    margin: 0 auto;
}

.membership-plan-card {
    position: relative;
    height: auto;
    min-height: 374px;
    padding: 28px 28px 22px;
    gap: 9px;
    align-content: stretch;
    grid-template-rows: auto auto auto auto 1fr auto;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(249, 252, 255, .98));
    border: 1px solid rgba(22, 119, 255, .16);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(37, 99, 235, .08);
}

.membership-plan-card.is-featured {
    border-color: rgba(22, 119, 255, .58);
    box-shadow: 0 24px 62px rgba(37, 99, 235, .16);
    transform: none;
}

.membership-plan-card.is-featured::before {
    content: none;
}

.membership-plan-card h3 {
    margin: 0;
    color: #0f172a;
    font-size: 21px;
    text-align: center;
    font-weight: 950;
}

.membership-plan-card .plan-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    justify-self: auto;
    min-height: 26px;
    padding: 0 12px;
    color: #1d4ed8;
    background: #f1f7ff;
    border: 1px solid rgba(37, 99, 235, .2);
    border-radius: 999px;
    z-index: 1;
    font-size: 12px;
    font-weight: 950;
}

.membership-plan-card .plan-price {
    justify-content: center;
    margin-top: 4px;
}

.membership-plan-card .plan-price strong {
    color: #1d4ed8;
    font-size: 46px;
    letter-spacing: 0;
}

.membership-plan-card .plan-price span {
    color: #46627f;
    font-size: 15px;
    font-weight: 950;
}

.membership-plan-card .plan-period {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin: -2px auto 0;
    padding: 0 13px;
    color: #1d4ed8;
    background: #f1f8ff;
    border: 1px solid rgba(22, 119, 255, .15);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.membership-plan-card .plan-audience {
    min-height: 22px;
    margin: 0;
    color: #526b86;
    font-size: 13px;
    font-weight: 780;
    text-align: center;
}

.membership-plan-card .plan-meta-row {
    display: none;
}

.membership-plan-card .plan-meta-row span {
    min-height: 36px;
    color: #1d4ed8;
    background: #f1f8ff;
    border-color: rgba(22, 119, 255, .16);
    border-radius: 8px;
}

.membership-plan-card ul {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding: 14px 16px 0;
    border-top: 1px solid rgba(22, 119, 255, .1);
    list-style: none;
    align-content: start;
}

.membership-plan-card li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    color: #405875;
    font-size: 13px;
    font-weight: 820;
}

.membership-plan-card li::before {
    content: none;
}

.membership-plan-card li .download-icon {
    width: 18px;
    height: 18px;
    color: #1677ff;
    stroke-width: 1.95;
}

.membership-plan-card .button.secondary {
    min-height: 42px;
    margin-top: 8px;
    color: #2563eb;
    background: #ffffff;
    border-color: rgba(22, 119, 255, .28);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 950;
}

.membership-plan-card.is-featured .button.secondary {
    color: #ffffff;
    background: linear-gradient(135deg, #4ba3ff, #2563eb);
    border-color: transparent;
    box-shadow: 0 14px 34px rgba(37, 99, 235, .24);
}

.membership-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .98fr);
    gap: 24px;
    width: min(1192px, 100%);
    margin: 0 auto;
}

.membership-flow-card,
.membership-benefit-card {
    min-height: 154px;
    padding: 24px 30px 26px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(22, 119, 255, .16);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(37, 99, 235, .07);
}

.membership-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.membership-card-head span {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    overflow: hidden;
    color: #ffffff;
    background: #2563eb;
    border-radius: 4px;
}

.membership-card-head span::before {
    content: none;
}

.membership-card-head span .download-icon {
    width: 17px;
    height: 17px;
    color: #ffffff;
    stroke-width: 2;
}

.membership-card-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 950;
}

.membership-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    padding: 0 10px;
}

.membership-steps::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 55px;
    right: 55px;
    border-top: 2px dashed rgba(22, 119, 255, .22);
}

.membership-steps div {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 9px;
    text-align: center;
}

.membership-steps div > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, #70c2ff, #2563eb);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(37, 99, 235, .18);
    font-size: 13px;
    font-weight: 950;
}

.membership-steps strong {
    min-height: 22px;
    color: #17314f;
    font-size: 13px;
    font-weight: 950;
}

.membership-steps p {
    display: none;
    max-width: 136px;
    margin: 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 740;
    line-height: 1.65;
}

.membership-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
    row-gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.membership-benefits li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
    padding: 1px 0;
    color: #405875;
    border-bottom: 0;
    font-size: 13px;
    font-weight: 850;
}

.membership-benefits li:last-child {
    border-bottom: 0;
}

.membership-benefits li::before {
    content: none;
}

.membership-benefits li .download-icon {
    width: 18px;
    height: 18px;
    color: #1677ff;
    stroke-width: 1.95;
}

.membership-safe-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    width: min(1192px, 100%);
    margin: -6px auto 0;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(22, 119, 255, .12);
    border-radius: 8px;
    color: #788aa0;
}

.membership-safe-note > .download-icon {
    width: 18px;
    height: 18px;
    color: #7aa3df;
    stroke-width: 1.85;
}


.membership-safe-note strong {
    color: #788aa0;
    font-size: 14px;
    font-weight: 760;
}

/* Membership payment checkout */
.payment-page {
    display: grid;
    gap: 20px;
    padding: 28px 6vw 42px;
    background:
        radial-gradient(circle at 50% 0%, rgba(75, 163, 255, .14), transparent 34%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #f8fbff 100%);
}

.payment-heading {
    text-align: center;
}

.payment-heading h1 {
    margin: 0;
    color: #10233f;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 950;
}

.payment-heading p {
    margin: 10px 0 0;
    color: #536b88;
    font-size: 15px;
    font-weight: 760;
}

.payment-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 24px;
    width: min(1210px, 100%);
    margin: 0 auto;
}

.payment-card,
.payment-bottom-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(22, 119, 255, .15);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(37, 99, 235, .08);
}

.payment-card {
    padding: 28px;
}

.payment-icon {
    display: inline-block;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: currentColor;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}

.payment-card-title {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.payment-card-title > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    background: linear-gradient(135deg, #4ba3ff, #2563eb);
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(37, 99, 235, .18);
}

.payment-card-title .payment-icon {
    width: 21px;
    height: 21px;
    stroke-width: 2.05;
}

.payment-card-title h2 {
    margin: 0;
    color: #10233f;
    font-size: 21px;
    font-weight: 950;
}

.payment-card-title em {
    margin-left: auto;
    min-height: 30px;
    padding: 5px 17px;
    color: #d97706;
    background: #fff8eb;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
}

.payment-order-list {
    display: grid;
    margin: 0;
}

.payment-order-list div {
    display: grid;
    grid-template-columns: 158px minmax(0, 1fr);
    align-items: center;
    min-height: 49px;
    border-bottom: 1px solid rgba(22, 119, 255, .1);
}

.payment-order-list dt,
.payment-order-list dd {
    margin: 0;
}

.payment-order-list dt {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #5d728e;
    font-size: 14px;
    font-weight: 800;
}

.payment-order-list dt .payment-icon {
    width: 18px;
    height: 18px;
    color: #6c7f99;
    stroke-width: 1.85;
}

.payment-order-list dd {
    color: #0f1f38;
    text-align: right;
    font-size: 15px;
    font-weight: 820;
}

.payment-order-list dd.is-blue {
    color: #1457e5;
    font-weight: 950;
}

.payment-order-actions {
    display: grid;
    grid-template-columns: 1.15fr .78fr .78fr;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    padding: 14px;
    background: #f1f7ff;
    border: 1px solid rgba(22, 119, 255, .14);
    border-radius: 8px;
}

.payment-countdown {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 11px;
    align-items: center;
}

.payment-countdown .payment-icon {
    grid-row: 1 / span 2;
    width: 48px;
    height: 48px;
    padding: 11px;
    color: #1d64ec;
    background: #ffffff;
    border: 1px solid #cbe0ff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .11);
}

.payment-countdown span {
    color: #2d6be8;
    font-size: 13px;
    font-weight: 850;
}

.payment-countdown strong {
    color: #2d6be8;
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
}

.payment-secondary-btn,
.payment-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 46px;
    padding: 0 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.payment-secondary-btn .payment-icon,
.payment-primary-btn .payment-icon {
    width: 17px;
    height: 17px;
    stroke-width: 2;
}

.payment-secondary-btn {
    color: #1d5fe8;
    background: #ffffff;
    border: 1px solid #bfd6ff;
}

.payment-primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #4ba3ff, #2563eb);
    border: 1px solid transparent;
    box-shadow: 0 12px 24px rgba(37, 99, 235, .18);
}

.payment-chain-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
    border: 1px solid #cddbea;
    border-radius: 8px;
    overflow: hidden;
}

.payment-chain-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    color: #405774;
    background: #ffffff;
    border: 0;
    border-right: 1px solid #dbe5f0;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.payment-chain-tabs a:last-child {
    border-right: 0;
}

.payment-chain-tabs .is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #3d8bff, #255ee8);
}

.payment-amount {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.payment-amount span {
    flex-basis: 100%;
    color: #5d728e;
    font-size: 13px;
    font-weight: 850;
}

.payment-amount strong {
    color: #2d6be8;
    font-size: 48px;
    line-height: 1;
    font-weight: 950;
}

.payment-amount b {
    color: #10233f;
    font-size: 20px;
    font-weight: 950;
}

.payment-address-label {
    margin: 12px 0 8px;
    color: #445c78;
    font-size: 13px;
    font-weight: 850;
}

.payment-address-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 8px 10px 8px 12px;
    border: 1px solid #d7e5f6;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
}

.payment-address-box code {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    overflow: hidden;
    color: #0f1f38;
    background: #f5f8fc;
    border: 1px solid #edf3fb;
    border-radius: 7px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    font-weight: 760;
    letter-spacing: .2px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payment-address-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 38px;
    color: #1d5fe8;
    background: #ffffff;
    border: 1px solid #bcd4ff;
    border-radius: 7px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .08);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.payment-address-box button .payment-icon {
    width: 15px;
    height: 15px;
    stroke-width: 2;
}

.payment-address-box button:hover {
    color: #ffffff;
    background: #2563eb;
    border-color: #2563eb;
}

.payment-address-box button.is-copied {
    color: #ffffff;
    background: #2563eb;
}

.payment-qr-row {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(22, 119, 255, .1);
}

.payment-qr {
    display: grid;
    place-items: center;
    width: 154px;
    height: 154px;
    padding: 4px;
    background: #ffffff;
    border: 1px solid #dce7f3;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(15, 35, 65, .05);
}

.payment-qr img {
    display: block;
    width: 146px;
    height: 146px;
    object-fit: contain;
    image-rendering: pixelated;
}

.payment-qr-row strong {
    color: #10233f;
    font-size: 16px;
    font-weight: 950;
}

.payment-qr-row p {
    margin: 8px 0 12px;
    color: #526b86;
    font-size: 13px;
    font-weight: 760;
}

.payment-qr-row small {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2d6be8;
    font-size: 12px;
    font-weight: 850;
}

.payment-qr-row small .payment-icon {
    width: 15px;
    height: 15px;
    stroke-width: 2;
}

.payment-safe-note {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 14px;
    color: #1d5fe8;
    background: #f3f8ff;
    border: 1px solid #bdd8ff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 850;
}

.payment-safe-note .payment-icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.payment-bottom-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 334px;
    gap: 30px;
    width: min(1210px, 100%);
    margin: 2px auto 0;
    padding: 22px 26px;
}

.payment-guide h2,
.payment-support-card h2 {
    margin: 0 0 18px;
    color: #10233f;
    font-size: 18px;
    font-weight: 950;
}

.payment-guide-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.payment-guide-list div {
    position: relative;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
}

.payment-guide-list div + div::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: rgba(22, 119, 255, .12);
}

.payment-guide-list span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
    background: #2563eb;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 950;
}

.payment-guide-list strong {
    color: #10233f;
    font-size: 14px;
    font-weight: 920;
}

.payment-guide-list p {
    grid-column: 2;
    margin: 4px 0 0;
    color: #526b86;
    font-size: 12px;
    line-height: 1.65;
    font-weight: 740;
}

.payment-support-card {
    padding: 20px 20px 18px;
    background:
        linear-gradient(135deg, rgba(75, 163, 255, .1), transparent 46%),
        #f8fbff;
    border: 1px solid #d4e5ff;
    border-radius: 8px;
}

.payment-support-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.payment-support-head > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    background: linear-gradient(135deg, #4ba3ff, #2563eb);
    border-radius: 50%;
}

.payment-support-head > span .payment-icon {
    width: 19px;
    height: 19px;
    stroke-width: 2.05;
}

.payment-support-head h2 {
    margin: 6px 0 0;
}

.payment-support-head em {
    display: block;
    color: #71849e;
    font-style: normal;
    font-size: 12px;
    font-weight: 760;
}

.payment-support-links {
    display: grid;
    gap: 12px;
}

.payment-support-links a,
.payment-support-links p {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0;
    color: #334155;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.payment-support-links .payment-icon {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    color: #64748b;
    stroke-width: 1.9;
}

.payment-support-links strong {
    overflow: hidden;
    color: #334155;
    line-height: 1.35;
    font-weight: 860;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.payment-support-links strong span {
    color: #64748b;
    font-weight: 820;
}

/* Changelog page final design */
.changelog-page {
    display: grid;
    gap: 24px;
    padding: 0 6vw 52px;
    background:
        radial-gradient(circle at 50% 0%, rgba(75, 163, 255, .13), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f8fbff 100%);
}

.changelog-hero {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 56px 0 0;
    text-align: center;
}

.changelog-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 18px;
    color: #2563eb;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(22, 119, 255, .18);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(37, 99, 235, .055);
}

.changelog-hero h1 {
    margin: 16px 0 10px;
    color: #0f172a;
    font-size: 48px;
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: 0;
}

.changelog-hero p {
    margin: 0 auto;
    color: #516982;
    font-size: 16px;
    font-weight: 780;
    line-height: 1.75;
}

.changelog-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    width: min(994px, 100%);
    min-height: 68px;
    margin: 28px auto 0;
    padding: 0 30px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(22, 119, 255, .15);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(37, 99, 235, .07);
}

.changelog-summary span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1f3654;
    font-size: 14px;
    font-weight: 900;
}

.changelog-summary span + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: rgba(22, 119, 255, .14);
}

.changelog-summary .download-icon {
    width: 28px;
    height: 28px;
    padding: 6px;
    color: #6d9fd9;
    background: #f7fbff;
    border: 1px solid rgba(22, 119, 255, .18);
    border-radius: 50%;
    stroke-width: 1.8;
}

.changelog-timeline {
    position: relative;
    display: grid;
    gap: 18px;
    width: min(1050px, 100%);
    margin: 0 auto;
    padding-left: 34px;
}

.changelog-timeline::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 18px;
    bottom: 18px;
    width: 2px;
    background: linear-gradient(180deg, rgba(139, 174, 216, .22), rgba(139, 174, 216, .12));
}

.changelog-timeline article {
    position: relative;
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr);
    gap: 26px;
    min-height: 126px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(216, 230, 245, .95);
    border-radius: 8px;
    box-shadow: 0 16px 44px rgba(37, 99, 235, .055);
    overflow: hidden;
}

.changelog-timeline article.is-latest {
    border-color: rgba(22, 119, 255, .34);
    box-shadow: 0 22px 58px rgba(37, 99, 235, .11);
}

.changelog-timeline article.is-latest::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8bd3ff, #4ba3ff, #2563eb);
}

.changelog-node {
    position: absolute;
    left: -31px;
    top: 30px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 5px solid #b8d4f3;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(139, 174, 216, .12);
}

.changelog-version {
    display: grid;
    align-content: start;
    gap: 8px;
    padding-top: 2px;
}

.changelog-version strong {
    color: #0f172a;
    font-size: 24px;
    font-weight: 950;
    line-height: 1;
}

.changelog-version time {
    color: #64748b;
    font-size: 14px;
    font-weight: 850;
}

.changelog-version em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 24px;
    padding: 0 10px;
    color: #ffffff;
    background: #2563eb;
    border: 1px solid #2563eb;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.changelog-detail h2 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 950;
}

.changelog-detail ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.changelog-detail li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #4b607a;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.55;
}

.changelog-detail li .download-icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #6d9fd9;
    stroke-width: 1.9;
}

.changelog-safe-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: min(1050px, 100%);
    min-height: 42px;
    margin: -2px auto 0;
    color: #788aa0;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(216, 230, 245, .95);
    border-radius: 8px;
}

.changelog-safe-note .download-icon {
    width: 18px;
    height: 18px;
    color: #8baed8;
    stroke-width: 1.85;
}

.changelog-safe-note strong {
    color: #788aa0;
    font-size: 14px;
    font-weight: 760;
}

/* Changelog visual polish */
.changelog-page {
    gap: 22px;
    padding-bottom: 58px;
    background:
        radial-gradient(circle at 50% 0%, rgba(75, 163, 255, .14), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f7fbff 100%);
}

.changelog-hero {
    padding-top: 48px;
}

.changelog-summary {
    min-height: 64px;
    margin-top: 24px;
    box-shadow: 0 14px 38px rgba(37, 99, 235, .055);
}

.changelog-timeline {
    gap: 16px;
    width: min(1080px, 100%);
    padding-left: 30px;
}

.changelog-timeline::before {
    left: 10px;
    top: 26px;
    bottom: 26px;
    background: linear-gradient(180deg, rgba(139, 174, 216, .28), rgba(139, 174, 216, .08));
}

.changelog-timeline article {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 22px;
    min-height: 118px;
    padding: 22px 26px;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border-color: rgba(216, 230, 245, .9);
    box-shadow: 0 14px 38px rgba(37, 99, 235, .052);
}

.changelog-timeline article.is-latest {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-color: rgba(75, 163, 255, .28);
    box-shadow: 0 18px 48px rgba(37, 99, 235, .09);
}

.changelog-timeline article.is-latest::before {
    content: none;
}

.changelog-node {
    left: -29px;
    top: 32px;
    width: 16px;
    height: 16px;
    border-width: 4px;
    border-color: #c2dcf6;
    box-shadow: 0 0 0 6px rgba(139, 174, 216, .1);
}

.changelog-timeline article.is-latest .changelog-node {
    border-color: #7bb8f2;
    box-shadow: 0 0 0 6px rgba(75, 163, 255, .13);
}

.changelog-version {
    min-height: 74px;
    padding: 16px 18px;
    background: #f7fbff;
    border: 1px solid rgba(216, 230, 245, .9);
    border-radius: 8px;
}

.changelog-timeline article.is-latest .changelog-version {
    background: #eef7ff;
    border-color: rgba(75, 163, 255, .22);
}

.changelog-version strong {
    font-size: 23px;
}

.changelog-version time {
    font-size: 13px;
}

.changelog-version em {
    min-height: 22px;
    color: #2563eb;
    background: #ffffff;
    border-color: rgba(75, 163, 255, .24);
    font-size: 12px;
}

.changelog-detail {
    align-self: center;
}

.changelog-detail h2 {
    margin-bottom: 10px;
    font-size: 19px;
}

.changelog-detail li {
    color: #52677f;
    font-weight: 760;
}

/* Align changelog hero label with download page */
.changelog-hero {
    padding-top: 34px;
}

.changelog-kicker {
    min-width: 106px;
    min-height: 30px;
    padding: 0 13px;
    color: #1677ff;
    background: #ffffff;
    border: 1px solid rgba(22, 119, 255, .35);
    border-radius: 999px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 900;
}

/* Simple tutorial page */
.tutorial-simple-page {
    padding: 0 6vw 48px;
    background:
        radial-gradient(circle at 8% 0%, rgba(72, 158, 255, .13), transparent 28%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 34%, #f5f9fe 100%);
}

.tutorial-simple-hero {
    width: min(1120px, 100%);
    margin: 0 auto 32px;
    text-align: center;
}

.tutorial-simple-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    min-height: 30px;
    padding: 0 13px;
    color: #1677ff;
    background: #ffffff;
    border: 1px solid rgba(22, 119, 255, .35);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

.tutorial-simple-hero h1 {
    margin: 18px 0 12px;
    color: #0f1f33;
    font-size: 48px;
    font-weight: 950;
    line-height: 1.08;
}

.tutorial-simple-hero p {
    margin: 0 auto;
    color: #526b86;
    font-size: 17px;
    font-weight: 760;
}

.tutorial-simple-guide {
    display: grid;
    gap: 22px;
    width: min(980px, 100%);
    margin: 0 auto;
}

.tutorial-simple-step {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    min-height: 258px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #dce9f8;
    border-radius: 8px;
    box-shadow: 0 22px 48px rgba(40, 99, 167, .07);
}

.tutorial-simple-step.is-reverse {
    grid-template-columns: minmax(0, 1fr) 390px;
}

.tutorial-simple-step.is-reverse .tutorial-simple-visual {
    order: 2;
}

.tutorial-simple-step.is-reverse .tutorial-simple-copy {
    order: 1;
}

.tutorial-simple-visual {
    position: relative;
    min-height: 202px;
    padding: 20px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(22, 119, 255, .12), transparent 52%),
        linear-gradient(180deg, #f2f8ff 0%, #ffffff 100%);
    border: 1px solid #d8e9fb;
    border-radius: 8px;
}

.tutorial-screen {
    position: relative;
    min-height: 162px;
    padding: 18px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid #d6e8f8;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(50, 93, 150, .12);
}

.tutorial-window-bar {
    display: flex;
    gap: 7px;
    margin-bottom: 18px;
}

.tutorial-window-bar i {
    width: 9px;
    height: 9px;
    background: #bed2e8;
    border-radius: 50%;
}

.tutorial-download-panel,
.tutorial-login-card {
    display: grid;
    justify-items: center;
    gap: 9px;
    padding-top: 2px;
}

.tutorial-download-panel span,
.tutorial-login-card span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #1677ff;
    background: #edf6ff;
    border: 1px solid #d2e8ff;
    border-radius: 8px;
}

.tutorial-download-panel .download-icon,
.tutorial-login-card .download-icon,
.tutorial-member-line .download-icon,
.tutorial-device-grid .download-icon {
    width: 24px;
    height: 24px;
}

.tutorial-download-panel strong,
.tutorial-login-card strong {
    color: #13243a;
    font-size: 18px;
    font-weight: 950;
}

.tutorial-download-panel em,
.tutorial-login-card em {
    min-width: 168px;
    min-height: 24px;
    padding: 3px 14px;
    color: #7d93aa;
    background: #f2f7fd;
    border-radius: 999px;
    font-size: 13px;
    font-style: normal;
    font-weight: 760;
    text-align: center;
}

.tutorial-download-panel b,
.tutorial-login-card b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    height: 34px;
    color: #ffffff;
    background: #1677ff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 950;
}

.tutorial-plan-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.tutorial-plan-row span {
    min-height: 78px;
    padding: 13px 10px;
    background: #f4f9ff;
    border: 1px solid #d8e9fb;
    border-radius: 8px;
    text-align: center;
}

.tutorial-plan-row span.active {
    background: #edf6ff;
    border-color: rgba(22, 119, 255, .38);
    box-shadow: inset 0 0 0 1px rgba(22, 119, 255, .08);
}

.tutorial-plan-row strong,
.tutorial-plan-row em {
    display: block;
}

.tutorial-plan-row strong {
    color: #17263a;
    font-size: 15px;
    font-weight: 950;
}

.tutorial-plan-row em {
    margin-top: 6px;
    color: #1677ff;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
}

.tutorial-member-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    margin-top: 16px;
    color: #1677ff;
    background: #ffffff;
    border: 1px solid #d8e9fb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
}

.tutorial-device-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.tutorial-device-grid span {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 68px;
    color: #1677ff;
    background: #f4f9ff;
    border: 1px solid #d8e9fb;
    border-radius: 8px;
}

.tutorial-device-grid b {
    color: #526b86;
    font-size: 12px;
    font-weight: 900;
}

.tutorial-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 14px;
    color: #1677ff;
    background: #edf6ff;
    border: 1px solid #d2e8ff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 950;
}

.tutorial-simple-copy h2 {
    margin: 16px 0 13px;
    color: #102033;
    font-size: 30px;
    font-weight: 950;
    line-height: 1.24;
}

.tutorial-simple-copy p {
    margin: 7px 0 0;
    color: #536c86;
    font-size: 16px;
    font-weight: 760;
    line-height: 1.8;
}

.tutorial-simple-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(980px, 100%);
    min-height: 42px;
    margin: 24px auto 0;
    color: #526b86;
    background: #edf6ff;
    border: 1px solid #d6e9ff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 850;
}

.tutorial-simple-note .download-icon {
    width: 20px;
    height: 20px;
    color: #1677ff;
}

/* Simple contact page */
.contact-simple-page {
    padding: 0 6vw 46px;
    background:
        radial-gradient(circle at 8% 0%, rgba(72, 158, 255, .13), transparent 28%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 36%, #f5f9fe 100%);
}

.contact-simple-hero {
    width: min(1120px, 100%);
    margin: 0 auto 26px;
    text-align: center;
}

.contact-simple-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    min-height: 30px;
    padding: 0 13px;
    color: #1677ff;
    background: #ffffff;
    border: 1px solid rgba(22, 119, 255, .35);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
}

.contact-simple-hero h1 {
    margin: 16px 0 12px;
    color: #0f1f33;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.12;
}

.contact-simple-hero p {
    margin: 0 auto;
    color: #526b86;
    font-size: 16px;
    font-weight: 700;
}

.contact-simple-panel {
    position: relative;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    width: min(1080px, 100%);
    min-height: 386px;
    margin: 0 auto;
    padding: 32px 44px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #cfe1f6;
    border-radius: 8px;
    box-shadow: 0 24px 54px rgba(40, 99, 167, .08);
}

.contact-simple-panel::before {
    content: "";
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 384px;
    width: 1px;
    background: #dbe8f7;
}

.contact-panel-label {
    display: none;
}

.contact-simple-copy h2 {
    margin: 0 0 14px;
    color: #102033;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.32;
}

.contact-simple-copy p {
    margin: 0;
    color: #536c86;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
}

.contact-support-illustration {
    position: relative;
    width: 250px;
    height: 182px;
    margin: 40px auto 0;
    background:
        radial-gradient(circle at 50% 60%, rgba(22, 119, 255, .08), transparent 58%),
        linear-gradient(180deg, rgba(237, 246, 255, .85), rgba(255, 255, 255, .4));
    border-radius: 46% 54% 48% 52%;
}

.contact-support-illustration .bubble {
    position: absolute;
    display: block;
    width: 52px;
    height: 36px;
    background: #d9eaff;
    border-radius: 8px;
}

.contact-support-illustration .bubble-left {
    top: 42px;
    left: 12px;
}

.contact-support-illustration .bubble-left::before,
.contact-support-illustration .bubble-left::after {
    content: "";
    position: absolute;
    top: 15px;
    width: 6px;
    height: 6px;
    background: #81aef4;
    border-radius: 50%;
}

.contact-support-illustration .bubble-left::before {
    left: 13px;
    box-shadow: 12px 0 0 #81aef4, 24px 0 0 #81aef4;
}

.contact-support-illustration .bubble-right {
    top: 24px;
    right: 18px;
    width: 50px;
    height: 34px;
    background: #cfe2ff;
}

.contact-support-illustration .bubble-right::before,
.contact-support-illustration .bubble-right::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    height: 3px;
    background: #ffffff;
    border-radius: 999px;
    transform: rotate(34deg);
    top: 16px;
}

.contact-support-illustration .bubble-right::after {
    transform: rotate(-34deg);
}

.headset-ring {
    position: absolute;
    left: 82px;
    top: 70px;
    width: 88px;
    height: 88px;
    border: 8px solid #4f95f7;
    border-bottom-color: transparent;
    border-radius: 50%;
}

.headset-ear {
    position: absolute;
    top: 114px;
    width: 24px;
    height: 46px;
    background: linear-gradient(180deg, #8cc0ff, #2f7df3);
    border-radius: 10px;
}

.headset-ear.left {
    left: 70px;
}

.headset-ear.right {
    right: 70px;
}

.headset-mic {
    position: absolute;
    left: 126px;
    bottom: 20px;
    width: 46px;
    height: 14px;
    border-bottom: 5px solid #2f7df3;
    border-radius: 0 0 18px 18px;
}

.headset-mic::before {
    content: "";
    position: absolute;
    left: -4px;
    top: 5px;
    width: 22px;
    height: 14px;
    background: #2f7df3;
    border-radius: 999px;
}

.contact-methods {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.contact-method {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 20px;
    min-height: 86px;
    padding: 12px 22px 12px 16px;
    background: #ffffff;
    border: 1px solid #cfe1f6;
    border-radius: 8px;
}

.contact-method span,
.contact-help-row article > span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #1677ff;
    background: #edf6ff;
    border: 1px solid #d2e8ff;
    border-radius: 8px;
}

.contact-method .download-icon,
.contact-help-row .download-icon {
    width: 27px;
    height: 27px;
}

.contact-method strong {
    align-self: end;
    color: #13243a;
    font-size: 18px;
    font-weight: 900;
}

.contact-method em {
    align-self: start;
    overflow: hidden;
    color: #526b86;
    font-size: 14px;
    font-style: normal;
    font-weight: 720;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-method span {
    grid-row: 1 / 3;
}

.contact-simple-actions {
    display: grid;
    grid-template-columns: 216px 238px;
    align-items: center;
    gap: 22px;
    margin-top: 10px;
}

.contact-simple-actions .button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
}

.contact-simple-actions .download-icon {
    width: 22px;
    height: 22px;
}

.contact-simple-actions .button.primary {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 16px 30px rgba(22, 119, 255, .24);
}

.contact-simple-actions .button.light {
    color: #1677ff;
    background: #ffffff;
    border: 1px solid #cfe1f6;
    box-shadow: none;
}

.contact-help-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    width: min(1080px, 100%);
    margin: 30px auto 0;
}

.contact-help-row article {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 20px;
    align-items: center;
    min-height: 98px;
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid #cfe1f6;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(40, 99, 167, .06);
}

.contact-help-row article > span {
    grid-row: 1 / 3;
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.contact-help-row h2 {
    align-self: end;
    margin: 0;
    color: #13243a;
    font-size: 18px;
    font-weight: 900;
}

.contact-help-row p {
    align-self: start;
    margin: 0;
    color: #5d7288;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
}

.contact-safe-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: min(1080px, 100%);
    min-height: 42px;
    margin: 24px auto 0;
    color: #526b86;
    background: #edf6ff;
    border: 1px solid #d6e9ff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.contact-safe-note .download-icon {
    width: 20px;
    height: 20px;
    color: #1677ff;
}

/* Download page without top label */
.download-center-hero {
    padding-top: 34px;
}

/* Hero pages without top labels */
.membership-hero,
.changelog-hero,
.tutorial-simple-hero,
.contact-simple-hero {
    padding-top: 34px;
}

.membership-hero h1,
.changelog-hero h1,
.tutorial-simple-hero h1,
.contact-simple-hero h1 {
    margin-top: 0;
}

/* Register page */
.auth-shell.auth-register {
    position: relative;
    grid-template-columns: minmax(500px, 1fr) 500px;
    align-items: center;
    width: min(1240px, calc(100% - 8vw));
    min-height: 0;
    margin: 44px auto 104px;
    padding: 44px 48px;
    gap: 48px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #bfd8fb;
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(40, 99, 167, .08);
}

.auth-register .auth-copy h1 {
    margin: 0 0 16px;
    color: #0f1f33;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.12;
    white-space: nowrap;
}

.auth-register .auth-copy p {
    max-width: 560px;
    margin: 0;
    color: #526b86;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
}

.auth-register .auth-points {
    display: grid;
    gap: 21px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.auth-register .auth-points li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    color: #253b54;
}

.auth-register .auth-points li > span {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    color: #1677ff;
    background: #edf6ff;
    border: 1px solid #d2e8ff;
    border-radius: 8px;
}

.auth-register .auth-points li > span .download-icon {
    width: 31px;
    height: 31px;
    color: #1677ff;
}

.auth-register .auth-points strong {
    display: block;
    margin-bottom: 6px;
    color: #102033;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.28;
}

.auth-register .auth-points em {
    display: block;
    max-width: 350px;
    color: #526b86;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.75;
}

.auth-visual {
    position: relative;
    width: 440px;
    min-height: 206px;
    margin: 24px 0 0 32px;
}

.auth-dashboard-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    grid-template-rows: 26px 1fr;
    align-items: start;
    width: 360px;
    min-height: 190px;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #7db4ff;
    border-radius: 8px;
    box-shadow: 0 24px 48px rgba(40, 99, 167, .1);
}

.auth-dashboard-card::before {
    content: "";
    grid-column: 1 / -1;
    height: 26px;
    background:
        radial-gradient(circle at 16px 13px, #9cc4f7 0 3px, transparent 4px),
        radial-gradient(circle at 32px 13px, #9cc4f7 0 3px, transparent 4px),
        radial-gradient(circle at 48px 13px, #9cc4f7 0 3px, transparent 4px),
        #f4f9ff;
    border-bottom: 1px solid #d8e9fb;
}

.auth-dashboard-card span {
    width: 48px;
    height: 48px;
    margin: 24px auto 0;
    background:
        radial-gradient(circle at 50% 38%, #ffffff 0 8px, transparent 9px),
        radial-gradient(circle at 50% 100%, #ffffff 0 18px, transparent 19px),
        linear-gradient(135deg, #6eb7ff, #1677ff);
    border-radius: 50%;
}

.auth-dashboard-card strong {
    margin: 26px 0 0;
    color: #102033;
    font-size: 15px;
    font-weight: 900;
}

.auth-dashboard-card em {
    grid-column: 2;
    margin-top: 8px;
    padding: 12px 14px;
    width: 134px;
    color: #102033;
    background: #ffffff;
    border: 1px solid #d8e9fb;
    border-radius: 8px;
    font-size: 13px;
    font-style: normal;
    font-weight: 850;
}

.auth-dashboard-card b {
    grid-column: 2;
    width: 184px;
    height: 12px;
    margin-top: 12px;
    color: transparent;
    background:
        linear-gradient(90deg, #1677ff 0 68%, #e3eefc 68%);
    border-radius: 999px;
    font-size: 0;
    font-weight: 900;
}

.auth-dashboard-card::after {
    content: "";
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    width: 64px;
    height: 46px;
    margin: 0 auto 22px;
    background:
        linear-gradient(#dbeafe, #dbeafe) 0 0 / 54px 7px no-repeat,
        linear-gradient(#e7f0fc, #e7f0fc) 0 18px / 66px 7px no-repeat,
        linear-gradient(#e7f0fc, #e7f0fc) 0 36px / 48px 7px no-repeat;
    border-radius: 4px;
}

.auth-device-row {
    position: absolute;
    right: 0;
    bottom: -2px;
    display: flex;
    align-items: end;
    gap: 10px;
}

.auth-device-row i {
    width: 72px;
    height: 92px;
    background: linear-gradient(180deg, #eef6ff, #ffffff);
    border: 2px solid #5d99ff;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(40, 99, 167, .08);
}

.auth-device-row i:nth-child(2) {
    width: 58px;
    height: 112px;
}

.auth-device-row i:nth-child(3) {
    width: 42px;
    height: 62px;
}

.auth-register .auth-card {
    gap: 20px;
    padding: 36px 40px 38px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #c7ddfa;
    border-radius: 8px;
    box-shadow: 0 24px 52px rgba(40, 99, 167, .1);
}

.auth-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 8px;
}

.auth-card-head h2 {
    margin: 0;
    color: #102033;
    font-size: 30px;
    font-weight: 950;
}

.auth-card-head p {
    margin: 4px 0 0;
    color: #7d93aa;
    font-size: 14px;
    font-weight: 760;
    white-space: nowrap;
}

.auth-card-head a {
    color: #1677ff;
    font-weight: 900;
}

.auth-register .auth-card label {
    gap: 10px;
    color: #253b54;
    font-size: 16px;
    font-weight: 850;
}

.auth-input-wrap {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 16px;
    background: #ffffff;
    border: 1px solid #c9d9ee;
    border-radius: 8px;
}

.auth-input-wrap .download-icon {
    width: 22px;
    height: 22px;
    color: #536b88;
}

.auth-input-wrap .download-icon-eye {
    color: #7186a3;
}

.auth-password-toggle {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    padding: 0;
    color: #7186a3;
    background: transparent;
    border: 0;
    border-radius: 7px;
    cursor: pointer;
}

.auth-password-toggle:hover,
.auth-password-toggle.is-active {
    color: #1677ff;
    background: #eef6ff;
}

.auth-password-toggle:focus-visible {
    outline: 2px solid rgba(22, 119, 255, .28);
    outline-offset: 2px;
}

.auth-password-toggle .download-icon {
    width: 20px;
    height: 20px;
    color: currentColor;
}

.auth-password-toggle .download-icon-eye-open {
    display: none;
}

.auth-password-toggle.is-active .download-icon-eye {
    display: none;
}

.auth-password-toggle.is-active .download-icon-eye-open {
    display: block;
}

.auth-register .auth-card input {
    min-height: 52px;
    padding: 0;
    color: #102033;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 15px;
}

.auth-register .auth-card input::placeholder {
    color: #9aacc1;
    font-weight: 650;
}

.auth-input-wrap:focus-within {
    outline: 3px solid rgba(22, 119, 255, .14);
    border-color: #1677ff;
}

.auth-register .auth-card input:focus {
    outline: 0;
}

.auth-register .auth-card .button.primary {
    min-height: 58px;
    margin-top: 12px;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 16px 30px rgba(22, 119, 255, .22);
    font-size: 19px;
    font-weight: 950;
}

.auth-safe-note,
.auth-page-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #526b86;
    background: #edf6ff;
    border: 1px solid #d6e9ff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.auth-safe-note {
    min-height: 42px;
}

.auth-page-note {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -78px;
    grid-column: auto;
    min-height: 42px;
    margin-top: 0;
}

.auth-safe-note .download-icon,
.auth-page-note .download-icon {
    width: 20px;
    height: 20px;
    color: #1677ff;
}

.auth-login .auth-visual {
    display: none;
}

/* Register page visual polish */
.auth-shell.auth-register {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92)),
        radial-gradient(circle at 12% 12%, rgba(22, 119, 255, .07), transparent 32%);
    box-shadow:
        0 28px 64px rgba(40, 99, 167, .08),
        inset 0 1px 0 rgba(255, 255, 255, .88);
}

.auth-register .auth-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .94));
    box-shadow:
        0 24px 58px rgba(40, 99, 167, .12),
        inset 0 1px 0 rgba(255, 255, 255, .94);
}

.auth-register .auth-points li > span {
    background: linear-gradient(180deg, #f0f7ff, #ffffff);
    box-shadow: 0 12px 26px rgba(22, 119, 255, .08);
}

.auth-visual {
    width: 482px;
    min-height: 246px;
    margin-top: 28px;
    margin-left: 26px;
}

.auth-dashboard-card {
    position: relative;
    display: block;
    width: 390px;
    height: 222px;
    min-height: 222px;
    overflow: visible;
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 74%, #f4f9ff 100%);
    border: 1px solid #8fbdff;
    border-radius: 8px;
    box-shadow:
        0 22px 48px rgba(40, 99, 167, .12),
        inset 0 1px 0 rgba(255, 255, 255, .94);
}

.auth-dashboard-card::before,
.auth-dashboard-card::after {
    content: none;
}

.auth-browser-dots {
    position: absolute;
    inset: 0 0 auto 0;
    height: 30px;
    background: linear-gradient(180deg, #f6fbff, #edf6ff);
    border-bottom: 1px solid #d8e9fb;
    border-radius: 8px 8px 0 0;
}

.auth-browser-dots i {
    position: absolute;
    top: 12px;
    width: 7px;
    height: 7px;
    background: #9cc4f7;
    border-radius: 50%;
}

.auth-browser-dots i:nth-child(1) {
    left: 16px;
}

.auth-browser-dots i:nth-child(2) {
    left: 34px;
}

.auth-browser-dots i:nth-child(3) {
    left: 52px;
}

.auth-sidebar-preview {
    position: absolute;
    left: 0;
    top: 30px;
    bottom: 0;
    width: 104px;
    background: #f8fbff;
    border-right: 1px solid #d8e9fb;
    border-radius: 0 0 0 8px;
}

.auth-sidebar-preview span {
    display: block;
    width: 46px;
    height: 46px;
    margin: 28px auto 18px;
    background:
        radial-gradient(circle at 50% 38%, #ffffff 0 8px, transparent 9px),
        radial-gradient(circle at 50% 100%, #ffffff 0 18px, transparent 19px),
        linear-gradient(135deg, #6eb7ff, #1677ff);
    border-radius: 50%;
}

.auth-sidebar-preview i {
    display: block;
    width: 56px;
    height: 7px;
    margin: 11px auto 0;
    background: #dfeaf8;
    border-radius: 999px;
}

.auth-sidebar-preview i:nth-of-type(2) {
    width: 44px;
}

.auth-sidebar-preview i:nth-of-type(3) {
    width: 60px;
}

.auth-sidebar-preview i:nth-of-type(4) {
    width: 48px;
}

.auth-avatar-preview {
    position: absolute;
    left: 136px;
    top: 64px;
    width: 72px;
    height: 48px;
    background:
        linear-gradient(#dfeaf8, #dfeaf8) 54px 11px / 42px 7px no-repeat,
        linear-gradient(#edf3fb, #edf3fb) 54px 29px / 60px 7px no-repeat;
    border-radius: 8px;
}

.auth-avatar-preview::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 42px;
    height: 42px;
    background:
        radial-gradient(circle at 50% 36%, #ffffff 0 7px, transparent 8px),
        radial-gradient(circle at 50% 100%, #ffffff 0 16px, transparent 17px),
        linear-gradient(135deg, #6eb7ff, #1677ff);
    border-radius: 50%;
}

.auth-status-preview,
.auth-quota-preview {
    position: absolute;
    top: 80px;
    width: 118px;
    min-height: 58px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #d8e9fb;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(40, 99, 167, .06);
}

.auth-status-preview {
    left: 136px;
    top: 126px;
}

.auth-quota-preview {
    left: 270px;
    top: 126px;
}

.auth-status-preview strong,
.auth-quota-preview strong {
    display: block;
    color: #253b54;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}

.auth-status-preview em,
.auth-quota-preview em {
    display: block;
    margin-top: 6px;
    color: #1677ff;
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
}

.auth-progress-preview {
    position: absolute;
    left: 136px;
    bottom: 24px;
    width: 190px;
    height: 28px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #d8e9fb;
    border-radius: 8px;
}

.auth-progress-preview span {
    display: block;
    width: 78%;
    height: 8px;
    background: linear-gradient(90deg, #1677ff, #6eb7ff);
    border-radius: 999px;
}

.auth-device-row {
    right: 14px;
    bottom: 0;
}

.auth-device-row i {
    background: linear-gradient(180deg, #f7fbff, #ffffff);
    border-color: #4d8dff;
}

/* Register page final polish */
.auth-shell.auth-register {
    grid-template-columns: 520px 456px;
    width: 1120px;
    max-width: calc(100% - 112px);
    align-items: center;
    gap: 48px;
    margin: 40px auto 108px;
    padding: 48px 56px 50px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(249, 252, 255, .96));
    border-color: #cfe1f8;
    box-shadow:
        0 22px 54px rgba(37, 86, 145, .07),
        inset 0 1px 0 rgba(255, 255, 255, .9);
}

.auth-register .auth-copy h1 {
    margin-bottom: 14px;
    font-size: 40px;
    letter-spacing: 0;
}

.auth-register .auth-copy p {
    max-width: 456px;
    color: #61768f;
    font-size: 15px;
    line-height: 1.78;
}

.auth-register .auth-points {
    gap: 18px;
    margin-top: 26px;
}

.auth-register .auth-points li {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
}

.auth-register .auth-points li > span {
    width: 56px;
    height: 56px;
    color: #1677ff;
    background: linear-gradient(180deg, #f2f8ff, #ffffff);
    border-color: #d8e8fb;
    box-shadow: 0 10px 24px rgba(22, 119, 255, .07);
}

.auth-register .auth-points li > span .download-icon {
    width: 26px;
    height: 26px;
}

.auth-register .auth-points strong {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.34;
}

.auth-register .auth-points em {
    max-width: 366px;
    color: #61768f;
    font-size: 14px;
    line-height: 1.72;
}

.auth-register .auth-visual {
    width: 404px;
    min-height: 222px;
    margin: 28px 0 0 20px;
}

.auth-register .auth-dashboard-card {
    width: 332px;
    height: 198px;
    min-height: 198px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #f5f9ff 100%);
    border-color: #aacdff;
    box-shadow:
        0 20px 42px rgba(37, 86, 145, .11),
        inset 0 1px 0 rgba(255, 255, 255, .95);
}

.auth-register .auth-browser-dots {
    height: 28px;
    background: linear-gradient(180deg, #f8fbff, #eef6ff);
}

.auth-register .auth-browser-dots i {
    top: 11px;
    width: 6px;
    height: 6px;
}

.auth-register .auth-sidebar-preview {
    top: 28px;
    width: 92px;
    background: #f8fbff;
}

.auth-register .auth-sidebar-preview span {
    width: 40px;
    height: 40px;
    margin: 24px auto 16px;
}

.auth-register .auth-sidebar-preview i {
    width: 50px;
    height: 6px;
    margin-top: 10px;
    background: #e1ebf7;
}

.auth-register .auth-sidebar-preview i:nth-of-type(2) {
    width: 39px;
}

.auth-register .auth-sidebar-preview i:nth-of-type(3) {
    width: 54px;
}

.auth-register .auth-sidebar-preview i:nth-of-type(4) {
    width: 43px;
}

.auth-register .auth-avatar-preview {
    left: 118px;
    top: 58px;
    width: 154px;
    height: 46px;
    background:
        linear-gradient(#dfeaf8, #dfeaf8) 54px 10px / 58px 7px no-repeat,
        linear-gradient(#edf3fb, #edf3fb) 54px 28px / 82px 7px no-repeat;
}

.auth-register .auth-avatar-preview::before {
    width: 40px;
    height: 40px;
}

.auth-register .auth-status-preview,
.auth-register .auth-quota-preview {
    top: 122px;
    width: 92px;
    min-height: 46px;
    padding: 0;
    background:
        linear-gradient(#dfeaf8, #dfeaf8) 14px 14px / 48px 7px no-repeat,
        linear-gradient(#edf3fb, #edf3fb) 14px 30px / 64px 7px no-repeat,
        #ffffff;
    border-color: #d8e9fb;
    box-shadow: 0 10px 22px rgba(37, 86, 145, .06);
}

.auth-register .auth-status-preview {
    left: 118px;
}

.auth-register .auth-quota-preview {
    left: 224px;
}

.auth-register .auth-status-preview strong,
.auth-register .auth-status-preview em,
.auth-register .auth-quota-preview strong,
.auth-register .auth-quota-preview em {
    display: none;
}

.auth-register .auth-progress-preview {
    left: 118px;
    bottom: 20px;
    width: 152px;
    height: 24px;
    padding: 8px;
    border-color: #d8e9fb;
}

.auth-register .auth-progress-preview span {
    height: 8px;
    background: linear-gradient(90deg, #1677ff, #74b7ff);
}

.auth-register .auth-device-row {
    right: 0;
    bottom: 5px;
    gap: 8px;
}

.auth-register .auth-device-row i {
    width: 52px;
    height: 72px;
    background:
        linear-gradient(#dcecff, #dcecff) center 13px / 26px 5px no-repeat,
        linear-gradient(180deg, #f8fbff, #ffffff);
    border: 1px solid #8fbdff;
    box-shadow: 0 12px 24px rgba(37, 86, 145, .09);
}

.auth-register .auth-device-row i:nth-child(2) {
    width: 44px;
    height: 90px;
}

.auth-register .auth-device-row i:nth-child(3) {
    width: 34px;
    height: 54px;
}

.auth-register .auth-card {
    gap: 17px;
    padding: 32px 34px 34px;
    background: #ffffff;
    border-color: #cfe1f8;
    box-shadow: 0 20px 48px rgba(37, 86, 145, .1);
}

.auth-register .auth-card-head {
    margin-bottom: 4px;
}

.auth-register .auth-card-head h2 {
    font-size: 28px;
    line-height: 1.25;
}

.auth-register .auth-card-head p {
    margin-top: 5px;
    color: #71849a;
    font-size: 13px;
}

.auth-register .auth-card label {
    gap: 8px;
    font-size: 15px;
}

.auth-register .auth-input-wrap {
    min-height: 51px;
    padding: 0 15px;
    border-color: #d0ddec;
    background: #fbfdff;
}

.auth-register .auth-input-wrap .download-icon {
    width: 20px;
    height: 20px;
}

.auth-register .auth-card input {
    min-height: 49px;
    font-size: 14px;
}

.auth-register .auth-card .button.primary {
    min-height: 54px;
    margin-top: 8px;
    font-size: 17px;
    box-shadow: 0 14px 28px rgba(22, 119, 255, .2);
}

.auth-register .auth-safe-note {
    min-height: 39px;
    color: #5f748d;
    background: #f3f8ff;
    border-color: #dbeafa;
    font-size: 13px;
}

.auth-register .auth-page-note {
    bottom: -72px;
    min-height: 40px;
    color: #5f748d;
    background: transparent;
    border: 0;
    font-size: 13px;
}

/* Register compact desktop composition */
.auth-shell.auth-register {
    grid-template-columns: 508px 440px;
    width: 1088px;
    gap: 44px;
    margin-top: 32px;
    margin-bottom: 82px;
    padding: 38px 50px 40px;
}

.auth-register .auth-copy h1 {
    font-size: 38px;
}

.auth-register .auth-copy p {
    max-width: 430px;
    font-size: 14px;
    line-height: 1.72;
}

.auth-register .auth-points {
    gap: 15px;
    margin-top: 22px;
}

.auth-register .auth-points li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
}

.auth-register .auth-points li > span {
    width: 52px;
    height: 52px;
}

.auth-register .auth-points li > span .download-icon {
    width: 24px;
    height: 24px;
}

.auth-register .auth-points strong {
    font-size: 17px;
}

.auth-register .auth-points em {
    max-width: 350px;
    font-size: 13px;
    line-height: 1.68;
}

.auth-register .auth-visual {
    margin-top: 20px;
    min-height: 206px;
}

.auth-register .auth-dashboard-card {
    width: 318px;
    height: 186px;
    min-height: 186px;
}

.auth-register .auth-sidebar-preview {
    width: 86px;
}

.auth-register .auth-avatar-preview {
    left: 108px;
    top: 54px;
}

.auth-register .auth-status-preview {
    left: 108px;
    top: 114px;
}

.auth-register .auth-quota-preview {
    left: 210px;
    top: 114px;
}

.auth-register .auth-progress-preview {
    left: 108px;
    bottom: 18px;
}

.auth-register .auth-device-row {
    right: 28px;
}

.auth-register .auth-device-row i {
    width: 48px;
    height: 66px;
}

.auth-register .auth-device-row i:nth-child(2) {
    width: 40px;
    height: 82px;
}

.auth-register .auth-device-row i:nth-child(3) {
    width: 32px;
    height: 50px;
}

.auth-register .auth-card {
    width: 440px;
    gap: 14px;
    padding: 28px 32px 30px;
}

.auth-register .auth-card-head h2 {
    font-size: 27px;
}

.auth-register .auth-card label {
    gap: 7px;
    font-size: 14px;
}

.auth-register .auth-input-wrap {
    min-height: 48px;
}

.auth-register .auth-card input {
    min-height: 46px;
}

.auth-register .auth-password-rule {
    display: block;
    margin-top: -2px;
    color: #8b9bad;
    font-size: 12px;
    font-style: normal;
    line-height: 1.45;
}

.auth-register .auth-card .button.primary {
    min-height: 52px;
    margin-top: 6px;
}

.auth-register .auth-safe-note {
    min-height: 37px;
}

.auth-register .auth-page-note {
    bottom: -58px;
    min-height: 38px;
}

/* Register security illustration */
.auth-register .auth-register-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 398px;
    min-height: 218px;
    margin: 24px 0 0 12px;
}

.auth-secure-illustration {
    position: relative;
    width: 366px;
    height: 214px;
}

.auth-secure-illustration::before {
    content: "";
    position: absolute;
    inset: 18px 42px 18px 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 251, 255, .92));
    border: 1px solid #d7e8fb;
    border-radius: 8px;
    box-shadow: 0 22px 48px rgba(37, 86, 145, .08);
}

.auth-secure-illustration::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 72px;
    top: 62px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c7ddfa 16%, #c7ddfa 84%, transparent);
    box-shadow:
        0 46px 0 #d7e8fb,
        0 92px 0 rgba(215, 232, 251, .72);
}

.auth-orbit {
    position: absolute;
    left: 82px;
    top: 38px;
    border: 1px solid rgba(22, 119, 255, .18);
    border-radius: 50%;
    pointer-events: none;
}

.auth-orbit-large {
    width: 142px;
    height: 142px;
}

.auth-orbit-small {
    left: 110px;
    top: 66px;
    width: 86px;
    height: 86px;
    border-color: rgba(22, 119, 255, .25);
}

.auth-secure-core {
    position: absolute;
    left: 121px;
    top: 77px;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    color: #ffffff;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .34), transparent 34%),
        linear-gradient(135deg, #6eb7ff, #1677ff);
    border: 6px solid #edf6ff;
    border-radius: 8px;
    box-shadow:
        0 18px 34px rgba(22, 119, 255, .2),
        0 0 0 1px rgba(22, 119, 255, .08);
    z-index: 3;
}

.auth-secure-core .download-icon {
    width: 30px;
    height: 30px;
}

.auth-visual-node {
    position: absolute;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 10px;
    width: 112px;
    height: 44px;
    padding: 0 12px;
    background: #ffffff;
    border: 1px solid #d6e7fb;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(37, 86, 145, .07);
    z-index: 2;
}

.auth-visual-node i {
    display: block;
    width: 30px;
    height: 30px;
    background:
        radial-gradient(circle at 50% 38%, #ffffff 0 5px, transparent 6px),
        radial-gradient(circle at 50% 100%, #ffffff 0 12px, transparent 13px),
        linear-gradient(135deg, #8bc5ff, #4d8dff);
    border-radius: 50%;
}

.auth-visual-node b {
    display: block;
    width: 46px;
    height: 7px;
    background: #dfeaf8;
    border-radius: 999px;
}

.auth-visual-node-a {
    left: 0;
    top: 28px;
}

.auth-visual-node-b {
    left: 8px;
    bottom: 30px;
}

.auth-visual-node-c {
    right: 26px;
    top: 58px;
}

.auth-device-card {
    position: absolute;
    right: 0;
    bottom: 18px;
    width: 148px;
    height: 72px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border: 1px solid #b8d7ff;
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(37, 86, 145, .1);
    z-index: 4;
}

.auth-device-card strong {
    display: block;
    color: #102033;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.1;
}

.auth-device-card span {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin-top: 14px;
}

.auth-device-card i {
    display: block;
    height: 18px;
    background:
        linear-gradient(#dcecff, #dcecff) center 4px / 10px 3px no-repeat,
        linear-gradient(180deg, #f7fbff, #ffffff);
    border: 1px solid #83b7ff;
    border-radius: 4px;
}

/* Register generated illustration asset */
.auth-register .auth-register-visual {
    width: 404px;
    min-height: 248px;
    margin: 14px 0 0 2px;
}

.auth-register .auth-register-visual img {
    display: block;
    width: 404px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(37, 86, 145, .08));
}

/* Login page */
.auth-shell.auth-login {
    position: relative;
    grid-template-columns: 508px 440px;
    align-items: center;
    width: 1088px;
    max-width: calc(100% - 112px);
    min-height: 0;
    gap: 44px;
    margin: 32px auto 86px;
    padding: 38px 50px 42px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(249, 252, 255, .96));
    border: 1px solid #cfe1f8;
    border-radius: 8px;
    box-shadow:
        0 22px 54px rgba(37, 86, 145, .07),
        inset 0 1px 0 rgba(255, 255, 255, .9);
}

.auth-login .auth-copy h1 {
    margin: 0 0 14px;
    color: #0f1f33;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: 0;
    white-space: nowrap;
}

.auth-login .auth-copy p {
    max-width: 430px;
    margin: 0;
    color: #61768f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.72;
}

.auth-login .auth-points {
    display: grid;
    gap: 15px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.auth-login .auth-points li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.auth-login .auth-points li > span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #1677ff;
    background: linear-gradient(180deg, #f2f8ff, #ffffff);
    border: 1px solid #d8e8fb;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(22, 119, 255, .07);
}

.auth-login .auth-points li > span .download-icon {
    width: 24px;
    height: 24px;
}

.auth-login .auth-points strong {
    display: block;
    margin-bottom: 5px;
    color: #102033;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.34;
}

.auth-login .auth-points em {
    display: block;
    max-width: 350px;
    color: #61768f;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.68;
}

.auth-login .auth-visual {
    display: flex;
}

.auth-login .auth-register-visual {
    align-items: center;
    justify-content: center;
    width: 404px;
    min-height: 248px;
    margin: 14px 0 0 2px;
}

.auth-login .auth-register-visual img {
    display: block;
    width: 404px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(37, 86, 145, .08));
}

.auth-login .auth-card {
    width: 440px;
    gap: 16px;
    padding: 30px 32px 32px;
    background: #ffffff;
    border: 1px solid #cfe1f8;
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(37, 86, 145, .1);
}

.auth-login .auth-card-head {
    margin-bottom: 6px;
}

.auth-login .auth-card-head h2 {
    color: #102033;
    font-size: 28px;
    font-weight: 950;
    line-height: 1.25;
}

.auth-login .auth-card-head p {
    margin-top: 5px;
    color: #71849a;
    font-size: 13px;
    font-weight: 760;
}

.auth-login .auth-card-head a,
.auth-login .auth-login-options a {
    color: #1677ff;
    font-weight: 900;
}

.auth-login .auth-card label:not(.auth-remember) {
    gap: 7px;
    color: #253b54;
    font-size: 14px;
    font-weight: 850;
}

.auth-login .auth-input-wrap {
    min-height: 50px;
    padding: 0 15px;
    border-color: #d0ddec;
    background: #fbfdff;
}

.auth-login .auth-input-wrap .download-icon {
    width: 20px;
    height: 20px;
}

.auth-login .auth-card input:not([type="checkbox"]) {
    min-height: 48px;
    padding: 0;
    color: #102033;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 14px;
}

.auth-login .auth-card input::placeholder {
    color: #9aacc1;
    font-weight: 650;
}

.auth-login .auth-card input:focus {
    outline: 0;
}

.auth-login .auth-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: -2px 0 2px;
    color: #71849a;
    font-size: 13px;
    font-weight: 780;
}

.auth-login .auth-remember {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 8px;
    color: #61768f;
    cursor: pointer;
}

.auth-login .auth-remember input {
    width: 16px;
    height: 16px;
    min-height: 16px;
    margin: 0;
    accent-color: #1677ff;
}

.auth-login .auth-card .button.primary {
    min-height: 54px;
    margin-top: 8px;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 14px 28px rgba(22, 119, 255, .2);
    font-size: 17px;
    font-weight: 950;
}

.auth-login .auth-safe-note {
    min-height: 39px;
    color: #5f748d;
    background: #f3f8ff;
    border-color: #dbeafa;
    font-size: 13px;
}

/* Forgot password page */
.auth-forgot-shell {
    display: grid;
    grid-template-columns: 500px 492px;
    align-items: center;
    gap: 50px;
    width: 1148px;
    max-width: calc(100% - 112px);
    margin: 34px auto 84px;
    padding: 44px 54px 46px;
    color: #102033;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 252, 255, .96));
    border: 1px solid #cfe1f8;
    border-radius: 8px;
    box-shadow:
        0 22px 54px rgba(37, 86, 145, .07),
        inset 0 1px 0 rgba(255, 255, 255, .92);
}

.auth-forgot-copy {
    min-width: 0;
}

.auth-forgot-kicker {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 14px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cfe1f8;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

.auth-forgot-copy h1 {
    margin: 18px 0 14px;
    color: #0f1f33;
    font-size: 38px;
    font-weight: 950;
    line-height: 1.14;
    letter-spacing: 0;
}

.auth-forgot-copy > p {
    max-width: 440px;
    margin: 0;
    color: #61768f;
    font-size: 14px;
    font-weight: 730;
    line-height: 1.75;
}

.auth-forgot-visual {
    position: relative;
    width: 440px;
    height: 216px;
    margin: 24px 0 26px;
}

.auth-forgot-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 452px;
    height: 262px;
    margin: 18px 0 20px -14px;
}

.auth-forgot-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 34px rgba(37, 86, 145, .08));
}

.forgot-screen {
    position: absolute;
    left: 0;
    top: 14px;
    width: 340px;
    height: 178px;
    padding: 34px 30px 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, #ffffff 72%, #f4f9ff 100%);
    border: 1px solid #b7d4f8;
    border-radius: 8px;
    box-shadow: 0 20px 42px rgba(37, 86, 145, .09);
}

.forgot-screen-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 28px;
    background:
        radial-gradient(circle at 18px 14px, #9cc4f7 0 3px, transparent 4px),
        radial-gradient(circle at 34px 14px, #9cc4f7 0 3px, transparent 4px),
        radial-gradient(circle at 50px 14px, #9cc4f7 0 3px, transparent 4px),
        linear-gradient(180deg, #f8fbff, #edf6ff);
    border-bottom: 1px solid #d8e9fb;
    border-radius: 8px 8px 0 0;
}

.forgot-shield {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    color: #ffffff;
    background:
        radial-gradient(circle at 34% 24%, rgba(255, 255, 255, .34), transparent 32%),
        linear-gradient(135deg, #6eb7ff, #1677ff);
    border: 6px solid #eef6ff;
    border-radius: 8px;
    box-shadow: 0 16px 30px rgba(22, 119, 255, .18);
}

.forgot-shield .download-icon {
    width: 30px;
    height: 30px;
    color: currentColor;
}

.forgot-screen strong {
    position: absolute;
    left: 114px;
    top: 54px;
    color: #102033;
    font-size: 21px;
    font-weight: 950;
}

.forgot-screen em {
    position: absolute;
    left: 114px;
    top: 90px;
    width: 156px;
    height: 30px;
    padding: 7px 14px 0;
    color: #1677ff;
    background: #f3f8ff;
    border: 1px solid #d9e8fa;
    border-radius: 8px;
    font-size: 18px;
    font-style: normal;
    font-weight: 950;
    line-height: 1;
}

.forgot-screen::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 24px;
    height: 38px;
    background:
        linear-gradient(#dfeaf8, #dfeaf8) 0 0 / 184px 8px no-repeat,
        linear-gradient(#edf3fb, #edf3fb) 0 20px / 254px 8px no-repeat;
    border-radius: 8px;
}

.forgot-lock-card {
    position: absolute;
    right: 4px;
    bottom: 0;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 12px;
    width: 166px;
    min-height: 72px;
    padding: 14px 16px;
    color: #1677ff;
    background: #ffffff;
    border: 1px solid #b7d4f8;
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(37, 86, 145, .1);
}

.forgot-lock-card .download-icon {
    width: 28px;
    height: 28px;
    padding: 9px;
    color: #ffffff;
    background: #1677ff;
    border-radius: 8px;
}

.forgot-lock-card span {
    color: #102033;
    font-size: 16px;
    font-weight: 950;
}

.auth-forgot-points {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.auth-forgot-points li {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
}

.auth-forgot-points li > span {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    color: #1677ff;
    background: linear-gradient(180deg, #f2f8ff, #ffffff);
    border: 1px solid #d8e8fb;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(22, 119, 255, .07);
}

.auth-forgot-points li > span .download-icon {
    width: 23px;
    height: 23px;
}

.auth-forgot-points strong {
    display: block;
    margin: 0 0 5px;
    color: #102033;
    font-size: 16px;
    font-weight: 900;
}

.auth-forgot-points em {
    display: block;
    max-width: 382px;
    color: #61768f;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.65;
}

.auth-forgot-card {
    width: 492px;
    gap: 13px;
    padding: 29px 32px 30px;
    background: #ffffff;
    border: 1px solid #cfe1f8;
    border-radius: 8px;
    box-shadow: 0 20px 46px rgba(37, 86, 145, .09);
}

.auth-forgot-head {
    margin-bottom: 3px;
}

.auth-forgot-head h2 {
    color: #102033;
    font-size: 28px;
    font-weight: 950;
    line-height: 1.2;
}

.auth-forgot-head p {
    margin-top: 6px;
    color: #71849a;
    font-size: 13px;
    font-weight: 760;
    white-space: normal;
}

.auth-forgot-head > a,
.auth-forgot-links a {
    color: #1677ff;
    font-weight: 900;
}

.auth-reset-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 0 3px;
    padding: 6px;
    background: #f5f9ff;
    border: 1px solid #dbeafa;
    border-radius: 8px;
}

.auth-reset-steps span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 33px;
    color: #6c8198;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 850;
}

.auth-reset-steps b {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: #7d93aa;
    background: #ffffff;
    border: 1px solid #d8e9fb;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 950;
}

.auth-reset-steps .is-active {
    color: #1677ff;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(37, 86, 145, .06);
}

.auth-reset-steps .is-active b {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
}

.auth-forgot-card label {
    gap: 6px;
    color: #253b54;
    font-size: 14px;
    font-weight: 850;
}

.auth-forgot-card .auth-input-wrap {
    min-height: 49px;
    padding: 0 15px;
    border-color: #d0ddec;
    background: #fbfdff;
}

.auth-forgot-card .auth-input-wrap .download-icon {
    width: 20px;
    height: 20px;
}

.auth-forgot-card input {
    min-height: 47px;
    padding: 0;
    color: #102033;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 14px;
}

.auth-forgot-card input::placeholder {
    color: #9aacc1;
    font-weight: 650;
}

.auth-forgot-card input:focus {
    outline: 0;
}

.auth-code-wrap {
    grid-template-columns: 24px minmax(0, 1fr) 110px;
}

.auth-code-button {
    display: inline-grid;
    place-items: center;
    min-width: 102px;
    height: 36px;
    padding: 0 12px;
    color: #1677ff;
    background: #ffffff;
    border: 1px solid #b7d4ff;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.auth-code-button:hover {
    color: #ffffff;
    background: #2f6df6;
    border-color: #2f6df6;
}

.auth-code-button:disabled {
    color: #7d93aa;
    background: #f1f5f9;
    border-color: #dbe4ef;
    cursor: not-allowed;
}

.auth-forgot-card .auth-password-rule {
    display: block;
    margin-top: -2px;
    color: #91a1b3;
    font-size: 12px;
    font-style: normal;
    line-height: 1.45;
}

.auth-forgot-card .button.primary {
    min-height: 53px;
    margin-top: 6px;
    background: #2f6df6;
    border-color: #2f6df6;
    box-shadow: 0 14px 28px rgba(47, 109, 246, .2);
    font-size: 17px;
    font-weight: 950;
}

.auth-forgot-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #71849a;
    font-size: 12.5px;
    font-weight: 780;
}

.auth-reset-message {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px;
    color: #1677ff;
    background: #f3f8ff;
    border: 1px solid #dbeafa;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 850;
}

.auth-reset-message .download-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.auth-forgot-note {
    min-height: 36px;
    padding: 0 11px;
    color: #6f8197;
    background: #f7fbff;
    border-color: #e2edf9;
    font-size: 12.5px;
}

.auth-forgot-note a {
    color: #2f6df6;
    font-weight: 900;
}

/* User center workbench */
.center-workbench {
    width: 1180px;
    max-width: calc(100% - 96px);
    margin: 34px auto 78px;
    color: #102033;
}

.center-top-panel,
.center-card,
.center-stat-grid article,
.center-safe-strip {
    background: rgba(255, 255, 255, .98);
    border: 1px solid #cfe1f8;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(37, 86, 145, .07);
}

.center-top-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px auto;
    align-items: center;
    gap: 30px;
    padding: 30px 34px;
}

.center-account-block {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.center-account-block > div {
    min-width: 0;
}

.center-avatar {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    flex: 0 0 auto;
    color: #ffffff;
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .36), transparent 32%),
        linear-gradient(135deg, #6eb7ff, #1677ff);
    border-radius: 8px;
    box-shadow: 0 16px 28px rgba(22, 119, 255, .18);
    font-size: 28px;
    font-weight: 950;
}

.center-account-block span,
.center-card-head span,
.center-top-meta p,
.center-stat-grid p,
.center-stat-grid em,
.center-plan-row span,
.center-plan-row i,
.center-table th,
.center-table td,
.center-mini-card p,
.center-download-card p {
    color: #61768f;
}

.center-account-block span,
.center-card-head span {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0;
}

.center-account-block h1 {
    margin: 0;
    color: #0f1f33;
    font-size: 28px;
    font-weight: 950;
    line-height: 1.22;
    max-width: 430px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.center-account-block p {
    margin: 5px 0 0;
    color: #61768f;
    font-size: 14px;
    font-weight: 750;
    max-width: 430px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.center-top-meta {
    display: grid;
    gap: 8px;
    justify-items: start;
}

.center-top-meta p {
    margin: 0;
    font-size: 13px;
    font-weight: 760;
}

.center-member-pill,
.center-soft-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 13px;
    color: #1677ff;
    background: #edf6ff;
    border: 1px solid #d6e9ff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.center-member-pill.is-waiting {
    color: #9a5b00;
    background: #fff8e7;
    border-color: #ffe0a8;
}

.center-member-pill.is-active {
    color: #1677ff;
}

.center-top-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    white-space: nowrap;
}

.center-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.center-stat-grid article {
    display: grid;
    min-height: 136px;
    padding: 20px;
}

.center-stat-grid article > span,
.center-download-card > span,
.center-mini-card > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #1677ff;
    background: linear-gradient(180deg, #f2f8ff, #ffffff);
    border: 1px solid #d8e8fb;
    border-radius: 8px;
}

.center-stat-grid .download-icon,
.center-download-card .download-icon,
.center-mini-card .download-icon {
    width: 21px;
    height: 21px;
}

.center-stat-grid p {
    margin: 15px 0 6px;
    font-size: 13px;
    font-weight: 820;
}

.center-stat-grid strong {
    color: #0f1f33;
    font-size: 24px;
    font-weight: 950;
    line-height: 1.1;
}

.center-stat-grid em {
    margin-top: 8px;
    font-size: 12px;
    font-style: normal;
    font-weight: 760;
}

.center-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    margin-top: 20px;
    align-items: start;
}

.center-card {
    padding: 24px;
}

.center-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.center-card-head h2,
.center-download-card h2,
.center-mini-card h2 {
    margin: 0;
    color: #102033;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.25;
}

.center-card-head > strong {
    color: #1677ff;
    font-size: 28px;
    font-weight: 950;
    line-height: 1;
}

.center-card-head a,
.center-table a,
.center-plan-row a,
.center-mini-card > a {
    color: #1677ff;
    font-weight: 900;
}

.center-device-progress {
    height: 10px;
    margin-bottom: 18px;
    overflow: hidden;
    background: #edf4fc;
    border-radius: 999px;
}

.center-device-progress i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #1677ff, #75b9ff);
    border-radius: inherit;
}

.center-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.center-table th,
.center-table td {
    padding: 14px 12px;
    border-top: 1px solid #e2edf8;
    font-size: 13px;
    font-weight: 760;
    text-align: left;
    vertical-align: middle;
}

.center-table th {
    color: #40566f;
    background: #f7fbff;
    font-weight: 900;
}

.center-table th:first-child {
    border-radius: 8px 0 0 8px;
}

.center-table th:last-child {
    border-radius: 0 8px 8px 0;
}

.center-device-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #102033;
}

.center-device-name .download-icon {
    width: 18px;
    height: 18px;
    color: #1677ff;
}

.center-empty-row td {
    color: #7a8fa8;
    background: #fbfdff;
    text-align: center;
}

.center-side-stack {
    display: grid;
    gap: 16px;
}

.center-download-card {
    display: grid;
    gap: 14px;
}

.center-download-card p,
.center-mini-card p {
    margin: 0;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.7;
}

.center-mini-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.center-mini-card h2 {
    font-size: 17px;
}

.center-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 20px;
    margin-top: 20px;
    align-items: start;
}

.center-plan-list {
    display: grid;
    gap: 12px;
}

.center-plan-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px 76px 48px 56px;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 14px 16px;
    background: #fbfdff;
    border: 1px solid #dbeafa;
    border-radius: 8px;
}

.center-plan-row strong {
    display: block;
    color: #102033;
    font-size: 16px;
    font-weight: 950;
}

.center-plan-row span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 740;
    line-height: 1.45;
}

.center-plan-row p {
    margin: 0;
    color: #1677ff;
    white-space: nowrap;
}

.center-plan-row b {
    font-size: 24px;
    font-weight: 950;
}

.center-plan-row small {
    margin-left: 4px;
    font-size: 12px;
    font-weight: 850;
}

.center-plan-row i,
.center-plan-row em {
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
    white-space: nowrap;
}

.center-plan-row em {
    display: inline-flex;
    justify-content: center;
    min-height: 26px;
    padding: 5px 9px;
    color: #1677ff;
    background: #edf6ff;
    border: 1px solid #d6e9ff;
    border-radius: 999px;
}

.center-plan-row .center-plan-placeholder {
    visibility: hidden;
}

.center-safe-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    color: #526b86;
    background: #f7fbff;
    box-shadow: none;
}

.center-safe-strip .download-icon {
    width: 21px;
    height: 21px;
    color: #1677ff;
}

.center-safe-strip strong {
    flex: 1;
    color: #526b86;
    font-size: 13px;
    font-weight: 850;
}

.center-safe-strip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1677ff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

/* User center UI mockup alignment */
.center-workbench {
    width: 1190px;
    max-width: calc(100% - 88px);
    margin-top: 28px;
}

.center-top-panel {
    grid-template-columns: minmax(0, 1fr) 340px 380px;
    min-height: 142px;
    padding: 28px 34px;
}

.center-account-block,
.center-top-meta {
    position: relative;
}

.center-account-block::after,
.center-top-meta::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -15px;
    width: 1px;
    height: 96px;
    background: #d9e8f8;
}

.center-avatar {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, #72b7ff, #1f70ff);
}

.center-avatar img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.center-account-block h1 {
    max-width: 360px;
    font-size: 30px;
}

.center-account-block p {
    max-width: 360px;
    margin-top: 8px;
    color: #304763;
    font-size: 16px;
}

.center-top-meta {
    gap: 10px;
    padding-left: 4px;
}

.center-member-pill {
    min-height: 34px;
    padding: 0 16px;
    font-size: 15px;
}

.center-top-meta p {
    color: #304763;
    font-size: 14px;
}

.center-top-actions .button {
    min-width: 120px;
    min-height: 42px;
    font-size: 16px;
}

.center-stat-grid {
    gap: 16px;
    margin-top: 12px;
}

.center-stat-grid article {
    grid-template-columns: 78px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 18px;
    align-items: center;
    min-height: 112px;
    padding: 20px 22px;
}

.center-stat-grid article > span {
    grid-row: 1 / 4;
    width: 72px;
    height: 72px;
    color: #1677ff;
    background: #edf5ff;
    border: 0;
    border-radius: 50%;
}

.center-stat-grid article > span .download-icon {
    width: 34px;
    height: 34px;
}

.center-stat-grid p {
    margin: 0 0 6px;
    color: #304763;
    font-size: 15px;
}

.center-stat-grid strong {
    font-size: 25px;
}

.center-stat-grid em {
    margin-top: 6px;
    font-size: 13px;
}

.center-main-grid {
    grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
    gap: 16px;
    margin-top: 12px;
}

.center-card {
    padding: 24px;
}

.center-card-head {
    margin-bottom: 16px;
}

.center-card-head h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
}

.center-card-head h2 .download-icon {
    width: 22px;
    height: 22px;
    color: #1677ff;
}

.center-card-head > strong {
    color: #1677ff;
    font-size: 24px;
}

.center-device-progress {
    margin-bottom: 6px;
}

.center-progress-label {
    margin: 0 18px 14px 0;
    color: #7b8fa8;
    font-size: 13px;
    font-weight: 800;
    text-align: right;
}

.center-table th {
    padding: 13px 16px;
    background: #f8fbff;
}

.center-table td {
    padding: 16px;
}

.center-device-empty-row td,
.center-order-empty-row td {
    height: 190px;
    padding: 0;
}

.center-empty-state {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 10px;
    min-height: 180px;
    color: #8aa0bb;
    text-align: center;
}

.center-empty-state .download-icon {
    width: 74px;
    height: 74px;
    color: #bed7fb;
    stroke-width: 1.5;
}

.center-empty-state strong {
    color: #6f86a1;
    font-size: 16px;
    font-weight: 900;
}

.center-empty-state span {
    color: #7f94ae;
    font-size: 13px;
    font-weight: 760;
}

.center-download-card {
    min-height: 152px;
}

.center-download-card > span,
.center-mini-card > span {
    width: 48px;
    height: 48px;
    color: #ffffff;
    background: #1677ff;
    border: 0;
    border-radius: 50%;
}

.center-download-card > span .download-icon,
.center-mini-card > span .download-icon {
    width: 24px;
    height: 24px;
}

.center-download-card .button.primary {
    min-height: 42px;
    margin-top: 2px;
}

.center-mini-card {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    min-height: 84px;
    padding: 22px 24px;
}

.center-bottom-grid {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    gap: 16px;
    margin-top: 12px;
}

.center-plan-row {
    grid-template-columns: 42px minmax(0, 1fr) 116px 54px 64px;
    min-height: 58px;
    padding: 10px 14px;
}

.center-plan-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #1677ff;
    background: #edf6ff;
    border-radius: 8px;
}

.center-plan-icon .download-icon {
    width: 20px;
    height: 20px;
}

.center-plan-row strong {
    font-size: 15px;
}

.center-plan-row span:not(.center-plan-icon) {
    font-size: 12px;
}

.center-plan-row p {
    text-align: right;
}

.center-plan-row b {
    font-size: 25px;
}

.center-plan-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    color: #1677ff;
    border: 1px solid #b8d7ff;
    border-radius: 6px;
}

.center-order-empty-row td {
    height: 160px;
}

.center-safe-strip {
    margin-top: 12px;
    min-height: 52px;
}

/* User center refined visual pass */
.page-center main {
    background:
        linear-gradient(#f7fbff 0 0) 0 0 / 100% 100%,
        linear-gradient(90deg, rgba(22, 119, 255, .035) 1px, transparent 1px) 0 0 / 64px 64px,
        linear-gradient(rgba(22, 119, 255, .035) 1px, transparent 1px) 0 0 / 64px 64px;
    padding-top: 1px;
}

.center-workbench {
    width: 1188px;
    max-width: calc(100% - 92px);
    margin: 26px auto 68px;
}

.center-top-panel,
.center-card,
.center-stat-grid article,
.center-safe-strip {
    background: rgba(255, 255, 255, .96);
    border-color: #d7e6f8;
    box-shadow: 0 10px 28px rgba(37, 86, 145, .045);
}

.center-top-panel {
    grid-template-columns: minmax(0, 1fr) 330px 394px;
    min-height: 132px;
    padding: 26px 32px;
}

.center-account-block {
    gap: 20px;
}

.center-account-block::after,
.center-top-meta::after {
    right: -15px;
    height: 86px;
    background: #dce9f7;
}

.center-avatar {
    width: 76px;
    height: 76px;
    border-radius: 8px;
    box-shadow: 0 14px 26px rgba(22, 119, 255, .16);
}

.center-avatar img {
    width: 54px;
    height: 54px;
}

.center-account-block h1 {
    font-size: 29px;
}

.center-account-block p {
    margin-top: 7px;
    font-size: 15px;
}

.center-member-pill {
    min-height: 32px;
    color: #c76a00;
    background: #fff5e6;
    border-color: #ffe1b6;
}

.center-top-actions {
    gap: 12px;
}

.center-top-actions .button {
    min-width: 118px;
    min-height: 40px;
    padding: 0 18px;
    font-size: 15px;
}

.center-stat-grid {
    gap: 14px;
    margin-top: 12px;
}

.center-stat-grid article {
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 108px;
    padding: 18px 20px;
    box-shadow: 0 8px 24px rgba(37, 86, 145, .04);
}

.center-stat-grid article > span {
    width: 68px;
    height: 68px;
    background: linear-gradient(180deg, #edf5ff, #f7fbff);
}

.center-stat-grid article > span .download-icon {
    width: 32px;
    height: 32px;
    stroke-width: 1.8;
}

.center-stat-grid p {
    color: #425a75;
    font-size: 14px;
}

.center-stat-grid strong {
    font-size: 24px;
}

.center-stat-grid em {
    color: #6f849f;
}

.center-main-grid,
.center-bottom-grid {
    gap: 14px;
    margin-top: 12px;
}

.center-main-grid {
    grid-template-columns: minmax(0, 1.36fr) minmax(0, 1fr);
}

.center-card {
    padding: 22px 24px;
}

.center-card-head h2 {
    gap: 9px;
    font-size: 21px;
}

.center-card-head > strong {
    font-size: 23px;
}

.center-device-progress {
    height: 9px;
    background: #eef5fd;
}

.center-progress-label {
    margin: 0 18px 12px 0;
}

.center-table th {
    height: 42px;
    padding: 11px 16px;
    color: #334a65;
    background: #f8fbff;
}

.center-table td {
    padding: 14px 16px;
}

.center-empty-row td {
    background: #ffffff;
}

.center-device-empty-row td {
    height: 178px;
}

.center-order-empty-row td {
    height: 150px;
}

.center-empty-state {
    min-height: 150px;
    gap: 8px;
}

.center-empty-state .download-icon {
    width: 66px;
    height: 66px;
    color: #c7ddfa;
    padding: 12px;
    background: #f5f9ff;
    border: 1px solid #e0edfb;
    border-radius: 8px;
}

.center-empty-state strong {
    color: #637a96;
    font-size: 15px;
}

.center-empty-state span {
    color: #7f94ae;
}

.center-side-stack {
    gap: 12px;
}

.center-download-card {
    min-height: 142px;
}

.center-download-card > span,
.center-mini-card > span {
    width: 44px;
    height: 44px;
    box-shadow: 0 12px 22px rgba(22, 119, 255, .16);
}

.center-download-card h2 {
    font-size: 21px;
}

.center-download-card .button.primary {
    min-height: 40px;
}

.center-mini-card {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    min-height: 78px;
    padding: 19px 22px;
}

.center-mini-card h2 {
    font-size: 17px;
}

.center-bottom-grid {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
}

.center-plan-list {
    gap: 10px;
}

.center-plan-row {
    grid-template-columns: 40px minmax(0, 1fr) 108px 54px 60px;
    min-height: 54px;
    padding: 9px 13px;
    background: #ffffff;
    border-color: #dbeafa;
}

.center-plan-icon {
    width: 32px;
    height: 32px;
    background: #edf6ff;
}

.center-plan-row strong {
    font-size: 15px;
}

.center-plan-row p {
    justify-self: end;
}

.center-plan-row b {
    font-size: 23px;
}

.center-plan-row a {
    min-height: 30px;
    font-size: 13px;
}

.center-safe-strip {
    margin-top: 12px;
    min-height: 50px;
    padding: 14px 18px;
    box-shadow: none;
}

/* User center parity pass */
.page-center main {
    background:
        linear-gradient(#f7fbff, #f7fbff),
        linear-gradient(90deg, rgba(22, 119, 255, .04) 1px, transparent 1px) 0 0 / 64px 64px,
        linear-gradient(rgba(22, 119, 255, .04) 1px, transparent 1px) 0 0 / 64px 64px;
}

.center-workbench {
    width: min(1360px, calc(100% - 72px));
    max-width: none;
    margin: 24px auto 64px;
}

.center-top-panel,
.center-card,
.center-stat-grid article,
.center-safe-strip {
    background: #ffffff;
    border: 1px solid #d5e4f7;
    box-shadow: 0 10px 28px rgba(25, 82, 145, .045);
}

.center-top-panel {
    grid-template-columns: minmax(360px, 1fr) minmax(330px, .85fr) 382px;
    min-height: 132px;
    gap: 26px;
    padding: 26px 32px;
}

.center-account-block {
    gap: 22px;
}

.center-account-block::after,
.center-top-meta::after {
    right: -13px;
    top: 1px;
    height: 92px;
    background: #dce9f8;
}

.center-avatar {
    width: 86px;
    height: 86px;
    border-radius: 8px;
}

.center-avatar img {
    width: 62px;
    height: 62px;
}

.center-account-block h1 {
    max-width: 420px;
    font-size: 30px;
    line-height: 1.2;
}

.center-account-block p {
    max-width: 420px;
    margin-top: 8px;
    color: #243b57;
    font-size: 16px;
}

.center-top-meta {
    gap: 10px;
    align-content: center;
}

.center-top-meta p {
    color: #304763;
    font-size: 14px;
}

.center-member-pill {
    min-height: 32px;
    padding: 0 15px;
    color: #d56d00;
    background: #fff4e4;
    border-color: #ffe0ad;
    font-size: 15px;
}

.center-top-actions {
    gap: 12px;
}

.center-top-actions .button {
    min-width: 116px;
    min-height: 42px;
    padding: 0 18px;
    font-size: 15px;
}

.center-stat-grid {
    gap: 16px;
    margin-top: 12px;
}

.center-stat-grid article {
    grid-template-columns: 80px minmax(0, 1fr);
    min-height: 108px;
    padding: 20px 22px;
    column-gap: 18px;
}

.center-stat-grid article > span {
    width: 72px;
    height: 72px;
    background: #edf4ff;
    border: 0;
    border-radius: 50%;
}

.center-stat-grid article > span .download-icon {
    width: 34px;
    height: 34px;
    stroke-width: 1.8;
}

.center-stat-grid p {
    margin: 0 0 7px;
    color: #354d69;
    font-size: 15px;
    font-weight: 850;
}

.center-stat-grid strong {
    font-size: 25px;
}

.center-stat-grid em {
    margin-top: 7px;
    color: #627894;
    font-size: 13px;
}

.center-main-grid {
    grid-template-columns: minmax(0, 1.38fr) minmax(360px, 1fr);
    gap: 14px;
    margin-top: 12px;
}

.center-bottom-grid {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    gap: 14px;
    margin-top: 12px;
}

.center-card {
    padding: 22px 24px;
}

.center-card-head {
    margin-bottom: 14px;
}

.center-card-head h2 {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 22px;
}

.center-card-head h2 .download-icon {
    width: 22px;
    height: 22px;
    color: #1677ff;
}

.center-card-head > strong {
    font-size: 24px;
}

.center-device-card {
    min-height: 304px;
}

.center-device-progress {
    height: 10px;
    margin-bottom: 5px;
    background: #edf4fc;
}

.center-progress-label {
    margin: 0 18px 14px 0;
    color: #7489a4;
    font-size: 13px;
}

.center-table th {
    height: 40px;
    padding: 10px 16px;
    color: #334a65;
    background: #f8fbff;
}

.center-table td {
    padding: 14px 16px;
}

.center-device-empty-row td {
    height: 178px;
}

.center-order-empty-row td {
    height: 150px;
}

.center-empty-row td {
    background: #ffffff;
}

.center-empty-state {
    min-height: 150px;
    gap: 8px;
}

.center-empty-state .download-icon {
    width: 68px;
    height: 68px;
    padding: 12px;
    color: #bdd6f8;
    background: #f6faff;
    border: 1px solid #e1edfb;
    border-radius: 8px;
}

.center-empty-state strong {
    color: #637a96;
    font-size: 15px;
}

.center-empty-state span {
    max-width: 360px;
    color: #7e93ad;
    font-size: 13px;
}

.center-side-stack {
    gap: 12px;
}

.center-download-card {
    min-height: 138px;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
    column-gap: 16px;
}

.center-download-card > span {
    grid-row: 1 / 4;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.center-download-card h2 {
    font-size: 21px;
}

.center-download-card p {
    margin-top: -5px;
}

.center-download-card .button.primary {
    grid-column: 1 / -1;
    min-height: 40px;
    margin-top: 4px;
}

.center-mini-card {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    min-height: 82px;
    padding: 20px 24px;
}

.center-mini-card > span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.center-mini-card h2 {
    font-size: 17px;
}

.center-plan-card,
.center-order-card {
    min-height: 218px;
}

.center-plan-list {
    gap: 10px;
}

.center-plan-row {
    grid-template-columns: 42px minmax(0, 1fr) 124px 108px 104px;
    gap: 10px;
    min-height: 54px;
    padding: 9px 13px;
    background: #ffffff;
}

.center-plan-icon {
    width: 34px;
    height: 34px;
}

.center-plan-row p {
    justify-self: end;
    min-width: 112px;
    text-align: right;
}

.center-plan-row b {
    font-size: 24px;
}

.center-plan-row a {
    min-width: 96px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.center-plan-row em {
    justify-self: center;
    min-width: 92px;
    height: 30px;
    padding: 0 12px;
    align-items: center;
}

.center-plan-row .center-plan-placeholder {
    min-width: 92px;
}

.center-safe-strip {
    min-height: 52px;
    margin-top: 12px;
    padding: 14px 18px;
    box-shadow: none;
}

/* Header account trigger polish */
.account-menu {
    padding: 8px 0;
}

.account-trigger {
    gap: 10px;
    min-width: 188px;
    max-width: 238px;
    min-height: 46px;
    padding: 0 14px 0 8px;
    color: #1f3760;
    background: linear-gradient(180deg, #ffffff, #f9fcff);
    border: 1px solid #d6e7fb;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(37, 86, 145, .055);
    font-size: 14px;
    font-weight: 900;
}

.account-trigger:hover,
.account-trigger.is-active {
    color: #1677ff;
    background: #ffffff;
    border-color: #b9d7ff;
    box-shadow: 0 10px 26px rgba(22, 119, 255, .09);
}

.account-trigger > span:not(.mini-avatar) {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-trigger::after {
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-right-color: #8fa2b8;
    border-bottom-color: #8fa2b8;
    border-width: 2px;
}

.account-trigger:hover::after,
.account-trigger.is-active::after {
    border-right-color: #1677ff;
    border-bottom-color: #1677ff;
}

.mini-avatar {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #75bdff, #1677ff);
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(22, 119, 255, .18);
    font-size: 15px;
}

.account-dropdown {
    top: 58px;
    min-width: 178px;
    border-color: #d6e7fb;
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(37, 86, 145, .13);
}

.account-dropdown a {
    min-height: 40px;
    color: #29425f;
    border-radius: 7px;
}

.account-dropdown a:hover {
    color: #1677ff;
    background: #f1f8ff;
}

/* Header account matches dashboard mockup */
.account-menu {
    padding: 0;
}

.account-trigger {
    min-width: 0;
    max-width: 246px;
    min-height: 44px;
    gap: 12px;
    padding: 0;
    color: #193153;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    font-weight: 850;
}

.account-trigger:hover,
.account-trigger.is-active {
    color: #1677ff;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.account-trigger > span:not(.mini-avatar) {
    max-width: 172px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-trigger::after {
    width: 7px;
    height: 7px;
    margin-left: 0;
    border-right-color: #6f7f95;
    border-bottom-color: #6f7f95;
}

.account-trigger:hover::after,
.account-trigger.is-active::after {
    border-right-color: #1677ff;
    border-bottom-color: #1677ff;
}

.mini-avatar {
    width: 38px;
    height: 38px;
    color: #ffffff;
    background: linear-gradient(135deg, #62a9ff, #1677ff);
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(22, 119, 255, .18);
}

.mini-avatar .download-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    stroke-width: 2.2;
}

.account-dropdown {
    top: 52px;
    min-width: 168px;
    border-color: #d6e7fb;
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(37, 86, 145, .14);
}

/* Header account minimal mockup style */
.account-actions {
    min-width: 214px;
    justify-content: flex-end;
}

.account-menu {
    display: flex;
    align-items: center;
    padding: 0;
}

.account-trigger {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: auto;
    min-width: 0;
    max-width: 250px;
    min-height: 40px;
    padding: 0;
    color: #0f1f33;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    font-weight: 760;
    line-height: 1;
}

.account-trigger:hover,
.account-trigger.is-active {
    color: #0f1f33;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.account-trigger > span:not(.mini-avatar) {
    max-width: 156px;
    min-width: 0;
    color: #203653;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-trigger::after {
    width: 6px;
    height: 6px;
    margin-left: 2px;
    border-right: 2px solid #5f7188;
    border-bottom: 2px solid #5f7188;
    transform: rotate(45deg) translateY(-2px);
}

.account-trigger:hover::after,
.account-trigger.is-active::after {
    border-right-color: #1677ff;
    border-bottom-color: #1677ff;
}

.mini-avatar {
    width: 36px;
    height: 36px;
    color: #ffffff;
    background: linear-gradient(135deg, #5faaff, #166df2);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(22, 119, 255, .16);
}

.mini-avatar .download-icon {
    width: 19px;
    height: 19px;
    color: #ffffff;
    stroke-width: 2.2;
}

.account-dropdown {
    top: 48px;
    right: -8px;
    min-width: 158px;
    padding: 7px;
    border: 1px solid #d7e6f8;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(37, 86, 145, .12);
}

.account-dropdown a {
    min-height: 38px;
    padding: 0 11px;
    color: #263e5c;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 820;
}

/* Header account typography */
.account-trigger {
    font-size: 14px;
    font-weight: 650;
    letter-spacing: 0;
}

.account-trigger > span:not(.mini-avatar) {
    color: #26384f;
    font-size: 14px;
    font-weight: 650;
}

.account-trigger:hover > span:not(.mini-avatar),
.account-trigger.is-active > span:not(.mini-avatar) {
    color: #1677ff;
}

.account-trigger::after {
    border-right-color: #7f8da2;
    border-bottom-color: #7f8da2;
}

/* Keep header account text neutral on active page */
.account-trigger.is-active,
.account-trigger.is-active > span:not(.mini-avatar) {
    color: #26384f;
}

/* Header account softer text */
.account-trigger {
    font-size: 12px;
    font-weight: 500;
}

.account-trigger > span:not(.mini-avatar),
.account-trigger.is-active > span:not(.mini-avatar) {
    color: #5f7188;
    font-size: 12px;
    font-weight: 500;
}

.account-trigger::after,
.account-trigger.is-active::after {
    border-right-color: #a2adba;
    border-bottom-color: #a2adba;
}

.account-trigger:hover > span:not(.mini-avatar) {
    color: #1677ff;
}

/* Prevent account dropdown hover gap */
.account-menu {
    padding: 6px 0;
}

.account-dropdown {
    top: 44px;
}

.account-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
}

/* User center icon refinement */
.center-stat-grid article > span,
.center-download-card > span,
.center-mini-card > span,
.center-plan-icon {
    color: #1677ff;
    background:
        linear-gradient(180deg, #f2f8ff, #ffffff);
    border: 1px solid #d7e8fb;
    box-shadow: 0 8px 18px rgba(22, 119, 255, .06);
}

.center-stat-grid article > span {
    border-radius: 18px;
}

.center-download-card > span,
.center-mini-card > span {
    border-radius: 14px;
}

.center-plan-icon {
    border-radius: 10px;
}

.center-stat-grid article > span .download-icon,
.center-download-card > span .download-icon,
.center-mini-card > span .download-icon,
.center-plan-icon .download-icon,
.center-card-head h2 .download-icon {
    color: #1677ff;
    stroke-width: 1.9;
}

.center-empty-state .download-icon {
    color: #9fc6f7;
    background:
        linear-gradient(180deg, #f4f9ff, #ffffff);
    border-color: #dceafa;
    box-shadow: 0 10px 24px rgba(37, 86, 145, .055);
    stroke-width: 1.7;
}

.center-empty-state .download-icon-monitor {
    padding: 13px;
}

.center-empty-state .download-icon-file {
    padding: 14px;
}

.center-card-head h2 .download-icon {
    width: 21px;
    height: 21px;
}

.center-download-card > span .download-icon,
.center-mini-card > span .download-icon {
    width: 23px;
    height: 23px;
}

/* Membership plan icon variants */
.center-plan-row:nth-child(1) .center-plan-icon {
    color: #3b82f6;
    background: #eff6ff;
}

.center-plan-row:nth-child(2) .center-plan-icon {
    color: #1677ff;
    background: #edf6ff;
    border-color: #b8d7ff;
}

.center-plan-row:nth-child(3) .center-plan-icon {
    color: #2563eb;
    background: #eef4ff;
}

.center-plan-icon .download-icon-diamond,
.center-plan-icon .download-icon-star,
.center-plan-icon .download-icon-crown {
    width: 20px;
    height: 20px;
    stroke-width: 1.9;
}

.account-trigger.is-active::after {
    border-right-color: #7f8da2;
    border-bottom-color: #7f8da2;
}

.account-trigger:hover,
.account-trigger:hover > span:not(.mini-avatar) {
    color: #1677ff;
}

.account-trigger:hover::after {
    border-right-color: #1677ff;
    border-bottom-color: #1677ff;
}

/* Header account final avatar and type */
.account-trigger {
    gap: 10px;
    min-height: 38px;
    color: #26384f;
    font-size: 13px;
    font-weight: 520;
    line-height: 1;
}

.account-trigger > span:not(.mini-avatar) {
    max-width: 174px;
    color: #26384f;
    font-size: 13px;
    font-weight: 520;
}

.mini-avatar {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #63afff, #1d6ff2);
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(22, 119, 255, .14);
}

.mini-avatar .account-user-icon {
    width: 19px;
    height: 19px;
    color: #ffffff;
    fill: currentColor;
}

.mini-avatar .download-icon {
    display: none;
}

.account-trigger::after {
    width: 6px;
    height: 6px;
    border-right-width: 1.8px;
    border-bottom-width: 1.8px;
    border-right-color: #8a97a8;
    border-bottom-color: #8a97a8;
}

.account-trigger.is-active,
.account-trigger.is-active > span:not(.mini-avatar) {
    color: #26384f;
}

/* User center membership duration badges - final override */
.center-plan-row .center-plan-icon {
    width: 38px;
    height: 38px;
    color: #2f7ee8;
    background: #f7fbff;
    border: 1px solid #d7e7f8;
    border-radius: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .85),
        0 8px 18px rgba(40, 120, 220, .06);
}

.center-plan-duration-svg {
    display: block;
    width: 30px;
    height: 30px;
    color: currentColor;
    overflow: visible;
}

.center-plan-duration-svg .duration-tile {
    fill: #ffffff;
    stroke: currentColor;
    stroke-opacity: .28;
    stroke-width: 1.1;
}

.center-plan-duration-svg .duration-top {
    fill: currentColor;
    opacity: .14;
}

.center-plan-duration-svg .duration-dot {
    fill: currentColor;
    opacity: .48;
}

.center-plan-duration-svg .duration-term {
    fill: currentColor;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8.8px;
    font-weight: 850;
    letter-spacing: 0;
    text-anchor: middle;
    dominant-baseline: alphabetic;
}

.center-plan-row:nth-child(1) .center-plan-icon {
    color: #3d86e9;
    background: #f6fbff;
    border-color: #d8e9fa;
}

.center-plan-row:nth-child(2) .center-plan-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #4da1ff 0%, #1677ff 100%);
    border-color: #2881f6;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .28),
        0 10px 22px rgba(22, 119, 255, .18);
}

.center-plan-row:nth-child(2) .center-plan-duration-svg .duration-tile {
    fill: rgba(255, 255, 255, .16);
    stroke: rgba(255, 255, 255, .5);
}

.center-plan-row:nth-child(2) .center-plan-duration-svg .duration-top {
    fill: #ffffff;
    opacity: .18;
}

.center-plan-row:nth-child(2) .center-plan-duration-svg .duration-dot {
    fill: #ffffff;
    opacity: .75;
}

.center-plan-row:nth-child(3) .center-plan-icon {
    color: #2873db;
    background: #f4f9ff;
    border-color: #cfe2f8;
}

.center-plan-icon .download-icon {
    display: none;
}

/* Admin dashboard */
.page-admin {
    min-width: 1280px;
    margin: 0;
    background: #f4f8ff;
    color: #10233f;
    overflow-x: auto;
}

.page-admin main,
.page-admin button,
.page-admin input {
    font-family: inherit;
}

.admin-shell {
    display: grid;
    grid-template-columns: 224px minmax(0, 1fr);
    min-height: 100vh;
    background: #f4f8ff;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100vh;
    padding: 30px 18px 24px;
    background: #ffffff;
    border-right: 1px solid #dbe7f6;
    box-shadow: 10px 0 30px rgba(52, 93, 145, .04);
}

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #10233f;
    text-decoration: none;
}

.admin-brand span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #60adff, #176fff);
    box-shadow: 0 12px 24px rgba(22, 119, 255, .18);
}

.admin-brand img {
    width: 30px;
    height: 30px;
    display: block;
}

.admin-brand strong {
    color: #10233f;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 0;
}

.admin-nav {
    display: grid;
    align-content: start;
    gap: 12px;
    margin-top: 38px;
}

.admin-nav a,
.admin-collapse {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 48px;
    padding: 0 18px;
    color: #465d7d;
    border: 0;
    border-radius: 6px;
    background: transparent;
    font-size: 16px;
    font-weight: 760;
    letter-spacing: 0;
    text-decoration: none;
}

.admin-nav a.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #1677ff, #236df3);
    box-shadow: 0 14px 28px rgba(22, 119, 255, .22);
}

.admin-nav a:not(.is-active):hover,
.admin-collapse:hover {
    color: #1677ff;
    background: #f1f7ff;
}

.admin-collapse {
    width: 100%;
    border-top: 1px solid #dbe7f6;
    border-radius: 0;
    justify-content: flex-start;
    padding-top: 22px;
    height: 66px;
    cursor: default;
}

.admin-icon {
    width: 21px;
    height: 21px;
    display: inline-block;
    flex: 0 0 auto;
    color: currentColor;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.admin-panel {
    min-width: 0;
}

.admin-topbar {
    display: grid;
    grid-template-columns: 1fr 365px auto;
    align-items: center;
    gap: 30px;
    height: 84px;
    padding: 0 32px 0 28px;
    background: #ffffff;
    border-bottom: 1px solid #dbe7f6;
}

.admin-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-title button {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #506888;
    background: transparent;
    border: 0;
    padding: 0;
}

.admin-title h1 {
    margin: 0;
    color: #10233f;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.admin-search {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 42px;
    padding: 0 16px;
    color: #8090a7;
    background: #ffffff;
    border: 1px solid #d4e0ee;
    border-radius: 7px;
    box-shadow: inset 0 1px 1px rgba(16, 35, 63, .02);
}

.admin-search .admin-icon {
    width: 19px;
    height: 19px;
    stroke-width: 2.1;
}

.admin-search span {
    font-size: 15px;
    font-weight: 650;
}

.admin-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #10233f;
    font-size: 15px;
    font-weight: 760;
}

.admin-bell {
    position: relative;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #516884;
}

.admin-bell em {
    position: absolute;
    top: -5px;
    right: -4px;
    display: grid;
    place-items: center;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    color: #ffffff;
    background: #ff3f48;
    border-radius: 999px;
    border: 2px solid #ffffff;
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
}

.admin-avatar {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #1677ff;
    background: #eaf4ff;
    border-radius: 50%;
}

.admin-avatar .admin-icon {
    width: 25px;
    height: 25px;
    stroke-width: 1.9;
}

.admin-content {
    padding: 20px 32px 30px 24px;
}

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

.admin-card,
.admin-metric-card {
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(45, 91, 150, .045);
}

.admin-metric-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    min-height: 132px;
    padding: 18px 20px;
}

.admin-metric-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #dcecff;
    border-radius: 50%;
}

.admin-metric-icon .admin-icon {
    width: 31px;
    height: 31px;
    stroke-width: 2;
}

.admin-metric-card p {
    margin: 0 0 11px;
    color: #1a2e4c;
    font-size: 15px;
    font-weight: 850;
    white-space: nowrap;
}

.admin-metric-card strong {
    display: block;
    color: #09245b;
    font-size: 31px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .2px;
}

.admin-metric-card em {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: #627491;
    font-size: 13px;
    font-style: normal;
    font-weight: 650;
    white-space: nowrap;
}

.admin-metric-card em b {
    font-weight: 850;
}

.admin-metric-card em.is-up b,
.admin-metric-card em.is-up .admin-icon {
    color: #00a76f;
}

.admin-metric-card em.is-down b,
.admin-metric-card em.is-down .admin-icon {
    color: #ff3f48;
}

.admin-metric-card em.is-neutral b {
    color: #5f7188;
}

.admin-metric-card em .admin-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2.4;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.admin-card {
    padding: 22px;
}

.admin-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.admin-card-head h2 {
    margin: 0;
    color: #10233f;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0;
}

.admin-card-head button,
.admin-card-head a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    color: #1677ff;
    background: #ffffff;
    border: 1px solid #d4e0ee;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
}

.admin-card-head button .admin-icon,
.admin-card-head a .admin-icon {
    width: 16px;
    height: 16px;
}

.admin-chart-card {
    min-height: 306px;
}

.admin-chart {
    margin-top: 18px;
    height: 252px;
}

.admin-chart svg {
    width: 100%;
    height: 100%;
    display: block;
}

.admin-grid-lines path {
    fill: none;
    stroke: #dbe4ef;
    stroke-width: 1;
}

.admin-axis-labels text {
    fill: #63738d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 650;
}

.admin-chart-area {
    fill: url(#adminChartFill);
}

.admin-chart-line {
    fill: none;
    stroke: #1677ff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.admin-chart-points circle {
    fill: #ffffff;
    stroke: #1677ff;
    stroke-width: 3;
}

.admin-todo-card {
    min-height: 306px;
}

.admin-todo-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.admin-todo-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 42px 22px;
    align-items: center;
    min-height: 70px;
    padding: 0 18px 0 10px;
    color: #10233f;
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 8px;
    text-decoration: none;
}

.admin-todo-item > span {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.admin-todo-item strong {
    display: block;
    color: #10233f;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}

.admin-todo-item p {
    margin: 6px 0 0;
    color: #5c6f8c;
    font-size: 13px;
    font-weight: 650;
}

.admin-todo-item b {
    justify-self: end;
    font-size: 23px;
    line-height: 1;
    font-weight: 900;
}

.admin-todo-item > .admin-icon {
    justify-self: end;
    width: 20px;
    height: 20px;
    color: #6f819b;
}

.admin-todo-item.is-orange > span {
    color: #f08a12;
    background: #fff4e5;
}

.admin-todo-item.is-orange b {
    color: #f08a12;
}

.admin-todo-item.is-red > span {
    color: #ff3f48;
    background: #fff0f2;
}

.admin-todo-item.is-red b {
    color: #ff3f48;
}

.admin-todo-item.is-blue > span {
    color: #1677ff;
    background: #eaf4ff;
}

.admin-todo-item.is-blue b {
    color: #1677ff;
}

.admin-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.admin-order-card,
.admin-version-card {
    min-height: 300px;
}

.admin-order-card .admin-card-head a {
    border-color: transparent;
    padding-right: 0;
}

.admin-table {
    width: 100%;
    margin-top: 18px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #dbe7f6;
    border-radius: 7px;
}

.admin-table th,
.admin-table td {
    height: 45px;
    padding: 0 14px;
    border-bottom: 1px solid #dbe7f6;
    color: #253b59;
    font-size: 14px;
    font-weight: 650;
    text-align: left;
    white-space: nowrap;
}

.admin-table th {
    color: #10233f;
    background: #f2f7fd;
    font-size: 13px;
    font-weight: 900;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.admin-table td a {
    color: #1677ff;
    font-weight: 850;
    text-decoration: none;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 26px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 850;
}

.admin-status.is-pending {
    color: #f08a12;
    background: #fff4e5;
    border: 1px solid #ffd59c;
}

.admin-status.is-open {
    color: #00a76f;
    background: #e9fbf4;
    border: 1px solid #bcebd9;
}

.admin-card-head button {
    color: #ffffff;
    background: linear-gradient(135deg, #1677ff, #236df3);
    border-color: transparent;
    box-shadow: 0 12px 22px rgba(22, 119, 255, .18);
}

.admin-version-body {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 24px;
}

.admin-version-icon {
    display: grid;
    place-items: center;
    width: 122px;
    height: 122px;
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 12px;
}

.admin-version-icon img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    box-shadow: 0 16px 32px rgba(22, 119, 255, .16);
}

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

.admin-version-title strong {
    color: #09245b;
    font-size: 31px;
    line-height: 1;
    font-weight: 900;
}

.admin-version-title span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #b9dcff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 850;
}

.admin-version-info p {
    margin: 0 0 9px;
    color: #516581;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 650;
}

.admin-version-info b {
    color: #253b59;
    font-weight: 850;
}

.admin-version-actions {
    display: grid;
    grid-template-columns: 1fr 1.14fr;
    gap: 26px;
    margin-top: 22px;
}

.admin-version-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 38px;
    color: #10233f;
    background: #ffffff;
    border: 1px solid #d4e0ee;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.admin-version-actions a.is-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #1677ff, #236df3);
    border-color: transparent;
    box-shadow: 0 12px 22px rgba(22, 119, 255, .18);
}

.admin-version-actions .admin-icon {
    width: 18px;
    height: 18px;
}

/* Admin login */
.page-admin-login {
    min-width: 1280px;
    margin: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(22, 119, 255, .08), transparent 28%),
        linear-gradient(135deg, #f4f8ff 0%, #ffffff 52%, #eef6ff 100%);
    color: #10233f;
    overflow-x: auto;
}

.admin-login-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(430px, .82fr);
    min-height: 100vh;
}

.admin-login-visual {
    position: relative;
    display: grid;
    align-content: center;
    gap: 28px;
    padding: 72px 70px 72px 86px;
    overflow: hidden;
}

.admin-login-copy {
    max-width: 560px;
}

.admin-login-copy > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #c7e2ff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
}

.admin-login-copy > span .admin-icon {
    width: 17px;
    height: 17px;
}

.admin-login-copy h1 {
    margin: 22px 0 14px;
    color: #10233f;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: 0;
}

.admin-login-copy p {
    margin: 0;
    max-width: 520px;
    color: #526782;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 650;
}

.admin-login-preview {
    position: relative;
    max-width: 720px;
    padding: 24px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid #dbe7f6;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(45, 91, 150, .12);
    backdrop-filter: blur(8px);
}

.admin-preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.admin-preview-top strong {
    color: #10233f;
    font-size: 18px;
    font-weight: 900;
}

.admin-preview-top em {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    color: #00a76f;
    background: #e9fbf4;
    border: 1px solid #bcebd9;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
}

.admin-preview-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.admin-preview-metrics article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    column-gap: 10px;
    min-height: 82px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 8px;
}

.admin-preview-metrics span {
    display: grid;
    place-items: center;
    grid-row: span 2;
    width: 42px;
    height: 42px;
    color: #1677ff;
    background: #eaf4ff;
    border-radius: 50%;
}

.admin-preview-metrics .admin-icon {
    width: 22px;
    height: 22px;
}

.admin-preview-metrics p {
    margin: 0;
    color: #627491;
    font-size: 12px;
    font-weight: 750;
}

.admin-preview-metrics strong {
    color: #09245b;
    font-size: 21px;
    font-weight: 950;
}

.admin-preview-chart {
    margin-top: 14px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 8px;
}

.admin-preview-chart > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.admin-preview-chart strong {
    color: #10233f;
    font-size: 16px;
    font-weight: 900;
}

.admin-preview-chart span {
    color: #71829a;
    font-size: 13px;
    font-weight: 750;
}

.admin-preview-chart svg {
    width: 100%;
    height: 180px;
    display: block;
}

.preview-grid {
    fill: none;
    stroke: #dbe4ef;
    stroke-width: 1;
}

.preview-area {
    fill: rgba(22, 119, 255, .12);
}

.preview-line {
    fill: none;
    stroke: #1677ff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.admin-login-safe {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 12px 16px;
    color: #526782;
    background: rgba(255, 255, 255, .72);
    border: 1px solid #dbe7f6;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 750;
}

.admin-login-safe .admin-icon {
    width: 18px;
    height: 18px;
    color: #1677ff;
}

.admin-login-panel {
    display: grid;
    place-items: center;
    padding: 44px 72px 44px 30px;
}

.admin-login-card {
    width: 100%;
    max-width: 430px;
    padding: 30px 34px 26px;
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(45, 91, 150, .12);
}

.admin-login-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #10233f;
    text-decoration: none;
}

.admin-login-brand span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #60adff, #176fff);
    border-radius: 9px;
    box-shadow: 0 12px 24px rgba(22, 119, 255, .18);
}

.admin-login-brand img {
    width: 31px;
    height: 31px;
}

.admin-login-brand strong {
    font-size: 25px;
    font-weight: 950;
}

.admin-login-title {
    margin: 24px 0 18px;
}

.admin-login-title h2 {
    margin: 0;
    color: #10233f;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: 0;
}

.admin-login-title p {
    margin: 10px 0 0;
    color: #687b94;
    font-size: 14px;
    font-weight: 650;
}

.admin-login-errors {
    display: grid;
    gap: 5px;
    margin-bottom: 16px;
    padding: 10px 12px;
    color: #d92d20;
    background: #fff1f1;
    border: 1px solid #ffd0d0;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 750;
}

.admin-login-card label {
    display: block;
    margin-bottom: 12px;
}

.admin-login-card label > span {
    display: block;
    margin-bottom: 8px;
    color: #253b59;
    font-size: 14px;
    font-weight: 850;
}

.admin-login-input {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 42px;
    padding: 0 14px;
    color: #8da0b8;
    background: #ffffff;
    border: 1px solid #d4e0ee;
    border-radius: 7px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.admin-login-input:focus-within {
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, .1);
}

.admin-login-input .admin-icon {
    width: 19px;
    height: 19px;
    stroke-width: 2;
}

.admin-login-input input {
    width: 100%;
    min-width: 0;
    height: 100%;
    color: #10233f;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 14px;
    font-weight: 700;
}

.admin-login-input input::placeholder {
    color: #9aa9bb;
    font-weight: 650;
}

.admin-login-captcha-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 12px;
}

.admin-login-captcha-row strong {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1677ff;
    background:
        linear-gradient(135deg, rgba(22, 119, 255, .08), rgba(22, 119, 255, .16)),
        #f2f8ff;
    border: 1px solid #c8e1ff;
    border-radius: 7px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.admin-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px;
}

.admin-login-options label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #5c6f8c;
    font-size: 13px;
    font-weight: 750;
}

.admin-login-options input {
    width: 15px;
    height: 15px;
    accent-color: #1677ff;
}

.admin-login-options a {
    color: #1677ff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.admin-login-submit {
    width: 100%;
    height: 44px;
    color: #ffffff;
    background: linear-gradient(135deg, #1677ff, #236df3);
    border: 0;
    border-radius: 7px;
    box-shadow: 0 14px 28px rgba(22, 119, 255, .2);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
}

.admin-login-back {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    color: #687b94;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

/* Admin users */
.admin-users-content .admin-metrics {
    gap: 14px;
}

.admin-users-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 292px;
    gap: 14px;
    margin-top: 16px;
}

.admin-users-card {
    min-width: 0;
    padding: 20px 18px 18px;
}

.admin-users-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.admin-users-head h2 {
    margin: 0;
    color: #10233f;
    font-size: 21px;
    font-weight: 950;
    letter-spacing: 0;
}

.admin-users-head p {
    margin: 7px 0 0;
    color: #687b94;
    font-size: 13px;
    font-weight: 650;
}

.admin-users-head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 104px;
    height: 36px;
    color: #ffffff;
    background: linear-gradient(135deg, #1677ff, #236df3);
    border: 0;
    border-radius: 6px;
    box-shadow: 0 12px 22px rgba(22, 119, 255, .18);
    font-size: 14px;
    font-weight: 850;
}

.admin-users-head button .admin-icon {
    width: 17px;
    height: 17px;
}

.admin-user-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e1ebf6;
}

.admin-user-tabs button {
    height: 32px;
    padding: 0 14px;
    color: #5c6f8c;
    background: #f5f9ff;
    border: 1px solid #dbe7f6;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.admin-user-tabs button.is-active {
    color: #1677ff;
    background: #eaf4ff;
    border-color: #b9dcff;
}

.admin-user-filters {
    display: grid;
    grid-template-columns: minmax(190px, 1fr) 116px 116px 70px 70px;
    gap: 8px;
    margin-top: 14px;
}

.admin-filter-search,
.admin-user-filters button {
    display: inline-flex;
    align-items: center;
    height: 38px;
    color: #6d7f98;
    background: #ffffff;
    border: 1px solid #d4e0ee;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 760;
}

.admin-filter-search {
    gap: 9px;
    padding: 0 12px;
}

.admin-filter-search .admin-icon {
    width: 17px;
    height: 17px;
    color: #8fa0b5;
}

.admin-user-filters button {
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
}

.admin-user-filters button .admin-icon {
    width: 14px;
    height: 14px;
}

.admin-user-filters button.is-primary {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 10px 18px rgba(22, 119, 255, .16);
}

.admin-user-table {
    margin-top: 16px;
    table-layout: fixed;
}

.admin-user-table th,
.admin-user-table td {
    height: 56px;
    padding: 0 5px;
    font-size: 11px;
}

.admin-user-table th {
    height: 42px;
}

.admin-user-table .admin-status {
    min-width: 0;
    height: 24px;
    padding: 0 7px;
    font-size: 11px;
    white-space: nowrap;
}

.admin-user-table th:first-child,
.admin-user-table td:first-child {
    width: 28px;
    text-align: center;
}

.admin-user-table th:nth-child(2),
.admin-user-table td:nth-child(2) {
    width: 138px;
}

.admin-user-table th:nth-child(3),
.admin-user-table td:nth-child(3) {
    width: 78px;
}

.admin-user-table th:nth-child(4),
.admin-user-table td:nth-child(4) {
    width: 54px;
}

.admin-user-table th:nth-child(5),
.admin-user-table td:nth-child(5) {
    width: 72px;
}

.admin-user-table th:nth-child(6),
.admin-user-table td:nth-child(6) {
    width: 92px;
}

.admin-user-table th:nth-child(7),
.admin-user-table td:nth-child(7) {
    width: 54px;
}

.admin-user-table th:nth-child(8),
.admin-user-table td:nth-child(8) {
    width: 88px;
}

.admin-user-table tr.is-selected td {
    background: #f8fbff;
}

.admin-check {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #c7d6e8;
    border-radius: 4px;
    background: #ffffff;
}

.admin-check.is-checked {
    position: relative;
    background: #1677ff;
    border-color: #1677ff;
}

.admin-check.is-checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
}

.admin-user-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.admin-user-cell > span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe4ff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.admin-user-cell strong {
    display: block;
    color: #10233f;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-user-cell em {
    display: block;
    margin-top: 4px;
    color: #7a8aa1;
    font-size: 11px;
    font-style: normal;
    font-weight: 650;
}

.admin-status.is-normal {
    color: #00a76f;
    background: #e9fbf4;
    border: 1px solid #bcebd9;
}

.admin-status.is-waiting {
    color: #f08a12;
    background: #fff4e5;
    border: 1px solid #ffd59c;
}

.admin-status.is-disabled {
    color: #e5484d;
    background: #fff1f1;
    border: 1px solid #ffc9cc;
}

.admin-device-count {
    display: grid;
    gap: 7px;
    min-width: 58px;
}

.admin-device-count strong {
    color: #253b59;
    font-size: 13px;
    font-weight: 900;
}

.admin-device-count i {
    display: block;
    width: 48px;
    height: 5px;
    overflow: hidden;
    background: #e8eff7;
    border-radius: 999px;
}

.admin-device-count b {
    display: block;
    height: 100%;
    background: #1677ff;
    border-radius: inherit;
}

.admin-row-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.admin-row-actions a {
    color: #1677ff;
    font-size: 11px;
    font-weight: 850;
    text-decoration: none;
}

.admin-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 14px;
    color: #687b94;
    font-size: 13px;
    font-weight: 750;
}

.admin-table-footer div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-table-footer button,
.admin-table-footer strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    padding: 0 10px;
    border: 1px solid #d4e0ee;
    border-radius: 6px;
    background: #ffffff;
    color: #5c6f8c;
    font-size: 13px;
    font-weight: 800;
}

.admin-table-footer strong {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
}

.admin-users-side {
    display: grid;
    align-content: start;
    gap: 14px;
}

.admin-user-detail-card {
    padding: 22px;
}

.admin-detail-profile {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e1ebf6;
}

.admin-detail-profile > span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    background: linear-gradient(135deg, #5faaff, #1677ff);
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(22, 119, 255, .18);
    font-size: 14px;
    font-weight: 900;
}

.admin-detail-profile strong {
    display: block;
    color: #10233f;
    font-size: 15px;
    font-weight: 950;
}

.admin-detail-profile p {
    margin: 6px 0 0;
    color: #687b94;
    font-size: 12px;
    font-weight: 700;
}

.admin-detail-list {
    display: grid;
    gap: 12px;
    margin: 18px 0;
}

.admin-detail-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.admin-detail-list dt,
.admin-detail-list dd {
    margin: 0;
}

.admin-detail-list dt {
    color: #687b94;
    font-size: 13px;
    font-weight: 750;
}

.admin-detail-list dd {
    color: #10233f;
    font-size: 13px;
    font-weight: 900;
}

.admin-detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.admin-detail-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    color: #1677ff;
    background: #ffffff;
    border: 1px solid #b9dcff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.admin-detail-actions a.is-primary {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 10px 18px rgba(22, 119, 255, .16);
}

.admin-device-card {
    padding: 20px;
}

.admin-device-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.admin-device-list > div {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px;
    background: #f8fbff;
    border: 1px solid #e1ebf6;
    border-radius: 7px;
}

.admin-device-list > div > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #1677ff;
    background: #eaf4ff;
    border-radius: 50%;
}

.admin-device-list .admin-icon {
    width: 19px;
    height: 19px;
}

.admin-device-list strong {
    display: block;
    color: #10233f;
    font-size: 13px;
    font-weight: 900;
}

.admin-device-list p {
    margin: 5px 0 0;
    color: #71829a;
    font-size: 12px;
    font-weight: 650;
}

.admin-device-list em {
    color: #00a76f;
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
}

.admin-device-list > div:last-child em {
    color: #8b9ab0;
}

/* Admin orders */
.admin-orders-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 292px;
    gap: 14px;
    margin-top: 16px;
}

.admin-orders-card {
    min-width: 0;
    padding: 20px 18px 18px;
}

.admin-order-filters {
    display: grid;
    grid-template-columns: minmax(176px, 1fr) 104px 104px 104px 68px 68px;
    gap: 8px;
    margin-top: 14px;
}

.admin-order-filters button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 38px;
    padding: 0 8px;
    color: #6d7f98;
    background: #ffffff;
    border: 1px solid #d4e0ee;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 760;
}

.admin-order-filters button .admin-icon {
    width: 14px;
    height: 14px;
}

.admin-order-filters button.is-primary {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 10px 18px rgba(22, 119, 255, .16);
}

.admin-order-table {
    margin-top: 16px;
    table-layout: fixed;
}

.admin-order-table th,
.admin-order-table td {
    height: 56px;
    padding: 0 4px;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-order-table th {
    height: 42px;
}

.admin-order-table .admin-status {
    min-width: 0;
    height: 24px;
    padding: 0 7px;
    font-size: 11px;
    white-space: nowrap;
}

.admin-order-table th:first-child,
.admin-order-table td:first-child {
    width: 26px;
    text-align: center;
}

.admin-order-table th:nth-child(2),
.admin-order-table td:nth-child(2) {
    width: 112px;
}

.admin-order-table th:nth-child(3),
.admin-order-table td:nth-child(3) {
    width: 112px;
}

.admin-order-table th:nth-child(4),
.admin-order-table td:nth-child(4) {
    width: 68px;
}

.admin-order-table th:nth-child(5),
.admin-order-table td:nth-child(5) {
    width: 56px;
}

.admin-order-table th:nth-child(6),
.admin-order-table td:nth-child(6) {
    width: 48px;
}

.admin-order-table th:nth-child(7),
.admin-order-table td:nth-child(7) {
    width: 56px;
}

.admin-order-table th:nth-child(8),
.admin-order-table td:nth-child(8) {
    width: 88px;
}

.admin-order-table th:nth-child(9),
.admin-order-table td:nth-child(9) {
    width: 78px;
    overflow: visible;
}

.admin-order-table td:nth-child(5) strong {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-order-table tr.is-selected td {
    background: #f8fbff;
}

.admin-order-id {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.admin-order-id strong {
    color: #10233f;
    font-size: 11px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-order-id em {
    color: #7a8aa1;
    font-size: 11px;
    font-style: normal;
    font-weight: 650;
}

.admin-row-actions a.is-danger {
    color: #e5484d;
}

.admin-orders-side {
    display: grid;
    align-content: start;
    gap: 14px;
}

.admin-order-detail-card,
.admin-payment-card {
    padding: 20px;
}

.admin-order-side-head {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e1ebf6;
}

.admin-order-side-head > span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe4ff;
    border-radius: 50%;
}

.admin-order-side-head .admin-icon {
    width: 23px;
    height: 23px;
}

.admin-order-side-head strong {
    display: block;
    color: #10233f;
    font-size: 14px;
    font-weight: 950;
}

.admin-order-side-head p {
    margin: 6px 0 0;
    color: #f08a12;
    font-size: 12px;
    font-weight: 850;
}

.admin-order-detail-list {
    display: grid;
    gap: 12px;
    margin: 18px 0;
}

.admin-order-detail-list div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.admin-order-detail-list dt,
.admin-order-detail-list dd {
    margin: 0;
}

.admin-order-detail-list dt {
    color: #687b94;
    font-size: 13px;
    font-weight: 750;
}

.admin-order-detail-list dd {
    color: #10233f;
    font-size: 13px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-order-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.admin-order-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.admin-order-actions a.is-primary {
    color: #ffffff;
    background: #1677ff;
    border: 1px solid #1677ff;
    box-shadow: 0 10px 18px rgba(22, 119, 255, .16);
}

.admin-order-actions a.is-danger {
    color: #e5484d;
    background: #ffffff;
    border: 1px solid #ffc9cc;
}

.admin-payment-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.admin-payment-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 40px;
    padding: 0 12px;
    background: #f8fbff;
    border: 1px solid #e1ebf6;
    border-radius: 7px;
}

.admin-payment-list span {
    color: #687b94;
    font-size: 12px;
    font-weight: 750;
}

.admin-payment-list strong {
    color: #10233f;
    font-size: 13px;
    font-weight: 900;
}

.admin-payment-list strong.is-warning {
    color: #f08a12;
}

.admin-payment-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 14px 0 0;
    padding: 11px 12px;
    color: #6b5a2e;
    background: #fff8e8;
    border: 1px solid #ffe0a8;
    border-radius: 7px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 750;
}

.admin-payment-note .admin-icon {
    width: 17px;
    height: 17px;
    color: #f08a12;
}

.admin-software-content {
    gap: 16px;
}

.admin-software-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 336px;
    gap: 14px;
    align-items: start;
}

.admin-software-main,
.admin-software-side {
    display: grid;
    gap: 14px;
}

.admin-current-version-card,
.admin-history-card,
.admin-upload-card,
.admin-release-card {
    padding: 20px;
}

.admin-software-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-software-head h2 {
    margin: 0;
    color: #10233f;
    font-size: 17px;
    font-weight: 950;
}

.admin-software-head p {
    margin: 7px 0 0;
    color: #70839c;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
}

.admin-software-head > button,
.admin-software-head > a,
.admin-changelog-head > a,
.admin-contact-head > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 34px;
    padding: 0 13px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cae2ff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
    white-space: nowrap;
    text-decoration: none;
}

.admin-software-head > button .admin-icon,
.admin-software-head > a .admin-icon,
.admin-changelog-head > a .admin-icon,
.admin-contact-head > a .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-version-live {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 26px;
    color: #15945c;
    background: #edf9f3;
    border: 1px solid #bce9d0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.admin-version-hero {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: linear-gradient(135deg, #f6fbff 0%, #ffffff 56%, #f9fcff 100%);
    border: 1px solid #d7e8fb;
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.admin-version-mark {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    background: #eef7ff;
    border: 1px solid #c8e1ff;
    border-radius: 8px;
    box-shadow: 0 14px 24px rgba(22, 119, 255, .10);
}

.admin-version-mark img {
    width: 45px;
    height: 45px;
    display: block;
}

.admin-version-title {
    min-width: 0;
}

.admin-version-title strong {
    display: block;
    color: #10233f;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: 0;
}

.admin-version-title p {
    margin: 8px 0 0;
    color: #60758f;
    font-size: 13px;
    font-weight: 750;
}

.admin-version-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 13px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #c8e1ff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.admin-version-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.admin-version-meta-grid div {
    min-width: 0;
    padding: 13px 14px;
    background: #fbfdff;
    border: 1px solid #e2edf8;
    border-radius: 7px;
}

.admin-version-meta-grid div.is-wide {
    grid-column: 1 / -1;
}

.admin-version-meta-grid span {
    display: block;
    color: #7a8ca4;
    font-size: 11px;
    font-weight: 800;
}

.admin-version-meta-grid strong {
    display: block;
    margin-top: 7px;
    color: #10233f;
    font-size: 13px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-version-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.admin-version-buttons a,
.admin-version-buttons button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 36px;
    padding: 0 14px;
    color: #49627d;
    background: #ffffff;
    border: 1px solid #d9e6f4;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
    cursor: default;
}

.admin-version-buttons .is-primary {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 12px 20px rgba(22, 119, 255, .16);
}

.admin-version-buttons .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-version-tabs {
    margin-bottom: 12px;
}

.admin-history-table {
    table-layout: fixed;
}

.admin-history-table th,
.admin-history-table td {
    height: 56px;
    padding: 0 12px;
    font-size: 12px;
}

.admin-history-table th:first-child,
.admin-history-table td:first-child {
    width: 126px;
}

.admin-history-table th:nth-child(2),
.admin-history-table td:nth-child(2) {
    width: 110px;
}

.admin-history-table th:nth-child(3),
.admin-history-table td:nth-child(3),
.admin-history-table th:nth-child(4),
.admin-history-table td:nth-child(4) {
    width: 88px;
}

.admin-history-table th:nth-child(5),
.admin-history-table td:nth-child(5) {
    width: 72px;
}

.admin-history-table th:nth-child(6),
.admin-history-table td:nth-child(6) {
    width: 150px;
}

.admin-history-table tr.is-current td {
    background: #f8fbff;
}

.admin-history-table td strong {
    display: block;
    color: #10233f;
    font-size: 13px;
    font-weight: 950;
}

.admin-history-table td span {
    display: block;
    margin-top: 4px;
    color: #7c8da3;
    font-size: 11px;
    font-weight: 700;
}

.admin-status.is-offline {
    color: #66788f;
    background: #f1f5f9;
    border-color: #dce6f0;
}

.admin-status.is-draft {
    color: #5f6f86;
    background: #f7f9fc;
    border-color: #e4ebf3;
}

.admin-flash {
    margin: 18px 28px 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.admin-flash.is-success {
    color: #176047;
    background: #e9f8f1;
    border: 1px solid #bdebd6;
}

.admin-flash.is-error {
    color: #a13b3b;
    background: #fff0f0;
    border: 1px solid #ffd2d2;
}

.admin-upload-card .admin-card-head,
.admin-release-card .admin-card-head {
    margin-bottom: 16px;
}

.admin-link-config {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    padding: 16px;
    text-align: left;
    background: #f7fbff;
    border: 1px solid #dce9f7;
    border-radius: 8px;
}

.admin-link-config > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 8px;
}

.admin-link-config .admin-icon {
    width: 24px;
    height: 24px;
}

.admin-link-config strong {
    display: block;
    color: #10233f;
    font-size: 14px;
    font-weight: 950;
}

.admin-link-config p {
    grid-column: 2;
    margin: -3px 0 0;
    color: #72839a;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
}

.admin-software-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 14px;
}

.admin-software-form label {
    display: grid;
    gap: 7px;
}

.admin-software-form label:nth-child(3),
.admin-software-form label:nth-child(4),
.admin-software-form label.is-full,
.admin-toggle-row {
    grid-column: 1 / -1;
}

.admin-software-form label span {
    color: #61758e;
    font-size: 12px;
    font-weight: 800;
}

.admin-software-form input {
    width: 100%;
    height: 36px;
    padding: 0 11px;
    color: #10233f;
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 7px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    outline: none;
}

.admin-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 10px 12px;
    background: #fbfdff;
    border: 1px solid #e1ebf6;
    border-radius: 7px;
}

.admin-toggle-row strong {
    color: #10233f;
    font-size: 13px;
    font-weight: 900;
}

.admin-toggle-row p {
    margin: 4px 0 0;
    color: #7a8ca4;
    font-size: 11px;
    font-weight: 700;
}

.admin-switch {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 24px;
    background: #d5e1ee;
    border-radius: 999px;
}

.admin-switch::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(16, 35, 63, .18);
}

.admin-switch.is-on {
    background: #1677ff;
}

.admin-switch.is-on::after {
    left: 21px;
}

.admin-upload-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.admin-upload-actions button {
    height: 36px;
    color: #49627d;
    background: #ffffff;
    border: 1px solid #d9e6f4;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
}

.admin-upload-actions button.is-primary {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 12px 20px rgba(22, 119, 255, .14);
}

.admin-release-list {
    display: grid;
    gap: 10px;
}

.admin-release-list .admin-release-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
    padding: 12px;
    background: #fbfdff;
    border: 1px solid #e2edf8;
    border-radius: 7px;
}

.admin-release-list .admin-release-item > span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cee4ff;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 950;
}

.admin-release-list .admin-release-item p {
    margin: 0;
    color: #263b55;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 800;
}

.admin-release-list .admin-status {
    height: 24px;
    padding: 0 8px;
    font-size: 11px;
}

.admin-release-list small {
    grid-column: 2;
    margin-top: -4px;
    color: #8a9bb0;
    font-size: 11px;
    font-weight: 750;
}

.admin-release-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 2px;
}

.admin-release-actions a {
    color: #1677ff;
    font-size: 12px;
    font-weight: 850;
}

.admin-release-actions a.is-danger {
    color: #d65b5b;
}

.admin-release-empty {
    padding: 14px;
    color: #70839c;
    background: #f8fbff;
    border: 1px solid #dce9f7;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.admin-release-form {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e4edf8;
}

.admin-release-form > strong {
    color: #10233f;
    font-size: 14px;
    font-weight: 950;
}

.admin-release-form label {
    display: grid;
    gap: 7px;
}

.admin-release-form label span {
    color: #61758e;
    font-size: 12px;
    font-weight: 800;
}

.admin-release-form input,
.admin-release-form select,
.admin-release-form textarea {
    width: 100%;
    color: #10233f;
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 7px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    outline: none;
}

.admin-release-form input,
.admin-release-form select {
    height: 36px;
    padding: 0 11px;
}

.admin-release-form textarea {
    min-height: 82px;
    padding: 10px 11px;
    line-height: 1.55;
    resize: vertical;
}

.admin-release-form > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.admin-note-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    height: 36px;
    margin-top: 12px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cae2ff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
}

.admin-note-add .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-changelog-content {
    gap: 16px;
}

.admin-changelog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 336px;
    gap: 14px;
    align-items: start;
}

.admin-changelog-list-card,
.admin-log-editor-card,
.admin-log-preview-card {
    padding: 20px;
}

.admin-changelog-side {
    display: grid;
    gap: 14px;
}

.admin-changelog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-changelog-head h2 {
    margin: 0;
    color: #10233f;
    font-size: 17px;
    font-weight: 950;
}

.admin-changelog-head p {
    margin: 7px 0 0;
    color: #70839c;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
}

.admin-changelog-head > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 34px;
    padding: 0 13px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cae2ff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
    white-space: nowrap;
}

.admin-changelog-head > button .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-changelog-tabs {
    margin-bottom: 12px;
}

.admin-changelog-filters {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 118px 118px 72px;
    gap: 10px;
    margin-bottom: 14px;
}

.admin-changelog-filters button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 36px;
    color: #49627d;
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
}

.admin-changelog-filters button.is-primary {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 10px 18px rgba(22, 119, 255, .14);
}

.admin-changelog-filters .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-log-timeline {
    position: relative;
    display: grid;
    gap: 12px;
}

.admin-log-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 15px;
    width: 1px;
    background: #d7e6f6;
}

.admin-log-timeline article {
    position: relative;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
}

.admin-log-node {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    padding-top: 18px;
}

.admin-log-node span {
    display: block;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border: 3px solid #91c5ff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #f1f7ff;
}

.admin-log-timeline article.is-selected .admin-log-node span {
    border-color: #1677ff;
    box-shadow: 0 0 0 5px #e8f3ff;
}

.admin-log-main {
    min-width: 0;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #dfeaf6;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(22, 119, 255, .05);
}

.admin-log-timeline article.is-selected .admin-log-main {
    background: #f8fbff;
    border-color: #cbe1fb;
}

.admin-log-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.admin-log-top strong {
    display: block;
    color: #10233f;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 950;
}

.admin-log-top p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 7px 0 0;
    color: #75879e;
    font-size: 12px;
    font-weight: 750;
}

.admin-log-top b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 9px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.admin-log-top time {
    font-style: normal;
}

.admin-log-main ul,
.admin-log-preview ul {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.admin-log-main li,
.admin-log-preview li {
    position: relative;
    padding-left: 14px;
    color: #425975;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 760;
}

.admin-log-main li::before,
.admin-log-preview li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #1677ff;
    border-radius: 50%;
}

.admin-log-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.admin-log-actions a {
    color: #1677ff;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.admin-log-actions a.is-danger {
    color: #e5484d;
}

.admin-log-editor-card .admin-card-head,
.admin-log-preview-card .admin-card-head {
    margin-bottom: 16px;
}

.admin-log-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.admin-log-form label {
    display: grid;
    gap: 7px;
}

.admin-log-form label.is-full,
.admin-log-form label:nth-child(3),
.admin-log-form label:nth-child(4) {
    grid-column: 1 / -1;
}

.admin-log-form span {
    color: #61758e;
    font-size: 12px;
    font-weight: 800;
}

.admin-log-form input,
.admin-log-form textarea {
    width: 100%;
    color: #10233f;
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 7px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    outline: none;
}

.admin-log-form input {
    height: 36px;
    padding: 0 11px;
}

.admin-log-form textarea {
    min-height: 112px;
    padding: 10px 11px;
    line-height: 1.55;
    resize: none;
}

.admin-log-actions-row {
    margin-top: 14px;
}

.admin-log-preview {
    padding: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dce9f7;
    border-radius: 8px;
}

.admin-log-preview-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 11px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.admin-log-preview strong {
    display: block;
    margin-top: 13px;
    color: #10233f;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 950;
}

.admin-log-preview time {
    display: block;
    margin-top: 7px;
    color: #7a8ca4;
    font-size: 12px;
    font-weight: 750;
}

.admin-tutorials-content {
    gap: 16px;
}

.admin-tutorials-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 336px;
    gap: 14px;
    align-items: start;
}

.admin-tutorials-list-card,
.admin-tutorial-editor-card,
.admin-tutorial-preview-card {
    padding: 20px;
}

.admin-tutorials-side {
    display: grid;
    gap: 14px;
}

.admin-tutorials-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-tutorials-head h2 {
    margin: 0;
    color: #10233f;
    font-size: 17px;
    font-weight: 950;
}

.admin-tutorials-head p {
    margin: 7px 0 0;
    color: #70839c;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
}

.admin-tutorials-head > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 34px;
    padding: 0 13px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cae2ff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
    white-space: nowrap;
}

.admin-tutorials-head > button .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-tutorials-tabs {
    margin-bottom: 12px;
}

.admin-tutorials-filters {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 118px 118px 72px;
    gap: 10px;
    margin-bottom: 14px;
}

.admin-tutorials-filters button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 36px;
    color: #49627d;
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
}

.admin-tutorials-filters button.is-primary {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 10px 18px rgba(22, 119, 255, .14);
}

.admin-tutorials-filters .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-tutorial-list {
    display: grid;
    gap: 12px;
}

.admin-tutorial-list article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #dfeaf6;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(22, 119, 255, .05);
}

.admin-tutorial-list article.is-selected {
    background: #f8fbff;
    border-color: #cbe1fb;
}

.admin-tutorial-index {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 950;
}

.admin-tutorial-main {
    min-width: 0;
}

.admin-tutorial-row-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.admin-tutorial-row-top strong {
    display: block;
    color: #10233f;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 950;
}

.admin-tutorial-row-top p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 7px 0 0;
    color: #75879e;
    font-size: 12px;
    font-weight: 750;
}

.admin-tutorial-row-top em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 9px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 999px;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.admin-tutorial-row-top time {
    font-style: normal;
}

.admin-tutorial-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 13px;
}

.admin-tutorial-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 26px;
    padding: 0 9px;
    color: #526a86;
    background: #fbfdff;
    border: 1px solid #e1ebf6;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.admin-tutorial-meta .admin-icon {
    width: 13px;
    height: 13px;
    color: #1677ff;
}

.admin-tutorial-editor-card .admin-card-head,
.admin-tutorial-preview-card .admin-card-head {
    margin-bottom: 16px;
}

.admin-tutorial-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.admin-tutorial-form label {
    display: grid;
    gap: 7px;
}

.admin-tutorial-form label.is-full,
.admin-tutorial-form label:first-child {
    grid-column: 1 / -1;
}

.admin-tutorial-form span {
    color: #61758e;
    font-size: 12px;
    font-weight: 800;
}

.admin-tutorial-form input,
.admin-tutorial-form textarea {
    width: 100%;
    color: #10233f;
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 7px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    outline: none;
}

.admin-tutorial-form input {
    height: 36px;
    padding: 0 11px;
}

.admin-tutorial-form textarea {
    min-height: 112px;
    padding: 10px 11px;
    line-height: 1.55;
    resize: none;
}

.admin-tutorial-actions-row {
    margin-top: 14px;
}

.admin-tutorial-preview {
    display: grid;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dce9f7;
    border-radius: 8px;
}

.admin-tutorial-preview > strong {
    display: block;
    color: #10233f;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 950;
}

.admin-tutorial-preview > p {
    margin: -5px 0 2px;
    color: #7a8ca4;
    font-size: 12px;
    font-weight: 750;
}

.admin-tutorial-preview div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e2edf8;
    border-radius: 7px;
}

.admin-tutorial-preview div span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cee4ff;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 950;
}

.admin-tutorial-preview div p {
    margin: 0;
    color: #263b55;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 800;
}

.admin-contact-content {
    gap: 16px;
}

.admin-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 336px;
    gap: 14px;
    align-items: start;
}

.admin-contact-list-card,
.admin-contact-editor-card,
.admin-contact-notice-card {
    padding: 20px;
}

.admin-contact-side {
    display: grid;
    gap: 14px;
}

.admin-contact-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-contact-head h2 {
    margin: 0;
    color: #10233f;
    font-size: 17px;
    font-weight: 950;
}

.admin-contact-head p {
    margin: 7px 0 0;
    color: #70839c;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
}

.admin-contact-head > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 34px;
    padding: 0 13px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cae2ff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
    white-space: nowrap;
}

.admin-contact-head > button .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-contact-tabs {
    margin-bottom: 12px;
}

.admin-contact-filters {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 118px 118px 72px;
    gap: 10px;
    margin-bottom: 14px;
}

.admin-contact-filters button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 36px;
    color: #49627d;
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
}

.admin-contact-filters button.is-primary {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 10px 18px rgba(22, 119, 255, .14);
}

.admin-contact-filters .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-contact-list {
    display: grid;
    gap: 12px;
}

.admin-contact-list article {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #dfeaf6;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(22, 119, 255, .05);
}

.admin-contact-list article.is-selected {
    background: #f8fbff;
    border-color: #cbe1fb;
}

.admin-contact-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 8px;
}

.admin-contact-icon .admin-icon {
    width: 22px;
    height: 22px;
}

.admin-contact-main {
    min-width: 0;
}

.admin-contact-row-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.admin-contact-row-top strong {
    display: block;
    color: #10233f;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 950;
}

.admin-contact-row-top p {
    margin: 7px 0 0;
    color: #526a86;
    font-size: 12px;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-contact-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 13px;
}

.admin-contact-meta span {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 9px;
    color: #526a86;
    background: #fbfdff;
    border: 1px solid #e1ebf6;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.admin-site-preview-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 14px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dce9f7;
    border-radius: 8px;
}

.admin-site-preview-strip strong {
    display: block;
    color: #10233f;
    font-size: 14px;
    font-weight: 950;
}

.admin-site-preview-strip p {
    margin: 6px 0 0;
    color: #5f748f;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 760;
}

.admin-site-preview-strip > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    height: 30px;
    padding: 0 11px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.admin-site-preview-strip .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-contact-editor-card .admin-card-head,
.admin-contact-notice-card .admin-card-head {
    margin-bottom: 16px;
}

.admin-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.admin-contact-form label {
    display: grid;
    gap: 7px;
}

.admin-contact-form label.is-full,
.admin-contact-form .admin-toggle-row {
    grid-column: 1 / -1;
}

.admin-contact-form span {
    color: #61758e;
    font-size: 12px;
    font-weight: 800;
}

.admin-contact-form input,
.admin-contact-form select {
    width: 100%;
    height: 36px;
    padding: 0 11px;
    color: #10233f;
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 7px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    outline: none;
}

.admin-contact-actions-row {
    margin-top: 14px;
}

.admin-contact-notice {
    display: grid;
    gap: 12px;
    padding: 18px;
    text-align: left;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dce9f7;
    border-radius: 8px;
}

.admin-contact-notice > span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 8px;
}

.admin-contact-notice > span .admin-icon {
    width: 23px;
    height: 23px;
}

.admin-contact-notice strong {
    display: block;
    color: #10233f;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 950;
}

.admin-contact-notice div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-contact-notice em {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 11px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cee4ff;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.admin-settings-content {
    gap: 16px;
}

.admin-settings-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 336px;
    gap: 14px;
    align-items: start;
}

.admin-settings-main,
.admin-settings-side {
    display: grid;
    gap: 14px;
}

.admin-profile-card,
.admin-login-record-card,
.admin-password-card,
.admin-security-card,
.admin-permission-card,
.admin-settings-note-card {
    padding: 20px;
}

.admin-settings-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-settings-head h2 {
    margin: 0;
    color: #10233f;
    font-size: 17px;
    font-weight: 950;
}

.admin-settings-head p {
    margin: 7px 0 0;
    color: #70839c;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
}

.admin-settings-head > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 34px;
    padding: 0 13px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cae2ff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
    white-space: nowrap;
}

.admin-settings-head > button .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-profile-panel {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dce9f7;
    border-radius: 8px;
}

.admin-profile-avatar {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 8px;
}

.admin-profile-avatar .admin-icon {
    width: 28px;
    height: 28px;
}

.admin-profile-panel strong {
    display: block;
    color: #10233f;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 950;
}

.admin-profile-panel p {
    margin: 7px 0 0;
    color: #61758e;
    font-size: 12px;
    font-weight: 800;
}

.admin-profile-panel button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 34px;
    padding: 0 12px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cae2ff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
}

.admin-profile-panel button .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.admin-profile-grid div {
    min-width: 0;
    padding: 13px 14px;
    background: #fbfdff;
    border: 1px solid #e2edf8;
    border-radius: 7px;
}

.admin-profile-grid span {
    display: block;
    color: #7a8ca4;
    font-size: 11px;
    font-weight: 800;
}

.admin-profile-grid strong {
    display: block;
    margin-top: 7px;
    color: #10233f;
    font-size: 13px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-profile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.admin-profile-actions button {
    height: 36px;
    padding: 0 16px;
    color: #49627d;
    background: #ffffff;
    border: 1px solid #d9e6f4;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    cursor: default;
}

.admin-profile-actions button.is-primary {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    box-shadow: 0 12px 20px rgba(22, 119, 255, .14);
}

.admin-login-record-table {
    table-layout: fixed;
}

.admin-login-record-table th,
.admin-login-record-table td {
    height: 52px;
    padding: 0 14px;
    font-size: 12px;
}

.admin-login-record-table th:first-child,
.admin-login-record-table td:first-child {
    width: 178px;
}

.admin-login-record-table th:nth-child(2),
.admin-login-record-table td:nth-child(2) {
    width: 120px;
}

.admin-login-record-table th:nth-child(3),
.admin-login-record-table td:nth-child(3) {
    width: 150px;
}

.admin-login-record-table .admin-status {
    min-width: 54px;
    height: 24px;
    padding: 0 8px;
    font-size: 11px;
}

.admin-password-card .admin-card-head,
.admin-security-card .admin-card-head,
.admin-permission-card .admin-card-head {
    margin-bottom: 16px;
}

.admin-settings-form {
    display: grid;
    gap: 12px;
}

.admin-settings-form label {
    display: grid;
    gap: 7px;
}

.admin-settings-form span {
    color: #61758e;
    font-size: 12px;
    font-weight: 800;
}

.admin-settings-form input {
    width: 100%;
    height: 36px;
    padding: 0 11px;
    color: #10233f;
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 7px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    outline: none;
}

.admin-settings-actions-row {
    margin-top: 14px;
}

.admin-security-list {
    display: grid;
    gap: 10px;
}

.admin-security-list > div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fbfdff;
    border: 1px solid #e2edf8;
    border-radius: 8px;
}

.admin-security-list > div > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 7px;
}

.admin-security-list .admin-icon {
    width: 17px;
    height: 17px;
}

.admin-security-list strong {
    display: block;
    color: #10233f;
    font-size: 13px;
    font-weight: 900;
}

.admin-security-list p {
    margin: 4px 0 0;
    color: #7a8ca4;
    font-size: 11px;
    line-height: 1.45;
    font-weight: 700;
}

.admin-security-list .admin-switch {
    justify-self: end;
}

.admin-permission-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.admin-permission-list span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 11px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cee4ff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.admin-settings-note-card {
    background: #fffdf8;
    border-color: #ffe5b8;
}

.admin-settings-note {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.admin-settings-note span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #f08a12;
    background: #fff6e5;
    border: 1px solid #ffdca0;
    border-radius: 8px;
}

.admin-settings-note .admin-icon {
    width: 20px;
    height: 20px;
}

.admin-settings-note strong {
    color: #6b5a2e;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 850;
}

.admin-plans-content {
    gap: 16px;
}

.admin-plans-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 336px;
    gap: 14px;
    align-items: start;
}

.admin-plans-card,
.admin-plan-preview-card,
.admin-plan-note-card {
    padding: 20px;
}

.admin-plans-side {
    display: grid;
    gap: 14px;
}

.admin-plans-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-plans-head h2 {
    margin: 0;
    color: #10233f;
    font-size: 17px;
    font-weight: 950;
}

.admin-plans-head p {
    margin: 7px 0 0;
    color: #70839c;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
}

.admin-plans-head > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 34px;
    padding: 0 13px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cae2ff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.admin-plans-head > a .admin-icon {
    width: 15px;
    height: 15px;
}

.admin-plan-list {
    display: grid;
    gap: 12px;
}

.admin-plan-item {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) 150px;
    gap: 14px;
    align-items: stretch;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #dfeaf6;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(22, 119, 255, .05);
}

.admin-plan-item.is-featured {
    background: #f8fbff;
    border-color: #cbe1fb;
}

.admin-plan-badge {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    min-height: 124px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 8px;
}

.admin-plan-badge .admin-icon {
    width: 32px;
    height: 32px;
}

.admin-plan-badge span {
    color: #27527f;
    font-size: 13px;
    font-weight: 950;
}

.admin-plan-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.admin-plan-fields label {
    display: grid;
    gap: 7px;
}

.admin-plan-fields label:first-of-type {
    grid-column: span 2;
}

.admin-plan-fields span {
    color: #61758e;
    font-size: 12px;
    font-weight: 800;
}

.admin-plan-fields input,
.admin-plan-fields select {
    width: 100%;
    height: 36px;
    padding: 0 11px;
    color: #10233f;
    background: #ffffff;
    border: 1px solid #dbe7f4;
    border-radius: 7px;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    outline: none;
}

.admin-plan-fields input:focus,
.admin-plan-fields select:focus {
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, .11);
}

.admin-plan-summary {
    display: grid;
    align-content: center;
    gap: 10px;
    padding: 14px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dce9f7;
    border-radius: 8px;
}

.admin-plan-summary strong {
    color: #10233f;
    font-size: 25px;
    line-height: 1;
    font-weight: 950;
}

.admin-plan-summary small {
    margin-left: 4px;
    color: #6f8298;
    font-size: 11px;
    font-weight: 900;
}

.admin-plan-summary p {
    margin: 0;
    color: #61758e;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 760;
}

.admin-plan-summary em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 26px;
    padding: 0 10px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cee4ff;
    border-radius: 999px;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.admin-plan-actions-row {
    margin-top: 14px;
}

.admin-plan-preview-card .admin-card-head,
.admin-plan-note-card .admin-card-head {
    margin-bottom: 16px;
}

.admin-plan-preview {
    display: grid;
    gap: 12px;
    padding: 18px;
    text-align: left;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dce9f7;
    border-radius: 8px;
}

.admin-plan-preview > span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #1677ff;
    background: #eaf4ff;
    border: 1px solid #cbe3ff;
    border-radius: 8px;
}

.admin-plan-preview > span .admin-icon {
    width: 23px;
    height: 23px;
}

.admin-plan-preview strong {
    color: #10233f;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 950;
}

.admin-plan-preview p,
.admin-plan-note p {
    margin: 0;
    color: #61758e;
    font-size: 12px;
    line-height: 1.65;
    font-weight: 750;
}

.admin-plan-preview div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-plan-preview em {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 11px;
    color: #1677ff;
    background: #eef6ff;
    border: 1px solid #cee4ff;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.admin-plan-note {
    display: grid;
    gap: 10px;
    padding: 16px;
    background: #fffdf8;
    border: 1px solid #ffe5b8;
    border-radius: 8px;
}

.admin-empty-card {
    padding: 18px;
    color: #70839c;
    background: #f8fbff;
    border: 1px solid #dce9f7;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

/* 2026-06-19 homepage product layout */
.page-home main {
    background:
        radial-gradient(circle at 17% 12%, rgba(76, 147, 255, .14), transparent 32%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 47%, #f7fbff 100%);
}

.home-product-hero {
    padding: 76px 6vw 54px;
}

.home-product-inner {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(500px, 1fr);
    gap: 64px;
    align-items: center;
    width: min(1240px, 100%);
    margin: 0 auto;
}

.home-product-copy {
    display: grid;
    justify-items: start;
}

.home-product-kicker {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 15px;
    color: #1f63d8;
    background: #edf6ff;
    border: 1px solid #cfe2ff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.home-product-copy h1 {
    max-width: 560px;
    margin: 22px 0 0;
    color: #10233f;
    font-size: 58px;
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 950;
}

.home-product-subtitle {
    margin: 20px 0 0;
    color: #1f63d8;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
}

.home-product-lead {
    max-width: 570px;
    margin: 16px 0 0;
    color: #52677f;
    font-size: 17px;
    line-height: 1.9;
    font-weight: 650;
}

.home-product-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
}

.home-product-actions .button {
    min-width: 142px;
    height: 48px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
}

.home-product-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.home-product-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 34px;
    padding: 0 13px;
    color: #52677f;
    background: rgba(255, 255, 255, .76);
    border: 1px solid #dce8f7;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(38, 91, 155, .06);
    font-size: 13px;
    font-weight: 850;
}

.home-product-trust .download-icon {
    width: 16px;
    height: 16px;
    color: #2f73e6;
    stroke-width: 2.2;
}

.home-product-visual {
    position: relative;
    min-height: 470px;
}

.home-visual-card {
    position: relative;
    width: 560px;
    height: 430px;
    margin-left: auto;
    border: 1px solid #d8e7fb;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(239, 247, 255, .78)),
        radial-gradient(circle at 18% 15%, rgba(75, 146, 255, .18), transparent 35%);
    box-shadow: 0 28px 70px rgba(32, 83, 143, .15);
    overflow: hidden;
}

.home-visual-card::before {
    content: "";
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(174, 204, 245, .7);
    border-radius: 8px;
    background: rgba(255, 255, 255, .42);
}

.home-visual-brand {
    position: absolute;
    top: 38px;
    left: 38px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.home-visual-brand img {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(35, 106, 228, .22);
}

.home-visual-brand strong {
    display: block;
    color: #10233f;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 950;
}

.home-visual-brand span {
    display: block;
    margin-top: 6px;
    color: #73869c;
    font-size: 12px;
    font-weight: 850;
}

.home-client-window {
    position: absolute;
    right: 36px;
    bottom: 36px;
    z-index: 2;
    width: 405px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #d5e3f5;
    border-radius: 8px;
    box-shadow: 0 24px 56px rgba(30, 80, 145, .13);
}

.home-client-top {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 28px;
    color: #70849d;
    border-bottom: 1px solid #e7eef8;
    font-size: 12px;
    font-weight: 850;
}

.home-client-top span {
    width: 8px;
    height: 8px;
    background: #c9d7e9;
    border-radius: 50%;
}

.home-client-top b {
    margin-left: 8px;
}

.home-status-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    align-items: end;
    margin-top: 18px;
    padding: 16px;
    background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
    border: 1px solid #d7e8fb;
    border-radius: 8px;
}

.home-status-panel em {
    color: #5b7088;
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
}

.home-status-panel strong {
    grid-column: 1;
    color: #10233f;
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
}

.home-status-panel small {
    grid-column: 2;
    grid-row: 1 / span 2;
    color: #1f63d8;
    font-size: 12px;
    font-weight: 900;
}

.home-client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.home-client-grid div {
    padding: 12px 10px;
    background: #f8fbff;
    border: 1px solid #e0ebf8;
    border-radius: 8px;
}

.home-client-grid span {
    display: block;
    color: #71859b;
    font-size: 11px;
    font-weight: 850;
}

.home-client-grid strong {
    display: block;
    margin-top: 6px;
    color: #10233f;
    font-size: 15px;
    font-weight: 950;
}

.home-client-lines {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.home-client-lines p {
    display: grid;
    grid-template-columns: 16px 1fr 56px;
    gap: 10px;
    align-items: center;
    margin: 0;
}

.home-client-lines i {
    width: 16px;
    height: 16px;
    background: #e8f1ff;
    border: 4px solid #4b86ea;
    border-radius: 50%;
}

.home-client-lines span,
.home-client-lines b {
    height: 10px;
    background: #e7eef8;
    border-radius: 999px;
}

.home-client-lines b {
    background: #d6e5fa;
}

.home-floating-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 15px;
    color: #1f63d8;
    background: #ffffff;
    border: 1px solid #cfe1fb;
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(34, 89, 154, .12);
    font-size: 13px;
    font-weight: 950;
}

.home-floating-badge.is-version {
    top: 118px;
    right: 46px;
}

.home-floating-badge.is-member {
    left: 44px;
    bottom: 112px;
}

.home-floating-badge.is-device {
    right: 62px;
    bottom: 20px;
}

.home-capability-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 0 34px;
}

.home-capability-band article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 4px 16px;
    align-items: start;
    padding: 22px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #d9e8f8;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(34, 90, 154, .07);
}

.home-capability-band article > span {
    display: grid;
    place-items: center;
    grid-row: span 2;
    width: 54px;
    height: 54px;
    color: #2f73e6;
    background: #edf6ff;
    border: 1px solid #cfe2ff;
    border-radius: 8px;
}

.home-capability-band .download-icon {
    width: 26px;
    height: 26px;
    stroke-width: 2.2;
}

.home-capability-band h2 {
    margin: 0;
    color: #10233f;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 950;
}

.home-capability-band p {
    margin: 4px 0 0;
    color: #5d7189;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 650;
}

.home-member-strip {
    width: min(1240px, 100%);
    margin: 18px auto 0;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #dce8f7;
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(34, 90, 154, .08);
}

.home-member-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    align-items: end;
    margin-bottom: 18px;
}

.home-member-head span {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 13px;
    color: #1f63d8;
    background: #edf6ff;
    border: 1px solid #cfe2ff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.home-member-head h2 {
    margin: 0;
    color: #10233f;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 950;
}

.home-member-head p {
    margin: 0;
    color: #667b92;
    font-size: 14px;
    font-weight: 700;
}

.home-member-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.home-member-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    align-items: center;
    min-height: 126px;
    padding: 22px;
    color: inherit;
    text-decoration: none;
    background: #f8fbff;
    border: 1px solid #dce8f7;
    border-radius: 8px;
}

.home-member-item.is-featured {
    background: linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
    border-color: #75aaff;
    box-shadow: inset 0 0 0 1px rgba(47, 115, 230, .18);
}

.home-member-item span {
    color: #10233f;
    font-size: 22px;
    font-weight: 950;
}

.home-member-item strong {
    color: #2f64df;
    font-size: 34px;
    line-height: 1;
    font-weight: 950;
}

.home-member-item small {
    color: #52677f;
    font-size: 14px;
    font-weight: 900;
}

.home-member-item p {
    margin: 0;
    color: #4f6680;
    font-size: 14px;
    font-weight: 850;
}

.home-member-item b {
    color: #71859b;
    font-size: 13px;
    font-weight: 750;
}

.home-member-item em {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    color: #1f63d8;
    background: #ffffff;
    border: 1px solid #cfe2ff;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}

.home-safety-strip {
    display: grid;
    grid-template-columns: 42px auto 1fr;
    gap: 14px;
    align-items: center;
    width: min(1240px, 100%);
    margin: 24px auto 56px;
    padding: 18px 22px;
    background: #f8fbff;
    border: 1px solid #dce8f7;
    border-radius: 8px;
}

.home-safety-strip > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #2f73e6;
    background: #edf6ff;
    border: 1px solid #cfe2ff;
    border-radius: 8px;
}

.home-safety-strip .download-icon {
    width: 22px;
    height: 22px;
}

.home-safety-strip strong {
    color: #10233f;
    font-size: 16px;
    font-weight: 950;
}

.home-safety-strip p {
    margin: 0;
    color: #667b92;
    font-size: 14px;
    font-weight: 700;
    text-align: right;
}

/* 2026-06-19 homepage polish */
.home-product-hero {
    padding-top: 66px;
    padding-bottom: 42px;
}

.home-product-inner {
    grid-template-columns: minmax(0, .95fr) minmax(520px, 1fr);
    gap: 56px;
}

.home-product-copy h1 {
    max-width: 590px;
    margin-top: 20px;
    font-size: 54px;
    line-height: 1.12;
}

.home-product-copy h1 span {
    display: block;
}

.home-product-subtitle {
    margin-top: 18px;
    font-size: 24px;
}

.home-product-lead {
    max-width: 600px;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.85;
}

.home-product-actions {
    margin-top: 28px;
}

.home-product-trust {
    margin-top: 24px;
}

.home-product-visual {
    min-height: 448px;
}

.home-visual-card {
    width: 552px;
    height: 410px;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, .96), rgba(240, 247, 255, .88)),
        radial-gradient(circle at 15% 14%, rgba(53, 134, 255, .16), transparent 34%),
        radial-gradient(circle at 92% 22%, rgba(125, 182, 255, .18), transparent 32%);
    box-shadow: 0 26px 64px rgba(34, 86, 150, .13);
}

.home-visual-card::before {
    inset: 26px;
    background: rgba(255, 255, 255, .5);
}

.home-visual-card::after {
    content: "";
    position: absolute;
    right: -76px;
    bottom: -92px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(52, 128, 245, .16), transparent 68%);
}

.home-visual-brand {
    top: 34px;
    left: 34px;
}

.home-visual-brand img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
}

.home-client-window {
    right: 34px;
    bottom: 30px;
    width: 412px;
    padding: 17px;
    box-shadow: 0 22px 54px rgba(29, 79, 142, .12);
}

.home-status-panel {
    margin-top: 16px;
    padding: 15px;
}

.home-status-panel strong {
    font-size: 27px;
}

.home-client-grid {
    gap: 9px;
}

.home-client-grid div {
    padding: 11px 10px;
}

.home-client-meter {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 13px;
    padding: 12px;
    background: #fbfdff;
    border: 1px solid #e2edf8;
    border-radius: 8px;
}

.home-client-meter span {
    display: block;
    color: #71859b;
    font-size: 11px;
    font-weight: 850;
}

.home-client-meter strong {
    display: block;
    margin-top: 5px;
    color: #10233f;
    font-size: 14px;
    font-weight: 950;
}

.home-client-meter i {
    display: block;
    height: 9px;
    background: #e5eef9;
    border-radius: 999px;
    overflow: hidden;
}

.home-client-meter b {
    display: block;
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, #69a7ff, #2f64df);
    border-radius: inherit;
}

.home-client-lines {
    gap: 9px;
    margin-top: 13px;
}

.home-client-lines p {
    grid-template-columns: 14px 1fr 52px;
}

.home-client-lines i {
    width: 14px;
    height: 14px;
    border-width: 3px;
}

.home-floating-badge {
    height: 34px;
    padding: 0 14px;
    color: #225fcf;
    box-shadow: 0 14px 28px rgba(34, 89, 154, .1);
}

.home-floating-badge.is-version {
    top: 104px;
    right: 42px;
}

.home-floating-badge.is-member {
    left: 38px;
    bottom: 104px;
}

.home-floating-badge.is-device {
    right: 58px;
    bottom: 15px;
}

.home-capability-band {
    gap: 16px;
    padding-bottom: 26px;
}

.home-capability-band article {
    grid-template-columns: 50px 1fr;
    padding: 20px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 32px rgba(34, 90, 154, .055);
}

.home-capability-band article > span {
    width: 50px;
    height: 50px;
}

.home-capability-band h2 {
    font-size: 19px;
}

.home-capability-band p {
    font-size: 13px;
    line-height: 1.65;
}

.home-member-strip {
    margin-top: 10px;
    padding: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 16px 40px rgba(34, 90, 154, .065);
}

.home-member-head {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px 16px;
}

.home-member-head span {
    grid-row: span 2;
}

.home-member-head h2 {
    font-size: 26px;
}

.home-member-head a {
    grid-column: 3;
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 16px;
    color: #1f63d8;
    background: #ffffff;
    border: 1px solid #cfe2ff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.home-member-list {
    gap: 12px;
}

.home-member-item {
    min-height: 112px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(34, 90, 154, .045);
}

.home-member-item.is-featured {
    border-color: #6da5ff;
    box-shadow:
        inset 0 0 0 1px rgba(47, 115, 230, .16),
        0 14px 32px rgba(47, 115, 230, .09);
}

.home-member-item span {
    font-size: 20px;
}

.home-member-item strong {
    font-size: 31px;
}

.home-member-item p {
    font-size: 13px;
}

.home-member-item b {
    font-size: 12px;
}

.home-safety-strip {
    margin-top: 22px;
    margin-bottom: 48px;
    background: rgba(248, 251, 255, .92);
}

/* 2026-06-19 homepage detail polish, header untouched */
.home-product-visual {
    filter: none;
}

.home-visual-card {
    border-color: #cfe0f5;
    box-shadow: 0 30px 70px rgba(28, 80, 150, .12);
}

.home-visual-card::before {
    border-color: rgba(184, 210, 243, .86);
}

.home-visual-brand strong,
.home-client-window strong,
.home-client-window b,
.home-client-window em,
.home-client-window span,
.home-client-window small {
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.home-client-window {
    border-color: #c9ddf4;
}

.home-client-top {
    gap: 6px;
    color: #627993;
}

.home-client-top b {
    color: #10233f;
}

.home-client-top em {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 9px;
    color: #1f63d8;
    background: #eef6ff;
    border: 1px solid #d3e6ff;
    border-radius: 999px;
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.home-status-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    background:
        linear-gradient(135deg, #eef6ff 0%, #ffffff 68%),
        radial-gradient(circle at 100% 0, rgba(47, 115, 230, .12), transparent 46%);
}

.home-status-panel > div {
    display: grid;
    gap: 6px;
}

.home-status-panel strong {
    grid-column: auto;
}

.home-status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 11px;
    color: #1f63d8;
    background: #ffffff;
    border: 1px solid #cfe2ff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
}

.home-status-panel small {
    grid-column: 1 / -1;
    grid-row: auto;
    color: #60758c;
    font-size: 11px;
}

.home-client-grid div {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-color: #dae8f8;
}

.home-client-meter {
    background: #ffffff;
    border-color: #d9e7f7;
}

.home-client-meter i {
    box-shadow: inset 0 1px 2px rgba(23, 56, 98, .06);
}

.home-client-lines span,
.home-client-lines b {
    background: #dde9f7;
}

.home-client-lines p:nth-child(2) span {
    width: 82%;
}

.home-client-lines p:nth-child(3) span {
    width: 68%;
}

.home-floating-badge {
    border-color: #c9ddfb;
}

.home-capability-band article {
    position: relative;
    overflow: hidden;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.home-capability-band article::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -34px;
    width: 104px;
    height: 104px;
    background: radial-gradient(circle, rgba(72, 145, 255, .12), transparent 68%);
}

.home-capability-band article:hover {
    transform: translateY(-2px);
    border-color: #c6def8;
    box-shadow: 0 16px 38px rgba(34, 90, 154, .075);
}

.home-capability-band article > span {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #f1f7ff 0%, #e9f3ff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.home-capability-band article > span::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(102, 165, 255, .2);
    border-radius: 6px;
}

.home-capability-band article.is-download > span {
    color: #2f73e6;
}

.home-capability-band article.is-device > span {
    color: #2166d8;
}

.home-capability-band article.is-update > span {
    color: #3d7ce8;
}

.home-capability-band article h2,
.home-capability-band article p {
    position: relative;
    z-index: 1;
}

.home-capability-band .download-icon {
    position: relative;
    z-index: 2;
    stroke-width: 2.35;
}

.home-member-item:hover {
    border-color: #c8dff8;
    box-shadow: 0 14px 30px rgba(34, 90, 154, .065);
}

.home-member-head a:hover {
    border-color: #aacdff;
    box-shadow: 0 10px 22px rgba(47, 115, 230, .08);
}

/* Keep the homepage client preview contained inside the product card. */
.home-client-window {
    bottom: 28px;
    width: 398px;
    padding: 14px;
}

.home-client-top {
    height: 24px;
    font-size: 11px;
}

.home-client-top span {
    width: 7px;
    height: 7px;
}

.home-client-top em {
    height: 20px;
    padding: 0 8px;
    font-size: 10px;
}

.home-status-panel {
    margin-top: 12px;
    padding: 12px;
}

.home-status-panel strong {
    font-size: 24px;
}

.home-status-chip {
    height: 24px;
    padding: 0 9px;
    font-size: 11px;
}

.home-status-panel small {
    font-size: 10px;
}

.home-client-grid {
    margin-top: 10px;
}

.home-client-grid div {
    padding: 9px;
}

.home-client-grid span {
    font-size: 10px;
}

.home-client-grid strong {
    margin-top: 5px;
    font-size: 14px;
}

.home-client-meter {
    grid-template-columns: 104px 1fr;
    margin-top: 10px;
    padding: 10px;
}

.home-client-meter span {
    font-size: 10px;
}

.home-client-meter strong {
    margin-top: 4px;
    font-size: 13px;
}

.home-client-lines {
    gap: 8px;
    margin-top: 10px;
}

.home-client-lines p {
    grid-template-columns: 12px 1fr 48px;
}

.home-client-lines i {
    width: 12px;
    height: 12px;
}

.home-client-lines span,
.home-client-lines b {
    height: 8px;
}

/* 2026-06-19 reference homepage rebuild */
body {
    background:
        radial-gradient(circle at 22% 12%, rgba(98, 164, 255, .1), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 46%, #f8fbff 100%);
}

.site-header {
    position: sticky;
    top: 10px;
    z-index: 20;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) 210px;
    width: min(1320px, calc(100% - 120px));
    min-height: 62px;
    height: 62px;
    margin: 10px auto 0;
    padding: 0 16px 0 18px;
    color: #091736;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(196, 214, 238, .72);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(35, 85, 145, .08);
    backdrop-filter: blur(18px);
}

.brand {
    gap: 9px;
    min-width: 190px;
    font-size: 0;
}

.brand-logo {
    display: block;
    width: 42px;
    height: 42px;
}

.brand strong {
    color: #081633;
    font-size: 25px;
    line-height: 1;
    font-weight: 950;
}

.site-nav {
    justify-self: center;
    gap: 28px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.site-nav a {
    position: relative;
    min-height: 60px;
    padding: 0 3px;
    color: #0c1d3d;
    background: transparent;
    border-radius: 0;
    font-size: 15px;
    font-weight: 800;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #155fff;
    background: transparent;
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 0;
    height: 3px;
    background: #256bff;
    border-radius: 999px;
}

.site-nav a em {
    position: absolute;
    top: 6px;
    right: -28px;
    display: inline-flex;
    align-items: center;
    height: 19px;
    padding: 0 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff9c38, #ff6f2d);
    border-radius: 999px;
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.account-actions {
    min-width: 190px;
    justify-content: flex-end;
    gap: 12px;
}

.account-link,
.header-action {
    min-height: 38px;
    min-width: 70px;
    justify-content: center;
    padding: 0 18px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 850;
}

.account-link {
    color: #091736;
    background: #ffffff;
    border: 1px solid #c8d8ef;
}

.account-link:hover,
.account-link.is-active {
    color: #155fff;
    background: #f6faff;
}

.header-action {
    color: #ffffff;
    background: linear-gradient(135deg, #3a8cff, #205fea);
    box-shadow: 0 8px 18px rgba(37, 104, 239, .2);
}

.page-home main {
    background:
        radial-gradient(circle at 50% 20%, rgba(79, 148, 255, .1), transparent 34%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 54%, #f7fbff 100%);
}

.home-reference-hero {
    position: relative;
    width: min(1320px, calc(100% - 120px));
    margin: 0 auto;
    padding: 50px 40px 24px;
    min-height: 468px;
    overflow: hidden;
}

.home-reference-bg-lines {
    position: absolute;
    right: -40px;
    top: 110px;
    width: 560px;
    height: 290px;
    pointer-events: none;
    opacity: .72;
    background:
        linear-gradient(16deg, transparent 49%, rgba(56, 132, 255, .18) 50%, transparent 51%),
        linear-gradient(8deg, transparent 49%, rgba(113, 178, 255, .15) 50%, transparent 51%),
        linear-gradient(-4deg, transparent 49%, rgba(74, 146, 255, .14) 50%, transparent 51%),
        radial-gradient(circle at 100% 50%, rgba(73, 143, 255, .22), transparent 52%);
}

.home-reference-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 445px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.home-reference-copy {
    padding-top: 2px;
}

.home-reference-kicker {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 14px;
    color: #0d64ff;
    background: rgba(235, 245, 255, .96);
    border: 1px solid #bad7ff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

.home-reference-copy h1 {
    margin: 22px 0 0;
    color: #081633;
    font-size: 42px;
    line-height: 1.27;
    letter-spacing: 0;
    font-weight: 950;
}

.home-reference-subtitle {
    margin: 10px 0 0;
    color: #0c63ff;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 950;
}

.home-reference-lead {
    max-width: 430px;
    margin: 14px 0 0;
    color: #344866;
    font-size: 15px;
    line-height: 1.78;
    font-weight: 700;
}

.home-reference-actions {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.home-reference-actions .button {
    gap: 8px;
    min-width: 164px;
    height: 48px;
    min-height: 48px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 950;
}

.home-reference-actions .button.primary {
    background: linear-gradient(135deg, #2f83ff, #1f5eea);
    box-shadow: 0 14px 28px rgba(28, 97, 235, .18);
}

.home-reference-actions .button.secondary {
    color: #155fff;
    background: rgba(255, 255, 255, .78);
    border-color: #bcd2f4;
}

.home-reference-actions .download-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.4;
}

.home-reference-trust {
    display: flex;
    gap: 28px;
    margin-top: 22px;
    color: #344866;
    font-size: 14px;
    font-weight: 850;
}

.home-reference-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-reference-trust .download-icon {
    width: 18px;
    height: 18px;
    color: #1f63ee;
    fill: #1f63ee;
    stroke: #1f63ee;
}

.home-reference-stage {
    position: relative;
    height: 370px;
}

.home-logo-showcase {
    position: absolute;
    left: 60px;
    top: 72px;
    width: 310px;
    height: 258px;
}

.home-logo-cube {
    position: absolute;
    left: 42px;
    top: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 188px;
    height: 188px;
    padding: 23px 0 18px;
    background: linear-gradient(145deg, #ffffff 0%, #edf5ff 100%);
    border: 1px solid #d4e4fa;
    border-radius: 32px;
    box-shadow: 0 28px 60px rgba(38, 88, 153, .18);
    transform: rotate(-4deg);
}

.home-logo-cube img {
    width: 92px;
    height: 92px;
}

.home-logo-cube strong {
    margin-top: 6px;
    color: #091736;
    font-size: 29px;
    line-height: 1;
    font-weight: 950;
}

.home-logo-ring {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 310px;
    height: 84px;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center, rgba(255,255,255,.96) 0 42%, rgba(194, 220, 255, .75) 43% 58%, transparent 59%),
        linear-gradient(180deg, rgba(226, 240, 255, .95), rgba(127, 181, 255, .46));
    border: 1px solid rgba(174, 207, 250, .8);
    box-shadow: 0 24px 42px rgba(37, 105, 228, .2);
}

.home-logo-ring i,
.home-logo-ring b {
    position: absolute;
    left: 28px;
    right: 28px;
    border-radius: 50%;
}

.home-logo-ring i {
    top: 17px;
    height: 44px;
    border: 7px solid rgba(56, 132, 255, .35);
}

.home-logo-ring b {
    top: 37px;
    height: 19px;
    background: linear-gradient(90deg, rgba(55, 137, 255, .2), rgba(31, 94, 234, .72), rgba(55, 137, 255, .22));
}

.home-app-window {
    position: absolute;
    right: 6px;
    top: 8px;
    z-index: 2;
    width: 420px;
    height: 318px;
    padding: 10px;
    background: linear-gradient(145deg, rgba(244, 249, 255, .96), rgba(255, 255, 255, .9));
    border: 1px solid #c8dbf4;
    border-radius: 12px;
    box-shadow: 10px 12px 0 rgba(44, 111, 215, .15), 0 26px 52px rgba(35, 89, 160, .15);
    transform: perspective(900px) rotateY(-5deg) rotateX(1deg);
}

.home-app-titlebar {
    display: grid;
    grid-template-columns: 1fr 18px 18px;
    align-items: center;
    height: 30px;
    padding: 0 6px;
    color: #091736;
    font-size: 12px;
    font-weight: 950;
}

.home-app-titlebar span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-app-titlebar img {
    width: 17px;
    height: 17px;
}

.home-app-titlebar em {
    color: #0c1d3d;
    font-size: 17px;
    font-style: normal;
    text-align: center;
}

.home-app-body {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 10px;
    height: 258px;
}

.home-app-body aside {
    display: grid;
    align-content: start;
    gap: 7px;
    padding-top: 10px;
}

.home-app-body aside b {
    display: flex;
    align-items: center;
    height: 30px;
    padding-left: 12px;
    color: #49617e;
    background: transparent;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
}

.home-app-body aside b.is-active {
    color: #145eff;
    background: #e8f2ff;
}

.home-app-body section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 108px;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #d8e6f8;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(35, 89, 160, .06);
}

.home-app-body h3 {
    grid-column: 1 / -1;
    margin: 0;
    color: #091736;
    font-size: 13px;
    font-weight: 950;
}

.home-dns-status {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 10px;
    grid-row: span 3;
    min-height: 118px;
    padding: 14px;
    border: 1px solid #d6e5f8;
    border-radius: 8px;
}

.home-dns-status > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    background: #34bf73;
    border-radius: 10px;
}

.home-dns-status .download-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2.3;
}

.home-dns-status small,
.home-app-mini-cards small {
    color: #52677f;
    font-size: 11px;
    font-weight: 850;
}

.home-dns-status strong {
    display: block;
    margin-top: 2px;
    color: #19a85f;
    font-size: 22px;
    font-style: italic;
    line-height: 1;
    font-weight: 950;
}

.home-dns-status p {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    color: #52677f;
    font-size: 12px;
    text-align: center;
    font-weight: 800;
}

.home-app-mini-cards {
    display: grid;
    gap: 7px;
}

.home-app-mini-cards div {
    height: 52px;
    padding: 8px 10px;
    background: #fbfdff;
    border: 1px solid #d8e6f8;
    border-radius: 7px;
}

.home-app-mini-cards strong {
    display: block;
    color: #091736;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 950;
}

.home-app-body button {
    grid-column: 1 / -1;
    height: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, #2f83ff, #1f5eea);
    border: 0;
    border-radius: 6px;
    font: inherit;
    font-size: 13px;
    font-weight: 950;
}

.home-app-time {
    grid-column: 1 / -1;
    margin: 0;
    color: #6b7f99;
    font-size: 11px;
    font-weight: 800;
}

.home-reference-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(1320px, calc(100% - 120px));
    margin: 0 auto 10px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #cfe0f5;
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(35, 89, 160, .07);
    overflow: hidden;
}

.home-reference-features article {
    position: relative;
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 10px 18px;
    min-height: 104px;
    padding: 20px 28px;
}

.home-reference-features article + article {
    border-left: 1px solid #d9e6f6;
}

.home-reference-features article > span {
    display: grid;
    place-items: center;
    grid-row: span 2;
    width: 62px;
    height: 62px;
    color: #2068ee;
    background: radial-gradient(circle at 30% 20%, #ffffff, #eaf4ff);
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(42, 112, 235, .12);
}

.home-reference-features .download-icon {
    width: 34px;
    height: 34px;
    stroke-width: 2.15;
}

.home-reference-features h2 {
    margin: 0;
    color: #183357;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 950;
}

.home-reference-features p {
    margin: 2px 0 0;
    color: #4f6680;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 700;
}

.home-reference-plans {
    display: grid;
    grid-template-columns: 245px 1fr;
    gap: 26px;
    align-items: center;
    width: min(1320px, calc(100% - 120px));
    margin: 0 auto 8px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #cfe0f5;
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(35, 89, 160, .07);
}

.home-reference-plan-title h2 {
    margin: 0;
    color: #091736;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 950;
}

.home-reference-plan-title p {
    margin: 9px 0 0;
    color: #52677f;
    font-size: 14px;
    font-weight: 800;
}

.home-reference-plan-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-reference-plan-card {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: center;
    min-height: 126px;
    padding: 18px 20px;
    color: #091736;
    background: rgba(255, 255, 255, .88);
    border: 1px solid #bfd5f3;
    border-radius: 8px;
}

.home-reference-plan-card.is-featured {
    color: #ffffff;
    background: linear-gradient(135deg, #2e86ff, #1f5eea);
    border-color: #1f66ef;
    box-shadow: 0 18px 34px rgba(32, 101, 237, .26);
}

.home-reference-plan-card h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    order: 1;
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 950;
}

.home-reference-plan-card h3 .download-icon {
    width: 22px;
    height: 22px;
    color: #2f72f0;
    fill: #2f72f0;
    stroke-width: 2.15;
}

.home-reference-plan-card.is-featured h3 .download-icon {
    color: #ffd465;
    fill: #ffd465;
    stroke: #ffd465;
}

.home-reference-plan-card p {
    order: 2;
    margin: 6px 0 0;
    color: #52677f;
    font-size: 14px;
    font-weight: 850;
}

.home-reference-plan-card.is-featured p {
    color: rgba(255, 255, 255, .88);
}

.home-reference-plan-card strong {
    order: 3;
    margin-top: 7px;
    color: #2364df;
    font-size: 38px;
    line-height: 1;
    font-weight: 950;
}

.home-reference-plan-card.is-featured strong {
    color: #ffffff;
}

.home-reference-plan-card small {
    color: #3b4f6b;
    font-size: 12px;
    font-weight: 900;
}

.home-reference-plan-card.is-featured small {
    color: rgba(255, 255, 255, .95);
}

.home-reference-plan-card em {
    position: absolute;
    right: -1px;
    top: -1px;
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 17px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff9c38, #ff6f2d);
    border-radius: 0 8px 0 8px;
    font-size: 13px;
    font-style: normal;
    font-weight: 950;
}

.home-reference-safe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: min(1320px, calc(100% - 120px));
    height: 42px;
    margin: 0 auto 10px;
    color: #455e7d;
    background: rgba(248, 251, 255, .9);
    border: 1px solid #cfe0f5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 850;
}

.home-reference-safe > span {
    display: grid;
    place-items: center;
    color: #2364df;
}

.home-reference-safe .download-icon {
    width: 25px;
    height: 25px;
    stroke-width: 2.2;
}

.site-footer {
    padding: 0;
    color: #183357;
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid #cfe0f5;
}

.footer-main {
    grid-template-columns: 1fr 1.12fr 1fr;
    gap: 64px;
    width: min(1320px, calc(100% - 120px));
    padding: 16px 18px 12px;
}

.footer-brand {
    gap: 10px;
}

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

.footer-brand strong {
    color: #091736;
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
}

.footer-brand-block {
    gap: 8px;
}

.footer-brand-block p {
    max-width: 270px;
    color: #52677f;
    font-size: 13px;
    line-height: 1.55;
}

.footer-safe-note {
    display: flex;
    gap: 10px;
}

.footer-safe-note a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #536c8a;
    background: #f0f5fb;
    border-radius: 50%;
}

.footer-safe-note .payment-icon {
    width: 17px;
    height: 17px;
    color: currentColor;
}

.footer-nav-grid {
    gap: 9px;
}

.footer-nav-grid h2,
.footer-contact-block h2 {
    font-size: 15px;
}

.footer-nav-grid div {
    gap: 8px 42px;
}

.footer-nav-grid a,
.footer-contact-block a,
.footer-contact-block > span {
    color: #52677f;
    font-size: 13px;
    font-weight: 760;
}

.footer-contact-block {
    gap: 8px;
}

.footer-contact-block .payment-icon {
    width: 16px;
    height: 16px;
    color: #2364df;
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: min(1320px, calc(100% - 120px));
    height: 42px;
    margin: 0 auto;
    align-items: center;
    border-top: 1px solid #dce8f7;
    color: #52677f;
    font-size: 12px;
    text-align: center;
}

.footer-bottom small,
.footer-bottom strong,
.footer-bottom span {
    color: #52677f;
    font-size: 12px;
    font-weight: 650;
}

/* Revert reference homepage experiment */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 240px;
    gap: 24px;
    width: auto;
    height: auto;
    min-height: 76px;
    margin: 0;
    padding: 0 max(72px, 6vw);
    background: rgba(255, 255, 255, .98);
    border: 0;
    border-bottom: 1px solid rgba(228, 231, 236, .86);
    border-radius: 0;
    box-shadow: 0 14px 36px rgba(16, 24, 40, .045);
}

.brand {
    justify-self: start;
    gap: 11px;
    min-width: 0;
    color: #101828;
    font-size: 20px;
    font-weight: 900;
}

.brand-logo {
    display: block;
    width: 188px;
    height: auto;
}

.brand strong {
    display: none;
}

.site-nav {
    justify-self: center;
    gap: 2px;
    padding: 6px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(228, 231, 236, .95);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .07);
}

.site-nav a {
    position: relative;
    gap: 6px;
    min-height: 42px;
    padding: 0 15px;
    color: #344054;
    background: transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #1677ff;
    background: #f1f7ff;
    box-shadow: none;
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2px;
    background: linear-gradient(90deg, #5aa7ff, #1677ff);
    border-radius: 999px;
}

.site-nav a em {
    position: static;
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 6px;
    color: #ffffff;
    background: linear-gradient(135deg, #4da3ff, #1677ff);
    border-radius: 999px;
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.account-actions {
    min-width: 0;
    justify-content: flex-end;
    gap: 8px;
}

.account-link,
.header-action {
    min-height: 40px;
    min-width: 0;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 15px;
}

.account-link {
    color: #334155;
    background: transparent;
    border: 0;
}

.header-action {
    color: #ffffff;
    background: #1677ff;
    box-shadow: none;
}

.site-footer {
    padding: 0 6vw;
    color: #10233f;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f8fbff 100%);
    border-top: 1px solid rgba(22, 119, 255, .14);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .95fr) minmax(0, 1.08fr);
    gap: 54px;
    width: min(1210px, 100%);
    margin: 0 auto;
    padding: 38px 0 32px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.footer-brand img {
    display: block;
    width: 142px;
    height: auto;
}

.footer-brand strong {
    display: none;
}

.footer-brand-block {
    display: grid;
    gap: 14px;
    align-content: start;
}

.footer-brand-block p {
    max-width: 382px;
    margin: 0;
    color: #526b86;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.7;
}

.footer-safe-note {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 420px;
    color: #64748b;
}

.footer-safe-note a {
    display: inline-flex;
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
}

.footer-safe-note .payment-icon,
.footer-contact-block .payment-icon {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    color: #64748b;
    stroke-width: 1.9;
}

.footer-safe-note strong {
    display: inline;
    color: #64748b;
    font-size: 13px;
    font-weight: 780;
    line-height: 1.55;
}

.footer-nav-grid {
    display: grid;
    align-content: start;
    gap: 16px;
}

.footer-nav-grid div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 28px;
}

.footer-contact-block {
    display: grid;
    align-content: start;
    gap: 13px;
}

.footer-nav-grid a,
.footer-contact-block a,
.footer-contact-block > span {
    color: #526b86;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1210px, 100%);
    height: auto;
    margin: 0 auto;
    padding: 18px 0 20px;
    border-top: 1px solid rgba(22, 119, 255, .12);
    text-align: left;
}

/* 2026-06-19 final homepage UI from approved PNG */
.page-home {
    background:
        radial-gradient(circle at 50% 22%, rgba(71, 145, 255, .12), transparent 32%),
        linear-gradient(180deg, #f6fbff 0%, #ffffff 47%, #f7fbff 100%);
}

.page-home .site-header {
    position: sticky;
    top: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 210px;
    gap: 20px;
    align-items: center;
    width: min(1320px, calc(100% - 120px));
    min-height: 64px;
    margin: 10px auto 0;
    padding: 0 16px 0 18px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(199, 217, 242, .86);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(35, 85, 145, .09);
    backdrop-filter: blur(18px);
}

.page-home .brand {
    gap: 0;
}

.page-home .brand-logo {
    width: 148px;
    height: auto;
}

.page-home .site-nav {
    justify-self: center;
    gap: 30px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.page-home .site-nav a {
    position: relative;
    min-height: 62px;
    padding: 0 2px;
    color: #0a1b39;
    background: transparent;
    border-radius: 0;
    font-size: 15px;
    font-weight: 850;
}

.page-home .site-nav a:hover,
.page-home .site-nav a.is-active {
    color: #1263ff;
    background: transparent;
}

.page-home .site-nav a.is-active::after {
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #226cff;
}

.page-home .site-nav a em {
    position: absolute;
    top: 7px;
    right: -30px;
    height: 19px;
    padding: 0 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff9b38, #ff6d2d);
    border-radius: 999px;
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.page-home .account-actions {
    justify-content: flex-end;
    gap: 12px;
}

.page-home .account-link,
.page-home .header-action {
    justify-content: center;
    min-width: 70px;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 850;
}

.page-home .account-link {
    color: #091736;
    background: #ffffff;
    border: 1px solid #c8d8ef;
}

.page-home .header-action {
    color: #ffffff;
    background: linear-gradient(135deg, #3a8cff, #205fea);
    box-shadow: 0 9px 20px rgba(37, 104, 239, .22);
}

.page-home main {
    background:
        radial-gradient(circle at 48% 23%, rgba(84, 154, 255, .12), transparent 34%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 52%, #f8fbff 100%);
}

.home-final-hero {
    position: relative;
    width: min(1320px, calc(100% - 120px));
    min-height: 452px;
    margin: 0 auto;
    padding: 48px 40px 18px;
    overflow: hidden;
}

.home-final-light {
    position: absolute;
    right: -80px;
    top: 105px;
    width: 620px;
    height: 300px;
    opacity: .75;
    pointer-events: none;
    background:
        linear-gradient(15deg, transparent 48%, rgba(65, 139, 255, .16) 49%, transparent 51%),
        linear-gradient(7deg, transparent 48%, rgba(116, 181, 255, .18) 49%, transparent 51%),
        linear-gradient(-5deg, transparent 48%, rgba(71, 151, 255, .12) 49%, transparent 51%),
        radial-gradient(circle at 98% 52%, rgba(70, 145, 255, .22), transparent 56%);
}

.home-final-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 450px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.home-final-copy {
    padding-top: 10px;
}

.home-final-kicker {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 14px;
    color: #0d64ff;
    background: rgba(236, 246, 255, .95);
    border: 1px solid #bdd8ff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
}

.home-final-copy h1 {
    margin: 22px 0 0;
    color: #071634;
    font-size: 42px;
    line-height: 1.28;
    letter-spacing: 0;
    font-weight: 950;
}

.home-final-subtitle {
    margin: 10px 0 0;
    color: #0d64ff;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 950;
}

.home-final-lead {
    max-width: 430px;
    margin: 13px 0 0;
    color: #344866;
    font-size: 15px;
    line-height: 1.78;
    font-weight: 700;
}

.home-final-actions {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.home-final-actions .button {
    gap: 8px;
    min-width: 164px;
    height: 48px;
    min-height: 48px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 950;
}

.home-final-actions .button.primary {
    background: linear-gradient(135deg, #2f83ff, #1f5eea);
    box-shadow: 0 14px 28px rgba(28, 97, 235, .18);
}

.home-final-actions .button.secondary {
    color: #155fff;
    background: rgba(255, 255, 255, .8);
    border-color: #bcd2f4;
}

.home-final-actions .download-icon,
.home-final-trust .download-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2.4;
}

.home-final-trust {
    display: flex;
    gap: 28px;
    margin-top: 22px;
    color: #344866;
    font-size: 14px;
    font-weight: 850;
}

.home-final-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-final-trust .download-icon {
    color: #1f63ee;
    fill: #1f63ee;
    stroke: #1f63ee;
}

.home-final-visual {
    position: relative;
    height: 360px;
}

.home-final-platform {
    position: absolute;
    left: 48px;
    top: 76px;
    width: 320px;
    height: 250px;
}

.home-final-cube {
    position: absolute;
    left: 48px;
    top: 0;
    z-index: 3;
    display: grid;
    justify-items: center;
    align-content: center;
    width: 182px;
    height: 182px;
    padding: 18px 0;
    background: linear-gradient(145deg, #ffffff 0%, #eef6ff 100%);
    border: 1px solid #d5e4f8;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(38, 88, 153, .18);
    transform: rotate(-4deg);
}

.home-final-cube img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.home-final-cube strong {
    margin-top: 7px;
    color: #081633;
    font-size: 28px;
    line-height: 1;
    font-weight: 950;
}

.home-final-ring {
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 320px;
    height: 82px;
    border: 1px solid rgba(174, 207, 250, .82);
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center, rgba(255,255,255,.96) 0 42%, rgba(194, 220, 255, .76) 43% 58%, transparent 59%),
        linear-gradient(180deg, rgba(226, 240, 255, .95), rgba(127, 181, 255, .48));
    box-shadow: 0 24px 42px rgba(37, 105, 228, .2);
}

.home-final-ring i,
.home-final-ring b {
    position: absolute;
    left: 30px;
    right: 30px;
    border-radius: 50%;
}

.home-final-ring i {
    top: 16px;
    height: 44px;
    border: 7px solid rgba(56, 132, 255, .33);
}

.home-final-ring b {
    top: 37px;
    height: 19px;
    background: linear-gradient(90deg, rgba(55, 137, 255, .2), rgba(31, 94, 234, .72), rgba(55, 137, 255, .22));
}

.home-final-app {
    position: absolute;
    right: 4px;
    top: 2px;
    z-index: 2;
    width: 420px;
    height: 318px;
    padding: 10px;
    background: linear-gradient(145deg, rgba(244, 249, 255, .97), rgba(255, 255, 255, .92));
    border: 1px solid #c8dbf4;
    border-radius: 12px;
    box-shadow: 10px 12px 0 rgba(44, 111, 215, .15), 0 26px 52px rgba(35, 89, 160, .15);
    transform: perspective(900px) rotateY(-5deg) rotateX(1deg);
}

.home-final-titlebar {
    display: grid;
    grid-template-columns: 1fr 18px 18px;
    align-items: center;
    height: 30px;
    padding: 0 6px;
    color: #091736;
    font-size: 12px;
    font-weight: 950;
}

.home-final-titlebar span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-final-titlebar img {
    width: 17px;
    height: 17px;
}

.home-final-titlebar em {
    color: #0c1d3d;
    font-size: 17px;
    font-style: normal;
    text-align: center;
}

.home-final-app-body {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 10px;
    height: 258px;
}

.home-final-app-body aside {
    display: grid;
    align-content: start;
    gap: 7px;
    padding-top: 10px;
}

.home-final-app-body aside span {
    display: flex;
    align-items: center;
    height: 30px;
    padding-left: 12px;
    color: #49617e;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 850;
}

.home-final-app-body aside span.is-active {
    color: #145eff;
    background: #e8f2ff;
}

.home-final-app-body section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 108px;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, .93);
    border: 1px solid #d8e6f8;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(35, 89, 160, .06);
}

.home-final-app-body h2 {
    grid-column: 1 / -1;
    margin: 0;
    color: #091736;
    font-size: 13px;
    font-weight: 950;
}

.home-final-status {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 10px;
    grid-row: span 3;
    min-height: 118px;
    padding: 14px;
    border: 1px solid #d6e5f8;
    border-radius: 8px;
}

.home-final-status > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    background: #34bf73;
    border-radius: 10px;
}

.home-final-status .download-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2.3;
}

.home-final-status small,
.home-final-mini small {
    color: #52677f;
    font-size: 11px;
    font-weight: 850;
}

.home-final-status strong {
    display: block;
    margin-top: 2px;
    color: #19a85f;
    font-size: 22px;
    font-style: italic;
    line-height: 1;
    font-weight: 950;
}

.home-final-status p {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    color: #52677f;
    font-size: 12px;
    text-align: center;
    font-weight: 800;
}

.home-final-mini {
    display: grid;
    gap: 7px;
}

.home-final-mini div {
    height: 52px;
    padding: 8px 10px;
    background: #fbfdff;
    border: 1px solid #d8e6f8;
    border-radius: 7px;
}

.home-final-mini strong {
    display: block;
    color: #091736;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 950;
}

.home-final-app-body section > a {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, #2f83ff, #1f5eea);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 950;
}

.home-final-time {
    grid-column: 1 / -1;
    margin: 0;
    color: #6b7f99;
    font-size: 11px;
    font-weight: 800;
}

.home-final-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(1320px, calc(100% - 120px));
    margin: 0 auto 10px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #cfe0f5;
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(35, 89, 160, .07);
    overflow: hidden;
}

.home-final-features article {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 10px 18px;
    min-height: 104px;
    padding: 20px 28px;
}

.home-final-features article + article {
    border-left: 1px solid #d9e6f6;
}

.home-final-features article > span {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    color: #2068ee;
    background: radial-gradient(circle at 30% 20%, #ffffff, #eaf4ff);
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(42, 112, 235, .12);
}

.home-final-features .download-icon {
    width: 34px;
    height: 34px;
    stroke-width: 2.15;
}

.home-final-features h2 {
    margin: 0;
    color: #183357;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 950;
}

.home-final-features p {
    margin: 5px 0 0;
    color: #4f6680;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 700;
}

.home-final-plans {
    display: grid;
    grid-template-columns: 245px 1fr;
    gap: 26px;
    align-items: center;
    width: min(1320px, calc(100% - 120px));
    margin: 0 auto 8px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, .93);
    border: 1px solid #cfe0f5;
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(35, 89, 160, .07);
}

.home-final-plan-title h2 {
    margin: 0;
    color: #091736;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 950;
}

.home-final-plan-title p {
    margin: 9px 0 0;
    color: #52677f;
    font-size: 14px;
    font-weight: 800;
}

.home-final-plan-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-final-plan-card {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: center;
    min-height: 126px;
    padding: 18px 20px;
    color: #091736;
    background: rgba(255, 255, 255, .88);
    border: 1px solid #bfd5f3;
    border-radius: 8px;
}

.home-final-plan-card.is-featured {
    color: #ffffff;
    background: linear-gradient(135deg, #2e86ff, #1f5eea);
    border-color: #1f66ef;
    box-shadow: 0 18px 34px rgba(32, 101, 237, .26);
}

.home-final-plan-card h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 950;
}

.home-final-plan-card h3 .download-icon {
    width: 22px;
    height: 22px;
    color: #2f72f0;
    fill: #2f72f0;
    stroke-width: 2.15;
}

.home-final-plan-card.is-featured h3 .download-icon {
    color: #ffd465;
    fill: #ffd465;
    stroke: #ffd465;
}

.home-final-plan-card p {
    margin: 6px 0 0;
    color: #52677f;
    font-size: 14px;
    font-weight: 850;
}

.home-final-plan-card.is-featured p {
    color: rgba(255, 255, 255, .88);
}

.home-final-plan-card strong {
    margin-top: 7px;
    color: #2364df;
    font-size: 38px;
    line-height: 1;
    font-weight: 950;
}

.home-final-plan-card.is-featured strong {
    color: #ffffff;
}

.home-final-plan-card small {
    color: #3b4f6b;
    font-size: 12px;
    font-weight: 900;
}

.home-final-plan-card.is-featured small {
    color: rgba(255, 255, 255, .95);
}

.home-final-plan-card em {
    position: absolute;
    right: -1px;
    top: -1px;
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 17px;
    color: #ffffff;
    background: linear-gradient(135deg, #ff9c38, #ff6f2d);
    border-radius: 0 8px 0 8px;
    font-size: 13px;
    font-style: normal;
    font-weight: 950;
}

.home-final-safe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: min(1320px, calc(100% - 120px));
    height: 42px;
    margin: 0 auto 10px;
    color: #455e7d;
    background: rgba(248, 251, 255, .92);
    border: 1px solid #cfe0f5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 850;
}

.home-final-safe > span {
    display: grid;
    place-items: center;
    color: #2364df;
}

.home-final-safe .download-icon {
    width: 25px;
    height: 25px;
    stroke-width: 2.2;
}

.page-home .site-footer {
    padding: 0;
    color: #183357;
    background: rgba(255, 255, 255, .94);
    border-top: 1px solid #cfe0f5;
}

.page-home .footer-main {
    grid-template-columns: 1fr 1.12fr 1fr;
    gap: 64px;
    width: min(1320px, calc(100% - 120px));
    padding: 16px 18px 12px;
}

.page-home .footer-brand img {
    width: 142px;
}

.page-home .footer-brand-block {
    gap: 8px;
}

.page-home .footer-brand-block p {
    max-width: 310px;
    font-size: 13px;
    line-height: 1.55;
}

.page-home .footer-nav-grid {
    gap: 9px;
}

.page-home .footer-contact-block {
    gap: 8px;
}

.page-home .footer-bottom {
    display: flex;
    justify-content: space-between;
    width: min(1320px, calc(100% - 120px));
    padding: 14px 18px 16px;
}

/* 2026-06-19 final homepage detail pass */
.home-final-hero {
    min-height: 432px;
    padding-top: 42px;
    padding-bottom: 10px;
}

.home-final-inner {
    grid-template-columns: 438px minmax(0, 1fr);
    gap: 38px;
}

.home-final-copy {
    padding-top: 2px;
}

.home-final-kicker {
    height: 28px;
    padding: 0 13px;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(36, 113, 238, .06);
}

.home-final-copy h1 {
    margin-top: 20px;
    font-size: 40px;
    line-height: 1.25;
}

.home-final-subtitle {
    margin-top: 9px;
    font-size: 21px;
}

.home-final-lead {
    max-width: 410px;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.75;
}

.home-final-actions {
    margin-top: 18px;
}

.home-final-actions .button {
    min-width: 150px;
    height: 46px;
    min-height: 46px;
}

.home-final-trust {
    margin-top: 20px;
    gap: 24px;
    font-size: 13px;
}

.home-final-light {
    top: 92px;
    right: -58px;
    opacity: .86;
}

.home-final-visual {
    height: 342px;
}

.home-final-platform {
    left: 54px;
    top: 62px;
    width: 330px;
    height: 252px;
}

.home-final-cube {
    left: 54px;
    top: 0;
    width: 178px;
    height: 178px;
    border-color: #cfe0f5;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(235, 244, 255, .92)),
        radial-gradient(circle at 20% 16%, rgba(91, 168, 255, .18), transparent 42%);
    box-shadow:
        0 34px 64px rgba(35, 91, 166, .18),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    transform: rotate(-4deg) translateZ(0);
}

.home-final-cube::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(187, 213, 247, .78);
    border-radius: 24px;
    pointer-events: none;
}

.home-final-cube::after {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: -24px;
    height: 26px;
    background: radial-gradient(ellipse, rgba(35, 91, 166, .18), transparent 68%);
    filter: blur(3px);
}

.home-final-cube img {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 78px;
    filter: drop-shadow(0 10px 16px rgba(30, 94, 216, .18));
}

.home-final-cube strong {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    font-size: 27px;
}

.home-final-ring {
    bottom: 0;
    height: 78px;
    background:
        radial-gradient(ellipse at center, rgba(255,255,255,.98) 0 38%, rgba(203, 226, 255, .9) 39% 56%, transparent 57%),
        linear-gradient(180deg, rgba(235, 246, 255, .96), rgba(108, 170, 255, .44));
    box-shadow:
        0 24px 42px rgba(37, 105, 228, .19),
        inset 0 2px 0 rgba(255, 255, 255, .86);
}

.home-final-ring i {
    top: 15px;
    border-color: rgba(55, 132, 255, .4);
}

.home-final-ring b {
    top: 35px;
    background: linear-gradient(90deg, rgba(55, 137, 255, .14), rgba(31, 94, 234, .82), rgba(55, 137, 255, .16));
    box-shadow: 0 0 18px rgba(31, 94, 234, .24);
}

.home-final-app {
    top: 0;
    right: 6px;
    width: 430px;
    height: 314px;
    border-color: #bfd5f2;
    background:
        linear-gradient(145deg, rgba(245, 250, 255, .98), rgba(255, 255, 255, .94)),
        radial-gradient(circle at 18% 0, rgba(89, 160, 255, .1), transparent 38%);
    box-shadow:
        9px 12px 0 rgba(44, 111, 215, .14),
        0 28px 56px rgba(35, 89, 160, .16);
}

.home-final-titlebar {
    height: 29px;
}

.home-final-app-body {
    height: 254px;
}

.home-final-app-body aside span {
    height: 29px;
}

.home-final-app-body section {
    padding: 13px;
    border-color: #d2e2f6;
}

.home-final-status {
    min-height: 112px;
    padding: 13px;
    border-color: #d2e2f6;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.home-final-status > span {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #44c87a, #28ad62);
    box-shadow: 0 10px 18px rgba(40, 173, 98, .18);
}

.home-final-status strong {
    font-size: 21px;
}

.home-final-mini div {
    height: 50px;
    border-color: #d6e5f8;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.home-final-app-body section > a {
    height: 33px;
    box-shadow: 0 10px 18px rgba(37, 104, 239, .16);
}

.home-final-features {
    margin-bottom: 8px;
}

.home-final-features article {
    min-height: 98px;
    padding: 18px 28px;
}

.home-final-features article > span {
    width: 58px;
    height: 58px;
}

.home-final-features .download-icon {
    width: 31px;
    height: 31px;
}

.home-final-features h2 {
    font-size: 21px;
}

.home-final-features p {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.58;
}

.home-final-plans {
    min-height: 152px;
    margin-bottom: 7px;
    padding: 10px 30px;
}

.home-final-plan-title h2 {
    font-size: 25px;
}

.home-final-plan-title p {
    font-size: 13px;
}

.home-final-plan-card {
    min-height: 116px;
    padding: 16px 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
}

.home-final-plan-card h3 {
    font-size: 19px;
}

.home-final-plan-card p {
    margin-top: 5px;
    font-size: 13px;
}

.home-final-plan-card strong {
    margin-top: 6px;
    font-size: 36px;
}

.home-final-plan-card small {
    font-size: 11px;
}

.home-final-plan-card.is-featured {
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .18), transparent 36%),
        linear-gradient(135deg, #3188ff 0%, #1f5fea 100%);
    box-shadow:
        0 20px 38px rgba(32, 101, 237, .26),
        inset 0 1px 0 rgba(255, 255, 255, .2);
}

.home-final-plan-card em {
    height: 28px;
    padding: 0 15px;
    font-size: 12px;
}

.home-final-safe {
    height: 40px;
    margin-bottom: 8px;
    font-size: 13px;
}

.page-home .footer-main {
    padding-top: 14px;
    padding-bottom: 10px;
}

.page-home .footer-bottom {
    padding-top: 12px;
    padding-bottom: 14px;
}

/* Home must use the shared public header navigation. */
.page-home .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 240px;
    gap: 24px;
    width: auto;
    height: auto;
    min-height: 76px;
    margin: 0;
    padding: 0 max(72px, 6vw);
    background: rgba(255, 255, 255, .98);
    border: 0;
    border-bottom: 1px solid rgba(228, 231, 236, .86);
    border-radius: 0;
    box-shadow: 0 14px 36px rgba(16, 24, 40, .045);
    backdrop-filter: blur(18px);
}

.page-home .brand {
    justify-self: start;
    gap: 11px;
    min-width: 0;
    color: #101828;
    font-size: 20px;
    font-weight: 900;
}

.page-home .brand-logo {
    display: block;
    width: 188px;
    height: auto;
}

.page-home .site-nav {
    justify-self: center;
    gap: 2px;
    padding: 6px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(228, 231, 236, .95);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .07);
}

.page-home .site-nav a {
    position: relative;
    gap: 6px;
    min-height: 42px;
    padding: 0 15px;
    color: #344054;
    background: transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
}

.page-home .site-nav a:hover,
.page-home .site-nav a.is-active {
    color: #1677ff;
    background: #f1f7ff;
    box-shadow: none;
}

.page-home .site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 2px;
    background: linear-gradient(90deg, #5aa7ff, #1677ff);
    border-radius: 999px;
}

.page-home .site-nav a em {
    position: static;
    display: inline-flex;
    align-items: center;
    height: 18px;
    padding: 0 6px;
    color: #ffffff;
    background: linear-gradient(135deg, #4da3ff, #1677ff);
    border-radius: 999px;
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
}

.page-home .account-actions {
    min-width: 0;
    justify-content: flex-end;
    gap: 8px;
}

.page-home .account-link,
.page-home .header-action {
    min-height: 40px;
    min-width: 0;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 15px;
}

.page-home .account-link {
    color: #334155;
    background: transparent;
    border: 0;
}

.page-home .account-link:hover,
.page-home .account-link.is-active {
    color: #1677ff;
    background: #f1f7ff;
}

.page-home .header-action {
    color: #ffffff;
    background: #1677ff;
    box-shadow: none;
}

/* Homepage logo-blue palette. */
.page-home {
    --dns-logo-blue-light: #87d1ff;
    --dns-logo-blue: #4aa4ff;
    --dns-logo-blue-deep: #286bea;
    --dns-logo-blue-soft: #eef8ff;
    --dns-logo-blue-line: #c5e4ff;
}

.page-home main {
    background:
        radial-gradient(circle at 78% 18%, rgba(135, 209, 255, .28), transparent 34%),
        radial-gradient(circle at 8% 36%, rgba(74, 164, 255, .16), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 58%, #f8fbff 100%);
}

.home-final-hero {
    background:
        radial-gradient(circle at 74% 14%, rgba(135, 209, 255, .22), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(247, 252, 255, .98) 100%);
}

.home-final-light {
    background:
        linear-gradient(105deg, transparent 3%, rgba(135, 209, 255, .22) 38%, rgba(74, 164, 255, .16) 53%, transparent 72%),
        radial-gradient(circle at 68% 52%, rgba(74, 164, 255, .2), transparent 31%),
        radial-gradient(circle at 44% 82%, rgba(135, 209, 255, .2), transparent 28%);
}

.home-final-kicker {
    color: var(--dns-logo-blue-deep);
    background: rgba(238, 248, 255, .92);
    border-color: var(--dns-logo-blue-line);
    box-shadow: 0 8px 18px rgba(40, 107, 234, .08);
}

.home-final-subtitle {
    color: var(--dns-logo-blue-deep);
}

.home-final-actions .button.primary,
.home-final-app-body section > a {
    background: linear-gradient(135deg, var(--dns-logo-blue) 0%, var(--dns-logo-blue-deep) 100%);
    box-shadow: 0 18px 34px rgba(40, 107, 234, .2);
}

.home-final-actions .button.secondary {
    color: var(--dns-logo-blue-deep);
    background: rgba(255, 255, 255, .92);
    border-color: var(--dns-logo-blue-line);
}

.home-final-actions .download-icon,
.home-final-trust .download-icon,
.home-final-features .download-icon,
.home-final-safe .download-icon {
    color: var(--dns-logo-blue-deep);
}

.home-final-trust span {
    color: #43546f;
}

.home-final-trust .download-icon {
    background: linear-gradient(180deg, #f5fbff 0%, #eaf6ff 100%);
    border-radius: 999px;
}

.home-final-cube {
    box-shadow:
        0 24px 44px rgba(40, 107, 234, .14),
        inset 0 1px 0 rgba(255, 255, 255, .96);
}

.home-final-cube::before {
    background: linear-gradient(180deg, rgba(135, 209, 255, .18), rgba(255, 255, 255, .5));
}

.home-final-cube::after {
    box-shadow: 0 0 34px rgba(74, 164, 255, .24);
}

.home-final-ring {
    background:
        radial-gradient(circle, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, .34) 54%, transparent 64%),
        linear-gradient(180deg, rgba(135, 209, 255, .46), rgba(40, 107, 234, .16));
    box-shadow:
        0 22px 45px rgba(40, 107, 234, .16),
        inset 0 0 0 1px rgba(135, 209, 255, .58);
}

.home-final-ring i {
    border-color: rgba(74, 164, 255, .62);
}

.home-final-ring b {
    background: linear-gradient(90deg, transparent, rgba(74, 164, 255, .72), transparent);
}

.home-final-app {
    border-color: rgba(197, 228, 255, .98);
    box-shadow:
        0 30px 60px rgba(40, 107, 234, .14),
        inset 0 1px 0 rgba(255, 255, 255, .92);
}

.home-final-app-body aside span.is-active {
    color: var(--dns-logo-blue-deep);
    background: #edf7ff;
}

.home-final-status,
.home-final-mini div,
.home-final-features,
.home-final-plans,
.home-final-safe {
    border-color: rgba(197, 228, 255, .9);
}

.home-final-mini strong,
.home-final-plan-card strong {
    color: var(--dns-logo-blue-deep);
}

.home-final-features article > span {
    color: var(--dns-logo-blue-deep);
    background:
        radial-gradient(circle at 38% 24%, rgba(255, 255, 255, .88), transparent 40%),
        linear-gradient(180deg, #f4fbff 0%, #e7f5ff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
}

.home-final-plan-card {
    border-color: rgba(197, 228, 255, .96);
}

.home-final-plan-card.is-featured {
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .2), transparent 36%),
        linear-gradient(135deg, var(--dns-logo-blue) 0%, var(--dns-logo-blue-deep) 100%);
    border-color: rgba(135, 209, 255, .82);
    box-shadow:
        0 20px 38px rgba(40, 107, 234, .2),
        inset 0 1px 0 rgba(255, 255, 255, .24);
}

.home-final-plan-card em {
    background: linear-gradient(135deg, #ffb36a, #ff7e32);
}

.home-final-safe > span {
    background: linear-gradient(180deg, #f6fbff 0%, #eaf6ff 100%);
    border: 1px solid rgba(197, 228, 255, .82);
}

.page-home .site-nav a:hover,
.page-home .site-nav a.is-active,
.page-home .account-link:hover,
.page-home .account-link.is-active {
    color: var(--dns-logo-blue-deep);
    background: var(--dns-logo-blue-soft);
}

.page-home .site-nav a.is-active::after {
    background: linear-gradient(90deg, var(--dns-logo-blue), var(--dns-logo-blue-deep));
}

.page-home .site-nav a em,
.page-home .header-action {
    background: linear-gradient(135deg, var(--dns-logo-blue), var(--dns-logo-blue-deep));
}

/* Homepage icon refinement. */
.home-icon {
    display: inline-block;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: currentColor;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}

.home-icon-fill {
    fill: currentColor;
    stroke: none;
}

.home-icon-fill-soft {
    fill: rgba(74, 164, 255, .14);
    stroke: currentColor;
}

.home-icon-cut {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.35;
}

.home-final-actions .home-icon {
    width: 19px;
    height: 19px;
    stroke-width: 2.15;
}

.home-final-actions .button.primary .home-icon {
    color: #ffffff;
}

.home-final-actions .button.secondary .home-icon {
    color: var(--dns-logo-blue-deep);
}

.home-final-trust .home-icon {
    width: 18px;
    height: 18px;
    color: var(--dns-logo-blue-deep);
    filter: drop-shadow(0 4px 8px rgba(40, 107, 234, .12));
}

.home-final-status .home-icon {
    width: 25px;
    height: 25px;
    color: #ffffff;
}

.home-final-status .home-icon-fill {
    fill: rgba(255, 255, 255, .18);
    stroke: #ffffff;
    stroke-width: 1.55;
}

.home-final-status .home-icon-cut {
    stroke: #ffffff;
    stroke-width: 2.25;
}

.home-final-features .home-icon {
    width: 34px;
    height: 34px;
    color: var(--dns-logo-blue-deep);
    stroke-width: 1.75;
}

.home-final-features .home-icon-fill {
    fill: rgba(40, 107, 234, .12);
    stroke: var(--dns-logo-blue-deep);
    stroke-width: 1.5;
}

.home-final-features .home-icon-cut {
    stroke: var(--dns-logo-blue-deep);
    stroke-width: 2.2;
}

.home-final-plan-card h3 .home-icon {
    width: 24px;
    height: 24px;
    color: var(--dns-logo-blue-deep);
    stroke-width: 1.8;
}

.home-final-plan-card h3 .home-icon-fill-soft {
    fill: rgba(74, 164, 255, .15);
}

.home-final-plan-card.is-featured h3 .home-icon {
    color: #ffe07a;
    filter: drop-shadow(0 4px 8px rgba(255, 201, 72, .22));
}

.home-final-plan-card.is-featured h3 .home-icon-fill-soft {
    fill: rgba(255, 224, 122, .18);
}

.home-final-safe .home-icon {
    width: 23px;
    height: 23px;
    color: var(--dns-logo-blue-deep);
    filter: drop-shadow(0 5px 10px rgba(40, 107, 234, .12));
}

.page-home .site-footer .payment-icon {
    color: var(--dns-logo-blue-deep);
    stroke-width: 1.8;
}

.page-home .footer-safe-note .payment-icon,
.page-home .footer-contact-block .payment-icon {
    width: 20px;
    height: 20px;
    padding: 3px;
    background: #f0f8ff;
    border: 1px solid rgba(197, 228, 255, .86);
    border-radius: 999px;
    box-sizing: content-box;
}

/* Home must use the shared public footer. */
.page-home .site-footer {
    padding: 0 6vw;
    color: #10233f;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 38%, #f8fbff 100%);
    border-top: 1px solid rgba(22, 119, 255, .14);
}

.page-home .footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .95fr) minmax(0, 1.08fr);
    gap: 54px;
    width: min(1210px, 100%);
    margin: 0 auto;
    padding: 38px 0 32px;
}

.page-home .footer-brand img {
    width: 142px;
}

.page-home .footer-brand-block {
    gap: 14px;
}

.page-home .footer-brand-block p {
    max-width: 382px;
    color: #526b86;
    font-size: 14px;
    line-height: 1.7;
}

.page-home .footer-safe-note {
    gap: 10px;
    max-width: 420px;
    color: #64748b;
}

.page-home .footer-safe-note .payment-icon,
.page-home .footer-contact-block .payment-icon {
    width: 17px;
    height: 17px;
    padding: 0;
    color: #64748b;
    background: transparent;
    border: 0;
    border-radius: 0;
    stroke-width: 1.9;
    box-sizing: border-box;
}

.page-home .footer-safe-note strong {
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.page-home .footer-nav-grid {
    gap: 16px;
}

.page-home .footer-contact-block {
    gap: 13px;
}

.page-home .footer-nav-grid a,
.page-home .footer-contact-block a,
.page-home .footer-contact-block > span {
    color: #526b86;
    font-size: 14px;
}

.page-home .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1210px, 100%);
    height: auto;
    margin: 0 auto;
    padding: 18px 0 20px;
    border-top: 1px solid rgba(22, 119, 255, .12);
    text-align: left;
}

/* Home official-channel note aligned with other public pages. */
.page-home .home-final-safe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: min(1210px, calc(100% - 120px));
    min-height: 42px;
    height: auto;
    margin: 0 auto 12px;
    padding: 0 22px;
    color: #788aa0;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(216, 230, 245, .95);
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
    font-weight: 760;
}

.page-home .home-final-safe > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #8baed8;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.page-home .home-final-safe .download-icon,
.page-home .home-final-safe .home-icon {
    width: 18px;
    height: 18px;
    color: #8baed8;
    filter: none;
    stroke-width: 1.85;
}

.page-home .home-final-safe .home-icon-fill {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
}

.page-home .home-final-safe .home-icon-cut {
    stroke: currentColor;
    stroke-width: 2.15;
}

.page-home .home-final-safe strong {
    color: #788aa0;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.45;
}

/* Home hero product image replacement. */
.page-home .home-final-hero {
    min-height: 540px;
    padding-bottom: 24px;
}

.page-home .home-final-inner {
    align-items: center;
}

.page-home .home-final-visual-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 480px;
    padding-right: 6px;
}

.page-home .home-final-product-image {
    display: block;
    width: min(640px, 100%);
    height: auto;
    max-height: none;
    object-fit: contain;
    border: 1px solid rgba(197, 228, 255, .92);
    border-radius: 14px;
    box-shadow:
        0 30px 70px rgba(40, 107, 234, .16),
        0 10px 24px rgba(16, 24, 40, .08);
}

.page-home .home-final-product-image {
    position: relative;
    z-index: 2;
}

/* Public language switcher. */
.language-switch {
    position: relative;
    z-index: 70;
    flex: 0 0 auto;
}

.language-switch button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    height: 40px;
    min-width: 88px;
    padding: 0 12px;
    color: #344054;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(216, 230, 245, .96);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    cursor: default;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .045);
}

.language-switch svg {
    width: 17px;
    height: 17px;
    color: #286bea;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.language-switch i {
    width: 6px;
    height: 6px;
    margin-left: 1px;
    border-right: 1.7px solid currentColor;
    border-bottom: 1.7px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    opacity: .72;
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    min-width: 152px;
    padding: 6px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(216, 230, 245, .96);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(16, 24, 40, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.language-switch:hover .language-menu,
.language-switch:focus-within .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34px;
    padding: 0 10px;
    color: #52677f;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
    text-decoration: none;
}

.language-menu a:hover,
.language-menu a.is-active {
    color: #286bea;
    background: #eef8ff;
}

.language-menu a.is-active::after {
    content: "";
    width: 6px;
    height: 10px;
    border-right: 2px solid #286bea;
    border-bottom: 2px solid #286bea;
    transform: rotate(45deg) translateY(-1px);
}

.site-header {
    grid-template-columns: 240px minmax(0, 1fr) 300px;
}

.account-actions {
    gap: 8px;
}

.page-home .site-header {
    grid-template-columns: 240px minmax(0, 1fr) 300px;
}

/* User center device table polish */
.center-device-table-wrap {
    max-height: 292px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #e5effb;
    border-radius: 14px;
    background: #ffffff;
    scrollbar-color: #c8dcf8 transparent;
    scrollbar-width: thin;
}

.center-device-table-wrap::-webkit-scrollbar {
    width: 8px;
}

.center-device-table-wrap::-webkit-scrollbar-track {
    background: transparent;
}

.center-device-table-wrap::-webkit-scrollbar-thumb {
    background: #c8dcf8;
    border: 2px solid #ffffff;
    border-radius: 999px;
}

.center-device-card .center-table {
    overflow: visible;
    border: 0;
    border-radius: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
}

.center-device-card .center-table th {
    position: sticky;
    top: 0;
    z-index: 2;
    height: 44px;
    padding: 0 22px;
    color: #40536d;
    background: #f6faff;
    border-top: 0;
    font-size: 14px;
    font-weight: 900;
}

.center-device-card .center-table td {
    height: 82px;
    padding: 16px 22px;
    border-top: 1px solid #e8f0fa;
    color: #43546d;
    font-size: 14px;
    font-weight: 800;
}

.center-device-card .center-table th:nth-child(1),
.center-device-card .center-table td:nth-child(1) {
    width: 42%;
}

.center-device-card .center-table th:nth-child(2),
.center-device-card .center-table td:nth-child(2) {
    width: 16%;
}

.center-device-card .center-table th:nth-child(3),
.center-device-card .center-table td:nth-child(3) {
    width: 24%;
}

.center-device-card .center-table th:nth-child(4),
.center-device-card .center-table td:nth-child(4) {
    width: 18%;
}

.center-device-row:hover td {
    background: #fbfdff;
}

.center-device-name {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.center-device-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #2f73ee;
    background: linear-gradient(180deg, #f5f9ff 0%, #eaf3ff 100%);
    border: 1px solid #d7e7ff;
    border-radius: 10px;
}

.center-device-icon .download-icon {
    width: 19px;
    height: 19px;
    stroke-width: 2;
}

.center-device-name strong {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: #102033;
    font-size: 16px;
    font-weight: 950;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.center-device-name em {
    display: block;
    margin-top: 5px;
    color: #7a8ba2;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.2;
}

.center-device-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 30px;
    padding: 0 12px;
    color: #207553;
    background: #ecf9f3;
    border: 1px solid #cdeede;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.center-device-last {
    color: #6b7d95;
    font-size: 13px;
    font-weight: 850;
}

.center-device-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    height: 34px;
    padding: 0 14px;
    color: #2f73ee !important;
    background: #f7fbff;
    border: 1px solid #cfe0ff;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.center-device-action:hover {
    color: #ffffff !important;
    background: #2f73ee;
    border-color: #2f73ee;
    box-shadow: 0 10px 22px rgba(47, 115, 238, .18);
}

/* User center plan status polish */
.center-current-plan {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    margin-bottom: 12px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dceafa;
    border-radius: 14px;
}

.center-current-plan > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #2f73ee;
    background: #edf5ff;
    border: 1px solid #cfe1ff;
    border-radius: 13px;
}

.center-current-plan > span .download-icon {
    width: 22px;
    height: 22px;
}

.center-current-plan small,
.center-current-plan em {
    display: block;
    color: #71839a;
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
    line-height: 1.35;
}

.center-current-plan strong {
    display: block;
    margin: 3px 0 4px;
    color: #102033;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.2;
}

.center-current-plan > b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 30px;
    padding: 0 12px;
    color: #207553;
    background: #ecf9f3;
    border: 1px solid #cdeede;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.center-current-plan.is-waiting > b {
    color: #7a5a16;
    background: #fff8e7;
    border-color: #f4dfad;
}

.center-current-plan-body {
    min-width: 0;
}

.center-current-plan-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.center-current-plan-metrics span {
    display: grid;
    gap: 3px;
    min-width: 0;
    padding: 9px 10px;
    background: #f8fbff;
    border: 1px solid #e2edfb;
    border-radius: 10px;
}

.center-current-plan-metrics i {
    color: #7b8da4;
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
    line-height: 1;
}

.center-current-plan-metrics b {
    overflow: hidden;
    color: #102033;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.center-current-plan-progress {
    height: 8px;
    margin-top: 10px;
    overflow: hidden;
    background: #edf4fc;
    border-radius: 999px;
}

.center-current-plan-progress i {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #2f73ee, #75b9ff);
    border-radius: inherit;
}

.center-plan-row.is-current {
    background: #f7fbff;
    border-color: #bcd8ff;
    box-shadow: 0 10px 24px rgba(47, 115, 238, .07);
}

.center-plan-row.is-lower {
    background: #fbfdff;
    opacity: .76;
}

.center-plan-row.is-lower .center-plan-icon,
.center-plan-row.is-lower p {
    filter: grayscale(.18);
}

.center-plan-row em.is-current {
    color: #207553;
    background: #ecf9f3;
    border-color: #cdeede;
}

.center-plan-row em.is-upgrade {
    color: #2f73ee;
    background: #eef6ff;
    border-color: #cfe1ff;
}

.center-plan-row em.is-muted {
    color: #7a8ba2;
    background: #f5f8fb;
    border-color: #e2ebf5;
}

.center-plan-row .center-plan-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: stretch;
    min-width: 96px;
    min-height: 30px;
    margin-top: 0;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.center-plan-row .center-plan-action.is-current {
    color: #207553;
    background: #ecf9f3;
    border: 1px solid #cdeede;
}

.center-plan-row .center-plan-action.is-disabled {
    color: #8a9ab0;
    background: #f4f7fb;
    border: 1px solid #e1eaf5;
}

/* User center equal-height main panels */
.center-main-grid {
    align-items: stretch;
}

.center-device-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.center-device-table-wrap {
    flex: 1;
}

.center-side-stack {
    display: grid;
    grid-template-rows: minmax(0, 1.08fr) minmax(0, .72fr) minmax(0, .72fr);
    height: 100%;
}

.center-side-stack .center-card {
    height: 100%;
}

/* User center equal-height bottom panels */
.center-bottom-grid {
    align-items: stretch;
}

.center-plan-card,
.center-order-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.center-order-card .center-table {
    height: 100%;
}

.center-order-card tbody,
.center-order-card .center-order-empty-row,
.center-order-card .center-order-empty-row td {
    height: 100%;
}

.center-order-card .center-empty-state {
    min-height: 0;
    height: 100%;
}
