:root {
    --font-body: "HarmonyOS Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    --font-display: "Alibaba Sans", "HarmonyOS Sans SC", "Noto Sans SC", sans-serif;
    --bg: #f4f8ff;
    --bg-soft: #fbfdff;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --surface-dark: #0b1730;
    --ink-900: #12233d;
    --ink-700: #5a6c86;
    --ink-500: #7d8da5;
    --line: rgba(102, 132, 189, 0.14);
    --line-strong: rgba(78, 114, 176, 0.22);
    --accent: #06a7ff;
    --accent-deep: #0074dc;
    --accent-soft: #e8f5ff;
    --accent-alt: #3b82f6;
    --action: #f97316;
    --action-deep: #ea580c;
    --action-soft: #fff1e8;
    --success: #0ea5e9;
    --shadow-soft: 0 24px 60px rgba(52, 89, 145, 0.09);
    --shadow-card: 0 18px 42px rgba(51, 90, 148, 0.1);
    --shadow-hover: 0 26px 56px rgba(32, 73, 132, 0.16);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink-900);
    font-family: var(--font-body);
    line-height: 1.75;
    background:
        radial-gradient(circle at top center, rgba(6, 167, 255, 0.18), transparent 22%),
        radial-gradient(circle at 15% 0%, rgba(114, 207, 255, 0.14), transparent 22%),
        radial-gradient(circle at 85% 8%, rgba(147, 221, 255, 0.14), transparent 18%),
        linear-gradient(180deg, #f6faff 0%, #f2f7ff 42%, #fbfdff 100%);
    text-rendering: optimizeLegibility;
}

body.has-open-nav {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.18) 36%, transparent 72%),
        linear-gradient(90deg, rgba(71, 118, 193, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(71, 118, 193, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 32px 32px, 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.64), transparent 92%);
    z-index: -1;
}

::selection {
    color: #fff;
    background: rgba(6, 167, 255, 0.92);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

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

.site-container--narrow {
    width: min(780px, calc(100% - 32px));
}

.site-section {
    padding: 30px 0;
}

.home-section {
    position: relative;
}

.home-section + .home-section::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 50%;
    width: min(1160px, calc(100% - 32px));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(67, 94, 128, 0.14), transparent);
    transform: translateX(-50%);
}

.home-section--service::before,
.home-section--bottom-cta::before {
    display: none;
}

.section-surface {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid rgba(6, 167, 255, 0.08);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        0 10px 24px rgba(54, 95, 156, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.button__icon--arrow {
    position: relative;
    width: 18px;
    height: 12px;
}

.button__icon--arrow::before,
.button__icon--arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transition: transform 0.22s ease, opacity 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.button__icon--arrow::before {
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translateY(-50%);
}

.button__icon--arrow::after {
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

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

.button:hover .button__icon--arrow::before,
.button:focus-visible .button__icon--arrow::before {
    transform: translate(2px, -50%);
}

.button:hover .button__icon--arrow::after,
.button:focus-visible .button__icon--arrow::after {
    transform: translate(2px, -50%) rotate(45deg);
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, #fb923c, var(--action) 55%, var(--action-deep) 100%);
    box-shadow: 0 18px 36px rgba(249, 115, 22, 0.24);
}

.button--secondary {
    color: var(--ink-900);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(128, 145, 173, 0.2);
}

.button--ghost {
    color: var(--accent-deep);
    background: rgba(6, 167, 255, 0.08);
    border-color: rgba(6, 167, 255, 0.14);
}

.button--secondary:hover,
.button--secondary:focus-visible,
.button--ghost:hover,
.button--ghost:focus-visible {
    border-color: rgba(6, 167, 255, 0.2);
    box-shadow: 0 16px 32px rgba(43, 88, 150, 0.1);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(251, 253, 255, 0.74);
    border-bottom: 1px solid rgba(108, 142, 196, 0.08);
    backdrop-filter: blur(22px);
    box-shadow: 0 12px 32px rgba(48, 84, 138, 0.06);
}

.site-header__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 24px;
    min-height: 82px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 0 0 auto;
    max-width: min(30vw, 260px);
}

.site-branding__logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.site-branding__logo a {
    display: inline-flex;
    align-items: center;
}

.site-branding__logo img,
.site-branding__logo .custom-logo {
    max-height: 52px;
    max-width: 100%;
    width: auto;
}

.site-branding__meta {
    display: none !important;
}

.site-branding__title,
.site-branding__title-link {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.site-branding__title-link--solo {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-branding__tagline {
    display: none !important;
}

.site-header__nav-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 18px;
    min-width: 0;
}

.site-header__nav {
    display: flex;
    align-items: center;
    min-width: 0;
}

.menu-list,
.site-footer__nav-list,
.breadcrumb__list,
.page-header__meta {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.menu-list li {
    flex: 0 0 auto;
}

.menu-list li > a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--ink-700);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.menu-list li > a:hover,
.menu-list li.current-menu-item > a,
.menu-list li.current_page_item > a {
    color: var(--ink-900);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 24px rgba(53, 89, 145, 0.08);
}

.site-header__cta {
    white-space: nowrap;
}

.site-header__toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
}

.site-header__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--ink-900);
}

.section-heading,
.page-header {
    margin-bottom: 20px;
}

.page-header__body {
    display: grid;
    gap: 12px;
}

.page-header__summary-wrap {
    display: block;
}

.section-heading--left {
    margin-bottom: 14px;
}

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

.section-heading__eyebrow,
.page-header__eyebrow,
.post-card__eyebrow,
.feature-card__eyebrow,
.toc-panel__eyebrow,
.site-footer__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(6, 167, 255, 0.1);
    color: var(--accent-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.section-heading__title,
.page-header__title {
    margin: 12px 0 10px;
    font-family: var(--font-display);
    font-size: clamp(1.72rem, 3.6vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.page-header__title {
    font-size: clamp(1.54rem, 3vw, 2.24rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.section-heading__summary,
.page-header__summary {
    margin: 0;
    max-width: 68ch;
    color: var(--ink-700);
    font-size: 0.96rem;
}

.page-header__summary {
    text-wrap: pretty;
}

.page-header__eyebrow {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-header--centered,
.page-header--centered .page-header__summary {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb,
.seopress-breadcrumbs {
    margin-bottom: 18px;
}

.breadcrumb__list,
.seopress-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--ink-500);
    font-size: 0.88rem;
}

.seopress-breadcrumbs a,
.seopress-breadcrumbs span {
    color: inherit;
}

.seopress-breadcrumbs .separator {
    color: rgba(67, 81, 108, 0.55);
}

.breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb__item + .breadcrumb__item::before {
    content: "/";
    color: rgba(67, 81, 108, 0.55);
}

.page-header--archive .breadcrumb {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(6, 167, 255, 0.94), rgba(0, 116, 220, 0.92));
    box-shadow: 0 12px 28px rgba(0, 116, 220, 0.18);
}

.page-header--archive .seopress-breadcrumbs {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(6, 167, 255, 0.94), rgba(0, 116, 220, 0.92));
    box-shadow: 0 12px 28px rgba(0, 116, 220, 0.18);
    color: rgba(255, 255, 255, 0.9);
}

.page-header--archive .breadcrumb__list {
    color: rgba(255, 255, 255, 0.9);
}

.page-header--archive .seopress-breadcrumbs a,
.page-header--archive .seopress-breadcrumbs span {
    color: inherit;
}

.page-header--archive .breadcrumb__item + .breadcrumb__item::before {
    color: rgba(255, 255, 255, 0.68);
}

.page-header--archive .seopress-breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.68);
}

.page-header--archive .breadcrumb a:hover,
.page-header--archive .breadcrumb a:focus-visible {
    color: #ffffff;
}

.page-header--archive .seopress-breadcrumbs a:hover,
.page-header--archive .seopress-breadcrumbs a:focus-visible {
    color: #ffffff;
}

.archive-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 6% 10%, rgba(96, 165, 250, 0.09), transparent 24%),
        radial-gradient(circle at 94% 14%, rgba(34, 211, 238, 0.08), transparent 18%),
        linear-gradient(180deg, #fbfdff 0%, #f6faff 100%);
}

.archive-section::before,
.archive-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
}

.archive-section::before {
    top: 90px;
    left: -130px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0) 72%);
}

.archive-section::after {
    top: 320px;
    right: -150px;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.11) 0%, rgba(14, 165, 233, 0) 72%);
}

.archive-section .site-container {
    position: relative;
    z-index: 1;
}

.page-header--archive .page-header__body {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    gap: 12px;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid rgba(120, 152, 207, 0.18);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 255, 0.95)),
        radial-gradient(circle at top right, rgba(125, 211, 252, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(6, 167, 255, 0.05), transparent 62%);
    box-shadow:
        0 20px 46px rgba(38, 70, 128, 0.08),
        0 10px 22px rgba(15, 23, 42, 0.04);
}

.page-header--archive .page-header__body::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.82), rgba(59, 130, 246, 0.44), transparent 80%);
    pointer-events: none;
}

.page-header--archive .page-header__title {
    margin: 0;
    max-width: none;
    font-size: clamp(1.5rem, 2.6vw, 2.08rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: #0f2746;
}

.page-header--archive .page-header__summary-wrap {
    padding-top: 12px;
    border-top: 1px solid rgba(120, 152, 207, 0.14);
}

.page-header--archive .page-header__summary {
    max-width: 72ch;
    color: #526174;
    line-height: 1.76;
}

.content-panel {
    padding: clamp(22px, 3vw, 34px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.86)),
        linear-gradient(135deg, rgba(6, 167, 255, 0.03), transparent 56%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.feature-grid {
    display: grid;
    gap: 18px;
}

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

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

.feature-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.9)),
        linear-gradient(135deg, rgba(6, 167, 255, 0.06), transparent 54%);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, rgba(6, 167, 255, 0.92), rgba(59, 130, 246, 0.74));
}

.feature-card__content {
    display: grid;
    gap: 14px;
}

.feature-card:hover,
.feature-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(6, 167, 255, 0.2);
    box-shadow: var(--shadow-hover);
}

.feature-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.12rem;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.95rem;
}

.feature-card__link,
.post-card__meta a {
    color: var(--accent-deep);
    font-weight: 700;
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feature-card__link::after {
    content: "→";
    font-size: 0.95em;
}

.feature-card--service {
    justify-content: space-between;
}

.feature-card--service .button {
    align-self: flex-start;
}

.feature-card--value .feature-card__number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
}

.post-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.88)),
        linear-gradient(135deg, rgba(6, 167, 255, 0.04), transparent 52%);
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.post-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, rgba(6, 167, 255, 0.9), rgba(59, 130, 246, 0.72));
    z-index: 1;
}

.post-card:hover,
.post-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(6, 167, 255, 0.18);
    box-shadow: var(--shadow-hover);
}

.post-card__media {
    display: block;
    aspect-ratio: 16 / 8;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.58), transparent 24%),
        radial-gradient(circle at top right, rgba(149, 230, 255, 0.42), transparent 32%),
        linear-gradient(135deg, #e7f6ff, #bce9ff 58%, #8ac8ff 100%);
}

.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card__placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px;
}

.post-card__placeholder-orb {
    width: 104px;
    height: 104px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.18) 34%, transparent 36%),
        linear-gradient(135deg, rgba(94, 234, 212, 0.72), rgba(37, 99, 235, 0.58));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        0 20px 40px rgba(15, 23, 42, 0.22);
    transform: rotate(-10deg);
}

.post-card__placeholder-grid {
    position: absolute;
    width: 62%;
    height: 62%;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.8;
}

.post-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    padding: 18px 18px 16px;
}

.post-card__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.32;
    letter-spacing: -0.02em;
}

.post-card__summary {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.9rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(55, 77, 106, 0.1);
    color: var(--ink-500);
    font-size: 0.84rem;
}

.content-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 300px;
}

.content-main > * + * {
    margin-top: 20px;
}

.archive-layout {
    position: relative;
    align-items: start;
    z-index: 1;
}

.archive-layout--solo {
    grid-template-columns: 1fr;
}

.archive-layout__main {
    min-width: 0;
}

.archive-list {
    display: grid;
    gap: 16px;
}

.archive-list-item {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(220px, 248px) minmax(0, 1fr);
    gap: 20px;
    padding: 16px;
    border: 1px solid rgba(120, 152, 207, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 252, 255, 0.92)),
        radial-gradient(circle at top right, rgba(147, 197, 253, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(6, 167, 255, 0.04), transparent 62%);
    box-shadow:
        0 16px 36px rgba(38, 70, 128, 0.08),
        0 8px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.archive-list-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.78), rgba(59, 130, 246, 0.46), transparent 82%);
}

.archive-list-item:hover,
.archive-list-item:focus-within {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.24);
    box-shadow:
        0 22px 48px rgba(38, 70, 128, 0.1),
        0 10px 24px rgba(15, 23, 42, 0.05);
}

.archive-list-item__media {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.58), transparent 24%),
        radial-gradient(circle at top right, rgba(149, 230, 255, 0.42), transparent 32%),
        linear-gradient(135deg, #e7f6ff, #bce9ff 58%, #8ac8ff 100%);
    box-shadow: 0 14px 30px rgba(37, 76, 140, 0.12);
}

.archive-list-item__media img,
.archive-list-item__placeholder {
    width: 100%;
    height: 100%;
}

.archive-list-item__media img {
    object-fit: cover;
}

.archive-list-item__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.archive-list-item__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(102, 132, 189, 0.12);
}

.archive-list-item__category {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.92), rgba(59, 130, 246, 0.88));
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.16);
}

.archive-list-item__time {
    color: var(--ink-500);
    font-size: 0.86rem;
}

.archive-list-item__title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(1.14rem, 2vw, 1.42rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.archive-list-item__title a:hover,
.archive-list-item__title a:focus-visible {
    color: var(--accent-deep);
}

.archive-list-item__summary {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.94rem;
    line-height: 1.76;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.content-sidebar__inner {
    position: sticky;
    top: 104px;
}

.archive-layout .content-sidebar__inner {
    display: grid;
    gap: 14px;
    align-content: start;
}

.archive-layout .content-sidebar .widget {
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(102, 132, 189, 0.12);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.8)),
        radial-gradient(circle at top right, rgba(147, 197, 253, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(6, 167, 255, 0.04), transparent 62%);
    box-shadow:
        0 14px 30px rgba(38, 70, 128, 0.06),
        0 8px 18px rgba(15, 23, 42, 0.03);
    padding: 16px 16px 18px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.archive-layout .content-sidebar .widget::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.76), rgba(59, 130, 246, 0.42), transparent 78%);
    pointer-events: none;
}

.archive-layout .content-sidebar .widget-title {
    position: relative;
    margin: 0 0 12px;
    color: #111827;
    font-size: 1rem;
    padding-bottom: 10px;
}

.archive-layout .content-sidebar .widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #38bdf8, #3b82f6);
}

.archive-layout .content-sidebar .widget > *:first-child {
    margin-top: 0;
}

.archive-layout .content-sidebar .widget > *:last-child {
    margin-bottom: 0;
}

.archive-layout .content-sidebar .widget ul {
    margin: 0;
    padding-left: 1.15em;
    color: var(--ink-700);
    font-size: 0.92rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.archive-layout .content-sidebar .widget li + li {
    margin-top: 8px;
}

.archive-layout .content-sidebar .widget a {
    color: var(--ink-700);
}

.archive-layout .content-sidebar .widget a:hover,
.archive-layout .content-sidebar .widget a:focus-visible {
    color: var(--accent-deep);
}

.archive-layout .content-sidebar .search-form {
    padding: 5px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.archive-layout .content-sidebar .widget_search {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.archive-layout .content-sidebar .widget_search .widget-title {
    margin: 0 0 10px;
    padding: 0 2px;
}

.archive-layout .content-sidebar .search-form__input {
    min-height: 44px;
    padding: 0 16px 0 18px;
    border-radius: 0;
    border-color: transparent;
    background: transparent;
    font-size: 0.9rem;
}

.archive-layout .content-sidebar .search-form__button {
    width: auto;
    min-width: 96px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    word-break: keep-all;
}

.widget + .widget {
    margin-top: 18px;
}

.widget-title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 1rem;
}

.toc-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    cursor: pointer;
    list-style: none;
}

.toc-panel__header::-webkit-details-marker {
    display: none;
}

.toc-panel__header-copy {
    display: grid;
    gap: 8px;
}

.toc-panel__title {
    font-family: var(--font-display);
    font-size: 1rem;
}

.toc-panel__toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.08);
}

.toc-panel__toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    color: var(--accent-deep);
    transform: translate(-60%, -58%) rotate(45deg);
    transition: transform 0.22s ease;
}

.toc-panel[open] .toc-panel__toggle::before {
    transform: translate(-50%, -32%) rotate(225deg);
}

.toc-panel:not([open]) .toc-panel__header {
    margin-bottom: 0;
}

.toc-panel__list {
    margin: 0;
    padding-left: 18px;
    color: var(--ink-700);
    font-size: 0.94rem;
}

.toc-panel__item + .toc-panel__item {
    margin-top: 8px;
}

.toc-panel__item--level-3 {
    margin-left: 14px;
    list-style-type: circle;
}

.faq-list__items {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 253, 0.8));
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.faq-item[open] {
    border-color: rgba(6, 167, 255, 0.2);
    box-shadow: var(--shadow-card);
}

.faq-item__summary {
    position: relative;
    padding: 20px 66px 20px 22px;
    cursor: pointer;
    list-style: none;
    font-size: 0.97rem;
    font-weight: 700;
}

.faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-item__summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(6, 167, 255, 0.08);
    font-size: 1.2rem;
    color: var(--accent-deep);
}

.faq-item[open] .faq-item__summary::after {
    content: "–";
}

.faq-item__content {
    padding: 0 22px 20px;
    color: var(--ink-700);
    font-size: 0.95rem;
}

.faq-item__content p {
    margin: 0;
}

.cta-box {
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid rgba(6, 167, 255, 0.16);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(163, 232, 255, 0.32), transparent 28%),
        radial-gradient(circle at bottom left, rgba(6, 167, 255, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 255, 0.98));
    box-shadow: var(--shadow-soft);
}

.cta-box--compact {
    padding: 22px;
    border-radius: var(--radius-lg);
}

.cta-box__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.cta-box__title {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: clamp(1.28rem, 2.1vw, 1.78rem);
    line-height: 1.15;
}

.cta-box__text {
    margin: 0;
    max-width: 58ch;
    color: var(--ink-700);
    font-size: 0.96rem;
}

.cta-box__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 6px;
    border: 1px solid rgba(102, 132, 189, 0.14);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.search-form:focus-within {
    border-color: rgba(6, 167, 255, 0.34);
    box-shadow:
        0 0 0 4px rgba(6, 167, 255, 0.12),
        0 18px 38px rgba(15, 23, 42, 0.08);
}

.search-form__input {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    padding: 0 18px 0 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink-900);
    font-size: 0.94rem;
    outline: none;
}

.search-form__input::placeholder {
    color: var(--ink-500);
}

.search-form__button {
    width: auto;
    min-width: 106px;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
    word-break: keep-all;
}

.search-form__button.button,
.search-form__button.button--primary {
    min-height: 48px;
    padding: 0 24px;
    border-color: transparent;
    color: #ffffff;
    background: linear-gradient(135deg, #25b0ff, #0074dc 72%);
    box-shadow: none;
}

.search-form__button:hover,
.search-form__button:focus-visible {
    transform: none;
}

.search-form__button.button--primary:hover,
.search-form__button.button--primary:focus-visible {
    border-color: transparent;
    background: linear-gradient(135deg, #1ba6ff, #0069c8 72%);
    box-shadow: none;
}

.archive-search-box,
.not-found-search {
    margin-bottom: 16px;
}

.not-found-section .page-header {
    display: grid;
    gap: 8px;
    min-height: 0;
}

.not-found-section .page-header,
.not-found-section .content-panel,
.not-found-featured-grid,
.not-found-quick-panel {
    margin-bottom: 14px;
}

.not-found-section .page-header__summary {
    display: block;
    overflow: visible;
    max-width: min(64ch, 100%);
    max-height: none;
    margin-top: 0;
    text-overflow: clip;
    white-space: normal;
    line-height: 1.72;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
}

.not-found-section .page-header + .content-panel {
    margin-top: 0;
}

.not-found-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.not-found-featured-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 10px;
    height: 100%;
    min-width: 0;
    padding: clamp(18px, 2.4vw, 22px);
    border: 1px solid rgba(6, 167, 255, 0.16);
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(6, 167, 255, 0.1), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.92));
    box-shadow: 0 14px 30px rgba(38, 70, 128, 0.07);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.not-found-featured-card:hover,
.not-found-featured-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(6, 167, 255, 0.24);
    box-shadow: var(--shadow-hover);
}

.not-found-featured-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(6, 167, 255, 0.94), rgba(59, 130, 246, 0.78));
}

.not-found-featured-card__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(232, 245, 255, 0.96);
    color: var(--accent-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.not-found-featured-card__title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(19px, 2.3vw, 24px);
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.not-found-featured-card p,
.not-found-quick-link p,
.not-found-quick-panel__summary {
    margin: 0;
    color: var(--ink-700);
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.88rem;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.not-found-featured-card__link,
.not-found-quick-link span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--accent-deep);
    font-size: 0.84rem;
    font-weight: 700;
}

.not-found-featured-card__link::after,
.not-found-quick-link span::after {
    content: "→";
    font-size: 14px;
}

.not-found-quick-panel__head {
    margin-bottom: 10px;
}

.not-found-quick-panel__title {
    margin: 0 0 6px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.24;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.not-found-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.not-found-quick-link {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 8px;
    height: 100%;
    min-width: 0;
    padding: 14px 15px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 12px 24px rgba(38, 70, 128, 0.045);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.not-found-quick-link:hover,
.not-found-quick-link:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(6, 167, 255, 0.2);
    box-shadow: 0 18px 34px rgba(38, 70, 128, 0.08);
}

.not-found-quick-link strong {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.empty-panel,
.not-found-section .cta-split {
    text-align: center;
}

.section-footer,
.pagination-wrap,
.cta-split {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

@media (max-width: 980px) {
    .not-found-featured-grid,
    .not-found-quick-grid {
        grid-template-columns: 1fr;
    }

    .not-found-featured-card {
        padding: 17px 16px;
    }
}

@media (max-width: 720px) {
    .not-found-section .page-header,
    .not-found-section .content-panel,
    .not-found-featured-grid,
    .not-found-quick-panel {
        margin-bottom: 12px;
    }

    .not-found-section .page-header {
        gap: 7px;
    }

    .not-found-featured-grid,
    .not-found-quick-grid {
        gap: 8px;
    }

    .not-found-featured-card,
    .not-found-quick-link {
        gap: 7px;
    }

    .not-found-featured-card {
        padding: 16px 15px;
    }

    .not-found-quick-link {
        padding: 13px 14px;
    }

    .not-found-featured-card__title {
        font-size: 1.02rem;
    }

    .not-found-featured-card p,
    .not-found-quick-link p,
    .not-found-quick-panel__summary {
        font-size: 0.82rem;
        -webkit-line-clamp: 1;
    }

    .not-found-section .page-header__summary {
        font-size: 0.88rem;
        line-height: 1.68;
        -webkit-line-clamp: initial;
    }

    .not-found-quick-link strong,
    .not-found-quick-panel__title {
        font-size: 0.94rem;
    }
}

.pagination-wrap .nav-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
}

.pagination-wrap .page-numbers.current {
    background: rgba(6, 167, 255, 0.12);
    color: var(--accent-deep);
    border-color: rgba(6, 167, 255, 0.2);
}

.archive-section .pagination-wrap {
    margin-top: 22px;
    padding: 16px 18px;
    border: 1px solid rgba(120, 152, 207, 0.16);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.9)),
        radial-gradient(circle at top right, rgba(147, 197, 253, 0.12), transparent 30%);
    box-shadow: 0 14px 30px rgba(38, 70, 128, 0.05);
}

.prose {
    font-size: 0.99rem;
    color: var(--ink-900);
    overflow-wrap: anywhere;
}

.prose > *:first-child {
    margin-top: 0;
}

.prose > *:last-child {
    margin-bottom: 0;
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose figure,
.prose table,
.prose pre {
    margin: 1.05em 0;
}

.prose h2,
.prose h3 {
    margin: 1.3em 0 0.5em;
    font-family: var(--font-display);
    line-height: 1.22;
}

.prose h2 {
    font-size: clamp(1.42rem, 2.4vw, 1.82rem);
}

.prose h3 {
    font-size: clamp(1.12rem, 1.8vw, 1.34rem);
}

.prose :where(p, li, blockquote, figcaption, td, th) a:not(.wp-block-button__link):not(.wp-element-button):not(.vipx8-lightbox-trigger):not(.vipx8-link-shop):not(.vipx8-link-day):not(.vipx8-inline-cta) {
    color: var(--accent-deep);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1.2px;
    text-decoration-color: rgba(0, 116, 220, 0.34);
    text-underline-offset: 0.2em;
    border-radius: 0.45em;
    transition:
        color 0.2s ease,
        text-decoration-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.prose :where(p, li, blockquote, figcaption, td, th) a:not(.wp-block-button__link):not(.wp-element-button):not(.vipx8-lightbox-trigger):not(.vipx8-link-shop):not(.vipx8-link-day):not(.vipx8-inline-cta):hover,
.prose :where(p, li, blockquote, figcaption, td, th) a:not(.wp-block-button__link):not(.wp-element-button):not(.vipx8-lightbox-trigger):not(.vipx8-link-shop):not(.vipx8-link-day):not(.vipx8-inline-cta):focus-visible {
    color: #0058aa;
    text-decoration-color: rgba(0, 116, 220, 0.72);
    background: rgba(6, 167, 255, 0.08);
    box-shadow: inset 0 -0.62em 0 rgba(6, 167, 255, 0.1);
}

.prose :where(p, li, blockquote, figcaption, td, th) a:not(.wp-block-button__link):not(.wp-element-button):not(.vipx8-lightbox-trigger):not(.vipx8-link-shop):not(.vipx8-link-day):not(.vipx8-inline-cta):focus-visible,
a.vipx8-link-shop:focus-visible,
a.vipx8-link-day:focus-visible,
a.vipx8-inline-cta:focus-visible {
    outline: 2px solid rgba(6, 167, 255, 0.24);
    outline-offset: 2px;
}

a.vipx8-link-shop,
a.vipx8-link-day,
a.vipx8-inline-cta {
    display: inline-block;
    max-width: 100%;
    margin: 0.16em 0.34em 0.16em 0;
    padding: 0.5em 0.92em;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.55;
    vertical-align: middle;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 10px 22px rgba(15, 23, 42, 0.06);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

a.vipx8-link-day,
a.vipx8-inline-cta {
    color: var(--accent-deep);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 255, 0.96)),
        linear-gradient(135deg, rgba(6, 167, 255, 0.08), transparent 72%);
    border-color: rgba(6, 167, 255, 0.18);
}

a.vipx8-link-shop {
    color: #9a3412;
    background:
        linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(255, 241, 232, 0.98)),
        linear-gradient(135deg, rgba(249, 115, 22, 0.08), transparent 72%);
    border-color: rgba(249, 115, 22, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 12px 24px rgba(249, 115, 22, 0.12);
}

a.vipx8-inline-cta {
    color: #0f2746;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.96)),
        linear-gradient(135deg, rgba(6, 167, 255, 0.06), transparent 74%);
    border-color: rgba(102, 132, 189, 0.18);
}

a.vipx8-link-shop:hover,
a.vipx8-link-shop:focus-visible,
a.vipx8-link-day:hover,
a.vipx8-link-day:focus-visible,
a.vipx8-inline-cta:hover,
a.vipx8-inline-cta:focus-visible {
    text-decoration: none;
    transform: translateY(-1px);
}

a.vipx8-link-day:hover,
a.vipx8-link-day:focus-visible,
a.vipx8-inline-cta:hover,
a.vipx8-inline-cta:focus-visible {
    color: #0058aa;
    border-color: rgba(0, 116, 220, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.76),
        0 14px 28px rgba(6, 167, 255, 0.14);
}

a.vipx8-link-shop:hover,
a.vipx8-link-shop:focus-visible {
    color: #7c2d12;
    border-color: rgba(234, 88, 12, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.76),
        0 14px 30px rgba(249, 115, 22, 0.18);
}

.prose blockquote {
    padding: 18px 20px;
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: rgba(6, 167, 255, 0.08);
    color: var(--ink-700);
}

.prose code,
.prose pre {
    font-family: Consolas, "SFMono-Regular", Menlo, monospace;
}

.prose pre {
    overflow-x: auto;
    padding: 18px;
    border-radius: var(--radius-md);
    background: #182338;
    color: #f4f7fb;
}

.prose table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    white-space: nowrap;
}

.prose th,
.prose td {
    padding: 12px 14px;
    border: 1px solid var(--line);
}

.prose iframe,
.prose video {
    width: 100%;
    max-width: 100%;
    border: 0;
    border-radius: var(--radius-md);
}

.site-footer {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.85);
    background: #111827;
}

.site-footer__inner {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    padding: 28px 0 18px;
}

.site-footer__intro,
.site-footer__menu,
.site-footer__nav {
    display: grid;
    gap: 10px;
    align-content: start;
}

.site-footer__title {
    margin: 4px 0 2px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.18;
}

.site-footer__text {
    margin: 0;
    max-width: 46ch;
    font-size: 0.9rem;
    line-height: 1.72;
}

.site-footer--menu-empty .site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
}

.footer-link-group {
    display: grid;
    gap: 10px;
    min-width: 0;
    margin: 0;
}

.footer-link-group__title {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    line-height: 1.45;
    font-weight: 600;
}

.footer-link-group__nav {
    gap: 0;
}

.site-footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer__nav-list li {
    list-style: none;
}

.site-footer__nav-list li > a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.site-footer__nav-list li > a:hover,
.site-footer__nav-list li > a:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
}

.page-extra-section .page-header {
    margin-bottom: 18px;
}

.comments-panel {
    margin-top: 20px;
}

@media (max-width: 1140px) {
    .feature-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1280px) {
    .site-header__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .site-header__nav-wrap {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        background: rgba(252, 254, 255, 0.97);
        box-shadow: var(--shadow-soft);
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .site-header__nav-wrap.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .menu-list {
        flex-direction: column;
        align-items: stretch;
    }

    .menu-list li > a {
        min-height: 46px;
        border-radius: var(--radius-sm);
    }

    .site-header__cta {
        width: 100%;
    }

    .feature-grid--3,
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .content-sidebar__inner {
        position: static;
    }
}

@media (max-width: 860px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .archive-list-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .archive-list-item__media {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 720px) {
    .site-section {
        padding: 20px 0;
    }

    .site-container,
    .site-container--narrow {
        width: min(100% - 24px, 100%);
    }

    .section-heading__title,
    .page-header__title {
        font-size: clamp(1.52rem, 7vw, 2.08rem);
    }

    .page-header__title {
        font-size: clamp(1.34rem, 5.6vw, 1.72rem);
        line-height: 1.2;
    }

    .page-header__eyebrow {
        max-width: 100%;
        padding: 5px 10px;
        font-size: 0.74rem;
    }

    .page-header__summary {
        font-size: 0.9rem;
        line-height: 1.72;
    }

    .archive-section::before {
        top: 70px;
        left: -120px;
        width: 220px;
        height: 220px;
    }

    .archive-section::after {
        top: 360px;
        right: -120px;
        width: 240px;
        height: 240px;
    }

    .page-header--archive .page-header__body {
        gap: 10px;
        padding: 18px 16px;
        border-radius: 20px;
    }

    .page-header--archive .page-header__body::before {
        border-radius: 20px 20px 0 0;
    }

    .page-header--archive .page-header__title {
        font-size: clamp(1.26rem, 5.2vw, 1.56rem);
        line-height: 1.24;
    }

    .page-header--archive .page-header__summary {
        font-size: 0.88rem;
        line-height: 1.68;
    }

    .feature-grid--4,
    .feature-grid--3,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer {
        margin-top: 18px;
    }

    .site-footer__inner {
        gap: 14px;
        padding: 22px 0 14px;
    }

    .site-footer__title {
        font-size: 1.24rem;
    }

    .site-footer__text {
        font-size: 0.86rem;
        line-height: 1.66;
    }

    .footer-link-group {
        gap: 8px;
    }

    .footer-link-group__title {
        font-size: 0.84rem;
    }

    .site-footer__nav-list {
        gap: 6px;
    }

    .site-footer__nav-list li > a {
        min-height: 32px;
        padding: 7px 10px;
        font-size: 0.84rem;
    }

    .section-heading,
    .page-header {
        margin-bottom: 16px;
    }

    .cta-box__body,
    .site-footer__bottom,
    .cta-split {
        flex-direction: column;
        align-items: stretch;
    }

    .site-footer__bottom {
        gap: 8px;
        padding-bottom: 12px;
        font-size: 0.8rem;
    }

    .cta-box__actions,
    .section-footer {
        justify-content: stretch;
    }

    .button {
        width: 100%;
    }

    .site-header__inner {
        min-height: 74px;
    }

    .content-panel,
    .feature-card,
    .post-card__body,
    .cta-box {
        border-radius: 20px;
    }

    .archive-list-item {
        padding: 16px;
        border-radius: 20px;
    }

    .archive-list-item__meta {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .feature-card,
    .post-card__body {
        padding: 20px;
    }

    .prose {
        font-size: 0.96rem;
    }

    .toc-panel {
        padding: 20px;
    }

    .toc-panel__header-copy {
        gap: 6px;
    }

    .toc-panel__toggle {
        width: 38px;
        height: 38px;
    }

    .archive-layout .content-sidebar .widget {
        padding: 16px;
        border-radius: 18px;
    }

    .archive-layout .content-sidebar .widget_search {
        padding: 0;
        border-radius: 0;
    }

    .archive-layout .content-sidebar .search-form__input,
    .archive-layout .content-sidebar .search-form__button {
        min-height: 42px;
    }

    .search-form {
        padding: 5px;
    }

    .search-form__input {
        min-height: 44px;
        padding: 0 16px 0 18px;
    }

    .search-form__button,
    .search-form__button.button,
    .search-form__button.button--primary {
        width: auto;
        min-width: 92px;
        min-height: 44px;
        padding: 0 18px;
    }

    a.vipx8-link-shop,
    a.vipx8-link-day,
    a.vipx8-inline-cta {
        margin: 0.22em 0.22em 0.22em 0;
        padding: 0.56em 0.9em;
        border-radius: 18px;
        line-height: 1.5;
    }
}

@media (max-width: 560px) {
    .site-header__inner {
        gap: 14px;
    }

    .site-branding {
        gap: 10px;
        max-width: calc(100% - 68px);
    }

    .site-branding__logo img,
    .site-branding__logo .custom-logo {
        max-height: 40px;
    }

    .section-heading__summary,
    .page-header__summary,
    .hero-panel__summary,
    .cta-box__text {
        font-size: 0.92rem;
    }

    .faq-item__summary {
        padding: 16px 50px 16px 18px;
    }
}
