@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;}
:root {
    --bg-primary: #000;
    --bg-secondary: #00040E;
    --bg-tertiary: #12141e;
    --bg-card: transparent;
    --bg-card-elevated: #161828;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-card: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.35);
    --accent: #ff5500;
    --accent-bright: #ff6a00;
    --accent-glow: rgba(232, 115, 58, 0.3);
    --accent-deep: #c45a24;
    --positive: rgb(0, 255, 0);
    --negative: rgb(255, 0, 0);
    --bento-graph-grid-1: rgba(255, 255, 255, 0.05);
    --bento-graph-grid-2: rgba(255, 255, 255, 0.04);
    --bento-graph-grid-3: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --accent-primary: #ff5500;
    --accent-secondary: #ff6a00;
    --accent-gradient: linear-gradient(135deg, #ff6a00 0%, #ff5500 100%);
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #f81717;
    --info: #3b82f6;
    --border-radius: 32px;
    --transition: all 0.16s cubic-bezier(0.4, 0, 0.2, 0.8);
    --font-main: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-headings: 'Philosopher', serif;
    --section-padding: 80px 0;
    --container-max: 1200px;}
[data-theme="light"] {
    color-scheme: light;
    --bg-primary: #f4f7fb;
    --bg-secondary: #ffffff;
    --bg-tertiary: #eef2f8;
    --bg-card: rgba(255, 255, 255, 0.88);
    --bg-card-elevated: #ffffff;
    --border-subtle: rgba(15, 23, 42, 0.08);
    --border-card: rgba(15, 23, 42, 0.12);
    --text-primary: #0f172a;
    --text-secondary: rgba(15, 23, 42, 0.74);
    --text-muted: rgba(15, 23, 42, 0.55);
    --accent: #f97316;
    --accent-bright: #fb923c;
    --accent-glow: rgba(249, 115, 22, 0.28);
    --accent-deep: #c2410c;
    --positive: #15803d;
    --negative: #dc2626;
    --bento-graph-grid-1: rgba(15, 23, 42, 0.16);
    --bento-graph-grid-2: rgba(15, 23, 42, 0.12);
    --bento-graph-grid-3: rgba(15, 23, 42, 0.09);
    --glass-bg: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(15, 23, 42, 0.14);
    --glass-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;}
body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;}
a {
    text-decoration: none;
    color: inherit;}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 11, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);}
.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;}
.header-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    font-family: 'Alkatra', cursive;}
.header-logo-icon {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    object-fit: cover;}
.header-nav {
    display: flex;
    gap: 8px;}
.nav-link {
    padding: 8px 16px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
    will-change: color;}
.nav-link:not(.active):hover {
    color: #fff;
    background: none;}
a.nav-link.active,
a.nav-link.active:hover {
    color: var(--accent);}
a.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);}
.header-dropdown-menu a.nav-link.active::after {
    display: none;}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-main);}
.btn--primary {
    background: linear-gradient(45deg, #ff6a00, #ff3c00);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-glow);}
.btn--primary:hover {
    background: linear-gradient(45deg, #ff8a00, #ff5500);
    box-shadow: 0 10px 25px rgba(255, 100, 0, 0.4);}
.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(10px);}
.btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);}
.btn--sm {
    padding: 8px 16px;
    font-size: 13px;}
.hero {
    position: relative;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 40px;
    max-width: var(--container-max);
    margin: 0 auto;
    overflow: hidden;
    background: var(--bg-primary);}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;}
.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;}
.hero-media:empty {
    display: none;}
.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 16px 4px 4px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);}
.badge-label {
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;}
.badge-text {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;}
.hero-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;}
.hero-subtitle {
    text-align: left;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;}
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    z-index: 2;}
.dashboard-section {
    position: relative;
    padding: 0 40px 100px;
    margin-top: 0;
    z-index: 5;}
.dashboard-container {
    max-width: var(--container-max);
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 0 32px 32px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 4px 14px rgba(0, 0, 0, 0.25);
    will-change: transform;}
.dash-nav {
    display: flex;
    align-items: stretch;
    height: 72px;
    padding: 0;
    border-bottom: 1px solid var(--border-subtle);
    gap: 32px;
    flex-shrink: 0;}
.dash-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    font-family: 'Alkatra', cursive;
    min-width: 160px;
    align-self: center;}
.dash-logo-icon {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    object-fit: cover;}
.dash-nav-links {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: center;
    align-items: stretch;}
.dash-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    text-decoration: none;
    position: relative;
    flex-shrink: 0;
    transform: translateZ(0);
    will-change: transform;}
.dash-nav-link:not(.dash-nav-link--ai).active {
    color: var(--accent);
    background: none;}
.dash-nav-link:not(.dash-nav-link--ai).active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;}
.dash-nav-link:not(.dash-nav-link--ai):hover {
    color: var(--accent);
    background: none;}
.dash-nav-link--ai,
.dash-nav-link--ai:hover,
.dash-nav-link--ai.active {
    background: none;
    padding: 0 4px;}
.dash-nav-link--ai.active .tab-ai-capsule {
    filter: brightness(1.25) saturate(1.1);}
.dash-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    min-width: 160px;
    justify-content: flex-end;
    align-self: center;}
.dash-notification {
    position: relative;
    color: var(--text-secondary);
    cursor: pointer;}
.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;}
.notification-dot.hidden {
    opacity: 0;
    transform: scale(0);}
.notif-panel {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    right: -12px;
    width: 340px;
    background: rgba(12, 13, 20, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
    z-index: 200;
    overflow: hidden;
    transform-origin: top right;
    animation: notifIn 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;}
.notif-panel.open {
    display: block;}
@keyframes notifIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(-6px);}
    to {
        opacity: 1;
        transform: scale(1) translateY(0);}}
.notif-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);}
.notif-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--accent);}
.notif-mark-read {
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: 11px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;}
.notif-mark-read:hover {
    color: var(--text-primary);}
.notif-list {
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;}
.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
    position: relative;}
.notif-item:last-child {
    border-bottom: none;}
.notif-item:hover {
    background: rgba(255, 255, 255, 0.03);}
.notif-item--unread {
    background: rgba(232, 115, 58, 0.04);}
.notif-item--unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    border-radius: 0 2px 2px 0;}
.notif-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;}
.notif-icon--warn {
    background: rgba(255, 80, 0, 0.15);
    color: #ff8040;}
.notif-icon--tip {
    background: rgba(255, 200, 0, 0.10);}
.notif-icon--good {
    background: rgba(0, 220, 100, 0.12);
    color: #00dc64;}
.notif-body {
    flex: 1;
    min-width: 0;}
.notif-text {
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0 0 4px;}
.notif-text strong {
    color: var(--text-primary);
    font-weight: 600;}
.notif-time {
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.3px;}
.notif-dismiss {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 11px;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.2s, color 0.2s;
    font-family: var(--font-main);
    line-height: 1;}
.notif-item:hover .notif-dismiss {
    opacity: 1;}
.notif-dismiss:hover {
    color: var(--text-primary);}
.notif-footer {
    padding: 10px 16px;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.4px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(232, 115, 58, 0.02);}
.notif-bell-wrap {
    position: relative;
    display: flex;
    align-items: center;}
.notif-bell-wrap::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.18) 0%, transparent 70%);
    animation: bellPulse 2.8s ease-in-out infinite;
    pointer-events: none;}
@keyframes bellPulse {
    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);}
    50% {
        opacity: 1;
        transform: scale(1.15);}}
.notif-bell-wrap .dash-notification {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: rgba(255, 85, 0, 0.08);
    border: 1px solid rgba(255, 85, 0, 0.2);
    border-radius: 10px;
    width: 34px;
    height: 34px;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;}
.notif-bell-wrap .dash-notification:hover {
    background: rgba(255, 85, 0, 0.15);
    border-color: rgba(255, 85, 0, 0.4);}
.tab-ai-capsule {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #e85f00 0%, #cc3000 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.5;
    transition: filter 0.25s ease;
    will-change: filter;}
.dash-nav-link--ai {
    padding: 0 4px;}
.dash-nav-link--ai.active .tab-ai-capsule,
.dash-nav-link--ai:hover .tab-ai-capsule {
    filter: brightness(1.25) saturate(1.1);}
.dash-tab-panel {
    animation: tabFadeIn 0.25s ease;
    min-height: 480px;}
@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);}
    to {
        opacity: 1;
        transform: translateY(0);}}
.ai-analyse-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 40px;
    text-align: center;
    color: var(--text-muted);}
.ai-analyse-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 85, 0, 0.06);
    border: 1px solid rgba(255, 85, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);}
.ai-analyse-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;}
.ai-analyse-placeholder h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.3px;}
.ai-analyse-placeholder p {
    font-size: 13px;
    line-height: 1.7;
    max-width: 320px;
    color: var(--text-secondary);}
.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 20px;}
.dash-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;}
.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 18px 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;}
.stat-card:hover {
    border-color: rgba(232, 115, 58, 0.35);
    background: rgba(232, 115, 58, 0.06);
    transform: translateY(-3px);}
.stat-card--highlight {
    border-color: rgba(232, 115, 58, 0.2);
    background: rgba(232, 115, 58, 0.05);}
.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;}
.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    text-transform: uppercase;}
.stat-change {
    font-size: 11px;
    font-weight: 600;}
.stat-change.positive {
    color: var(--positive);}
.stat-change.negative {
    color: var(--negative);}
.stat-value {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;}
.dash-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;}
.dash-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;}
.dash-card:hover {
    border-color: rgba(232, 115, 58, 0.3);
    background: rgba(232, 115, 58, 0.04);
    transform: translateY(-3px);}
.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;}
.card-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;}
.import-list {
    display: flex;
    flex-direction: column;
    gap: 20px;}
.import-item {
    display: flex;
    align-items: center;
    justify-content: space-between;}
.import-item-left {
    display: flex;
    align-items: center;
    gap: 12px;}
.import-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;}
.import-name {
    font-size: 14px;
    font-weight: 600;}
.import-type {
    font-size: 12px;
    color: var(--text-muted);}
.btn-launch {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid var(--border-card);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.2s;}
.btn-launch:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);}
.card-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);}
.action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;}
.chart-area {
    display: flex;
    gap: 12px;
    height: 220px;
    margin-top: 16px;}
.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    padding: 0 0 24px;}
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex: 1;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;}
.chart-month {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    position: relative;}
.bar-group {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 100%;
    width: 100%;
    justify-content: center;}
.bar {
    width: 14px;
    border-radius: 4px 4px 0 0;
    transition: height 0.6s ease;}
.bar--primary {
    background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 100%);}
.bar--secondary {
    background: linear-gradient(180deg, rgba(139, 69, 19, 0.8) 0%, rgba(101, 50, 14, 0.6) 100%);}
.month-label {
    font-size: 11px;
    color: var(--text-muted);
    position: absolute;
    bottom: -20px;}
.ai-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    scroll-margin-top: 56px;}
.ai-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent);}
.ai-heading {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;}
.ai-heading-accent {
    background: linear-gradient(135deg, var(--accent-bright, #ff8c42), var(--accent, #e8733a));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;}
.ai-subtext {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 520px;}
.features-grid-section {
    padding: 40px 40px 100px;
    max-width: calc(var(--container-max) + 80px);
    margin: 0 auto;}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 18px;}
.bento-card--balance {
    grid-column: span 3;
    grid-row: span 2;}
.bento-card--analytics {
    grid-column: span 5;
    grid-row: span 1;}
.bento-card--brand {
    grid-column: span 4;
    grid-row: span 1;}
.bento-card--savings {
    grid-column: span 5;
    grid-row: span 1;}
.bento-card--settings {
    grid-column: span 4;
    grid-row: span 1;}
.bento-card--history {
    grid-column: span 9;
    grid-row: span 1;}
.glare-card {
    --m-x: 50%;
    --m-y: 50%;
    --r-x: 0deg;
    --r-y: 0deg;
    --bg-x: 50%;
    --bg-y: 50%;
    --duration: 300ms;
    --easing: ease;
    --opacity: 0;
    --radius: 16px;
    position: relative;
    perspective: 600px;
    min-height: 240px;
    cursor: pointer;
    will-change: transform;}
.glare-card__inner {
    width: 100%;
    height: 100%;
    display: grid;
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--border-card);
    background: var(--bg-card);
    overflow: hidden;
    transform: perspective(600px) rotateY(var(--r-x)) rotateX(var(--r-y));
    transform-origin: center center;
    transition:
        transform var(--duration) var(--easing),
        border-color 0.3s ease;
    will-change: transform;}
.glare-card:hover .glare-card__inner {
    --duration: 0ms;
    border-color: rgba(255, 255, 255, 0.15);}
.glare-card__content {
    position: relative;
    z-index: 3;
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;}
.glare-card__glare {
    display: none;}
.glare-card__foil {
    display: none;}
.bento-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;}
.bento-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;}
.bento-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;}
.bento-task-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;}
.bento-task {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 7px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    min-width: 0;
    overflow: hidden;}
.bento-task svg {
    flex-shrink: 0;}
.bento-task span {
    min-width: 0;}
.bento-task>span:nth-child(2) {
    white-space: normal;
    overflow-wrap: anywhere;}
.bento-task--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;}
.bento-task-val {
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    justify-self: end;
    text-align: right;}
.bento-stat-row {
    display: flex;
    gap: 32px;
    margin-top: auto;}
.bento-stat-val {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 4px;}
.bento-stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    text-transform: uppercase;}
.bento-brand-content {
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 0;
    text-align: center;
    position: relative;
    overflow: hidden;}
.bento-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;}
.bento-brand-fade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to right,
            var(--bg-card) 0%,
            transparent 22%,
            transparent 78%,
            var(--bg-card) 100%);}
.bento-progress-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;}
.bento-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 6px;}
.bento-progress-bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;}
.bento-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent));
    border-radius: 99px;
    transition: width 0.6s ease;}
.bento-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;}
.bento-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);}
.bento-menu-item--active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);}
.bento-menu-indent {
    padding-left: 28px;
    font-size: 11px;
    color: var(--text-muted);}
.bento-deco {
    position: absolute;
    pointer-events: none;}
.bento-deco--rings {
    right: -30px;
    bottom: -30px;
    width: 160px;
    height: 160px;}
.bento-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);}
.bento-ring--1 {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(232, 115, 58, 0.35);}
.bento-ring--2 {
    width: 115px;
    height: 115px;
    border: 1px solid rgba(232, 115, 58, 0.18);}
.bento-ring--3 {
    width: 160px;
    height: 160px;
    border: 1px solid rgba(232, 115, 58, 0.08);}
.bento-deco--rows {
    right: 28px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;}
.bento-row-line {
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.07);
    width: 130px;}
.bento-row-line--mid {
    width: 95px;}
.bento-row-line--short {
    width: 65px;
    background: rgba(255, 255, 255, 0.05);}
.bento-row-line--accent {
    width: 110px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.5;}
.bento-deco--graph {
    right: 0;
    bottom: 0;
    width: 160px;
    height: 70px;
    overflow: hidden;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.85) 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.85) 50%, transparent 100%);}
.bento-graph-svg {
    width: 100%;
    height: 100%;
    display: block;}
.bento-history-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;}
.bento-chip {
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border-card);
    color: var(--text-secondary);}
.bento-chip--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;}
@media (max-width: 1068px) {
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);}
    .glare-card__content {
        padding: 22px;}
    .bento-title {
        font-size: 18px;}
    .bento-desc {
        font-size: 12px;}
    .bento-card--balance {
        grid-column: span 6;
        grid-row: span 1;}
    .bento-card--analytics {
        grid-column: span 6;}
    .bento-card--brand {
        grid-column: span 3;}
    .bento-card--savings {
        grid-column: span 3;}
    .bento-card--settings {
        grid-column: span 6;}
    .bento-card--history {
        grid-column: span 6;}}
@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;}
    .bento-card--balance,
    .bento-card--analytics,
    .bento-card--brand,
    .bento-card--savings,
    .bento-card--settings,
    .bento-card--history {
        grid-column: span 1;
        grid-row: span 1;}
    .features-grid-section {
        padding: 20px 16px 60px;}}
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 115, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: left 0.1s, top 0.1s;
    display: none;}
.powerful-section {
    padding: 100px 40px 120px;
    max-width: calc(var(--container-max) + 80px);
    margin: 0 auto;}
.powerful-header {
    text-align: center;
    margin-bottom: 80px;}
.powerful-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;}
.powerful-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;}
.powerful-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;}
.powerful-heading {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.5px;}
.powerful-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;}
.powerful-left .btn {
    margin-bottom: 32px;
    margin-top: 8px;}
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;}
.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);}
.check-icon {
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;}
.powerful-right {
    position: relative;}
.powerful-features-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;}
.pf-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 12px;
    transition: all 0.2s;}
.pf-item--active {
    background: rgba(255, 255, 255, 0.03);}
.pf-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;}
.pf-icon--sessions {
    background: var(--accent);}
.pf-icon--chat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);}
.pf-icon--service {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);}
.pf-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;}
.pf-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;}
.ring-shield-graphic {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;}
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 28px;
        height: auto;
        min-height: calc(100vh - 40px);
        padding: 88px 24px 40px;}
    .hero-content {
        align-items: center;
        text-align: center;}
    .hero-subtitle {
        text-align: center;
        max-width: 680px;}
    .hero-cta {
        justify-content: center;}
    .hero-media {
        display: none;}
    .stats-row {
        grid-template-columns: repeat(2, 1fr);}
    .dash-content {
        grid-template-columns: 1fr;}
    .features-grid {
        grid-template-columns: repeat(2, 1fr);}
    .powerful-content {
        grid-template-columns: 1fr;
        gap: 40px;}}
@media (max-width: 768px) {
    .hero {
        padding: 80px 16px 34px;}
    .hero-cta {
        flex-direction: column;
        align-items: center;}
    .dashboard-section {
        padding: 0 16px 60px;}
    .dashboard-container {
        padding: 0 16px 16px;
        overflow-x: hidden;
        overflow-y: visible;}
    .dash-nav {
        gap: 10px;
        height: auto;
        min-height: 62px;
        min-width: 0;}
    .dash-logo {
        min-width: 0;
        font-size: 14px;
        letter-spacing: 0.6px;
        gap: 8px;}
    .dash-logo-icon {
        width: 30px;
        height: 30px;}
    .dash-nav-links {
        display: flex;
        flex: 1 1 auto;
        min-width: 0;
        align-items: center;
        gap: 6px;
        justify-content: flex-end;
        margin-left: 0;}
    .dash-nav-link {
        padding: 0 10px;
        font-size: 13px;
        min-width: 0;}
    .dash-nav-link--ai {
        padding: 0;}
    .tab-ai-capsule {
        padding: 6px 12px;
        font-size: 12px;}
    .dash-nav-right {
        min-width: 0;
        margin-left: 0;
        gap: 10px;
        flex: 0 0 auto;}
    .stats-row>*,
    .dash-content>*,
    .chart-bars,
    .chart-month,
    .import-item-left {
        min-width: 0;}
    .import-name {
        overflow-wrap: anywhere;}
    .notif-panel {
        right: 0;
        width: min(340px, calc(100vw - 32px));
        max-height: calc(100dvh - 120px);
        overflow-y: auto;}
    .stats-row {
        grid-template-columns: 1fr 1fr;}
    .features-grid {
        grid-template-columns: 1fr;}
    .powerful-section {
        padding: 60px 20px 80px;}
    .bento-grid {
        grid-template-columns: 1fr;}
    .bento-card--balance,
    .bento-card--analytics,
    .bento-card--brand,
    .bento-card--savings,
    .bento-card--settings,
    .bento-card--history {
        grid-column: span 1;
        grid-row: span 1;}
    .features-grid-section {
        padding: 20px 16px 60px;}
    .glare-card__content {
        padding: 20px;}
    .bento-stat-row {
        gap: 16px;
        flex-wrap: wrap;}}
@media (max-width: 480px) {
    .hero {
        padding: 72px 12px 28px;
        gap: 18px;
        min-height: auto;}
    .announcement-badge {
        margin-bottom: 20px;}
    .hero-title {
        font-size: clamp(28px, 9vw, 36px);}
    .hero-subtitle {
        font-size: 14px;}
    .dash-nav {
        gap: 8px;}
    .dash-logo {
        font-size: 12px;
        gap: 6px;}
    .dash-logo-icon {
        width: 26px;
        height: 26px;}
    .dash-nav-right {
        gap: 8px;}
    .dash-nav-links {
        flex: 0 0 auto;
        margin-left: auto;
        justify-content: flex-end;
        gap: 4px;}
    .dash-nav-link {
        padding: 0 8px;
        white-space: nowrap;}
    .dash-nav-links .dash-nav-link.active {
        display: none;}
    .dash-nav-links .dash-nav-link:not(.active) {
        display: flex;
        align-items: center;}
    .dash-nav-link:not(.dash-nav-link--ai) {
        font-size: 12px;
        gap: 4px;
        padding: 0 6px;}
    .dash-nav-link:not(.dash-nav-link--ai) svg {
        width: 12px;
        height: 12px;}
    .tab-ai-capsule {
        padding: 5px 10px;
        font-size: 11px;}
    .notif-panel {
        right: 0;
        left: auto;
        width: min(320px, calc(100vw - 56px));}
    .import-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;}
    .chart-area {
        gap: 8px;
        height: 190px;}
    .chart-bars {
        gap: 10px;}
    .bar {
        width: 10px;}
    .stats-row {
        grid-template-columns: 1fr;}}
@media (max-width: 400px) {
    .notif-panel {
        right: 0;
        left: auto;
        width: calc(100vw - 64px);
        max-width: 300px;}}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 40px;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease;}
.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;}
.header-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;}
.header-nav {
    display: flex;
    gap: 32px;}
.nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    cursor: pointer;}
.nav-link:hover {
    color: var(--text-primary);}
.header-dropdown {
    position: relative;}
.header-dropdown>summary.nav-link {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;}
.header-dropdown>summary.nav-link::after {
    content: '\25BE';
    font-size: 16px;
    line-height: 1;
    opacity: 0.95;
    transition: transform 0.2s ease;}
.header-dropdown[open]>summary.nav-link::after {
    transform: rotate(180deg);}
.header-dropdown>summary::-webkit-details-marker {
    display: none;}
.header-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 8px;
    border-radius: 10px;
    background: rgba(10, 11, 15, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    z-index: 220;}
.header-dropdown[open] .header-dropdown-menu {
    display: flex;}
.header-dropdown-menu .nav-link {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;}
.header-dropdown-menu .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);}
.header-dropdown:has(.header-dropdown-menu .nav-link.active)>summary.nav-link {
    color: var(--accent);}
.ai-gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;}
.ai-gallery-overlay.is-open {
    opacity: 1;
    pointer-events: all;}
.ai-gallery-panel {
    background: var(--bg-card, #111);
    border: 1px solid var(--border-card, rgba(255, 255, 255, 0.08));
    border-radius: 20px;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);}
.ai-gallery-overlay.is-open .ai-gallery-panel {
    transform: scale(1) translateY(0);}
.ai-gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-card, rgba(255, 255, 255, 0.07));
    flex-shrink: 0;}
.ai-gallery-header-left {
    display: flex;
    align-items: center;
    gap: 12px;}
.ai-gallery-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;}
.ai-gallery-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);}
.ai-gallery-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 1px;}
.ai-gallery-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-card, rgba(255, 255, 255, 0.08));
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;}
.ai-gallery-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(90deg);}
.ai-gallery-viewer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px;
    flex: 1;
    min-height: 0;
    overflow: hidden;}
.ai-gallery-img-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 0;
    overflow: hidden;}
.ai-gallery-img {
    max-width: 100%;
    max-height: calc(90vh - 200px);
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid var(--border-card, rgba(255, 255, 255, 0.07));
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);}
.ai-gallery-caption {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    flex-shrink: 0;}
.ai-gallery-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-card, rgba(255, 255, 255, 0.08));
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;}
.ai-gallery-nav:hover {
    background: rgba(232, 115, 58, 0.15);
    border-color: rgba(232, 115, 58, 0.35);
    transform: scale(1.08);}
.ai-gallery-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 12px 20px 18px;
    flex-shrink: 0;}
.ai-gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: background 0.2s, width 0.25s;
    padding: 0;}
.ai-gallery-dot.is-active {
    background: var(--accent, #e8733a);
    width: 20px;
    border-radius: 4px;}
@media (max-width: 768px) {
    .ai-gallery-overlay {
        padding: 12px;}
    .ai-gallery-panel {
        border-radius: 14px;
        max-height: 94vh;}
    .ai-gallery-header {
        padding: 12px 14px;}
    .ai-gallery-viewer {
        padding: 12px;
        gap: 6px;}
    .ai-gallery-nav {
        width: 38px;
        height: 38px;}
    .ai-gallery-img {
        max-height: calc(94vh - 190px);}}
@media (max-width: 560px) {
    .ai-gallery-nav {
        width: 34px;
        height: 34px;}
    .ai-gallery-caption {
        font-size: 12px;}}
.ring-shield-graphic {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 0;}
.rsg-ring {
    position: absolute;
    border-radius: 50%;
    inset: 0;}
.rsg-ring--1 {
    inset: 0;
    background: conic-gradient(from 0deg,
            rgba(232, 115, 58, 0) 0%,
            rgba(232, 115, 58, 0.9) 25%,
            rgba(255, 160, 80, 1) 35%,
            rgba(232, 115, 58, 0.9) 45%,
            rgba(232, 115, 58, 0) 60%);
    border-radius: 50%;
    animation: rsg-spin 4s linear infinite;
    -webkit-mask: radial-gradient(circle, transparent 44%, black 45%);
    mask: radial-gradient(circle, transparent 44%, black 45%);}
.rsg-ring--2 {
    inset: 20px;
    border: 1.5px dashed rgba(232, 115, 58, 0.35);
    animation: rsg-spin-rev 10s linear infinite;}
.rsg-ring--3 {
    inset: 40px;
    border: 1px solid rgba(255, 160, 80, 0.15);
    box-shadow: 0 0 20px 4px rgba(232, 115, 58, 0.12);
    animation: rsg-spin 20s linear infinite;}
@keyframes rsg-spin {
    from {
        transform: rotate(0deg);}
    to {
        transform: rotate(360deg);}}
@keyframes rsg-spin-rev {
    from {
        transform: rotate(0deg);}
    to {
        transform: rotate(-360deg);}}
.rsg-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: rsg-spin 4s linear infinite;}
.rsg-orbit-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff9040;
    box-shadow: 0 0 12px 4px rgba(232, 115, 58, 0.9), 0 0 24px 8px rgba(232, 115, 58, 0.4);}
.rsg-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(232, 115, 58, 0.7);
    box-shadow: 0 0 6px 2px rgba(232, 115, 58, 0.5);}
.rsg-particle--1 {
    top: 20px;
    left: 30px;
    animation: rsg-float 3.2s ease-in-out infinite 0s;}
.rsg-particle--2 {
    top: 30px;
    right: 20px;
    animation: rsg-float 4s ease-in-out infinite 0.8s;
    width: 4px;
    height: 4px;}
.rsg-particle--3 {
    bottom: 25px;
    left: 25px;
    animation: rsg-float 3.6s ease-in-out infinite 1.4s;
    width: 3px;
    height: 3px;
    opacity: 0.6;}
.rsg-particle--4 {
    bottom: 20px;
    right: 35px;
    animation: rsg-float 4.4s ease-in-out infinite 0.4s;}
@keyframes rsg-float {
    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.7;}
    50% {
        transform: translateY(-8px);
        opacity: 1;}}
.rsg-logo-wrap {
    position: relative;
    z-index: 2;
    animation: rsg-bob 4s ease-in-out infinite;}
.rsg-logo-glow {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 115, 58, 0.35) 0%, transparent 70%);
    animation: rsg-pulse-glow 2.5s ease-in-out infinite;}
.rsg-logo-img {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    object-fit: cover;
    display: block;
    position: relative;
    box-shadow:
        0 0 0 2px rgba(232, 115, 58, 0.4),
        0 8px 28px rgba(232, 115, 58, 0.35),
        0 20px 60px rgba(0, 0, 0, 0.5);}
@keyframes rsg-bob {
    0%,
    100% {
        transform: translateY(0px);}
    50% {
        transform: translateY(-6px);}}
@keyframes rsg-pulse-glow {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);}
    50% {
        opacity: 1;
        transform: scale(1.15);}}
.site-header .header-container {
    gap: 1rem;}
.header-dropdown>summary.nav-link::after {
    content: '\25BE';}
.site-header .nav-toggle {
    --toggle-bar-height: 2px;
    --toggle-cross-offset: 6px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    min-width: 44px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    line-height: 0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;}
.site-header .nav-toggle span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: var(--toggle-bar-height);
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;}
.site-header .nav-toggle span:nth-child(1) {
    top: calc(50% - var(--toggle-cross-offset));}
.site-header .nav-toggle span:nth-child(2) {
    top: 50%;}
.site-header .nav-toggle span:nth-child(3) {
    top: calc(50% + var(--toggle-cross-offset));}
.site-header .nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.24);}
.site-header .nav-toggle:active {
    transform: scale(0.97);}
.site-header .nav-toggle:focus-visible {
    outline: 2px solid rgba(255, 85, 0, 0.65);
    outline-offset: 2px;}
.site-header .nav-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);}
.site-header .nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0);}
.site-header .nav-toggle.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);}
@media (max-width: 1066px) {
    .site-header {
        padding: 12px 16px;
        background: rgba(10, 11, 15, 0.92);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);}
    .site-header .header-container {
        padding: 0;
        align-items: center;}
    .site-header .header-logo {
        font-size: 16px;
        letter-spacing: 1px;
        gap: 10px;}
    .site-header .header-logo-icon {
        width: 32px;
        height: 32px;}
    .site-header .nav-toggle {
        display: inline-flex;
        position: relative;
        z-index: 280;}
    .site-header .header-nav.nav-menu {
        position: fixed;
        top: 72px;
        left: 12px;
        right: 12px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.85rem;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(10, 11, 15, 0.98);
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.48);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        max-height: calc(100dvh - 88px);
        overflow-y: auto;
        z-index: 240;}
    .site-header .header-nav.nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);}
    .site-header .header-nav.nav-menu>.nav-link,
    .site-header .header-nav.nav-menu .header-dropdown>summary.nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        height: auto;
        padding: 0.85rem 0.95rem;
        border-radius: 10px;
        justify-content: space-between;
        line-height: 1.3;}
    .site-header .header-nav.nav-menu .nav-link.active::after {
        display: none;}
    .site-header .header-dropdown {
        width: 100%;}
    .site-header .header-dropdown-menu {
        position: static;
        top: auto;
        right: auto;
        min-width: 100%;
        margin-top: 0.35rem;
        padding: 0.35rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: none;
        display: none;}
    .site-header .header-dropdown[open] .header-dropdown-menu {
        display: flex;}
    .site-header .header-dropdown-menu .nav-link {
        display: block;
        padding: 0.75rem 0.85rem;
        border-radius: 8px;}
    body.nav-open {
        overflow: hidden;
        touch-action: none;}}
@media (max-width: 480px) {
    .site-header {
        padding: 10px 12px;}
    .site-header .header-logo {
        font-size: 14px;
        gap: 8px;}
    .site-header .header-nav.nav-menu {
        top: 66px;
        left: 10px;
        right: 10px;
        max-height: calc(100dvh - 76px);}}
[data-theme="light"] body {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.08) 0%, transparent 42%),
        var(--bg-primary);}
[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);}
[data-theme="light"] .nav-link:not(.active):hover,
[data-theme="light"] .header-dropdown-menu .nav-link:hover {
    color: var(--text-primary);}
[data-theme="light"] .header-dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);}
[data-theme="light"] .header-dropdown-menu .nav-link:hover {
    background: rgba(15, 23, 42, 0.06);}
[data-theme="light"] .site-header .nav-toggle {
    border-color: rgba(15, 23, 42, 0.18);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text-primary);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);}
[data-theme="light"] .site-header .nav-toggle:hover {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.26);}
[data-theme="light"] .btn--outline:hover {
    border-color: rgba(15, 23, 42, 0.24);
    background: rgba(15, 23, 42, 0.05);}
[data-theme="light"] .announcement-badge {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);}
[data-theme="light"] .hero-title,
[data-theme="light"] .powerful-title {
    background: linear-gradient(180deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;}
[data-theme="light"] .notif-panel {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.16);}
[data-theme="light"] .notif-header {
    border-bottom-color: rgba(15, 23, 42, 0.08);}
[data-theme="light"] .notif-list {
    scrollbar-color: rgba(15, 23, 42, 0.18) transparent;}
[data-theme="light"] .notif-item {
    border-bottom-color: rgba(15, 23, 42, 0.08);}
[data-theme="light"] .notif-item:hover {
    background: rgba(15, 23, 42, 0.04);}
[data-theme="light"] .notif-footer {
    border-top-color: rgba(15, 23, 42, 0.08);
    background: rgba(249, 115, 22, 0.08);}
[data-theme="light"] .dash-card,
[data-theme="light"] .stat-card {
    background: rgba(255, 255, 255, 0.82);}
[data-theme="light"] .glare-card__inner {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.92));
    border-color: rgba(15, 23, 42, 0.12);}
[data-theme="light"] .glare-card:hover .glare-card__inner {
    border-color: rgba(249, 115, 22, 0.35);}
[data-theme="light"] .bento-task {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.1);}
[data-theme="light"] .bento-task--active {
    background: #c2410c;
    border-color: #c2410c;
    color: #fff;
    box-shadow: 0 8px 16px rgba(194, 65, 12, 0.28);}
[data-theme="light"] .bento-brand-fade {
    background:
        linear-gradient(to right,
            rgba(244, 247, 251, 0.08) 0%,
            transparent 10%,
            transparent 90%,
            rgba(244, 247, 251, 0.08) 100%);}
[data-theme="light"] .bento-progress-bar {
    background: rgba(15, 23, 42, 0.12);}
[data-theme="light"] .bento-menu-item--active {
    background: rgba(249, 115, 22, 0.16);
    color: #7c2d12;
    box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.42);}
[data-theme="light"] .bento-row-line {
    background: rgba(15, 23, 42, 0.12);}
[data-theme="light"] .bento-row-line--short {
    background: rgba(15, 23, 42, 0.08);}
[data-theme="light"] .ai-gallery-overlay {
    background: rgba(255, 255, 255, 0.74);}
[data-theme="light"] .ai-gallery-close,
[data-theme="light"] .ai-gallery-nav {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.12);}
[data-theme="light"] .ai-gallery-close:hover {
    background: rgba(15, 23, 42, 0.09);}
[data-theme="light"] .ai-gallery-dot {
    background: rgba(15, 23, 42, 0.2);}
@media (max-width: 1066px) {
    [data-theme="light"] .site-header {
        background: rgba(255, 255, 255, 0.94);
        border-bottom: 1px solid rgba(15, 23, 42, 0.1);}
    [data-theme="light"] .site-header .header-nav.nav-menu {
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(15, 23, 42, 0.12);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);}
    [data-theme="light"] .site-header .header-dropdown-menu {
        background: rgba(15, 23, 42, 0.04);
        border: 1px solid rgba(15, 23, 42, 0.1);}}