@font-face {
    font-family: 'NanumGothic';
    src: url('/assets/fonts/NanumGothic-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NanumGothic';
    src: url('/assets/fonts/NanumGothic-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #f2f0eb;
    --text-color: #1a1a1a;
    --accent-color: #67645e;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --font-main: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header */
.top-banner {
    background-color: #e5e2db;
    text-align: center;
    padding: 8px 0;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--bg-color);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 80px;
}

.nav-left, .nav-right {
    display: flex;
    gap: 30px;
    flex: 1;
    z-index: 2;
}

.nav-right {
    justify-content: flex-end;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.nav-button {
    border: 0;
    background: transparent;
    color: inherit;
    font-family: inherit;
    padding: 0;
}

.nav-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.admin-link {
    color: #e74c3c;
    font-weight: 700;
}

body.drawer-open {
    overflow: hidden;
}

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

.drawer-featured .category-item {
    margin-bottom: 20px;
}

.drawer-search-submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    opacity: 0.5;
}

.cart-loading {
    text-align: center;
    padding: 40px;
}

#toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    padding: 16px 25px;
    border-radius: 4px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    background: #67645e;
}

.toast-error {
    background: #e74c3c;
}

.toast-info {
    background: #3498db;
}

.toast-warning {
    background: #d97706;
}

.toast-close {
    border: 0;
    background: transparent;
    color: inherit;
    margin-left: 20px;
    cursor: pointer;
    opacity: 0.7;
}

.nav-link:hover {
    opacity: 0.6;
}

.order-status-text {
    margin-top: 5px;
    font-weight: 700;
}

.order-status-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid currentColor;
}

.order-status-text--pending,
.order-status-badge--pending {
    color: #f39c12;
}

.order-status-badge--pending {
    background: rgba(243, 156, 18, 0.07);
}

.order-status-text--paid,
.order-status-badge--paid,
.payment-status-message--paid {
    color: #27ae60;
}

.order-status-badge--paid {
    background: rgba(39, 174, 96, 0.07);
}

.order-status-text--shipping,
.order-status-badge--shipping {
    color: #2980b9;
}

.order-status-badge--shipping {
    background: rgba(41, 128, 185, 0.07);
}

.order-status-text--completed,
.order-status-badge--completed {
    color: #2c3e50;
}

.order-status-badge--completed {
    background: rgba(44, 62, 80, 0.07);
}

.order-status-text--cancelled,
.order-status-badge--cancelled,
.payment-status-message--pending,
.payment-status-message--cancelled {
    color: #e74c3c;
}

.order-status-badge--cancelled {
    background: rgba(231, 76, 60, 0.07);
}

.payment-status-message {
    font-size: 0.8rem;
}

.account-order-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.account-order-item--spaced {
    margin-bottom: 20px;
}

.u-inline-c57ea8d3:hover {
    border-color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.is-hidden {
    visibility: hidden;
}

/* Mega Menu (Cascading) */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.mega-menu.active {
    max-height: 600px;
    opacity: 1;
}

.mega-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    padding: 40px;
    gap: 60px;
}

.mega-column {
    flex: 1;
}

.mega-column h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.4;
    margin-bottom: 25px;
    font-weight: 600;
}

.main-cats ul li {
    margin-bottom: 15px;
}

.main-cats ul li a {
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: var(--transition);
}

.main-cats ul li a:hover {
    padding-left: 10px;
    color: var(--accent-color);
}

.sub-cats .sub-group {
    display: none;
}

.sub-cats .sub-group.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.sub-cats ul li {
    margin-bottom: 12px;
}

.sub-cats ul li a {
    font-size: 0.95rem;
    opacity: 0.7;
    transition: var(--transition);
}

.sub-cats ul li a:hover {
    opacity: 1;
}

.featured-promotion .promo-card {
    background-color: #f9f8f4;
    border-radius: 12px;
    overflow: hidden;
}

.featured-promotion img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.featured-promotion .promo-info {
    padding: 20px;
}

.featured-promotion h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.featured-promotion p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 15px;
}

.text-link {
    font-size: 0.85rem;
    text-decoration: underline;
    font-weight: 500;
}

.mega-menu-footer {
    padding: 20px 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.mega-product-card {
    background-color: #ece9e2;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.mega-product-card:hover {
    background-color: #e5e2db;
}

.mega-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.6rem;
    text-transform: uppercase;
}

.mega-product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
}

.mega-product-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.mega-product-info p {
    font-size: 0.8rem;
    opacity: 0.6;
}

.mega-menu-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    z-index: 1;
}

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

.brand-logo {
    display: block;
    width: 126px;
    height: auto;
    filter: drop-shadow(0 8px 22px rgba(0,0,0,0.18));
}

.footer-brand-logo {
    display: block;
    width: 132px;
    height: auto;
    margin-bottom: 22px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

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

.hero-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.1;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--text-color);
    color: var(--white);
}

/* Product Grid */
.section-title {
    padding: 80px 40px 40px;
    text-align: center;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 40px 80px;
}

.product-card {
    background-color: #ece9e2;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.product-img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.product-info {
    text-align: left;
}

.product-tag {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.product-name {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.product-price {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Banner Sections */
.banner-split {
    display: flex;
    min-height: 60vh;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-half {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.banner-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--bg-color);
    padding: 80px 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.newsletter {
    max-width: 400px;
}

.newsletter h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.newsletter input {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-color);
    margin-bottom: 20px;
    outline: none;
}

.footer-logo {
    font-size: 8rem;
    font-weight: 600;
    text-align: center;
    color: #e5e2db;
    margin: 40px 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    .nav-left, .nav-right {
        display: none;
    }
    .logo {
        font-size: 1.8rem;
    }
    .brand-logo {
        width: 98px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Drawers (Search & Cart) */
.drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.drawer.open {
    transform: translateX(-450px);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.drawer-header h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}

.drawer-close:hover {
    opacity: 1;
}

.drawer-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

/* Search Drawer Styles */
.search-input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid var(--text-color);
    font-size: 1.1rem;
    outline: none;
    margin-bottom: 40px;
}

.search-suggestions h4, .drawer-featured h4, .cart-upsell h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.4;
    margin-bottom: 20px;
}

.search-suggestions ul li {
    margin-bottom: 15px;
}

.search-suggestions ul li a {
    font-size: 1rem;
    opacity: 0.8;
}

.search-suggestions ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.mini-product {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.mini-product img {
    border-radius: 4px;
}

.mini-product p {
    font-size: 0.9rem;
    font-weight: 500;
}

.mini-product span {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Cart Drawer Styles */
.cart-empty {
    text-align: center;
    padding: 40px 0;
}

.cart-empty p {
    margin-bottom: 30px;
    opacity: 0.6;
}

.shipping-progress {
    text-align: left;
    margin-bottom: 40px;
}

.shipping-progress p {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.shipping-progress span {
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: #eee;
    border-radius: 2px;
}

.progress {
    height: 100%;
    background-color: var(--text-color);
    border-radius: 2px;
}

.upsell-card {
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: #f9f8f4;
    padding: 15px;
    border-radius: 8px;
}

.upsell-info p {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.btn-add-mini {
    background: none;
    border: 1px solid var(--text-color);
    padding: 5px 12px;
    font-size: 0.7rem;
    border-radius: 20px;
    cursor: pointer;
}

.drawer-footer {
    padding: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background-color: var(--text-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-checkout:hover {
    opacity: 0.9;
}

@media (max-width: 480px) {
    .drawer {
        width: 100%;
        right: -100%;
    }
    .drawer.open {
        transform: translateX(-100%);
    }
}

/* Inline style utilities (generated from Twig templates) */
.u-inline-012ecaff { color: #666; }
.u-inline-03f8dcd8 { padding: 120px 40px; max-width: 1000px; margin: 0 auto; }
.u-inline-05abeb2a { opacity: 0.7; margin-bottom: 30px; }
.u-inline-067e54b6 { display: flex; flex-direction: column; gap: 20px; }
.u-inline-0755018b { border: 1px solid #1a1a1a; border-radius: 10px; padding: 20px; cursor: pointer; display: flex; align-items: center; gap: 10px; background: #fff; }
.u-inline-07af8553 { margin-bottom: 15px; font-weight: 700; }
.u-inline-07e5c50b { margin-right: 10px; }
.u-inline-083da093 { padding: 15px 40px; background: #1a1a1a; color: white; text-decoration: none; border-radius: 50px; font-weight: 700; font-size: 0.9rem; }
.u-inline-09592361 { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.9rem; }
.u-inline-0bcfe07f { font-size: 0.8rem; opacity: 0.5; }
.u-inline-0d2c5621 { background: white; }
.u-inline-1150cda7 { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.u-inline-121f2a85 { text-decoration: none; color: #999; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.u-inline-12764ad2 { display: flex; justify-content: space-between; font-size: 0.95rem; }
.u-inline-1349f032 { display: flex; justify-content: space-between; margin-top: 20px; padding-top: 20px; border-top: 1px solid #f0f0f0; }
.u-inline-13ff3a91 { max-width: 800px; margin: 0 auto; text-align: left; line-height: 1.8; }
.u-inline-14054806 { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; }
.u-inline-151cf7d3 { background: #f9f8f4; padding: 25px 35px; border-radius: 12px; margin-bottom: 40px; display: flex; justify-content: space-between; align-items: center; }
.u-inline-164e869f { padding: 0 0 25px; }
.u-inline-1717ff46 { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; border-bottom: 1px solid #eee; padding-bottom: 30px; }
.u-inline-175f07b4 { width: 100%; padding: 15px; border: 1px solid #eee; border-radius: 10px; font-size: 0.95rem; }
.u-inline-18bfa580 { display: flex; justify-content: space-between; align-items: center; }
.u-inline-1970ac60 { text-align: right; }
.u-inline-1a6a0fce { cursor: pointer; }
.u-inline-1a74b3c1 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.u-inline-1ad97624 { padding: 15px 35px; background: #1a1a1a; color: white; border-radius: 50px; text-decoration: none; font-weight: 600; }
.u-inline-1b3b2673 { display: flex; gap: 10px; align-items: center; }
.u-inline-1b7c0342 { font-size: 0.9rem; color: #999; text-decoration: line-through; }
.u-inline-1e212e5c { margin-bottom: 60px; }
.u-inline-1eeb81e7 { font-weight: 600; margin-bottom: 5px; }
.u-inline-1f685845 { padding: 120px 40px; text-align: center; max-width: 600px; margin: 0 auto; }
.u-inline-20c4fe3f { color: #999; text-align: center; padding: 40px; }
.u-inline-22576f33 { background: #f5f5f5; color: #999; }
.u-inline-22bf82dd { color: #666; max-width: 500px; margin: 0 auto 40px; line-height: 1.6; }
.u-inline-23f95334 { font-size: 0.9rem; font-weight: 700; }
.u-inline-24b70ee5 { padding: 18px 35px; background: #1a1a1a; border-radius: 50px; font-weight: 700; text-decoration: none; color: white; }
.u-inline-2675e9fc { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; margin-bottom: 40px; }
.u-inline-26ee1a25 { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.u-inline-29cdb8cf { display: flex; gap: 10px; }
.u-inline-2afba998 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 80px; }
.u-inline-2c3e07fc { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.u-inline-2d556c8e { max-width: 1200px; margin: 80px auto 0; padding-top: 40px; border-top: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; color: #999; font-size: 0.8rem; }
.u-inline-2e2e1a00 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) 50px; gap: 12px; margin-bottom: 10px; padding: 0 15px; }
.u-inline-2ecb5fc0 { padding: 0 15px; background: #eee; border: 1px solid #ddd; border-radius: 4px; font-size: 0.8rem; cursor: pointer; white-space: nowrap; }
.u-inline-2ef9a67b { border-bottom: 1px solid #f0f0f0; }
.u-inline-2f3549a0 { font-size: 0.85rem; color: #999; text-decoration: none; border: 1px solid #eee; padding: 10px 20px; border-radius: 50px; }
.u-inline-3087fc54 { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 10px; }
.u-inline-326f97f9 { color: #888; font-size: 0.85rem; }
.u-inline-32d7490e { padding: 120px 40px; max-width: 700px; margin: 0 auto; }
.u-inline-34829470 { background: #fff; border: 1px solid #1a1a1a; padding: 30px; border-radius: 12px; text-align: left; margin-bottom: 30px; }
.u-inline-35fdec14 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; }
.u-inline-37a21113 { width: 100%; aspect-ratio: 1; background: #f9f8f4; border-radius: 12px; overflow: hidden; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; }
.u-inline-37dfbe8e { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.u-inline-37fa0792 { justify-content: space-between; }
.u-inline-38199b11 { display: flex; gap: 20px; justify-content: center; }
.u-inline-3a7e3eff { padding: 120px 40px; text-align: center; }
.u-inline-3b1e7d06 { display: flex; flex-direction: column; gap: 30px; }
.u-inline-3b66c0cc { font-size: 0.9rem; opacity: 0.3; transition: transform 0.3s; }
.u-inline-3bc7bf70 { font-size: 0.75rem; color: #aaa; margin-bottom: 5px; }
.u-inline-3e3b9e35 { font-weight: 700; }
.u-inline-3efc2ded { font-size: 0.85rem; color: #999; }
.u-inline-41012735 { border: 1px solid #ddd; border-radius: 10px; padding: 20px; cursor: pointer; display: flex; align-items: center; gap: 10px; background: #fff; }
.u-inline-42079cd4 { text-align: center; color: #888; margin-bottom: 60px; }
.u-inline-421158eb { font-size: 1rem; font-weight: 600; margin-bottom: 5px; }
.u-inline-44dd3e75 { color: #1a1a1a; text-decoration: underline; }
.u-inline-4593f60f { font-size: 0.85rem; color: #999; margin-bottom: 5px; }
.u-inline-45e08b25 { padding: 18px 35px; border: 1px solid #1a1a1a; border-radius: 50px; font-weight: 700; text-decoration: none; color: #1a1a1a; }
.u-inline-4608a4be { text-decoration: none; color: inherit; display: block; margin-bottom: 30px; }
.u-inline-4749bc04 { padding: 15px 40px; background: #eee; color: #333; text-decoration: none; border-radius: 50px; font-weight: 700; font-size: 0.9rem; }
.u-inline-48203b4d { font-size: 0.85rem; color: #999; margin-bottom: 10px; }
.u-inline-48537b0f { font-size: 0.8rem; color: #999; margin-top: 8px; }
.u-inline-48952a19 { background: #fcfcfc; padding: 20px; border-radius: 10px; }
.u-inline-48d105fc { display: flex; gap: 15px; justify-content: center; }
.u-inline-495f377f { text-align: right; font-size: 1.2rem; }
.u-inline-4a3984f8 { margin-bottom: 0; }
.u-inline-4e24c305 { font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.u-inline-4e6c3c01 { margin-top: 5px; font-size: 0.95rem; font-weight: 700; }
.u-inline-4ffed9d7 { display: block; font-size: 0.9rem; margin-bottom: 10px; color: #666; }
.u-inline-503c7308 { display: grid; gap: 30px; }
.u-inline-50ffb897 { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; }
.u-inline-530debaf { display: flex; gap: 30px; }
.u-inline-558b8653 { flex: 2; }
.u-inline-57b4f848 { visibility: hidden; }
.u-inline-5873079a { display: flex; gap: 25px; align-items: center; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #f9f9f9; }
.u-inline-58ce9ebc { padding: 80px 40px; background-color: #fcfcfc; text-align: center; border-radius: 15px; border: 1px dashed #ddd; }
.u-inline-597872c7 { padding: 20px 30px; border-top: 1px solid #f0f0f0; background: #fcfcfc; display: flex; justify-content: space-between; align-items: center; }
.u-inline-5981548c { margin-bottom: 50px; }
.u-inline-59a4c932 { display: block; width: 100%; padding: 15px; text-align: center; border: 1px solid #1a1a1a; color: #1a1a1a; text-decoration: none; border-radius: 50px; font-weight: 700; margin-top: 30px; font-size: 0.9rem; }
.u-inline-5a8abaf8 { font-size: 2rem; margin-bottom: 20px; }
.u-inline-5c809fdb { margin-bottom: 60px; border-bottom: 1px solid #eee; padding-bottom: 30px; }
.u-inline-5ca6c24c { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.u-inline-5d92363f { margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.u-inline-5f456b8b { width: 100%; padding: 20px; background: #1a1a1a; color: white; border: none; border-radius: 50px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: transform 0.2s; }
.u-inline-5f9c10ed { padding: 30px; }
.u-inline-636e6f1a { padding: 120px 40px; text-align: center; background-color: #f9f8f4; }
.u-inline-64cc4b47 { color: #666; font-size: 0.9rem; line-height: 1.8; }
.u-inline-64e0c976 { grid-column: 1/-1; }
.u-inline-654897cd { font-size: 3.5rem; font-weight: 400; margin-bottom: 40px; line-height: 1.1; }
.u-inline-6a0a3923 { font-size: 1.1rem; font-weight: 600; margin-bottom: 25px; }
.u-inline-6b5d53f5 { font-size: 1.3rem; font-weight: 700; }
.u-inline-6b827a0e { width: 20px; height: 20px; }
.u-inline-6b8aedd6 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.u-inline-6fb76ade { font-size: 0.9rem; cursor: pointer; }
.u-inline-73133dfa { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.u-inline-73356f6c { font-size: 0.7rem; color: #999; margin-top: 5px; }
.u-inline-7479b529 { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.95rem; }
.u-inline-75ecbd48 { color: #888; }
.u-inline-760337ee { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }
.u-inline-767c4d28 { text-align: center; font-size: 0.8rem; color: #999; margin-top: 20px; }
.u-inline-7774d9d5 { margin-top: 60px; padding-top: 40px; border-top: 1px solid #eee; text-align: right; }
.u-inline-78464d8e { background-color: #f9f8f4; padding: 100px 20px 40px; border-top: 1px solid #eee; }
.u-inline-797576b9 { padding: 40px; background-color: #f2f0eb; border-radius: 12px; }
.u-inline-79b14c83 { font-size: 1.2rem; font-weight: 600; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.u-inline-7af6fcc0 { font-size: 1.2rem; margin-bottom: 30px; }
.u-inline-7ea6d590 { flex: 1; }
.u-inline-7ebf1dba { text-align: right; font-weight: 600; }
.u-inline-7f7bfbe0 { margin-top: 5px; font-weight: 600; color: #1a1a1a; }
.u-inline-7f9a347c { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.u-inline-80f1cac1 { background: #fff; border: 1px solid #eee; border-radius: 15px; padding: 35px; position: sticky; top: 40px; }
.u-inline-815fb7b1 { font-size: 0.7rem; color: #999; margin-top: 8px; }
.u-inline-8262cc05 { display: flex; justify-content: space-between; margin-bottom: 15px; }
.u-inline-83f42e64 { font-size: 0.8rem; color: #999; }
.u-inline-858a5713 { font-size: 4rem; opacity: 0.1; margin-bottom: 20px; }
.u-inline-85c04231 { font-size: 1.5rem; margin-bottom: 15px; color: #FEE500; }
.u-inline-86491219 { padding: 15px 40px; background: #1a1a1a; color: white; border: none; border-radius: 50px; font-weight: 700; cursor: pointer; font-size: 0.9rem; }
.u-inline-8687f950 { font-weight: 600; }
.u-inline-86a6701f { font-size: 0.7rem; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 0.05em; }
.u-inline-86cb801c { font-size: 1.1rem; font-weight: 700; }
.u-inline-86e2d687 { color: #1a1a1a; }
.u-inline-86e8e5f4 { font-size: 1rem; font-weight: 700; }
.u-inline-899522ab { font-size: 1.8rem; font-weight: 600; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.u-inline-8b04c5bb { background: #fcfcfc; padding: 20px 30px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.u-inline-8b1ef10b { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
.u-inline-8b53c6fc { display: grid; grid-template-columns: 240px 1fr; gap: 80px; }
.u-inline-8b939461 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.u-inline-8f659e44 { width: 120px; padding: 15px; border: 1px solid #ddd; border-radius: 8px; }
.u-inline-8fc9d26f { opacity: 0.7; }
.u-inline-90f72bb7 { font-size: 1.5rem; color: #ccc; }
.u-inline-91d32cd5 { background: #f9f9f9; padding: 30px; border-radius: 12px; text-align: left; margin-bottom: 40px; }
.u-inline-92ed5c39 { width: 100px; height: 100px; background: #f0fdf4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; }
.u-inline-93c8ae03 { padding: 40px; border: 1px solid #eee; border-radius: 8px; }
.u-inline-943256be { font-weight: 500; }
.u-inline-94791912 { display: grid; grid-template-columns: 1fr 350px; gap: 60px; }
.u-inline-97056ef2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; }
.u-inline-974d02ab { font-size: 0.85rem; color: #2563eb; font-weight: 600; }
.u-inline-9836ffcd { color: #666; font-size: 1.1rem; margin-bottom: 40px; }
.u-inline-99b9f52b { font-size: 3rem; color: #16a34a; }
.u-inline-9aea50fd { width: auto; margin-right: 8px; }
.u-inline-9bdf027e { margin-bottom: 15px; }
.u-inline-9c7c2a9c { list-style: none; padding: 0; font-size: 0.9rem; line-height: 2.2; }
.u-inline-9e9911fe { font-size: 0.85rem; color: #888; }
.u-inline-9f2cdab3 { padding: 10px 20px; font-size: 0.8rem; border-color: #ddd; color: #666; }
.u-inline-9fa1056a { font-size: 0.8rem; color: #999; text-transform: uppercase; letter-spacing: 0.05em; }
.u-inline-9fa58a01 { padding: 100px 40px; max-width: 1000px; margin: 0 auto; }
.u-inline-a1b14207 { color: #999; font-size: 0.9rem; margin-bottom: 30px; }
.u-inline-a1e7ac9c { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.u-inline-a2cd4016 { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 0.95rem; resize: vertical; }
.u-inline-a4d6937e { color: #e74c3c; font-size: 1rem; }
.u-inline-a5d6c4e9 { color: #e74c3c; margin-top: 40px; display: block; }
.u-inline-a6b1f059 { font-size: 1.3rem; font-weight: 700; margin-bottom: 35px; }
.u-inline-a79b3ab7 { margin-top: 15px; font-size: 0.8rem; color: #e74c3c; }
.u-inline-a7bf5365 { text-align: center; padding: 80px 20px; }
.u-inline-a95df581 { display: flex; align-items: center; padding: 60px; }
.u-inline-aaaccea1 { display: flex; justify-content: space-between; }
.u-inline-ab5825fd { padding: 10px 20px; font-size: 0.8rem; }
.u-inline-ac01f24c { margin-bottom: 10px; }
.u-inline-ac74048c { max-width: 700px; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; opacity: 0.8; }
.u-inline-ad427926 { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.95rem; }
.u-inline-aefd48ca { display: inline-block; padding: 10px 20px; border: 1px solid #1a1a1a; border-radius: 4px; font-size: 0.8rem; cursor: pointer; font-weight: 600; }
.u-inline-b03c2f5a { display: inline-block; padding: 15px 35px; background: #1a1a1a; color: white; border-radius: 50px; font-weight: 700; text-decoration: none; font-size: 0.85rem; }
.u-inline-b1c11c88 { position: absolute; top: 15px; right: 15px; z-index: 2; background: white; border: none; width: 40px; height: 40px; border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,0.1); cursor: pointer; }
.u-inline-b1f54381 { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.u-inline-b27bb743 { margin-top: 30px; }
.u-inline-b349f701 { text-align: center; }
.u-inline-b37a97dc { font-size: 2.5rem; font-weight: 700; }
.u-inline-b45e88a6 { display: flex; flex-direction: column; gap: 50px; }
.u-inline-b4d4cec1 { font-size: 1.2rem; font-weight: 700; margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.u-inline-b62d5771 { grid-column: span 2; }
.u-inline-bc9f7d00 { color:#e74c3c; }
.u-inline-bde2f97d { background: #f9f9f9; padding: 40px; border-radius: 15px; height: fit-content; }
.u-inline-bdf04ba3 { font-size: 0.8rem; font-weight: 500; color: #666; cursor: pointer; display: flex; align-items: center; text-transform: none; }
.u-inline-be2865af { padding: 15px 40px; background: #e74c3c; color: white; text-decoration: none; border-radius: 50px; font-weight: 700; font-size: 0.9rem; }
.u-inline-bfaa9547 { font-size: 8rem; font-weight: 800; color: #f0f0f0; line-height: 1; margin-bottom: 20px; }
.u-inline-c133e1ea { font-size: 2rem; font-weight: 700; margin-bottom: 50px; }
.u-inline-c47c0c66 { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; font-size: 0.95rem; color: #666; line-height: 1.8; }
.u-inline-c57b2ca7 { border-top: 1px solid #ddd; padding-top: 20px; margin-bottom: 20px; }
.u-inline-c57ea8d3 { border: 1px solid #f0f0f0; border-radius: 15px; overflow: hidden; background: #fff; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.u-inline-c597847e { color: #888; margin-bottom: 30px; }
.u-inline-c5c30f72 { font-size: 2.2rem; font-weight: 700; }
.u-inline-c6373200 { font-size: 0.8rem; color: #999; text-transform: uppercase; }
.u-inline-c82bc0da { font-size: 8rem; font-weight: 800; color: #fff5f5; line-height: 1; margin-bottom: 20px; }
.u-inline-c830f98a { padding: 25px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.u-inline-c8bbe423 { margin-top: 10px; }
.u-inline-c9c746e2 { font-size: 1.3rem; font-weight: 800; color: #1a1a1a; }
.u-inline-cd4b645a { opacity: 0.7; margin-bottom: 60px; }
.u-inline-cd4bb74f { padding: 18px; background-color: #1a1a1a; color: white; border: none; border-radius: 4px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: 0.3s; }
.u-inline-ce56d46e { font-size: 3rem; font-weight: 400; margin-bottom: 20px; text-align: center; }
.u-inline-cf81a92d { font-size: 1.1rem; font-weight: 700; margin-bottom: 25px; }
.u-inline-d1c765c1 { text-decoration: none; color: inherit; }
.u-inline-d1e98a6c { font-weight: 600; color: #1a1a1a; font-size: 1.1rem; }
.u-inline-d23753b5 { width: 60px; height: 60px; background: #f5f5f5; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.u-inline-d2b26958 { margin-top: 30px; display: flex; gap: 20px; }
.u-inline-d410eebc { background: #fff; border: 1px solid #f0f0f0; border-radius: 20px; padding: 40px; }
.u-inline-d4d7431b { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; }
.u-inline-d5df1941 { font-size: 1rem; font-weight: 700; color: #1a1a1a; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.u-inline-d6a81702 { font-size: 1.05rem; font-weight: 500; }
.u-inline-d6c1a12c { margin-bottom: 30px; }
.u-inline-d6ef8b79 { color: #666; margin-top: 5px; }
.u-inline-d8df3e58 { font-size: 0.9rem; }
.u-inline-d8f401de { color: #e74c3c; }
.u-inline-d962c074 { grid-template-columns: 150px 1fr; }
.u-inline-d9d45e1c { position: relative; }
.u-inline-dc293546 { text-decoration: none; color: #666; }
.u-inline-dc7f78ae { margin-bottom: 25px; }
.u-inline-de4725e5 { font-size: 1.2rem; font-weight: 600; margin-top: 50px; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.u-inline-dea8904a { font-size: 1.1rem; font-weight: 800; }
.u-inline-dff14a8e { justify-content: center; }
.u-inline-e01f99f8 { padding: 0 40px 100px; }
.u-inline-e36afe6d { max-width: 80%; max-height: 80%; object-fit: contain; }
.u-inline-e396466b { font-size: 3rem; font-weight: 400; margin-bottom: 40px; }
.u-inline-e3be7245 { color: #1a1a1a; font-weight: 600; }
.u-inline-e548a271 { font-size: 2.5rem; font-weight: 400; margin-bottom: 20px; }
.u-inline-e69ac983 { width: 50px; }
.u-inline-e72e93a7 { display: inline-flex; align-items: center; gap: 8px; padding: 14px 25px; background: #d97706; color: white; border-radius: 8px; font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: all 0.3s; }
.u-inline-e9883933 { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 60px; }
.u-inline-ea5b6649 { font-size: 0.85rem; color: #666; }
.u-inline-eba1889c { margin-bottom: 20px; }
.u-inline-eca7fd5c { width: 18px; height: 18px; cursor: pointer; }
.u-inline-ee1b02a5 { font-size: 0.9rem; opacity: 0.7; }
.u-inline-eef136bb { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 10px; }
.u-inline-ef2b24b4 { font-size: 1.5rem; margin-bottom: 15px; }
.u-inline-f0432ae2 { width: 45px; height: 45px; background: #f9f8f4; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.u-inline-f050a86e { color: #888; margin-top: 10px; }
.u-inline-f0eb9d8c { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem; margin-bottom: 20px; opacity: 0.5; }
.u-inline-f10c849e { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.u-inline-f1d59339 { color: #666; margin-top: 10px; }
.u-inline-f3004325 { width: 80px; height: 80px; background: #f9f8f4; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.u-inline-f319b00f { font-size: 0.8rem; color: #999; margin-bottom: 5px; }
.u-inline-f361a03e { color: inherit; text-decoration: none; }
.u-inline-f5e2dbb2 { max-width: 85%; max-height: 85%; object-fit: contain; }
.u-inline-f64388db { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.u-inline-f66f8f17 { font-size: 1rem; color: #999; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.u-inline-f6b612a9 { display: none; }
.u-inline-f770aedc { width: 60px; height: 60px; background: #f9f8f4; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.u-inline-f78d5361 { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; font-size: 0.95rem; }
.u-inline-fa1d57df { display: block; }
.u-inline-fa4f66c9 { color: #666; font-size: 0.9rem; line-height: 1.6; }
.u-inline-fe0c813f { list-style: none; padding: 0; margin: 0; }
.u-inline-ff12683b { max-width: 250px; margin-bottom: 25px; }
.u-inline-fff14c55 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }

/* Account Sidebar */
.account-sidebar {
    position: sticky;
    top: 100px;
}

.account-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-sidebar-item {
    margin-bottom: 12px;
}

.account-sidebar-item--logout {
    margin-top: 40px;
}

.account-sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #999;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.account-sidebar-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.account-sidebar-link:hover {
    color: var(--text-color);
    background-color: rgba(0, 0, 0, 0.03);
}

.account-sidebar-link.active {
    color: var(--text-color);
    background-color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.account-sidebar-link--logout {
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.account-sidebar-link--logout:hover {
    color: white;
    background-color: #e74c3c;
    border-color: #e74c3c;
}

@media (max-width: 768px) {
    .account-sidebar {
        position: static;
        margin-bottom: 40px;
    }
    
    .account-sidebar-nav {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 10px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .account-sidebar-nav::-webkit-scrollbar {
        display: none;
    }
    
    .account-sidebar-item {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .account-sidebar-item--logout {
        margin-top: 0;
    }
    
    .account-sidebar-link {
        padding: 8px 16px;
        font-size: 0.85rem;
        white-space: nowrap;
        background-color: white;
        border: 1px solid #eee;
    }
}

/* Motion-led home refresh */
body.theme-dark header {
    background: rgba(8, 10, 14, 0.82);
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
}

.home-intro {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: #050609;
    color: #fff;
    pointer-events: none;
    animation: homeIntroOut 0.7s ease 1.7s forwards;
}

.home-intro.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.home-intro__mark {
    font-size: clamp(3rem, 8vw, 8.5rem);
    font-weight: 700;
    letter-spacing: 0;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.92);
    animation: homeIntroMark 1.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-intro__logo {
    display: block;
    width: clamp(150px, 24vw, 310px);
    height: auto;
    filter: drop-shadow(0 20px 45px rgba(72, 112, 255, 0.28));
    animation: homeIntroMark 1.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-intro p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    opacity: 0;
    animation: homeFadeUp 0.8s ease 0.55s forwards;
}

@keyframes homeIntroMark {
    from { opacity: 0; transform: translateY(26px) scale(0.96); filter: blur(8px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes homeIntroOut {
    to { opacity: 0; visibility: hidden; }
}

@keyframes homeFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-hero {
    position: relative;
    min-height: calc(100vh - 120px);
    overflow: hidden;
    background: #050609;
    color: #fff;
}

.home-hero__media,
.home-hero__shade,
.home-hero__media img {
    position: absolute;
    inset: 0;
}

.home-hero__media {
    transform: translateY(var(--hero-shift, 0px));
    opacity: var(--hero-media-opacity, 1);
}

.home-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: homeHeroZoom 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-hero__shade {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.34) 46%, rgba(0,0,0,0.08) 100%),
        linear-gradient(0deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0) 45%);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8vh 7vw;
    opacity: var(--hero-content-opacity, 1);
    transform: translateY(var(--hero-content-shift, 0px));
}

.home-eyebrow {
    margin-bottom: 18px;
    color: #1b6bff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.home-eyebrow--dark {
    color: rgba(255,255,255,0.72);
}

.home-hero__title {
    max-width: 760px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    font-size: clamp(2.3rem, 5.2vw, 5.25rem);
    font-weight: 500;
    line-height: 1.16;
}

.home-hero__lead {
    max-width: 560px;
    margin-bottom: 34px;
    color: rgba(255,255,255,0.78);
    font-size: 1.06rem;
    line-height: 1.8;
}

.home-hero__actions,
.home-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 26px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.home-btn:hover,
.home-btn:focus-visible {
    transform: translateY(-3px);
}

.home-btn--light {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.home-btn--ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.48);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
}

.home-btn--dark {
    color: #fff;
    background: #111;
    border-color: #111;
}

.home-hero__orbit {
    position: absolute;
    right: 7vw;
    bottom: 7vh;
    z-index: 3;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.24);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.home-hero__orbit-icon {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #111;
    background: #fff;
}

.home-hero__orbit-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    animation: homeMarquee 8s linear infinite;
    opacity: 0.68;
}

.home-hero__orbit-text span {
    padding-left: 100%;
}

@keyframes homeHeroZoom {
    to { transform: scale(1); }
}

@keyframes homeMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-solution {
    position: relative;
    height: 250vh;
    background: #06070a;
    color: #fff;
}

.home-solution__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
}

.home-solution__bg,
.home-solution__bg::after,
.home-solution__bg img {
    position: absolute;
    inset: 0;
}

.home-solution__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(var(--scene-bg-gray, 1));
    transform: scale(1.08);
    opacity: 0.72;
}

.home-solution__bg::after {
    content: "";
    background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.78));
}

.home-solution__content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 12vh 6vw 8vh;
}

.home-solution__title {
    position: absolute;
    top: 28vh;
    left: 6vw;
    right: 6vw;
    margin: 0;
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.7vw, 5.65rem);
    line-height: 1.18;
    font-weight: 500;
    transform: translateY(var(--scene-title-y, 0px)) scale(var(--scene-title-scale, 1));
    transform-origin: center top;
    transition: transform 0.08s linear;
}

.home-solution__cards {
    position: absolute;
    left: 6vw;
    right: 6vw;
    bottom: 7vh;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-solution-card {
    min-height: 290px;
    padding: 34px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    box-shadow: 24px 24px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(22px);
}

.home-solution-card i {
    margin-bottom: 54px;
    font-size: 2.1rem;
    color: #8fb4ff;
}

.home-solution-card h3 {
    margin-bottom: 16px;
    font-size: 1.35rem;
    line-height: 1.25;
}

.home-solution-card p {
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
}

.home-film {
    overflow: hidden;
    padding: 120px 0 130px;
    background: #f7f7f4;
}

.home-section-head {
    max-width: 1280px;
    margin: 0 auto 48px;
    padding: 0 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.home-section-head h2,
.home-about__intro h2,
.home-surface__content h2,
.home-final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.6vw, 4.65rem);
    line-height: 1.18;
    letter-spacing: 0;
    font-weight: 500;
}

.home-film__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-film__tabs span {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(0,0,0,0.24);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.home-film__tabs .is-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.home-film__viewport {
    overflow: visible;
}

.home-film__track {
    display: flex;
    width: max-content;
    gap: 24px;
    padding: 0 40px;
    animation: homeRail 42s linear infinite;
}

.home-film__viewport:hover .home-film__track,
.home-film__viewport:focus-within .home-film__track {
    animation-play-state: paused;
}

.home-product-card {
    width: min(28vw, 380px);
    min-width: 300px;
    flex: 0 0 auto;
}

.home-product-card__image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #e9ecef;
}

.home-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.home-product-card:hover .home-product-card__img,
.home-product-card:focus-within .home-product-card__img {
    transform: scale(1.06);
}

.home-product-card__badge,
.home-product-card__soldout {
    position: absolute;
    z-index: 2;
    left: 16px;
    top: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.home-product-card__badge--sale {
    background: #d93025;
}

.home-product-card__badge--new {
    background: #1b6bff;
}

.home-product-card__soldout {
    inset: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    border-radius: 0;
    background: rgba(0,0,0,0.55);
    font-size: 1.1rem;
}

.home-product-card__arrow {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
    opacity: 0;
    transform: translate(-8px, 8px) rotate(-25deg);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-product-card:hover .home-product-card__arrow,
.home-product-card:focus-within .home-product-card__arrow {
    opacity: 1;
    transform: translate(0, 0) rotate(-25deg);
}

.home-product-card__body {
    padding-top: 18px;
}

.home-product-card__body p {
    margin-bottom: 8px;
    color: rgba(0,0,0,0.48);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.home-product-card__body h3 {
    min-height: 3.2em;
    margin-bottom: 12px;
    font-size: 1.25rem;
    line-height: 1.28;
}

.home-product-card__body strong {
    display: block;
    margin-bottom: 14px;
    font-size: 1rem;
}

.home-product-card__members {
    color: rgba(0,0,0,0.45);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-product-card__cart {
    width: 100%;
    min-height: 42px;
    border: 1px solid #111;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-product-card__cart:disabled,
.home-product-card__cart--muted {
    border-color: #d7d7d7;
    background: #efefef;
    color: #8b8b8b;
    cursor: not-allowed;
}

@keyframes homeRail {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 12px)); }
}

.home-surface {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 9vw 7vw;
    background: #050609;
    color: #fff;
}

.home-surface__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    transform: scale(1.04);
}

.home-surface::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.76), rgba(0,0,0,0.16));
}

.home-surface__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.home-surface__content p:not(.home-eyebrow),
.home-about__intro p,
.home-final-cta p {
    margin: 24px 0 34px;
    color: rgba(255,255,255,0.72);
    font-size: 1.02rem;
    line-height: 1.8;
}

.home-about {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    padding: 130px 7vw;
    background: #fff;
}

.home-about__intro p {
    color: rgba(0,0,0,0.58);
}

.home-about__values {
    border-top: 1px solid rgba(0,0,0,0.12);
}

.home-about__values article {
    display: grid;
    grid-template-columns: 64px minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.home-about__values span {
    color: #1b6bff;
    font-weight: 800;
}

.home-about__values h3 {
    font-size: 1.4rem;
}

.home-about__values p {
    color: rgba(0,0,0,0.56);
    line-height: 1.75;
}

.home-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 88px 7vw;
    background: #080a0f;
    color: #fff;
}

.home-final-cta p {
    max-width: 620px;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .home-hero__orbit {
        right: 32px;
        bottom: 32px;
        width: 120px;
        height: 120px;
    }

    .home-solution {
        height: auto;
    }

    .home-solution__sticky {
        position: relative;
        min-height: 980px;
    }

    .home-solution__title {
        top: 140px;
        font-size: clamp(2.6rem, 10vw, 5rem);
    }

    .home-solution__cards {
        grid-template-columns: 1fr;
        bottom: 70px;
    }

    .home-section-head,
    .home-about,
    .home-final-cta {
        display: block;
    }

    .home-film__tabs {
        margin-top: 22px;
    }

    .home-film__track {
        overflow-x: auto;
        width: auto;
        animation: none;
        scroll-snap-type: x mandatory;
    }

    .home-product-card {
        width: 76vw;
        scroll-snap-align: start;
    }

    .home-about__values {
        margin-top: 56px;
    }

    .home-about__values article {
        grid-template-columns: 48px 1fr;
    }

    .home-about__values p {
        grid-column: 2;
    }

    .home-final-cta__actions {
        margin-top: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-intro,
    .home-intro__mark,
    .home-intro__logo,
    .home-intro p,
    .home-hero__img,
    .home-hero__orbit-text,
    .home-film__track,
    [data-reveal] {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }

    .home-intro {
        display: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

.home-product-card__image picture,
.m-home-product-card__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

/* Shared public header utilities and FDF footer */
.nav-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav-cart-count {
    display: inline-grid;
    min-width: 17px;
    height: 17px;
    place-items: center;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
}

.site-footer {
    padding: 90px clamp(28px, 7vw, 130px) 38px;
    background: #fff;
    color: #343438;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) 0.7fr 1fr;
    gap: clamp(55px, 8vw, 150px);
    align-items: start;
}

.site-footer__brand img { width: clamp(185px, 20vw, 300px); height: auto; filter: grayscale(1) brightness(0.22); }
.site-footer__brand p { max-width: 340px; margin: 22px 0 0; color: #777; line-height: 1.75; }
.site-footer__links { display: grid; gap: 14px; }
.site-footer__links a { color: #4c4c50; font-size: 0.92rem; }
.site-footer__links a:hover { color: #000; transform: translateX(3px); }
.site-footer__contact p { margin: 0 0 26px; line-height: 2; }
.site-footer__social { display: flex; gap: 14px; }
.site-footer__social a { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 50%; background: #e3e3e3; font-size: 1.15rem; }
.site-footer__social a:hover { background: #333; color: #fff; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 24px; border-top: 1px solid #e6e6e6; color: #8a8a8a; font-size: 0.78rem; }
.site-footer__legal { display: flex; gap: 20px; }

@media (max-width: 820px) {
    .site-footer { padding: 65px 28px 100px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 46px; }
    .site-footer__brand img { width: 190px; }
    .site-footer__bottom { display: block; margin-top: 55px; }
    .site-footer__legal { margin-top: 16px; }
}
