:root {
    --primary: #d97706; /* Brand Honey Gold / Amber */
    --primary-light: #f5a600;
    --accent: #854d0e; /* Rich Coffee / Espresso Accent */
    --accent-light: #a16207;
    --background: #fdfbf7; /* Warm Oatmeal / Ivory */
    --foreground: #2b1a0f; /* Deep Espresso Brown for warm legibility */
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: rgba(43, 26, 15, 0.06);
    --text-muted: #785d4a; /* Latte / Taupe Muted */
    --border-glow: rgba(226, 154, 0, 0.10);
    --shadow-glow: 0 10px 30px -10px rgba(226, 154, 0, 0.08);
    --amber: #f5a600;
    --indigo: #854d0e;
    --orange: #ea580c;
    --emerald: #10b981;
    --rose: #ef4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Premium Warm Light Glow Spheres */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    z-index: -10;
    pointer-events: none;
    opacity: 0.6;
}

.glow-top-left {
    top: -150px;
    left: -150px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(226, 154, 0, 0.12) 0%, rgba(133, 77, 14, 0.04) 50%, rgba(255,255,255,0) 80%);
}

.glow-bottom-right {
    top: 35%;
    right: -150px;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(133, 77, 14, 0.06) 60%, rgba(255,255,255,0) 85%);
}

/* Premium Light Navigation Menu */
nav {
    padding: 1.15rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-image {
    height: 2.2rem;
    width: auto;
    object-fit: contain;
    animation: pulse-logo 4s ease-in-out infinite;
}

@keyframes pulse-logo {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg); }
}

.logo-icon {
    font-size: 1.7rem;
    animation: pulse-bee 4s ease-in-out infinite;
}

@keyframes pulse-bee {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.08) rotate(5deg); }
}

.logo-text {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #854d0e 0%, #f5a600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.version-chip {
    padding: 0.2rem 0.6rem;
    background: rgba(226, 154, 0, 0.08);
    border: 1px solid rgba(226, 154, 0, 0.2);
    border-radius: 2rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--foreground);
    transform: translateY(-1px);
}

/* Premium Light Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #854d0e 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 15px -2px rgba(133, 77, 14, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -4px rgba(133, 77, 14, 0.25);
    filter: brightness(1.08);
}

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

.btn-secondary {
    background: rgba(15, 23, 42, 0.04);
    color: var(--foreground);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.15);
}

.btn-large {
    padding: 1.05rem 2.1rem;
    font-size: 1.02rem;
    border-radius: 1rem;
}

.btn-white {
    background-color: white;
    color: var(--accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-trans {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-trans:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    border-radius: 0.85rem;
}

/* Hero Section Layout */
.hero {
    padding-top: 10.5rem;
    padding-bottom: 8rem;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-cols: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    background: rgba(226, 154, 0, 0.06);
    color: var(--accent);
    border: 1px solid rgba(226, 154, 0, 0.18);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero-text h1 {
    font-size: 4.2rem;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--foreground);
}

.gradient-text {
    background: linear-gradient(135deg, #854d0e 0%, #d97706 60%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.18rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 530px;
    font-weight: 450;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.15rem;
    margin-bottom: 3.5rem;
}

/* App Store Section */
.app-store-section {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 1.75rem;
    max-width: 500px;
}

.store-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-buttons {
    display: flex;
    gap: 1rem;
}

.store-badge {
    height: 38px;
    cursor: not-allowed;
    opacity: 0.45;
    transition: all 0.3s ease;
}

.disabled-badge:hover {
    opacity: 0.6;
    transform: translateY(-1px);
}

.store-svg {
    height: 100%;
    border-radius: 6px;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

/* Glowing Image Mockups - Bright Theme */
.hero-image {
    position: relative;
}

.glowing-border-wrapper {
    position: relative;
    border-radius: 2rem;
    padding: 2px;
    background: linear-gradient(135deg, rgba(226, 154, 0, 0.3) 0%, rgba(43, 26, 15, 0.05) 100%);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.06), var(--shadow-glow);
}

.glowing-border-wrapper img {
    width: 100%;
    display: block;
    border-radius: 1.9rem;
    background: white;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.85rem 1.2rem;
    border-radius: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 5px 10px -5px rgba(0,0,0,0.02);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 18%;
    right: -6%;
    animation-delay: 2s;
}

.floating-card i {
    width: 1.2rem;
    height: 1.2rem;
}

.text-emerald { color: var(--emerald); }
.text-violet { color: var(--accent); }

.floating-card span {
    font-weight: 700;
    font-size: 0.83rem;
    color: var(--foreground);
}

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

/* Feature Modules Section */
.features {
    padding: 8rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    background: rgba(248, 250, 252, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.label {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin: 0 auto 1.25rem;
    line-height: 1.2;
    color: var(--foreground);
}

.section-subheader {
    font-size: 1.12rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Light Mode Segment Tabs */
.module-tabs {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.65rem;
    margin-bottom: 4.5rem;
    padding: 0.4rem;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 1.2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.module-tabs::-webkit-scrollbar {
    display: none;
}

@media (min-width: 900px) {
    .module-tabs {
        justify-content: center;
    }
}

.tab-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.15rem;
    background: transparent;
    color: var(--text-muted);
    border: none;
    border-radius: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
}

.tab-btn i {
    width: 1.05rem;
    height: 1.05rem;
}

.tab-btn:hover {
    color: var(--foreground);
    background: rgba(15, 23, 42, 0.03);
}

.tab-btn.active {
    background: linear-gradient(135deg, #854d0e 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 15px -4px rgba(133, 77, 14, 0.2);
}

/* Tab Content Transitions */
.tab-content-wrapper {
    position: relative;
    min-height: 460px;
}

.tab-pane {
    display: none;
    animation: fade-in-tab 0.5s ease forwards;
}

.tab-pane.active {
    display: block;
}

@keyframes fade-in-tab {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-showcase-grid {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.showcase-visual {
    position: relative;
}

.showcase-img-container {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 2.25rem;
    padding: 1.25rem;
    box-shadow: 0 15px 35px -10px rgba(0,0,0,0.04), var(--shadow-glow);
}

.showcase-img-container img {
    width: 100%;
    border-radius: 1.25rem;
    display: block;
}

/* Premium Structured UI Mockups */
.ui-mockup {
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 1.5rem;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: inset 0 1px 2px rgba(255,255,255,1);
    font-size: 0.88rem;
    color: var(--foreground);
    text-align: left;
}

.ui-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 0.75rem;
    margin-bottom: 0.25rem;
}

.ui-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
}

.ui-title i {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--primary);
}

.ui-header-actions {
    display: flex;
    gap: -0.25rem;
}

.ui-circle-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 800;
    color: white;
    border: 1.5px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ui-circle-avatar.mini {
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
}

.ui-circle-avatar.pink { background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%); }
.ui-circle-avatar.indigo { background: linear-gradient(135deg, #854d0e 0%, #a16207 100%); }
.ui-circle-avatar.amber { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.ui-circle-avatar.blue { background: linear-gradient(135deg, #b45309 0%, #78350f 100%); }

.ui-badge {
    padding: 0.15rem 0.55rem;
    border-radius: 2rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.ui-badge.green { background: rgba(16, 185, 129, 0.08); color: var(--emerald); border: 1px solid rgba(16, 185, 129, 0.15); }
.ui-badge.purple { background: rgba(217, 119, 6, 0.08); color: var(--accent); border: 1px solid rgba(217, 119, 6, 0.15); }
.ui-badge.pink { background: rgba(244, 63, 94, 0.08); color: var(--rose); border: 1px solid rgba(244, 63, 94, 0.15); }

.ui-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ui-list-section {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.ui-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.ui-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 0.75rem;
    padding: 0.65rem 0.85rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.01);
}

.ui-list-item.checked {
    opacity: 0.6;
}

.ui-list-item.checked .ui-item-text {
    text-decoration: line-through;
    color: var(--text-muted);
}

.ui-checkbox {
    width: 17px;
    height: 17px;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    flex-shrink: 0;
}

.ui-checkbox.checked {
    background: var(--emerald);
    border-color: var(--emerald);
}

.ui-checkbox.checked i {
    width: 11px;
    height: 11px;
}

.ui-item-text {
    font-weight: 550;
    color: var(--foreground);
}

.ui-item-badge {
    margin-left: auto;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.15rem 0.45rem;
    border-radius: 2rem;
}

.ui-item-badge.badge-primary { background: rgba(133, 77, 14, 0.08); color: var(--indigo); }
.ui-item-badge.badge-warning { background: rgba(217, 119, 6, 0.08); color: var(--amber); }

.ui-item-assignee {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ui-assignee-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Inventory Table styles */
.ui-filters {
    display: flex;
    gap: 0.45rem;
}

.ui-filter {
    padding: 0.3rem 0.7rem;
    border-radius: 2rem;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(15, 23, 42, 0.03);
    color: var(--text-muted);
    cursor: pointer;
}

.ui-filter.active {
    background: var(--foreground);
    color: white;
}

.ui-table {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.ui-table-header {
    display: grid;
    grid-template-cols: 2.2fr 0.8fr 1.5fr 1.2fr;
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.ui-table-row {
    display: grid;
    grid-template-cols: 2.2fr 0.8fr 1.5fr 1.2fr;
    align-items: center;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 0.75rem;
    padding: 0.65rem 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.01);
}

.ui-table-row.alert-row {
    background: #fffbeb;
    border-color: #fde68a;
}

.ui-product-name {
    font-weight: 600;
    color: var(--foreground);
}

.ui-product-qty {
    font-weight: 700;
    color: var(--text-muted);
}

.ui-status-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 2rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.ui-status-badge.green { background: rgba(16, 185, 129, 0.08); color: var(--emerald); }
.ui-status-badge.amber { background: rgba(217, 119, 6, 0.08); color: var(--amber); }
.ui-status-badge.red { background: rgba(220, 38, 38, 0.08); color: #dc2626; }

.ui-status-badge.text-only {
    background: transparent;
    padding: 0;
    font-weight: 700;
}

.ui-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: var(--indigo);
    color: white;
    border: none;
    border-radius: 0.4rem;
    font-size: 0.65rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(133,77,14,0.15);
}

.ui-action-btn i {
    width: 0.75rem;
    height: 0.75rem;
}

/* Kitchen UI Styles */
.ui-recipe-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 1rem;
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.015);
}

.ui-recipe-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 0.65rem;
}

.ui-recipe-main h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--foreground);
}

.ui-recipe-source {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-top: 0.15rem;
}

.ui-recipe-source i {
    width: 0.8rem;
    height: 0.8rem;
}

.ui-recipe-meta {
    display: flex;
    gap: 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
}

.ui-recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.ui-recipe-meta i {
    width: 0.85rem;
    height: 0.85rem;
}

.ui-ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.ui-sub-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    margin-bottom: 0.15rem;
}

.ui-ing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 555;
    color: var(--text-muted);
}

.ui-ing-row.checked span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.ui-ing-row.alert span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #64748b;
}

.green-check {
    width: 14px;
    height: 14px;
    color: var(--emerald);
}

.empty-box {
    width: 14px;
    height: 14px;
    color: #94a3b8;
}

.ui-recipe-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.ui-chef-select {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.ui-chef-select strong {
    color: var(--foreground);
}

.ui-cooked-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 0.6rem;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(234,88,18,0.15);
}

.ui-cooked-btn i {
    width: 0.85rem;
    height: 0.85rem;
}

/* Planner UI Styles */
.ui-sync-indicator {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--indigo);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ui-sync-indicator i {
    width: 0.8rem;
    height: 0.8rem;
}

.ui-date-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 0.15rem 0;
}

.ui-date-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
}

.ui-date-arrow i {
    width: 0.95rem;
    height: 0.95rem;
}

.ui-date-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--foreground);
}

.ui-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.ui-timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ui-time {
    width: 55px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.5rem;
    text-align: right;
}

.ui-event-card {
    flex: 1;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-left: 4px solid var(--primary);
    border-radius: 0.8rem;
    padding: 0.65rem 0.85rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.01);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.ui-event-card.border-purple { border-left-color: var(--primary); }
.ui-event-card.border-blue { border-left-color: var(--indigo); }
.ui-event-card.border-orange { border-left-color: var(--orange); }

.ui-event-card.google-sync {
    background: #fffbeb;
    border-color: rgba(217, 119, 6, 0.15) rgba(217, 119, 6, 0.15) rgba(217, 119, 6, 0.15) var(--primary);
}

.ui-event-title {
    font-weight: 700;
    color: var(--foreground);
    font-size: 0.82rem;
}

.ui-event-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-left: 0.15rem;
}

.ui-event-card .ui-circle-avatar {
    margin-left: auto;
}

.ui-avatars-row {
    margin-left: auto;
    display: flex;
    gap: -0.3rem;
}

.ui-avatars-row .ui-circle-avatar {
    margin-left: -6px;
}

/* Memories UI Styles */
.ui-journal-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 1rem;
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}

.ui-journal-author {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.ui-author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ui-author-info strong {
    font-size: 0.82rem;
    color: var(--foreground);
}

.ui-author-info span {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.ui-mood-badge {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 2rem;
    background: rgba(236, 72, 153, 0.08);
    color: #db2777;
}

.ui-journal-content {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-muted);
    font-weight: 500;
}

.ui-journal-tags {
    display: flex;
    gap: 0.35rem;
}

.ui-tag {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(226, 154, 0, 0.05);
    padding: 0.1rem 0.45rem;
    border-radius: 0.3rem;
}

.ui-journal-media {
    border-radius: 0.75rem;
    overflow: hidden;
    margin-top: 0.25rem;
}

.ui-media-placeholder {
    height: 110px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    gap: 0.35rem;
}

.ui-media-placeholder i {
    width: 1.05rem;
    height: 1.05rem;
}

.ui-flashback-widget {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.04) 0%, rgba(226, 154, 0, 0.04) 100%);
    border: 1px dashed rgba(244, 63, 94, 0.2);
    border-radius: 0.9rem;
    padding: 0.85rem;
    text-align: left;
}

.ui-flashback-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--rose);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.35rem;
}

.ui-flashback-title i {
    width: 0.85rem;
    height: 0.85rem;
}

.ui-flashback-content {
    font-size: 0.78rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-muted);
}

/* Showcase Details Styling */
.showcase-details h3 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 1.15rem;
    line-height: 1.25;
    color: var(--foreground);
}

.showcase-details p {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.95rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.showcase-badge i {
    width: 0.95rem;
    height: 0.95rem;
}

.icon-amber { background: rgba(217, 119, 6, 0.08); color: var(--amber); }
.icon-indigo { background: rgba(133, 77, 14, 0.08); color: var(--indigo); }
.icon-orange { background: rgba(234, 88, 12, 0.08); color: var(--orange); }
.icon-rose { background: rgba(225, 29, 72, 0.08); color: var(--rose); }

.feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-bullets li strong {
    color: var(--foreground);
}

.feature-bullets li i {
    width: 1.15rem;
    height: 1.15rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Release Changelog CSS - Light Theme */
.changelog-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.changelog-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding-left: 2.5rem;
}

.changelog-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(226, 154, 0, 0.05) 100%);
}

.changelog-item {
    position: relative;
    margin-bottom: 4rem;
}

.changelog-item:last-child {
    margin-bottom: 0;
}

.changelog-marker {
    position: absolute;
    left: calc(-2.5rem - 7px);
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--accent);
    box-shadow: 0 0 8px rgba(226, 154, 0, 0.25);
}

.release-tag {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.65rem;
}

.release-tag.live {
    background: rgba(5, 150, 105, 0.1);
    color: var(--emerald);
}

.release-tag.complete {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text-muted);
}

.release-version {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.release-date {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 1.15rem;
}

.release-summary {
    font-size: 1.02rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-weight: 450;
    line-height: 1.5;
}

.changelog-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0.25rem;
}

.changelog-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.changelog-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.1rem;
    top: -2px;
}

/* Light Support Ticketing & Contact */
.contact-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    background: rgba(248, 250, 252, 0.4);
}

.contact-box-wrapper {
    display: grid;
    grid-template-cols: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.ticketing-architecture {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 2rem;
}

.ticketing-architecture h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.step-card {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(226, 154, 0, 0.08);
    color: var(--accent);
    border: 1px solid rgba(226, 154, 0, 0.2);
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.step-card h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.15rem;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Light Contact Form Card */
.contact-form-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 15px 35px -10px rgba(0,0,0,0.03), var(--shadow-glow);
}

.contact-form-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: var(--foreground);
}

.form-instructions {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 1.15rem;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1.1rem;
    background: #f8fafc;
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.75rem;
    color: var(--foreground);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(226, 154, 0, 0.08);
}

/* Validations */
.form-group .input-error {
    border-color: var(--rose) !important;
    background: rgba(225, 29, 72, 0.02);
}

.error-msg {
    display: none;
    color: var(--rose);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.loader {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Triage Success Banner */
.triage-success-banner {
    display: flex;
    gap: 1.15rem;
    padding: 2rem;
    background: rgba(5, 150, 105, 0.05);
    border: 1.5px dashed rgba(5, 150, 105, 0.25);
    border-radius: 1.25rem;
    margin-top: 1rem;
    animation: fade-in-tab 0.5s ease forwards;
}

.success-icon {
    width: 1.8rem;
    height: 1.8rem;
    color: var(--emerald);
    flex-shrink: 0;
}

.triage-success-banner h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.35rem;
}

.triage-success-banner p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Brand Violet CTA Section */
.cta-section {
    padding: 8rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #854d0e 0%, #d97706 100%);
    border-radius: 2.5rem;
    padding: 5rem 4rem;
    text-align: center;
    box-shadow: 0 20px 50px -15px rgba(133, 77, 14, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    color: white;
}

.cta-box p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 1.15rem;
}

/* Footer Section */
footer {
    padding: 4.5rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    background: #f8fafc;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2.25rem;
    flex-wrap: wrap;
}

.foot-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.foot-link:hover {
    color: var(--foreground);
}

/* Responsive Breakdown */
@media (max-width: 992px) {
    .hero-content {
        grid-template-cols: 1fr;
        text-align: center;
        gap: 3.5rem;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .app-store-section {
        margin-left: auto;
        margin-right: auto;
    }
    .feature-showcase-grid {
        grid-template-cols: 1fr;
        gap: 3.5rem;
    }
    .contact-box-wrapper {
        grid-template-cols: 1fr;
        gap: 3.5rem;
    }
    .hero-text h1 {
        font-size: 3.3rem;
    }
    .section-header h2, .cta-box h2 {
        font-size: 2.5rem;
    }
    .module-tabs {
        flex-wrap: wrap;
    }
    .tab-btn {
        flex: auto;
        width: calc(50% - 0.5rem);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }
    .hero-text h1 {
        font-size: 2.6rem;
    }
    .hero-actions, .cta-row {
        flex-direction: column;
        width: 100%;
    }
    .btn-large {
        width: 100%;
    }
    .tab-btn {
        width: 100%;
    }
    .form-row {
        grid-template-cols: 1fr;
        gap: 0;
    }
    .contact-form-card {
        padding: 2rem;
    }
}
