:root {
    --bg: #f7fafc;
    --bg-soft: #eef2f6;
    --glass: rgba(15, 159, 168, 0.08);
    --card: #ffffff;
    --accent: #0f9fa8; /* teal sebagai primary */
    --accent-2: #f5b544; /* gold sebagai secondary */
    --muted: #4a5568;
    --text: #0f172a;
    --text-soft: #475569;
    --border: rgba(15, 159, 168, 0.16);
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at 12% 20%, rgba(15, 159, 168, 0.18), transparent 28%),
                radial-gradient(circle at 80% 0%, rgba(245, 181, 68, 0.18), transparent 30%),
                radial-gradient(circle at 50% 40%, rgba(15, 159, 168, 0.1), transparent 32%),
                var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text);
    transform: translateY(-120%);
    transition: transform 0.2s ease;
    z-index: 50;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(15, 159, 168, 0.5);
    outline-offset: 2px;
}

.container {
    width: min(1200px, 94vw);
    margin: 0 auto;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 25;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.navbar.is-sticky {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.has-navbar main {
    padding-top: var(--nav-height, 86px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 18px;
    color: var(--text);
    cursor: pointer;
    margin-left: auto;
}

.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 14px;
    color: var(--text-soft);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 22;
    width: 100vw;
    height: 100dvh;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand img {
    height: 70px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    color: #0f172a;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-2), #ffd480);
    color: #0f172a;
    border: 1px solid rgba(245, 181, 68, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #21c6d0);
    box-shadow: 0 10px 30px rgba(15, 159, 168, 0.28);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.btn:active {
    transform: translateY(0);
}

/* Outlet public landing */
.outlet-hero {
    padding: 64px 0 48px;
}

.outlet-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.outlet-hero-info {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.outlet-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.outlet-brand img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid var(--border);
    background: #fff;
}

.outlet-logo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 700;
    background: var(--glass);
    color: var(--accent);
    border: 1px solid var(--border);
}

.outlet-hero-card {
    background: var(--card);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.outlet-info-block {
    margin-top: 16px;
}

.info-list {
    padding-left: 18px;
    margin: 8px 0 0;
    color: var(--text-soft);
}

.outlet-about .section-header {
    text-align: left;
}

.menu-section {
    margin: 32px 0;
}

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

.menu-category-image {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid var(--border);
    background: #fff;
}

.menu-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.menu-card {
    background: var(--card);
    border-radius: 18px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 100%;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.06);
}

.menu-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 7;
}

.menu-card.no-image .menu-card-body {
    flex: 1;
}

.menu-card-image-wrap {
    flex: 3;
    min-width: 30%;
    height: auto;
    display: block;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.menu-card .price {
    font-weight: 700;
    color: var(--accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
}

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

.image-button {
    border: none;
    padding: 0;
    background: transparent;
    width: 100%;
    cursor: pointer;
    display: block;
}

.image-button:focus-visible {
    outline: 3px solid rgba(15, 159, 168, 0.5);
    outline-offset: 2px;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.72);
}

.lightbox-content {
    position: relative;
    max-width: min(960px, 90vw);
    max-height: 90vh;
    z-index: 1;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.lightbox-prev {
    left: -18px;
}

.lightbox-next {
    right: -18px;
}

.lightbox-nav.is-hidden {
    display: none;
}

@media (max-width: 768px) {
    .menu-card {
        flex-direction: column;
    }

    .menu-card-image-wrap {
        width: 100%;
        height: 180px;
    }
}

.outlet-directory .section-header {
    text-align: left;
}

.outlet-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.outlet-card-header {
    display: flex;
    gap: 14px;
    align-items: center;
}

.outlet-card-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--border);
    background: #fff;
}

.outlet-card-logo.placeholder {
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--accent);
    background: var(--glass);
}

.outlet-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-soft);
    font-size: 14px;
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

.btn-apk {
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #21c6d0);
    color: #fff;
    box-shadow: 0 14px 30px rgba(15, 159, 168, 0.28);
    animation: apkBounce 3.2s ease-in-out infinite;
}

@keyframes apkBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'DM Sans', sans-serif;
    margin: 0;
    letter-spacing: -0.5px;
}

.hero {
    padding: 80px 0 50px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: start;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-showcase {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(150deg, rgba(15,159,168,0.12), rgba(245,181,68,0.16));
    border: 1px solid rgba(15, 159, 168, 0.18);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.hero-showcase::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
    z-index: 0;
    pointer-events: none;
}

.hero-showcase > * {
    position: relative;
    z-index: 1;
}

.hero-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--card);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

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

.metric-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 159, 168, 0.16);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

.metric-card.metric-wide {
    grid-column: 1 / -1;
}

.metric-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-soft);
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.metric-meta {
    font-size: 12px;
    color: var(--text-soft);
}

.hero-cta {
    gap: 12px;
}

.hero-cta-title,
.hero-cta-desc {
    margin: 0;
}

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

.mock {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
}

.mock-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 159, 168, 0.12);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.28);
    animation: rise 1.2s ease forwards;
}

.mock-bar {
    height: 12px;
    border-radius: 999px;
    background: rgba(15, 159, 168, 0.22);
    margin-bottom: 8px;
}

.mock-chart {
    height: 120px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(15,159,168,0.25), rgba(245,181,68,0.22));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 13px;
}

.hero h1 {
    font-size: clamp(32px, 4vw, 44px);
    margin: 16px 0 12px;
}

.hero p {
    color: var(--text-soft);
    font-size: 16px;
    margin-bottom: 22px;
}

.store-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 14px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(15, 159, 168, 0.12);
}

.store-badge.is-muted {
    opacity: 0.65;
}

.store-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--accent), #21c6d0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.highlight-card {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

.highlight-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.highlight-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
}

.section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 26px;
}

.section-header h2 {
    font-size: 28px;
}

.section-header p {
    color: var(--text-soft);
    margin-top: 10px;
}

.section-note {
    margin-top: 12px;
}

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

.guide-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    max-height: calc(100vh - 120px);
    overflow: hidden;
}

.guide-sidebar h2 {
    margin-bottom: 12px;
    font-size: 18px;
}

.guide-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: calc(100vh - 190px);
    overflow-y: auto;
    padding-right: 6px;
}

.guide-menu a,
.guide-menu button {
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(15, 159, 168, 0.12);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    border: none;
    text-align: left;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
}

.guide-menu a:hover,
.guide-menu button:hover {
    background: rgba(15, 159, 168, 0.22);
}

.guide-menu .sub {
    background: transparent;
    color: var(--text-soft);
    font-weight: 500;
    padding-left: 16px;
}

.guide-menu .sub:hover {
    background: rgba(15, 159, 168, 0.12);
    color: var(--text);
}

.guide-menu .is-active {
    background: rgba(15, 159, 168, 0.28);
    color: var(--text);
}

.role-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.role-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 159, 168, 0.14);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(15, 159, 168, 0.22);
}

.guide-meta {
    margin: 14px 0 12px;
}

.guide-meta h4 {
    margin: 0 0 8px;
    font-size: 14px;
}

.guide-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-soft);
    font-size: 14px;
}

.guide-list li {
    margin-bottom: 6px;
}

.guide-tip {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(245, 181, 68, 0.16);
    color: #8a5200;
    font-weight: 600;
    font-size: 13px;
}

.guide-tip-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.guide-tip .guide-list {
    margin-top: 6px;
    color: inherit;
}

.guide-media {
    margin-top: 12px;
}

.guide-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

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

.guide-group-toggle {
    background: transparent;
    color: var(--text);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 8px 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guide-group-toggle::after {
    content: '▾';
    font-size: 12px;
    color: var(--text-soft);
}

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

.guide-group.collapsed .guide-group-items {
    display: none;
}

.guide-group.collapsed .guide-group-toggle::after {
    content: '▸';
}

.guide-content {
    min-width: 0;
}

.guide-block {
    margin-bottom: 40px;
}

.guide-panel {
    display: none;
}

.guide-panel.is-active {
    display: block;
}

.guide-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.guide-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.guide-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.guide-modal-content {
    position: relative;
    width: min(640px, 92vw);
    max-height: min(80vh, 720px);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 18px 20px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.guide-modal-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.guide-modal-nav {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.guide-modal-close {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: var(--text);
}

.guide-modal-body {
    overflow-y: auto;
    padding-right: 4px;
    -webkit-overflow-scrolling: touch;
}

body.theme-lumina .guide-modal-content {
    background: var(--surface-color);
    border-color: var(--border-color);
    color: var(--text-main);
}

body.theme-lumina .guide-modal-close {
    color: var(--text-main);
}

body.theme-lumina .guide-modal-nav {
    border-color: var(--border-color);
    color: var(--text-main);
    background: var(--glass-bg);
}

.guide-hero h1 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 12px;
}

.guide-hero .section-header {
    margin-bottom: 18px;
}

.toc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
}

.toc h2 {
    margin-bottom: 12px;
}

.toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.toc-list a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 159, 168, 0.12);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

.toc-list a:hover {
    background: rgba(15, 159, 168, 0.22);
}

.guide-section .section-header {
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
}

.feature-card h3 {
    margin-bottom: 8px;
}

.guide-steps {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--text-soft);
    font-size: 14px;
}

.guide-steps li {
    margin-bottom: 6px;
}

.image-placeholder {
    margin-top: 12px;
    border: 1px dashed rgba(15, 159, 168, 0.5);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    color: var(--text-soft);
    background: rgba(15, 159, 168, 0.06);
    font-size: 13px;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.preview-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.preview-thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
}

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

.preview-thumb.is-hidden {
    display: none;
}

.preview-thumb-more {
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--accent);
    background: rgba(15, 159, 168, 0.08);
}

.preview-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.preview-card h3 {
    margin-bottom: 8px;
}

.preview-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    color: var(--text-soft);
    font-size: 14px;
}

.preview-list li {
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.preview-list li::before {
    content: '•';
    color: var(--accent);
    font-weight: 700;
}

.preview-visual {
    background: linear-gradient(150deg, rgba(15,159,168,0.08), rgba(245,181,68,0.14));
    border: 1px dashed rgba(15, 159, 168, 0.28);
    border-radius: 16px;
    padding: 16px;
}

.preview-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    background: var(--card);
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-item p {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 14px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 159, 168, 0.26);
}

.pill {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(15, 159, 168, 0.14);
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 10px;
}

.list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    color: var(--text-soft);
    font-size: 14px;
}

.list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.list li::before {
    content: '•';
    color: var(--accent);
    font-weight: 700;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.step-num {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(15, 159, 168, 0.16);
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-banner {
    background: linear-gradient(120deg, rgba(15, 159, 168, 0.12), rgba(245, 181, 68, 0.16));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
    align-items: center;
}

.cta-banner h3 {
    margin-bottom: 8px;
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.cta-card {
    background: var(--card);
    border-color: rgba(255,255,255,0.14);
}

.form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.input {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
}

.input::placeholder {
    color: var(--text-soft);
}

.muted {
    color: var(--text-soft);
    font-size: 14px;
}

.badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(15,159,168,0.2);
    background: rgba(15,159,168,0.08);
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
}

.badge-warning {
    border-color: rgba(245, 181, 68, 0.4);
    background: rgba(245, 181, 68, 0.18);
    color: #8a5200;
}

.price-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(245, 181, 68, 0.16);
    color: var(--accent);
    font-weight: 800;
}

.pricing-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-box {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.price-item {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

body.theme-lumina .price-box {
    background: var(--glass-bg);
    border-color: var(--border-color);
}

body.theme-lumina .price-item {
    font-size: 20px;
    color: var(--text-main);
}

.footer {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    color: var(--text-soft);
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.18);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 30;
}

.back-to-top:hover {
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.26);
    transform: translateY(6px);
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.community-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-14 {
    margin-top: 14px;
}

.mb-0 {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .cta-banner {
        grid-template-columns: 1fr;
    }

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

    .guide-sidebar {
        position: static;
        max-height: none;
    }

    .guide-menu {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .guide-modal-content {
        width: 94vw;
        height: 84vh;
        max-height: 84vh;
    }

    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .container {
        width: 92vw;
    }

    .nav-inner {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: 280px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        background: #fff;
        box-shadow: -6px 0 20px rgba(0,0,0,0.12);
        transform: translateX(100%);
        transition: transform 0.25s ease;
        gap: 16px;
        z-index: 23;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-overlay.active {
        display: block;
    }

    .nav-links a {
        width: 100%;
        font-size: 15px;
    }

    .hero {
        padding: 50px 0 30px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-showcase {
        padding: 16px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .preview-card {
        grid-template-columns: 1fr;
    }

    .btn, .btn-apk {
        width: 100%;
        justify-content: center;
    }

    .store-badge, .badge, .price-highlight {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

/* --- Lumina Theme (TOGA palette) --- */
body.theme-lumina {
    --bg-color: #030305;
    --surface-color: #121216;
    --surface-hover: #1c1c22;
    --border-color: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --primary-accent: #0f9fa8;
    --secondary-accent: #f5b544;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow-shadow: 0 0 40px rgba(15, 159, 168, 0.2);
    --card-bg-gradient: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
    --particle-color: rgba(15, 159, 168, 0.2);

    --bg: var(--bg-color);
    --bg-soft: var(--surface-color);
    --glass: var(--glass-bg);
    --card: var(--surface-color);
    --accent: var(--primary-accent);
    --accent-2: var(--secondary-accent);
    --muted: var(--text-muted);
    --text: var(--text-main);
    --text-soft: var(--text-muted);
    --border: var(--border-color);

    background: var(--bg-color);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    transition: background-color 0.4s ease, color 0.4s ease;
}

body.theme-lumina.light-mode {
    --bg-color: #f8fafc;
    --surface-color: #ffffff;
    --surface-hover: #f1f5f9;
    --border-color: rgba(0, 0, 0, 0.08);
    --text-main: #0f172a;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.05);
    --glow-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --card-bg-gradient: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --particle-color: rgba(15, 23, 42, 0.08);
}

body.theme-lumina .skip-link {
    background: var(--surface-color);
    border-color: var(--border-color);
    color: var(--text-main);
}

body.theme-lumina .navbar {
    background: rgba(3, 3, 5, 0.85);
    border-bottom: 1px solid var(--border-color);
}

body.theme-lumina.light-mode .navbar {
    background: rgba(248, 250, 252, 0.9);
}

body.theme-lumina .navbar.scrolled,
body.theme-lumina .navbar.is-sticky {
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

body.theme-lumina.light-mode .navbar.scrolled,
body.theme-lumina.light-mode .navbar.is-sticky {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

body.theme-lumina .brand img {
    height: 56px;
}

body.theme-lumina .nav-links {
    color: var(--text-muted);
}

body.theme-lumina .nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

body.theme-lumina .nav-links a:hover {
    color: var(--text-main);
}

body.theme-lumina .nav-links .btn-nav {
    padding: 10px 18px;
    border-radius: 999px;
}

body.theme-lumina .nav-toggle {
    color: var(--text-main);
    border-color: var(--border-color);
}

body.theme-lumina .theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 999px;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.theme-lumina .theme-toggle:hover {
    background: var(--glass-bg);
}

body.theme-lumina .btn {
    font-weight: 600;
}

body.theme-lumina .btn-primary {
    background: var(--text-main);
    color: var(--bg-color);
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.4);
}

body.theme-lumina.light-mode .btn-primary {
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.16);
}

body.theme-lumina .btn-outline {
    border-color: var(--border-color);
    color: var(--text-main);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

body.theme-lumina .btn-outline:hover {
    border-color: var(--text-main);
    background: var(--surface-hover);
}

body.theme-lumina .btn-apk {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    box-shadow: 0 16px 30px rgba(15, 159, 168, 0.3);
}

body.theme-lumina #bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

body.theme-lumina .cursor-dot,
body.theme-lumina .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}

@media (pointer: fine) {
    body.theme-lumina {
        cursor: none;
    }

    body.theme-lumina .cursor-dot,
    body.theme-lumina .cursor-outline {
        opacity: 1;
    }
}

body.theme-lumina .cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--text-main);
}

body.theme-lumina .cursor-outline {
    width: 42px;
    height: 42px;
    border: 1px solid var(--text-main);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body.theme-lumina.hovering .cursor-outline {
    width: 64px;
    height: 64px;
    background: var(--glass-bg);
    border-color: var(--text-main);
    backdrop-filter: blur(2px);
}

body.theme-lumina .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

body.theme-lumina .hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

body.theme-lumina .hero-text h1 {
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

body.theme-lumina .hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

body.theme-lumina .section-tag {
    color: var(--primary-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 14px;
    display: inline-flex;
}

body.theme-lumina .cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

body.theme-lumina .hero-download {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

body.theme-lumina .hero-visual {
    position: relative;
    perspective: 1200px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.theme-lumina .card-stack {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    touch-action: pan-y;
}

body.theme-lumina .glass-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 420px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: var(--glow-shadow);
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    transform-style: preserve-3d;
    opacity: 0;
    z-index: var(--stack-zindex, 1);
    transform: translate3d(var(--stack-x, 0px), calc(var(--stack-y, 0px) + var(--enter-offset, 30px)), var(--stack-z, 0px));
}

body.theme-lumina .glass-card.has-image {
    background-image: var(--card-image);
    background-size: cover;
    background-position: center;
    border-color: rgba(255, 255, 255, 0.12);
}

body.theme-lumina .glass-card.has-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 3, 5, 0.2), rgba(3, 3, 5, 0.75));
    border-radius: 24px;
    z-index: 0;
}

body.theme-lumina.light-mode .glass-card.has-image::before {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.5));
}

body.theme-lumina .glass-card.has-image .card-content,
body.theme-lumina .glass-card.has-image .card-label,
body.theme-lumina .glass-card.has-image h3,
body.theme-lumina .glass-card.has-image .card-desc {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

body.theme-lumina.light-mode .glass-card.has-image .card-content,
body.theme-lumina.light-mode .glass-card.has-image .card-label,
body.theme-lumina.light-mode .glass-card.has-image h3,
body.theme-lumina.light-mode .glass-card.has-image .card-desc {
    color: #ffffff;
}

body.theme-lumina .glass-card.has-image .card-content {
    margin-top: auto;
}

body.theme-lumina .glass-card.has-image .card-graphic {
    display: none;
}

body.theme-lumina .card-1 {
    --stack-x: 0px;
    --stack-y: 0px;
    --stack-z: 0px;
    --stack-zindex: 1;
    background: var(--card-bg-gradient);
}

body.theme-lumina .card-2 {
    --stack-x: 20px;
    --stack-y: 20px;
    --stack-z: 40px;
    --stack-zindex: 2;
    border-color: var(--primary-accent);
    box-shadow: 0 0 30px rgba(15, 159, 168, 0.25);
}

body.theme-lumina .card-3 {
    --stack-x: 40px;
    --stack-y: 40px;
    --stack-z: 80px;
    --stack-zindex: 3;
}

body.theme-lumina .glass-card.is-visible {
    opacity: 1;
    --enter-offset: 0px;
}

body.theme-lumina .glass-card.is-front {
    --stack-x: 40px;
    --stack-y: 40px;
    --stack-z: 80px;
    --stack-zindex: 3;
}

body.theme-lumina .glass-card.is-middle {
    --stack-x: 20px;
    --stack-y: 20px;
    --stack-z: 40px;
    --stack-zindex: 2;
}

body.theme-lumina .glass-card.is-back {
    --stack-x: 0px;
    --stack-y: 0px;
    --stack-z: 0px;
    --stack-zindex: 1;
}

body.theme-lumina .glass-card.is-front.is-visible {
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translate3d(var(--stack-x, 0px), calc(var(--stack-y, 0px) + var(--enter-offset, 0px)), var(--stack-z, 0px));
    }
    50% {
        transform: translate3d(var(--stack-x, 0px), calc(var(--stack-y, 0px) - 6px + var(--enter-offset, 0px)), var(--stack-z, 0px));
    }
}

body.theme-lumina .card-graphic {
    width: 100%;
    height: 140px;
    background: radial-gradient(circle at center, var(--primary-accent), transparent 70%);
    opacity: 0.18;
    border-radius: 16px;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

body.theme-lumina .card-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

body.theme-lumina .card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 10px;
}

body.theme-lumina .section {
    padding: 110px 0;
}

body.theme-lumina .section-header h2 {
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -0.02em;
}

body.theme-lumina .section-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

body.theme-lumina .card,
body.theme-lumina .preview-card,
body.theme-lumina .hero-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

body.theme-lumina.light-mode .card,
body.theme-lumina.light-mode .preview-card,
body.theme-lumina.light-mode .hero-card {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

body.theme-lumina .card:hover,
body.theme-lumina .preview-card:hover {
    border-color: var(--text-muted);
    background: var(--surface-hover);
    transform: translateY(-4px);
}

body.theme-lumina .list {
    color: var(--text-muted);
}

body.theme-lumina .pill,
body.theme-lumina .badge {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

body.theme-lumina .badge-warning {
    border-color: rgba(245, 181, 68, 0.4);
    background: rgba(245, 181, 68, 0.14);
    color: #f6c56f;
}

body.theme-lumina .store-badge {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

body.theme-lumina .store-icon {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
}

body.theme-lumina .footer {
    background: transparent;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

body.theme-lumina .footer a {
    color: var(--text-main);
}

body.theme-lumina .guide-sidebar,
body.theme-lumina .guide-panel,
body.theme-lumina .outlet-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
}

body.theme-lumina .guide-menu a,
body.theme-lumina .guide-menu button {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

body.theme-lumina .guide-menu .sub {
    color: var(--text-muted);
}

body.theme-lumina .toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-accent);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    box-shadow: var(--glow-shadow);
    color: var(--text-main);
}

body.theme-lumina .toast.active {
    transform: translateY(0);
    opacity: 1;
}

body.theme-lumina .toast-icon {
    color: var(--primary-accent);
    font-size: 1.2rem;
}

body.theme-lumina .back-to-top {
    background: var(--surface-color);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

body.theme-lumina .contact-card {
    padding: 32px;
}

body.theme-lumina .contact-form {
    display: grid;
    gap: 18px;
}

body.theme-lumina .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.theme-lumina .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

body.theme-lumina .form-field label {
    font-weight: 600;
    color: var(--text-main);
}

body.theme-lumina .contact-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--glass-bg);
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.theme-lumina .contact-input::placeholder {
    color: var(--text-muted);
}

body.theme-lumina .contact-input:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(15, 159, 168, 0.2);
    background: var(--surface-color);
}

body.theme-lumina .form-actions {
    display: flex;
    justify-content: flex-start;
}

body.theme-lumina .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

body.theme-lumina .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    body.theme-lumina .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body.theme-lumina .hero-visual {
        height: 400px;
        margin-top: 40px;
    }

    body.theme-lumina .cta-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    body.theme-lumina .nav-links {
        background: var(--bg-color);
    }

    body.theme-lumina .nav-links button {
        width: 100%;
        justify-content: center;
    }

    body.theme-lumina .form-grid {
        grid-template-columns: 1fr;
    }

    body.theme-lumina .form-actions {
        justify-content: center;
    }

    body.theme-lumina .hero {
        padding-top: 120px;
    }

    body.theme-lumina .hero-text h1 {
        font-size: clamp(28px, 8vw, 42px);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
