:root {
    --syu-bg: #050607;
    --syu-panel: rgba(20, 22, 24, .78);
    --syu-panel-2: rgba(255, 255, 255, .055);
    --syu-line: rgba(230, 238, 245, .35);
    --syu-line-soft: rgba(230, 238, 245, .2);
    --syu-text: #f4f6f8;
    --syu-muted: #a9b0ba;
    --syu-dim: #737b86;
}

body.syu-site {
    background: #050607;
    color: var(--syu-text);
}

body.syu-site #page-container,
body.syu-site #main-content {
    background:
        radial-gradient(circle at 70% 4%, rgba(128, 137, 148, .18), transparent 28%),
        linear-gradient(180deg, #111315 0%, #050607 42%, #020303 100%);
}

body.home.syu-site #top-header,
body.home.syu-site #main-header,
body.home.syu-site header#main-header {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

body.home.syu-site #page-container {
    padding-top: 0 !important;
}

body.syu-site .et_pb_section {
    background-color: transparent;
}

body.syu-site:not(.home) #top-header,
body.syu-site:not(.home) #main-header {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

body.syu-site:not(.home) #page-container {
    padding-top: 0 !important;
}

.syu-global-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .08), transparent 28%),
        linear-gradient(180deg, rgba(12, 14, 16, .98), rgba(5, 6, 7, .95));
    border-bottom: 1px solid rgba(230, 238, 245, .18);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
}

.syu-global-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .1), transparent 18%, transparent 74%, rgba(255, 255, 255, .08)),
        repeating-linear-gradient(145deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 8px);
    z-index: 0;
}

.syu-global-header-inner {
    position: relative;
    z-index: 1;
    width: min(1780px, 100%);
    margin: 0 auto;
    min-height: 82px;
    padding: 18px 3.4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.syu-global-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
    color: #fff !important;
    text-decoration: none;
    white-space: nowrap;
}

.syu-global-brand strong {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 16px rgba(255, 255, 255, .42);
}

.syu-global-brand span {
    color: #d7dbe0;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .08em;
}

.syu-global-nav--desktop {
    flex: 1 1 auto;
}

.syu-global-menu--mobile {
    display: none;
}

.syu-global-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.syu-global-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: #d9dde2 !important;
    font-weight: 900;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, .18);
}

.syu-global-nav a::after,
.syu-menu .et-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: #fff;
    box-shadow: 0 0 14px #fff;
    opacity: 0;
    transform: scaleX(.62);
    transform-origin: center;
    transition: opacity .18s ease, transform .18s ease;
}

.syu-global-nav .current-menu-item > a,
.syu-global-nav .current-menu-ancestor > a,
.syu-global-nav a:hover {
    color: #fff !important;
    text-shadow: 0 0 14px rgba(255, 255, 255, .48);
}

.syu-global-nav .current-menu-item > a::after,
.syu-global-nav .current-menu-ancestor > a::after,
.syu-global-nav a:hover::after,
.syu-menu .current-menu-item > a::after,
.syu-menu .current-menu-ancestor > a::after,
.syu-menu .et-menu a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

body.syu-site a:focus-visible,
body.syu-site button:focus-visible,
body.syu-site input:focus-visible,
body.syu-site textarea:focus-visible,
body.syu-site select:focus-visible,
body.syu-site summary:focus-visible {
    outline: 2px solid #f4f6f8 !important;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, .18) !important;
}

body.syu-site:not(.home) #main-content {
    min-height: 100vh;
    background:
        radial-gradient(circle at 72% 8%, rgba(120, 130, 140, .14), transparent 30%),
        linear-gradient(180deg, #090a0c 0%, #030405 100%) !important;
}

body.syu-site:not(.home) #main-content .container {
    width: calc(100% - 6.8vw) !important;
    max-width: 1780px !important;
    padding-top: 34px;
}

body.syu-site.page:not(.home) #main-content .container::before,
body.syu-site.archive #main-content .container::before,
body.syu-site.single-post #main-content .container::before {
    display: none !important;
}

body.syu-site.page:not(.home) #left-area,
body.syu-site.archive #left-area,
body.syu-site.single-post #left-area {
    width: 100% !important;
    float: none !important;
    padding-right: 0 !important;
}

body.syu-site.page:not(.home) #sidebar,
body.syu-site.archive #sidebar,
body.syu-site.single-post #sidebar {
    display: none !important;
}

body.syu-site.page:not(.home) .main_title {
    display: none;
}

body.syu-site:not(.home) article,
body.syu-site:not(.home) .et_pb_post,
body.syu-site:not(.home) #left-area,
body.syu-site:not(.home) .entry-content,
body.syu-site:not(.home) .woocommerce {
    color: #d8dde4;
}

body.syu-site:not(.home) #left-area > article,
body.syu-site:not(.home) .et_pb_post,
body.syu-site:not(.home) .page #left-area {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 1px solid rgba(230, 238, 245, .26);
    background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .022));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 18px 44px rgba(0, 0, 0, .28);
    padding: 28px 32px;
    clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
}

body.syu-site.single-post .et_post_meta_wrapper,
body.syu-site.single-post .entry-content {
    width: 100% !important;
    max-width: none !important;
}

body.syu-site.single-post #left-area > article {
    position: relative;
    overflow: hidden;
}

body.syu-site.page:not(.home) #left-area > article {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    clip-path: none !important;
}

body.syu-site.page:not(.home) .entry-content,
body.syu-site.page:not(.home) .syu-content-panel {
    width: 100% !important;
    max-width: 100% !important;
}

body.syu-site:not(.home) h1,
body.syu-site:not(.home) h2,
body.syu-site:not(.home) h3,
body.syu-site:not(.home) h4,
body.syu-site:not(.home) .entry-title,
body.syu-site:not(.home) .main_title {
    color: #f4f6f8 !important;
    letter-spacing: 0;
}

body.syu-site:not(.home) p,
body.syu-site:not(.home) li,
body.syu-site:not(.home) .post-meta,
body.syu-site:not(.home) .published {
    color: #b8c0ca !important;
}

body.syu-site:not(.home) a {
    color: #eef2f6;
}

body.syu-site:not(.home) #sidebar {
    color: #b8c0ca;
}

body.syu-site:not(.home) #sidebar .widgettitle {
    color: #f4f6f8;
}

body.syu-site:not(.home) #sidebar .widget {
    border: 1px solid rgba(230, 238, 245, .22);
    background: rgba(255, 255, 255, .035);
    padding: 22px;
    margin-bottom: 20px;
}

body.syu-site:not(.home) #searchsubmit,
body.syu-site:not(.home) .search-submit {
    background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.08)) !important;
    border: 1px solid rgba(255,255,255,.34) !important;
    color: #fff !important;
    font-weight: 800;
}

body.syu-site:not(.home) input[type="search"],
body.syu-site:not(.home) input[type="text"],
body.syu-site:not(.home) input[type="email"],
body.syu-site:not(.home) textarea {
    background: rgba(255, 255, 255, .08) !important;
    border: 1px solid rgba(230, 238, 245, .32) !important;
    color: #f4f6f8 !important;
}

body.syu-site:not(.home) input::placeholder,
body.syu-site:not(.home) textarea::placeholder {
    color: #aeb6c1 !important;
}

.syu-archive-wrap {
    width: calc(100% - 6.8vw) !important;
    max-width: 1780px !important;
}

.syu-archive-hero,
.syu-empty-state,
.syu-content-panel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(230, 238, 245, .28);
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 44px rgba(0,0,0,.28);
    padding: 28px 32px;
    clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
}

.syu-archive-hero::before,
.syu-empty-state::before,
.syu-content-panel::before,
body.syu-site.single-post #left-area > article::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .15), transparent 18%, transparent 74%, rgba(255, 255, 255, .1)),
        repeating-linear-gradient(145deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 8px);
    z-index: 0;
}

.syu-archive-hero > *,
.syu-empty-state > *,
.syu-content-panel > *,
body.syu-site.single-post #left-area > article > * {
    position: relative;
    z-index: 1;
}

.syu-archive-hero {
    margin-bottom: 22px;
}

.syu-kicker-text {
    margin: 0 0 10px !important;
    color: #cbd3dd !important;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.syu-archive-hero h1,
.syu-empty-state h2 {
    margin: 0 0 12px;
    color: #fff !important;
    font-size: 38px;
    line-height: 1.18;
}

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

.syu-post-card,
.syu-topic-card,
.syu-info-card {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(230, 238, 245, .24);
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.024));
    padding: 22px;
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.syu-post-card::before,
.syu-topic-card::before,
.syu-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .12), transparent 18%, transparent 74%, rgba(255, 255, 255, .08)),
        repeating-linear-gradient(145deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 8px);
    z-index: 0;
}

.syu-post-card > *,
.syu-topic-card > *,
.syu-info-card > * {
    position: relative;
    z-index: 1;
}

.syu-post-card-link {
    display: grid;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.syu-post-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: brightness(.82) contrast(1.06);
}

.syu-post-card h2,
.syu-topic-card h2,
.syu-info-card h2 {
    margin: 0 0 8px;
    color: #f4f6f8 !important;
    font-size: 20px;
    line-height: 1.35;
}

.syu-post-card p,
.syu-topic-card p,
.syu-info-card p,
.syu-empty-state p,
.syu-archive-hero p {
    color: #c6ced8 !important;
}

.syu-post-card span,
.syu-ui-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.34);
    background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
    color: #fff !important;
    font-weight: 900;
    text-decoration: none;
    box-shadow: inset 0 0 22px rgba(255,255,255,.09);
}

.syu-ui-button.secondary {
    background: rgba(0,0,0,.3);
    color: #d6dce4 !important;
}

.syu-ui-button:hover,
.syu-post-card-link:hover span {
    transform: translateY(-1px);
    box-shadow: inset 0 0 22px rgba(255,255,255,.13), 0 0 18px rgba(255,255,255,.12);
}

.syu-empty-actions,
.syu-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.syu-content-hub,
.syu-about-page,
.syu-contact-page {
    display: grid;
    gap: 22px;
}

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

.syu-mini-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.syu-mini-list li {
    border-top: 1px solid rgba(230, 238, 245, .16);
    padding-top: 10px;
}

@media (max-width: 980px) {
    .syu-global-header-inner {
        min-height: 80px;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 18px 10px;
    }
    .syu-global-brand strong {
        font-size: 26px;
    }
    .syu-global-brand span {
        font-size: 16px;
    }
    .syu-global-nav--desktop {
        display: none;
    }
    .syu-global-menu--mobile {
        display: block;
        width: 100%;
    }
    .syu-global-menu--mobile summary {
        list-style: none;
    }
    .syu-global-menu--mobile summary::-webkit-details-marker {
        display: none;
    }
    .syu-global-menu--mobile summary span {
        display: block;
        width: 22px;
        height: 2px;
        background: #eef2f6;
        box-shadow: 0 0 10px rgba(255, 255, 255, .32);
    }
    .syu-global-nav--mobile {
        position: relative;
        overflow: hidden;
        display: none;
        margin-top: 12px;
        width: min(340px, calc(100vw - 20px));
        padding: 8px;
        border: 1px solid rgba(230, 238, 245, .22);
        background: linear-gradient(180deg, rgba(14, 16, 18, .98), rgba(5, 6, 7, .98));
        box-shadow: 0 18px 44px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .08);
        clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
    }
    .syu-global-menu--mobile[open] .syu-global-nav--mobile {
        display: block;
    }
    .syu-global-nav ul {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .syu-global-nav a {
        min-height: 42px;
        padding: 0 12px;
        border: 1px solid rgba(230, 238, 245, .18);
        background: rgba(255, 255, 255, .035);
    }
    body.syu-site:not(.home) #page-container,
    body.syu-site:not(.home) #main-content {
        overflow-x: hidden;
    }
    body.syu-site:not(.home) #main-content .container {
        width: calc(100% - 20px) !important;
        max-width: calc(100% - 20px) !important;
        padding-top: 34px;
    }
    body.syu-site:not(.home) #main-content .container {
        padding-top: 34px;
    }
    .syu-post-grid,
    .syu-card-list,
    .syu-topic-grid,
    .syu-info-grid {
        grid-template-columns: 1fr;
    }
    .syu-archive-hero,
    .syu-empty-state,
    .syu-content-panel {
        padding: 24px;
    }
    .syu-topic-grid,
    .syu-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .syu-archive-hero,
    .syu-empty-state,
    .syu-content-panel,
    .syu-topic-card,
    .syu-info-card {
        padding: 22px;
    }
    .syu-archive-hero h1,
    .syu-empty-state h2,
    .syu-content-panel h1 {
        font-size: 30px;
        line-height: 1.2;
    }
    .syu-empty-actions,
    .syu-action-row {
        flex-direction: column;
    }
    .syu-ui-button {
        width: 100%;
    }
}

.syu-page {
    min-height: 100vh;
    padding: 24px 3.3vw 18px;
    overflow: hidden;
    gap: 10px !important;
    row-gap: 10px !important;
}

.syu-page,
.syu-page * {
    box-sizing: border-box;
}

.syu-shell {
    width: min(1780px, 100%);
    margin: 0 auto;
}

.syu-page .et_pb_module {
    margin-bottom: 0 !important;
}

.syu-panel {
    position: relative;
    border: 1px solid var(--syu-line);
    background: linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .022) 44%, rgba(255, 255, 255, .06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 18px 44px rgba(0, 0, 0, .34);
    clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
}

.syu-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .17), transparent 18%, transparent 74%, rgba(255, 255, 255, .12)),
        repeating-linear-gradient(145deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 8px);
    z-index: 0;
}

.syu-panel > .et_pb_column,
.syu-panel > .et_pb_module,
.syu-panel > div {
    position: relative;
    z-index: 1;
}

.syu-header {
    position: relative;
    overflow: visible;
    z-index: 50;
    width: calc(100% + 6.8vw) !important;
    max-width: none !important;
    min-height: 82px;
    padding: 18px 3.4vw !important;
    margin-left: calc(-1 * 3.4vw) !important;
    margin-right: calc(-1 * 3.4vw) !important;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid rgba(230, 238, 245, .18);
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, .08), transparent 28%),
        linear-gradient(180deg, rgba(12, 14, 16, .98), rgba(5, 6, 7, .95));
    box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
}

.syu-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .1), transparent 18%, transparent 74%, rgba(255, 255, 255, .08)),
        repeating-linear-gradient(145deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 8px);
    z-index: 0;
}

.syu-header > .et_pb_column {
    position: relative;
    z-index: 1;
    width: auto !important;
    margin: 0 !important;
}

.syu-header > .et_pb_column:last-child {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.syu-brand-text .et_pb_text_inner {
    display: flex;
    align-items: baseline;
    gap: 14px;
    white-space: nowrap;
}

.syu-brand-text strong {
    font-size: 32px;
    line-height: 1;
    color: #fff !important;
    font-weight: 900;
    text-shadow: 0 0 16px rgba(255, 255, 255, .42);
}

.syu-brand-text span {
    color: #d7dbe0 !important;
    font-size: 17px;
    letter-spacing: .08em;
    font-weight: 700;
}

.syu-menu .et-menu,
.syu-menu .et_pb_menu__menu > nav > ul {
    gap: 34px;
}

.syu-menu,
.syu-menu .et_pb_menu,
.syu-menu .et_pb_menu_inner_container {
    background: transparent !important;
}

@media (min-width: 981px) {
    .syu-menu,
    .syu-menu .et_pb_menu,
    .syu-menu .et_pb_menu_inner_container,
    .syu-menu .et_pb_menu__wrap,
    .syu-menu .et_pb_menu__menu,
    .syu-menu .et_pb_menu__menu > nav {
        width: 100% !important;
        max-width: none !important;
    }

    .syu-menu .et_pb_menu_inner_container,
    .syu-menu .et_pb_menu__wrap {
        display: flex !important;
        justify-content: flex-end !important;
    }

    .syu-menu .et-menu,
    .syu-menu .et_pb_menu__menu > nav > ul {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        justify-content: flex-end !important;
    }

    .syu-menu .et-menu > li,
    .syu-menu .et_pb_menu__menu > nav > ul > li {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.syu-menu .et_mobile_nav_menu {
    align-items: center;
}

.syu-menu .mobile_nav {
    background: transparent !important;
}

.syu-menu .mobile_nav .mobile_menu_bar,
.syu-global-menu--mobile summary {
    width: 44px;
    height: 38px;
    display: grid;
    align-content: center;
    justify-content: center;
    gap: 5px;
    padding: 0 8px;
    cursor: pointer;
    border: 1px solid rgba(230, 238, 245, .26);
    background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
    box-shadow: inset 0 0 18px rgba(255, 255, 255, .08), 0 0 16px rgba(255, 255, 255, .08);
    clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px), 0 7px);
}

.syu-menu .mobile_nav .mobile_menu_bar:hover,
.syu-menu .mobile_nav.opened .mobile_menu_bar,
.syu-global-menu--mobile summary:hover,
.syu-global-menu--mobile[open] summary {
    border-color: rgba(255, 255, 255, .44);
    background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .045));
    box-shadow: inset 0 0 22px rgba(255, 255, 255, .12), 0 0 18px rgba(255, 255, 255, .16);
}

.syu-menu .mobile_nav .mobile_menu_bar::before {
    content: "";
    display: block;
    width: 22px;
    height: 14px;
    background:
        linear-gradient(#eef2f6, #eef2f6) 0 0 / 22px 2px no-repeat,
        linear-gradient(#eef2f6, #eef2f6) 0 6px / 22px 2px no-repeat,
        linear-gradient(#eef2f6, #eef2f6) 0 12px / 22px 2px no-repeat;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, .32);
}

.syu-menu .et_mobile_menu {
    position: absolute;
    z-index: 60;
    overflow: hidden;
    left: 0 !important;
    right: auto !important;
    width: min(340px, calc(100vw - 20px)) !important;
    min-width: min(340px, calc(100vw - 20px)) !important;
    margin-top: 12px !important;
    padding: 8px !important;
    border: 1px solid rgba(230, 238, 245, .22) !important;
    background: linear-gradient(180deg, rgba(14, 16, 18, .98), rgba(5, 6, 7, .98)) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .08);
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.syu-menu .et_mobile_menu::before,
.syu-global-nav--mobile::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .1), transparent 18%, transparent 74%, rgba(255, 255, 255, .08)),
        repeating-linear-gradient(145deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 8px);
    z-index: 0;
}

.syu-menu .et_mobile_menu li a {
    position: relative;
    z-index: 1;
    min-height: 42px;
    padding: 12px !important;
    border: 1px solid rgba(230, 238, 245, .16);
    background: rgba(255, 255, 255, .035);
}

@media (min-width: 981px) {
    .syu-menu .et_pb_menu__menu {
        display: block !important;
    }
    .syu-menu .et_mobile_nav_menu,
    .syu-menu .et_mobile_menu {
        display: none !important;
    }
}

.syu-menu .et-menu a,
.syu-menu .et_mobile_menu a,
.syu-global-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: #d9dde2 !important;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, .18);
}

.syu-menu .current-menu-item > a,
.syu-menu .current-menu-ancestor > a,
.syu-menu .et-menu a:hover,
.syu-global-nav .current-menu-item > a,
.syu-global-nav .current-menu-ancestor > a,
.syu-global-nav a:hover {
    color: #fff !important;
    text-shadow: 0 0 14px rgba(255, 255, 255, .48);
}

.syu-hero {
    width: min(1780px, 100%) !important;
    max-width: 1780px !important;
    min-height: 292px;
    padding: 48px 72px !important;
    overflow: hidden;
    margin-bottom: 10px;
    background-image:
        linear-gradient(90deg, rgba(3, 4, 5, .96) 0%, rgba(3, 4, 5, .88) 38%, rgba(3, 4, 5, .34) 68%, rgba(3, 4, 5, .9) 100%),
        url("https://www.rewrite.tw/wp-content/uploads/2026/06/barber-shop-10.jpg");
    background-size: cover;
    background-position: center;
}

.syu-hero::after {
    content: "";
    position: absolute;
    right: 8%;
    top: 18px;
    width: 26%;
    height: 86%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .18);
    opacity: .42;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
    z-index: 0;
}

.syu-hero .et_pb_row {
    display: none;
}

.syu-hero > .et_pb_column {
    display: block !important;
    width: 100% !important;
    max-width: 780px !important;
    margin: 0 !important;
}

.syu-hero .syu-kicker {
    margin-bottom: 12px !important;
}

.syu-hero .syu-hero-title {
    margin-bottom: 14px !important;
}

.syu-hero .syu-hero-copy {
    margin-bottom: 28px !important;
}

.syu-kicker .et_pb_text_inner {
    color: #ccd3dc !important;
    font-size: 14px;
    letter-spacing: .18em;
    font-weight: 900;
}

.syu-hero-title h1 {
    margin: 0;
    color: #f7f8fa !important;
    font-size: 44px;
    line-height: 1.14;
    font-weight: 900;
    text-shadow: 0 0 18px rgba(255, 255, 255, .3);
}

.syu-hero-copy .et_pb_text_inner {
    color: #c4c9d0 !important;
    font-size: 20px;
}

.syu-actions-row {
    width: auto !important;
    max-width: none !important;
    margin: 28px 0 0 !important;
    padding: 0 !important;
    display: flex;
    gap: 16px;
}

.syu-button.et_pb_button,
.syu-button .et_pb_button {
    min-width: 214px;
    height: 58px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .34) !important;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .05)) !important;
    color: #fff !important;
    font-weight: 900;
    box-shadow: inset 0 0 24px rgba(255, 255, 255, .12), 0 0 20px rgba(255, 255, 255, .14);
}

.syu-hero .syu-button {
    display: inline-flex !important;
    margin-right: 16px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.syu-button-secondary.et_pb_button,
.syu-button-secondary .et_pb_button {
    background: rgba(0, 0, 0, .38) !important;
    color: #ccd2d8 !important;
    box-shadow: none;
}

.syu-section {
    width: min(1780px, 100%) !important;
    max-width: 1780px !important;
    padding: 28px 32px !important;
    margin-top: 0;
}

.syu-section > .et_pb_column {
    width: 100% !important;
    margin: 0 !important;
}

.syu-section-title .et_pb_text_inner {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e8ebee !important;
    font-size: 19px;
    font-weight: 900;
}

.syu-section-title {
    margin-bottom: 12px !important;
}

.syu-section-title .et_pb_text_inner::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eef2f6;
    box-shadow: 0 0 12px #fff;
    flex: 0 0 auto;
}

.syu-stat-row {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.syu-stat-row > .et_pb_column,
.syu-card-grid > .et_pb_column,
.syu-entry-grid > .et_pb_column {
    width: auto !important;
    margin: 0 !important;
}

.syu-stat-card {
    min-height: 86px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
    padding: 18px 26px;
    box-shadow: inset 0 0 28px rgba(255, 255, 255, .035);
}

.syu-stat-card .et_pb_text_inner {
    min-height: 50px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.syu-stat-card .et_pb_text_inner::before,
.syu-entry-card .et_pb_text_inner::before {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .22);
    color: #f3f5f7;
    font-size: 17px;
    font-weight: 900;
    text-shadow: 0 0 14px rgba(255, 255, 255, .42);
}

.syu-icon-kg .et_pb_text_inner::before { content: "KG"; }
.syu-icon-goal .et_pb_text_inner::before { content: "63"; }
.syu-icon-train .et_pb_text_inner::before { content: "3X"; }
.syu-icon-protein .et_pb_text_inner::before { content: "P"; }
.syu-icon-body .et_pb_text_inner::before { content: "身"; }
.syu-icon-food .et_pb_text_inner::before { content: "食"; }
.syu-icon-style .et_pb_text_inner::before { content: "鏡"; }

.syu-stat-card em {
    display: block;
    color: #bbc1c8 !important;
    font-style: normal;
    font-size: 14px;
}

.syu-stat-card strong {
    display: block;
    color: #fff !important;
    font-size: 30px;
    line-height: 1.05;
}

.syu-stat-card small {
    color: #b8bec6 !important;
    font-size: 18px;
    font-weight: 500;
}

.syu-progress .et_pb_text_inner {
    display: grid;
    grid-template-columns: max-content minmax(160px, 1fr) max-content;
    align-items: center;
    gap: 22px;
    color: #cbd0d7 !important;
    font-size: 17px;
    font-weight: 800;
    margin-top: 18px;
}

.syu-progress .bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .18);
    overflow: hidden;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, .7);
}

.syu-progress .bar i {
    display: block;
    width: var(--syu-progress-value, 41%);
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .28), #f3f5f7 70%, rgba(255, 255, 255, .35));
    box-shadow: 0 0 22px rgba(255, 255, 255, .58);
}

.syu-card-grid {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.syu-record-card,
.syu-entry-card {
    border: 1px solid rgba(255, 255, 255, .22);
    background: linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
    min-height: 126px;
    padding: 14px 22px;
}

.syu-record-card .et_pb_text_inner {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 24px;
    gap: 22px;
    align-items: center;
}

.syu-record-card img {
    width: 150px;
    height: 88px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(.12) contrast(1.08) brightness(.72);
}

.syu-record-card h3,
.syu-entry-card h3 {
    margin: 0 0 8px;
    color: #f0f2f4 !important;
    font-size: 18px;
    line-height: 1.35;
}

.syu-record-card p,
.syu-entry-card p {
    margin: 0;
    color: #9fa6af !important;
    font-size: 14px;
}

.syu-record-card .arrow,
.syu-entry-card .arrow {
    color: #dfe4ea !important;
    font-size: 34px;
    line-height: 1;
    text-align: right;
}

.syu-entry-grid {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.syu-entry-card {
    position: relative;
    min-height: 112px;
    padding: 18px 22px;
    background-size: cover;
    background-position: center;
}

.syu-entry-card .et_pb_text_inner {
    position: relative;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 24px;
    gap: 18px;
    align-items: center;
    z-index: 1;
}

.syu-entry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .38));
    z-index: 0;
}

.syu-entry-card .et_pb_text_inner::before {
    width: 50px;
    height: 50px;
}

.syu-entry-body { background-image: url("https://www.rewrite.tw/wp-content/uploads/2026/02/1.png"); }
.syu-entry-training { background-image: url("https://www.rewrite.tw/wp-content/uploads/2026/06/barber-shop-10.jpg"); }
.syu-entry-food { background-image: url("https://www.rewrite.tw/wp-content/uploads/2026/02/StockSnap_2CFVB6XPST-diviflow.webp"); }
.syu-entry-style { background-image: url("https://www.rewrite.tw/wp-content/uploads/2026/02/glasses.jpg"); }

.syu-about-row {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
}

.syu-about-row > .et_pb_column {
    width: auto !important;
    margin: 0 !important;
}

.syu-about-photo img {
    width: 118px;
    height: 118px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(.15) contrast(1.1) brightness(.78);
    border: 1px solid rgba(255, 255, 255, .28);
}

.syu-quote .et_pb_text_inner {
    color: #e3e6ea !important;
    font-size: 25px;
    line-height: 1.55;
}

.syu-footer-note .et_pb_text_inner {
    text-align: center;
    color: #8d949d !important;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .syu-page {
        padding: 20px 18px;
    }
    .syu-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .syu-menu .et-menu,
    .syu-menu .et_pb_menu__menu > nav > ul {
        gap: 18px;
    }
    .syu-hero {
        padding: 42px 28px !important;
    }
    .syu-hero-title h1 {
        font-size: 34px;
    }
    .syu-stat-row,
    .syu-card-grid,
    .syu-entry-grid {
        grid-template-columns: 1fr 1fr;
    }
    .syu-about-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .syu-page {
        padding: 14px 10px;
    }
    .syu-header {
        width: calc(100% + 20px) !important;
        margin-left: -10px !important;
        margin-right: -10px !important;
        padding: 18px 10px !important;
    }
    .syu-brand-text strong {
        font-size: 26px;
    }
    .syu-brand-text span {
        font-size: 16px;
    }
    .syu-menu .et_mobile_nav_menu {
        display: block;
    }
    .syu-hero {
        padding: 34px 20px !important;
        background-position: 62% center;
    }
    .syu-hero::after {
        display: none;
    }
    .syu-kicker .et_pb_text_inner {
        font-size: 12px;
        letter-spacing: .14em;
    }
    .syu-hero-title h1 {
        font-size: 27px;
        line-height: 1.22;
    }
    .syu-hero-copy .et_pb_text_inner {
        font-size: 16px;
    }
    .syu-actions-row {
        flex-direction: column;
    }
    .syu-button .et_pb_button {
        width: 100%;
        min-width: 0;
    }
    .syu-section {
        padding: 22px 16px !important;
    }
    .syu-stat-row,
    .syu-card-grid,
    .syu-entry-grid {
        grid-template-columns: 1fr;
    }
    .syu-progress .et_pb_text_inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .syu-record-card .et_pb_text_inner {
        grid-template-columns: 104px minmax(0, 1fr) 16px;
        gap: 14px;
    }
    .syu-record-card img {
        width: 104px;
        height: 74px;
    }
    .syu-record-card h3,
    .syu-entry-card h3 {
        font-size: 16px;
    }
    .syu-entry-card {
        padding: 16px;
    }
    .syu-about-row {
        grid-template-columns: 88px minmax(0, 1fr);
    }
    .syu-about-photo img {
        width: 88px;
        height: 88px;
    }
    .syu-quote .et_pb_text_inner {
        font-size: 18px;
    }
}

@media (max-width: 680px) {
    body.syu-site .syu-header,
    body.syu-site .syu-global-header {
        overflow: visible !important;
        z-index: 1000;
    }

    body.home.syu-site .syu-header {
        min-height: 72px;
        margin-bottom: 10px;
        align-items: center !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 12px !important;
        padding: 14px 10px !important;
    }

    body.home.syu-site .syu-header > .et_pb_column {
        width: auto !important;
    }

    body.home.syu-site .syu-header > .et_pb_column:first-child {
        flex: 0 1 auto !important;
    }

    body.home.syu-site .syu-header > .et_pb_column:last-child {
        flex: 1 1 auto !important;
        min-width: 64px;
        display: flex !important;
        justify-content: flex-end !important;
        position: static !important;
    }

    body.home.syu-site .syu-brand-text {
        width: auto !important;
    }

    body.home.syu-site .syu-brand-text .et_pb_text_inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: baseline !important;
        gap: 12px !important;
        white-space: nowrap;
    }

    body.home.syu-site .syu-menu,
    body.home.syu-site .syu-menu .et_pb_menu,
    body.home.syu-site .syu-menu .et_pb_menu_inner_container,
    body.home.syu-site .syu-menu .et_pb_menu__wrap,
    body.home.syu-site .syu-menu .mobile_nav {
        position: static !important;
        width: 100% !important;
    }

    body.home.syu-site .syu-menu .et_mobile_nav_menu {
        display: flex !important;
        justify-content: flex-end !important;
        width: 100% !important;
        margin-left: auto !important;
    }

    body.home.syu-site .syu-menu .mobile_nav {
        width: 52px !important;
        margin-left: auto !important;
    }

    body.home.syu-site .syu-menu .mobile_nav .mobile_menu_bar {
        transform: translateX(6px);
    }

    body.syu-site .syu-global-header-inner {
        min-height: 72px;
        padding: 14px 10px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        position: relative;
        overflow: visible;
    }

    body.syu-site .syu-global-menu--mobile {
        width: auto;
        justify-self: end;
        position: static;
    }

    body.syu-site .syu-global-brand {
        min-width: 0;
    }

    body.syu-site .syu-global-brand strong,
    body.syu-site .syu-brand-text strong {
        font-size: 26px;
    }

    body.syu-site .syu-global-brand span,
    body.syu-site .syu-brand-text span {
        font-size: 15px;
        letter-spacing: .06em;
    }

    body.syu-site .syu-menu .mobile_nav .mobile_menu_bar,
    body.syu-site .syu-global-menu--mobile summary {
        width: 52px;
        height: 44px;
        padding: 0 12px;
        border-color: rgba(230, 238, 245, .34);
        background:
            linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .035));
        box-shadow: inset 0 0 20px rgba(255, 255, 255, .1), 0 0 18px rgba(255, 255, 255, .1);
        clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
    }

    body.syu-site .syu-menu .mobile_nav .mobile_menu_bar::before {
        width: 24px;
        height: 16px;
        background:
            linear-gradient(#eef2f6, #eef2f6) 0 0 / 24px 2px no-repeat,
            linear-gradient(#eef2f6, #eef2f6) 0 7px / 24px 2px no-repeat,
            linear-gradient(#eef2f6, #eef2f6) 0 14px / 24px 2px no-repeat;
    }

    body.syu-site .syu-global-menu--mobile summary span {
        width: 24px;
    }

    body.home.syu-site .syu-menu .et_mobile_menu,
    body.syu-site .syu-global-nav--mobile {
        position: absolute !important;
        left: 10px !important;
        right: 10px !important;
        top: calc(100% + 8px) !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        margin-top: 0 !important;
        padding: 10px !important;
        z-index: 1200;
        border: 1px solid rgba(230, 238, 245, .26) !important;
        background:
            linear-gradient(180deg, rgba(14, 16, 18, .985), rgba(5, 6, 7, .985)) !important;
        box-shadow: 0 24px 58px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .1);
        clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
    }

    body.syu-site .syu-global-nav--mobile {
        display: none;
    }

    body.syu-site .syu-global-menu--mobile[open] .syu-global-nav--mobile {
        display: block;
    }

    body.home.syu-site .syu-menu .et_mobile_menu ul,
    body.home.syu-site .syu-menu .et_mobile_menu,
    body.syu-site .syu-global-nav--mobile ul {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    body.home.syu-site .syu-menu .et_mobile_menu {
        display: none;
    }

    body.home.syu-site .syu-menu .mobile_nav.opened .et_mobile_menu {
        display: grid !important;
    }

    body.home.syu-site .syu-menu .et_mobile_menu li,
    body.syu-site .syu-global-nav--mobile li {
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
    }

    body.home.syu-site .syu-menu .et_mobile_menu li a,
    body.syu-site .syu-global-nav--mobile a {
        width: 100% !important;
        min-height: 56px !important;
        justify-content: center !important;
        padding: 0 10px !important;
        border: 1px solid rgba(230, 238, 245, .18) !important;
        background: rgba(255, 255, 255, .04) !important;
        color: #f1f4f7 !important;
        font-size: 15px !important;
        line-height: 1.2 !important;
        text-align: center;
        box-shadow: inset 0 0 18px rgba(255, 255, 255, .045);
        clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
    }

    body.home.syu-site .syu-menu .et_mobile_menu li.current-menu-item a,
    body.syu-site .syu-global-nav--mobile .current-menu-item > a {
        border-color: rgba(255, 255, 255, .48) !important;
        background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .05)) !important;
        text-shadow: 0 0 14px rgba(255, 255, 255, .48);
    }

    body.syu-site .syu-global-nav--mobile a::after,
    body.home.syu-site .syu-menu .et_mobile_menu a::after {
        display: none !important;
    }
}
